[MERGE] branch merged with lp:~openerp-dev/openobject-addons/trunk-dev-addons3

bzr revid: mtr@mtr-20110112052952-7bbmrfb3t11xjgh9
This commit is contained in:
mtr 2011-01-12 10:59:52 +05:30
commit 0697ad74c8
215 changed files with 2116 additions and 1218 deletions

View File

@ -418,11 +418,11 @@ class account_account(osv.osv):
c_ids = s_ids
ids = child_ids
return True
def _check_type(self, cr, uid, ids, context=None):
if context is None:
context = {}
accounts = self.browse(cr, uid, ids, context=context)
context = {}
accounts = self.browse(cr, uid, ids, context=context)
for account in accounts:
if account.child_id and account.type != 'view':
return False
@ -430,7 +430,7 @@ class account_account(osv.osv):
_constraints = [
(_check_recursion, 'Error ! You can not create recursive accounts.', ['parent_id']),
(_check_type, 'You cannot create a account! \nMake sure if the account has children then it should be type "View"! ', ['type']),
(_check_type, 'You cannot create an account! \nMake sure if the account has children then it should be type "View"! ', ['type']),
]
_sql_constraints = [
('code_company_uniq', 'unique (code,company_id)', 'The code of the account must be unique per company !')
@ -2307,8 +2307,8 @@ class account_account_template(osv.osv):
def _check_type(self, cr, uid, ids, context=None):
if context is None:
context = {}
accounts = self.browse(cr, uid, ids, context=context)
context = {}
accounts = self.browse(cr, uid, ids, context=context)
for account in accounts:
if account.parent_id and account.parent_id.type != 'view':
return False
@ -2317,8 +2317,8 @@ class account_account_template(osv.osv):
_check_recursion = check_cycle
_constraints = [
(_check_recursion, 'Error ! You can not create recursive account templates.', ['parent_id']),
(_check_type, 'You cannot create a account template! \nMake sure if the account template has parent then it should be type "View"! ', ['type']),
(_check_type, 'You cannot create an account template! \nMake sure if the account template has parent then it should be type "View"! ', ['type']),
]
def name_get(self, cr, uid, ids, context=None):
@ -2532,7 +2532,7 @@ class account_fiscal_position_template(osv.osv):
_description = 'Template for Fiscal Position'
_columns = {
'name': fields.char('Fiscal Position Template', size=64, translate=True, required=True),
'name': fields.char('Fiscal Position Template', size=64, required=True),
'chart_template_id': fields.many2one('account.chart.template', 'Chart Template', required=True),
'account_ids': fields.one2many('account.fiscal.position.account.template', 'position_id', 'Account Mapping'),
'tax_ids': fields.one2many('account.fiscal.position.tax.template', 'position_id', 'Tax Mapping')

View File

@ -434,7 +434,6 @@
<field name="context">{'type':'out_invoice', 'journal_type': 'sale'}</field>
<field name="search_view_id" ref="view_account_invoice_filter"/>
<field name="help">With Customer Invoices you can create and manage sales invoices issued to your customers. OpenERP can also generate draft invoices automatically from sales orders or deliveries. You should only confirm them before sending them to your customers.</field>
<field name="groups_id" eval="[(6,0,[ref('account.group_account_manager'),ref('account.group_account_user')])]"/>
</record>

View File

@ -603,7 +603,7 @@
</record>
<record id="view_bank_statement_periodic_form" model="ir.ui.view">
<field name="name">account.bank.statement.form</field>
<field name="name">account.bank.statement.reconcile.form</field>
<field name="model">account.bank.statement</field>
<field name="type">form</field>
<field name="arch" type="xml">
@ -1520,70 +1520,6 @@
<field name="act_window_id" ref="action_move_line_search"/>
</record>
<record id="view_bank_statement_reconcile_form" model="ir.ui.view">
<field name="name">account.bank.statement.form</field>
<field name="model">account.bank.statement</field>
<field eval="30" name="priority"/>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Statement">
<group col="6" colspan="4">
<field name="name" select="1"/>
<field name="date" select="1"/>
<field name="journal_id" on_change="onchange_journal_id(journal_id)" select="1"/>
<field name="currency"/>
<field name="balance_start"/>
<field name="balance_end_real"/>
</group>
<notebook colspan="4">
<page string="Select entries">
<field colspan="4" domain="[('statement_id', '=', False), ('journal_id', '=', journal_id)]" name="move_line_ids" nolabel="1" widget="many2many"/>
</page>
<page string="Entry encoding">
<separator colspan="4" string="Entry Lines"/>
<field name="period_id"/>
<field colspan="4" name="line_ids" nolabel="1">
<tree editable="bottom" string="Statement lines">
<field name="date"/>
<field name="name"/>
<field name="type" on_change="onchange_type(partner_id, type)"/>
<field name="partner_id" on_change="onchange_type(partner_id, type)"/>
<field domain="[('journal_id', '=', parent.journal_id)]" name="account_id"/>
<field name="amount"/>
<field context="{'partner_id': partner_id, 'amount': amount, 'account_id': account_id, 'date':date}" name="reconcile_id"/>
</tree>
<form string="Statement lines">
<field name="date"/>
<field name="name"/>
<field name="type" on_change="onchange_type(partner_id, type)"/>
<field name="partner_id" on_change="onchange_type(partner_id, type)"/>
<field domain="[('journal_id', '=', parent.journal_id)]" name="account_id"/>
<field name="analytic_account_id" groups="analytic.group_analytic_accounting" />
<field name="amount"/>
<field context="{'partner_id': partner_id, 'amount': amount, 'account_id': account_id, 'date':date}" name="reconcile_id"/>
</form>
</field>
</page>
</notebook>
<group col="7" colspan="4">
<field name="state"/>
<field name="balance_end"/>
<button name="button_cancel" states="confirm" string="Cancel" type="object" icon="gtk-cancel"/>
<button name="button_dummy" states="draft" string="Compute" icon="terp-stock_format-scientific"/>
<button name="button_confirm" states="draft" string="Confirm" type="object" icon="terp-camera_test"/>
</group>
</form>
</field>
</record>
<record id="action_bank_statement_reconciliation_form" model="ir.actions.act_window">
<field name="name">Statements reconciliation</field>
<field name="res_model">account.bank.statement</field>
<field name="view_type">form</field>
<field name="view_mode">form,tree</field>
<field name="search_view_id" ref="view_bank_statement_search"/>
<field name="view_id" ref="view_bank_statement_reconcile_form"/>
</record>
<act_window
context="{'search_default_next_partner':1,'view_mode':True}"
id="action_account_manual_reconcile" name="Journal Items"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:45+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:45+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:28+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:28+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -62,7 +62,7 @@ msgid "Residual"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:803
#: code:addons/account/invoice.py:785
#, python-format
msgid "Please define sequence on invoice journal"
msgstr ""
@ -165,7 +165,7 @@ msgid "If the active field is set to False, it will allow you to hide the paymen
msgstr ""
#. module: account
#: code:addons/account/invoice.py:1439
#: code:addons/account/invoice.py:1421
#, python-format
msgid "Warning!"
msgstr ""
@ -237,7 +237,7 @@ msgid "Check this box if you don't want any VAT related to this Tax Code to appe
msgstr ""
#. module: account
#: code:addons/account/invoice.py:1228
#: code:addons/account/invoice.py:1210
#, python-format
msgid "Invoice '%s' is paid partially: %s%s of %s%s (%s%s remaining)"
msgstr ""
@ -253,7 +253,7 @@ msgid "Belgian Reports"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:1102
#: code:addons/account/account_move_line.py:1176
#, python-format
msgid "You can not add/modify entries in a closed journal."
msgstr ""
@ -291,7 +291,7 @@ msgid "St."
msgstr ""
#. module: account
#: code:addons/account/invoice.py:547
#: code:addons/account/invoice.py:529
#, python-format
msgid "Invoice line account company does not match with invoice company."
msgstr ""
@ -453,7 +453,7 @@ msgstr ""
#: field:account.move.line,journal_id:0
#: report:account.third_party_ledger:0
#: report:account.third_party_ledger_other:0
#: code:addons/account/account_move_line.py:909
#: code:addons/account/account_move_line.py:983
#: view:analytic.entries.report:0
#: field:analytic.entries.report,journal_id:0
#: model:ir.actions.report.xml,name:account.account_journal
@ -631,8 +631,8 @@ msgid "Journal Period"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:675
#: code:addons/account/account_move_line.py:719
#: code:addons/account/account_move_line.py:732
#: code:addons/account/account_move_line.py:776
#, python-format
msgid "To reconcile the entries company should be the same for all entries"
msgstr ""
@ -798,7 +798,7 @@ msgid "Next Partner to reconcile"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:1117
#: code:addons/account/account_move_line.py:1191
#, python-format
msgid "You can not do this modification on a confirmed entry ! Please note that you can just change some non important fields !"
msgstr ""
@ -917,9 +917,9 @@ msgstr ""
#. module: account
#: code:addons/account/account.py:2083
#: code:addons/account/account_bank_statement.py:350
#: code:addons/account/account_move_line.py:115
#: code:addons/account/account_move_line.py:170
#: code:addons/account/invoice.py:73
#: code:addons/account/invoice.py:688
#: code:addons/account/invoice.py:670
#: code:addons/account/wizard/account_use_model.py:81
#, python-format
msgid "No Analytic Journal !"
@ -1253,7 +1253,7 @@ msgid "Central Journal"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:1197
#: code:addons/account/account_move_line.py:1271
#, python-format
msgid "You can not use this general account in this journal !"
msgstr ""
@ -1308,11 +1308,6 @@ msgstr ""
msgid "Skip 'Draft' State for Manual Entries"
msgstr ""
#. module: account
#: view:account.bank.statement:0
msgid "Entry encoding"
msgstr ""
#. module: account
#: view:account.invoice.report:0
#: field:account.invoice.report,price_total:0
@ -1346,7 +1341,7 @@ msgid "Example: at 14 net days 2 percents, remaining amount at 30 days end of mo
msgstr ""
#. module: account
#: code:addons/account/invoice.py:833
#: code:addons/account/invoice.py:815
#, python-format
msgid "Cannot create the invoice !\n"
"The payment term defined gives a computed amount greater than the total invoiced amount."
@ -1496,6 +1491,7 @@ msgid "Separated Journal Sequences"
msgstr ""
#. module: account
#: field:account.bank.statement,user_id:0
#: view:account.invoice:0
msgid "Responsible"
msgstr ""
@ -1557,7 +1553,7 @@ msgid "Error! You cannot define overlapping fiscal years"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:751
#: code:addons/account/account_move_line.py:808
#, python-format
msgid "The account is not defined to be reconciled !"
msgstr ""
@ -1588,7 +1584,7 @@ msgid "Receivables & Payables"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:758
#: code:addons/account/account_move_line.py:815
#, python-format
msgid "You have to provide an account for the write off entry !"
msgstr ""
@ -1978,7 +1974,7 @@ msgid "Income Account"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:370
#: code:addons/account/invoice.py:352
#, python-format
msgid "There is no Accounting Journal of type Sale/Purchase defined!"
msgstr ""
@ -2095,7 +2091,9 @@ msgstr ""
#: selection:account.invoice.report,state:0
#: view:account.open.closed.fiscalyear:0
#: selection:account.period,state:0
#: code:addons/account/wizard/account_move_journal.py:106
#: selection:report.invoice.created,state:0
#, python-format
msgid "Open"
msgstr ""
@ -2122,7 +2120,7 @@ msgid "Account Tax Code"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:563
#: code:addons/account/invoice.py:545
#, python-format
msgid "Can't find any account journal of %s type for this company.\n"
"\n"
@ -2262,7 +2260,7 @@ msgid "Accounts"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:369
#: code:addons/account/invoice.py:351
#, python-format
msgid "Configuration Error!"
msgstr ""
@ -2424,8 +2422,8 @@ msgstr ""
#. module: account
#: code:addons/account/account.py:2083
#: code:addons/account/account_bank_statement.py:350
#: code:addons/account/account_move_line.py:115
#: code:addons/account/invoice.py:688
#: code:addons/account/account_move_line.py:170
#: code:addons/account/invoice.py:670
#: code:addons/account/wizard/account_use_model.py:81
#, python-format
msgid "You have to define an analytic journal on the '%s' journal!"
@ -2571,7 +2569,6 @@ msgstr ""
#. module: account
#: view:account.analytic.line:0
#: model:ir.actions.act_window,name:account.action_account_analytic_line_form
#: model:ir.actions.act_window,name:account.action_account_tree1
msgid "Analytic Entries"
msgstr ""
@ -2848,7 +2845,7 @@ msgid "Starting Balance"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:1302
#: code:addons/account/invoice.py:1284
#, python-format
msgid "No Partner Defined !"
msgstr ""
@ -2938,7 +2935,7 @@ msgid "All selected journal entries will be validated and posted. It means you w
msgstr ""
#. module: account
#: code:addons/account/invoice.py:388
#: code:addons/account/invoice.py:370
#, python-format
msgid "Cannot delete invoice(s) that are already opened or paid !"
msgstr ""
@ -3125,7 +3122,9 @@ msgstr ""
#: report:account.third_party_ledger:0
#: report:account.third_party_ledger_other:0
#: selection:account.vat.declaration,filter:0
#: code:addons/account/report/common_report_header.py:97
#: field:analytic.entries.report,date:0
#, python-format
msgid "Date"
msgstr ""
@ -3154,7 +3153,7 @@ msgid "Maturity date of entry line generated by model line '%s' of model '%s' is
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:753
#: code:addons/account/account_move_line.py:810
#, python-format
msgid "Some entries are already reconciled !"
msgstr ""
@ -3269,7 +3268,12 @@ msgid "Unit Price"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:1054
#: model:ir.actions.act_window,name:account.action_account_tree1
msgid "Analytic Items"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:1128
#, python-format
msgid "Unable to change tax !"
msgstr ""
@ -3280,13 +3284,13 @@ msgid "#Entries"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:1440
#: code:addons/account/invoice.py:1422
#, python-format
msgid "You selected an Unit of Measure which is not compatible with the product."
msgstr ""
#. module: account
#: code:addons/account/invoice.py:491
#: code:addons/account/invoice.py:473
#, python-format
msgid "The Payment Term of Supplier does not have Payment Term Lines(Computation) defined !"
msgstr ""
@ -3563,7 +3567,7 @@ msgid "Acc.Type"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:732
#: code:addons/account/invoice.py:714
#, python-format
msgid "Global taxes defined, but are not in invoice lines !"
msgstr ""
@ -3651,6 +3655,8 @@ msgstr ""
#: selection:account.report.general.ledger,target_move:0
#: selection:account.tax.chart,target_move:0
#: selection:account.vat.declaration,target_move:0
#: code:addons/account/report/common_report_header.py:68
#, python-format
msgid "All Posted Entries"
msgstr ""
@ -3861,14 +3867,14 @@ msgstr ""
#: code:addons/account/account.py:1290
#: code:addons/account/account.py:1318
#: code:addons/account/account.py:1325
#: code:addons/account/account_move_line.py:981
#: code:addons/account/invoice.py:914
#: code:addons/account/account_move_line.py:1055
#: code:addons/account/invoice.py:896
#: code:addons/account/wizard/account_automatic_reconcile.py:152
#: code:addons/account/wizard/account_fiscalyear_close.py:78
#: code:addons/account/wizard/account_fiscalyear_close.py:81
#: code:addons/account/wizard/account_move_journal.py:162
#: code:addons/account/wizard/account_move_journal.py:165
#: code:addons/account/wizard/account_report_aged_partner_balance.py:55
#: code:addons/account/wizard/account_report_aged_partner_balance.py:57
#: code:addons/account/wizard/account_report_aged_partner_balance.py:59
#, python-format
msgid "UserError"
msgstr ""
@ -3914,6 +3920,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -3937,7 +3949,7 @@ msgstr ""
#: selection:account.bank.statement.line,type:0
#: view:account.invoice:0
#: view:account.invoice.report:0
#: code:addons/account/invoice.py:338
#: code:addons/account/invoice.py:320
#, python-format
msgid "Customer"
msgstr ""
@ -3986,7 +3998,7 @@ msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:1007
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
@ -4024,7 +4036,7 @@ msgid "Invoices"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:822
#: code:addons/account/invoice.py:804
#, python-format
msgid "Please verify the price of the invoice !\n"
"The real total does not match the computed total."
@ -4102,7 +4114,7 @@ msgstr ""
#. module: account
#: view:account.move:0
#: view:account.move.line:0
#: code:addons/account/wizard/account_move_journal.py:150
#: code:addons/account/wizard/account_move_journal.py:153
#: model:ir.actions.act_window,name:account.act_account_journal_2_account_move_line
#: model:ir.actions.act_window,name:account.act_account_move_to_account_move_line_open
#: model:ir.actions.act_window,name:account.act_account_partner_account_move
@ -4135,8 +4147,29 @@ msgid "Third Party (Country)"
msgstr ""
#. module: account
#: model:ir.actions.act_window,help:account.action_invoice_tree4
msgid "With Supplier Refunds you can manage the credit notes you receive from your suppliers. A refund is a document that credits an invoice completely or partially. You can easily generate refunds and reconcile them directly from the invoice form."
#: code:addons/account/account.py:938
#: code:addons/account/account.py:940
#: code:addons/account/account.py:1181
#: code:addons/account/account.py:1393
#: code:addons/account/account.py:1397
#: code:addons/account/account_cash_statement.py:249
#: code:addons/account/account_move_line.py:780
#: code:addons/account/account_move_line.py:803
#: code:addons/account/account_move_line.py:805
#: code:addons/account/account_move_line.py:808
#: code:addons/account/account_move_line.py:810
#: code:addons/account/account_move_line.py:1117
#: code:addons/account/report/common_report_header.py:92
#: code:addons/account/wizard/account_change_currency.py:39
#: code:addons/account/wizard/account_change_currency.py:60
#: code:addons/account/wizard/account_change_currency.py:65
#: code:addons/account/wizard/account_change_currency.py:71
#: code:addons/account/wizard/account_move_bank_reconcile.py:49
#: code:addons/account/wizard/account_open_closed_fiscalyear.py:40
#: code:addons/account/wizard/account_report_common.py:120
#: code:addons/account/wizard/account_report_common.py:126
#, python-format
msgid "Error"
msgstr ""
#. module: account
@ -4154,7 +4187,7 @@ msgid "Bank Details"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:738
#: code:addons/account/invoice.py:720
#, python-format
msgid "Taxes missing !"
msgstr ""
@ -4576,7 +4609,7 @@ msgid "Start of period"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:1119
#: code:addons/account/account_move_line.py:1193
#, python-format
msgid "You can not do this modification on a reconciled entry ! Please note that you can just change some non important fields !"
msgstr ""
@ -4630,12 +4663,12 @@ msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:331
#: code:addons/account/invoice.py:423
#: code:addons/account/invoice.py:523
#: code:addons/account/invoice.py:538
#: code:addons/account/invoice.py:546
#: code:addons/account/invoice.py:563
#: code:addons/account/invoice.py:1365
#: code:addons/account/invoice.py:405
#: code:addons/account/invoice.py:505
#: code:addons/account/invoice.py:520
#: code:addons/account/invoice.py:528
#: code:addons/account/invoice.py:545
#: code:addons/account/invoice.py:1347
#: code:addons/account/wizard/account_move_journal.py:63
#, python-format
msgid "Configuration Error !"
@ -4843,7 +4876,7 @@ msgid "Generate Opening Entries"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:680
#: code:addons/account/account_move_line.py:738
#, python-format
msgid "Already Reconciled!"
msgstr ""
@ -4877,7 +4910,7 @@ msgstr ""
#. module: account
#: view:account.move.line.reconcile:0
#: code:addons/account/account_move_line.py:773
#: code:addons/account/account_move_line.py:830
#, python-format
msgid "Write-Off"
msgstr ""
@ -4896,7 +4929,7 @@ msgstr ""
#: selection:account.bank.statement.line,type:0
#: view:account.invoice:0
#: view:account.invoice.report:0
#: code:addons/account/invoice.py:340
#: code:addons/account/invoice.py:322
#, python-format
msgid "Supplier"
msgstr ""
@ -5027,14 +5060,14 @@ msgid "Filter by"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:1057
#: code:addons/account/account_move_line.py:1140
#: code:addons/account/account_move_line.py:1131
#: code:addons/account/account_move_line.py:1214
#, python-format
msgid "You can not use an inactive account!"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:746
#: code:addons/account/account_move_line.py:803
#, python-format
msgid "Entries are not of the same account or already reconciled ! "
msgstr ""
@ -5051,6 +5084,12 @@ msgstr ""
msgid "Account General Journal"
msgstr ""
#. module: account
#: code:addons/account/report/common_report_header.py:100
#, python-format
msgid "No Filter"
msgstr ""
#. module: account
#: field:account.payment.term.line,days:0
msgid "Number of Days"
@ -5063,7 +5102,7 @@ msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:391
#: code:addons/account/invoice.py:388
#: code:addons/account/invoice.py:370
#, python-format
msgid "Invalid action !"
msgstr ""
@ -5157,11 +5196,6 @@ msgstr ""
msgid "Past"
msgstr ""
#. module: account
#: model:ir.actions.act_window,name:account.action_bank_statement_reconciliation_form
msgid "Statements reconciliation"
msgstr ""
#. module: account
#: view:account.analytic.line:0
msgid "Analytic Entry"
@ -5204,7 +5238,7 @@ msgid "As soon as the reconciliation is done, the invoice's state turns to “do
msgstr ""
#. module: account
#: code:addons/account/invoice.py:1007
#: code:addons/account/invoice.py:989
#, python-format
msgid "is validated."
msgstr ""
@ -5354,9 +5388,11 @@ msgstr ""
#: view:account.unreconcile.reconcile:0
#: view:account.use.model:0
#: view:account.vat.declaration:0
#: code:addons/account/wizard/account_move_journal.py:105
#: view:project.account.analytic.line:0
#: view:validate.account.move:0
#: view:validate.account.move.lines:0
#, python-format
msgid "Cancel"
msgstr ""
@ -5519,15 +5555,15 @@ msgid "Optional create"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:424
#: code:addons/account/invoice.py:524
#: code:addons/account/invoice.py:1366
#: code:addons/account/invoice.py:406
#: code:addons/account/invoice.py:506
#: code:addons/account/invoice.py:1348
#, python-format
msgid "Can not find account chart for this company, Please Create account."
msgstr ""
#. module: account
#: code:addons/account/wizard/account_report_aged_partner_balance.py:59
#: code:addons/account/wizard/account_report_aged_partner_balance.py:57
#, python-format
msgid "Enter a Start date !"
msgstr ""
@ -5669,7 +5705,7 @@ msgstr ""
#. module: account
#: code:addons/account/account_analytic_line.py:143
#: code:addons/account/account_move_line.py:831
#: code:addons/account/account_move_line.py:905
#, python-format
msgid "Entries: "
msgstr ""
@ -5702,13 +5738,13 @@ msgstr ""
#. module: account
#: view:account.move.line:0
#: code:addons/account/account_move_line.py:929
#: code:addons/account/account_move_line.py:1003
#, python-format
msgid "Total debit"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:724
#: code:addons/account/account_move_line.py:781
#, python-format
msgid "Entry \"%s\" is not valid !"
msgstr ""
@ -5741,7 +5777,7 @@ msgid "Python Code"
msgstr ""
#. module: account
#: code:addons/account/wizard/account_report_balance_sheet.py:72
#: code:addons/account/wizard/account_report_balance_sheet.py:70
#, python-format
msgid "Please define the Reserve and Profit/Loss account for current user company !"
msgstr ""
@ -5783,12 +5819,12 @@ msgstr ""
#: code:addons/account/account_bank_statement.py:345
#: code:addons/account/account_cash_statement.py:328
#: code:addons/account/account_cash_statement.py:348
#: code:addons/account/account_move_line.py:1102
#: code:addons/account/account_move_line.py:1117
#: code:addons/account/account_move_line.py:1119
#: code:addons/account/invoice.py:803
#: code:addons/account/invoice.py:833
#: code:addons/account/invoice.py:1026
#: code:addons/account/account_move_line.py:1176
#: code:addons/account/account_move_line.py:1191
#: code:addons/account/account_move_line.py:1193
#: code:addons/account/invoice.py:785
#: code:addons/account/invoice.py:815
#: code:addons/account/invoice.py:1008
#: code:addons/account/wizard/account_invoice_refund.py:100
#: code:addons/account/wizard/account_invoice_refund.py:102
#: code:addons/account/wizard/account_use_model.py:44
@ -5874,7 +5910,9 @@ msgstr ""
#: selection:account.report.general.ledger,target_move:0
#: selection:account.tax.chart,target_move:0
#: selection:account.vat.declaration,target_move:0
#: code:addons/account/report/common_report_header.py:67
#: model:ir.actions.report.xml,name:account.account_move_line_list
#, python-format
msgid "All Entries"
msgstr ""
@ -5945,8 +5983,13 @@ msgid "Account tax chart"
msgstr ""
#. module: account
#: view:account.bank.statement:0
msgid "Select entries"
#: report:account.analytic.account.cost_ledger:0
#: report:account.analytic.account.quantity_cost_ledger:0
#: report:account.central.journal:0
#: report:account.general.journal:0
#: report:account.invoice:0
#: report:account.partner.balance:0
msgid "Total:"
msgstr ""
#. module: account
@ -5978,7 +6021,7 @@ msgid "Child Codes"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:491
#: code:addons/account/invoice.py:473
#: code:addons/account/wizard/account_invoice_refund.py:137
#, python-format
msgid "Data Insufficient !"
@ -6110,7 +6153,7 @@ msgid "Lines"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:539
#: code:addons/account/invoice.py:521
#, python-format
msgid "Can not find account chart for this company in invoice line account, Please Create account."
msgstr ""
@ -6131,7 +6174,7 @@ msgid "Are you sure you want to open this invoice ?"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:889
#: code:addons/account/account_move_line.py:963
#, python-format
msgid "Accounting Entries"
msgstr ""
@ -6409,7 +6452,6 @@ msgstr ""
#. module: account
#: view:account.analytic.line:0
#: field:account.bank.statement,user_id:0
#: view:account.journal:0
#: field:account.journal,user_id:0
#: view:analytic.entries.report:0
@ -6433,7 +6475,7 @@ msgid "This field is used for payable and receivable journal entries. You can pu
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:1197
#: code:addons/account/account_move_line.py:1271
#, python-format
msgid "Bad account !"
msgstr ""
@ -6445,13 +6487,19 @@ msgstr ""
msgid "Sales Journal"
msgstr ""
#. module: account
#: code:addons/account/wizard/account_move_journal.py:104
#, python-format
msgid "Open Journal Items !"
msgstr ""
#. module: account
#: model:ir.model,name:account.model_account_invoice_tax
msgid "Invoice Tax"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:1172
#: code:addons/account/account_move_line.py:1246
#, python-format
msgid "No piece number !"
msgstr ""
@ -6678,11 +6726,11 @@ msgstr ""
#: code:addons/account/account.py:532
#: code:addons/account/account.py:640
#: code:addons/account/account.py:927
#: code:addons/account/account_move_line.py:675
#: code:addons/account/account_move_line.py:719
#: code:addons/account/invoice.py:732
#: code:addons/account/invoice.py:735
#: code:addons/account/invoice.py:738
#: code:addons/account/account_move_line.py:732
#: code:addons/account/account_move_line.py:776
#: code:addons/account/invoice.py:714
#: code:addons/account/invoice.py:717
#: code:addons/account/invoice.py:720
#, python-format
msgid "Warning !"
msgstr ""
@ -6744,7 +6792,7 @@ msgid "Can not %s draft/proforma/cancel invoice."
msgstr ""
#. module: account
#: code:addons/account/invoice.py:805
#: code:addons/account/invoice.py:787
#, python-format
msgid "No Invoice Lines !"
msgstr ""
@ -6791,7 +6839,7 @@ msgid "Deferral Method"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:377
#: code:addons/account/invoice.py:359
#, python-format
msgid "Invoice '%s' is paid."
msgstr ""
@ -6848,7 +6896,7 @@ msgid "Associated Partner"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:1302
#: code:addons/account/invoice.py:1284
#, python-format
msgid "You must first select a partner !"
msgstr ""
@ -6953,7 +7001,7 @@ msgstr ""
#: view:account.period:0
#: field:account.subscription,period_nbr:0
#: field:account.tax.chart,period_id:0
#: code:addons/account/account_move_line.py:908
#: code:addons/account/account_move_line.py:982
#: field:validate.account.move,period_id:0
#, python-format
msgid "Period"
@ -7088,7 +7136,7 @@ msgid "Account Types"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:915
#: code:addons/account/invoice.py:897
#, python-format
msgid "Cannot create invoice move on centralised journal"
msgstr ""
@ -7228,6 +7276,11 @@ msgstr ""
msgid "Supplier Accounting Properties"
msgstr ""
#. module: account
#: help:account.move.line,amount_residual:0
msgid "The residual amount on a receivable or payable of a journal entry expressed in the company currency."
msgstr ""
#. module: account
#: view:account.payment.term.line:0
msgid " valuation: balance"
@ -7327,8 +7380,8 @@ msgid "The amount of the voucher must be the same amount as the one on the state
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:1057
#: code:addons/account/account_move_line.py:1140
#: code:addons/account/account_move_line.py:1131
#: code:addons/account/account_move_line.py:1214
#, python-format
msgid "Bad account!"
msgstr ""
@ -7339,7 +7392,7 @@ msgid "Keep empty for all open fiscal years"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:982
#: code:addons/account/account_move_line.py:1056
#, python-format
msgid "The account move (%s) for centralisation has been confirmed!"
msgstr ""
@ -7480,11 +7533,12 @@ msgstr ""
#. module: account
#: view:account.invoice:0
#: field:account.move.line,amount_residual:0
#: field:account.move.line,amount_residual_currency:0
msgid "Residual Amount"
msgstr ""
#. module: account
#: view:account.bank.statement:0
#: field:account.invoice,move_lines:0
#: field:account.move.reconcile,line_id:0
msgid "Entry Lines"
@ -7563,7 +7617,7 @@ msgid "Purchase Tax(%)"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:805
#: code:addons/account/invoice.py:787
#, python-format
msgid "Please create some invoice lines."
msgstr ""
@ -7646,7 +7700,7 @@ msgstr ""
#. module: account
#: view:account.move.line:0
#: code:addons/account/account_move_line.py:932
#: code:addons/account/account_move_line.py:1006
#, python-format
msgid "Total credit"
msgstr ""
@ -7657,7 +7711,7 @@ msgid "Accountant validates the accounting entries coming from the invoice. "
msgstr ""
#. module: account
#: code:addons/account/invoice.py:1026
#: code:addons/account/invoice.py:1008
#, python-format
msgid "You cannot cancel the Invoice which is Partially Paid! You need to unreconcile concerned payment entries!"
msgstr ""
@ -7689,29 +7743,8 @@ msgid "Current currency is not confirured properly !"
msgstr ""
#. module: account
#: code:addons/account/account.py:938
#: code:addons/account/account.py:940
#: code:addons/account/account.py:1181
#: code:addons/account/account.py:1393
#: code:addons/account/account.py:1397
#: code:addons/account/account_cash_statement.py:249
#: code:addons/account/account_move_line.py:723
#: code:addons/account/account_move_line.py:746
#: code:addons/account/account_move_line.py:748
#: code:addons/account/account_move_line.py:751
#: code:addons/account/account_move_line.py:753
#: code:addons/account/account_move_line.py:1043
#: code:addons/account/report/common_report_header.py:92
#: code:addons/account/wizard/account_change_currency.py:39
#: code:addons/account/wizard/account_change_currency.py:60
#: code:addons/account/wizard/account_change_currency.py:65
#: code:addons/account/wizard/account_change_currency.py:71
#: code:addons/account/wizard/account_move_bank_reconcile.py:49
#: code:addons/account/wizard/account_open_closed_fiscalyear.py:40
#: code:addons/account/wizard/account_report_common.py:120
#: code:addons/account/wizard/account_report_common.py:126
#, python-format
msgid "Error"
#: model:ir.actions.act_window,help:account.action_invoice_tree4
msgid "With Supplier Refunds you can manage the credit notes you receive from your suppliers. A refund is a document that credits an invoice completely or partially. You can easily generate refunds and reconcile them directly from the invoice form."
msgstr ""
#. module: account
@ -7875,7 +7908,7 @@ msgid "Move"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:1054
#: code:addons/account/account_move_line.py:1128
#, python-format
msgid "You can not change the tax, you should remove and recreate lines !"
msgstr ""
@ -8008,7 +8041,7 @@ msgid "Account Subscription"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:735
#: code:addons/account/invoice.py:717
#, python-format
msgid "Tax base different !\n"
"Click on compute to update tax base"
@ -8062,7 +8095,7 @@ msgid "Unreconciled"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:822
#: code:addons/account/invoice.py:804
#, python-format
msgid "Bad total !"
msgstr ""
@ -8113,7 +8146,7 @@ msgid "Active"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:372
#: code:addons/account/invoice.py:354
#, python-format
msgid "Unknown Error"
msgstr ""
@ -8238,9 +8271,11 @@ msgstr ""
#: report:account.vat.declaration:0
#: view:account.vat.declaration:0
#: selection:account.vat.declaration,filter:0
#: code:addons/account/report/common_report_header.py:99
#: model:ir.actions.act_window,name:account.action_account_period_form
#: model:ir.ui.menu,name:account.menu_action_account_period_form
#: model:ir.ui.menu,name:account.next_id_23
#, python-format
msgid "Periods"
msgstr ""
@ -8601,11 +8636,11 @@ msgid "End period"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:680
#: code:addons/account/account_move_line.py:758
#: code:addons/account/account_move_line.py:738
#: code:addons/account/account_move_line.py:815
#: code:addons/account/wizard/account_invoice_state.py:44
#: code:addons/account/wizard/account_invoice_state.py:68
#: code:addons/account/wizard/account_report_balance_sheet.py:72
#: code:addons/account/wizard/account_report_balance_sheet.py:70
#: code:addons/account/wizard/account_state_open.py:37
#: code:addons/account/wizard/account_validate_account_move.py:39
#: code:addons/account/wizard/account_validate_account_move.py:61
@ -8689,13 +8724,19 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:748
#: code:addons/account/account_move_line.py:805
#, python-format
msgid "Entry is already reconciled"
msgstr ""
@ -8716,7 +8757,7 @@ msgid "Range"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:1172
#: code:addons/account/account_move_line.py:1246
#, python-format
msgid "Can not create an automatic sequence for this piece !\n"
"\n"
@ -8779,7 +8820,7 @@ msgid "Applicability"
msgstr ""
#. module: account
#: code:addons/account/wizard/account_move_journal.py:162
#: code:addons/account/wizard/account_move_journal.py:165
#, python-format
msgid "This period is already closed !"
msgstr ""
@ -8837,7 +8878,7 @@ msgid "Accounts Mapping"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:364
#: code:addons/account/invoice.py:346
#, python-format
msgid "Invoice '%s' is waiting for validation."
msgstr ""
@ -8862,7 +8903,7 @@ msgid "The income or expense account related to the selected product."
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:1043
#: code:addons/account/account_move_line.py:1117
#, python-format
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
@ -8948,16 +8989,6 @@ msgstr ""
msgid "Manual Invoice Taxes"
msgstr ""
#. module: account
#: report:account.analytic.account.cost_ledger:0
#: report:account.analytic.account.quantity_cost_ledger:0
#: report:account.central.journal:0
#: report:account.general.journal:0
#: report:account.invoice:0
#: report:account.partner.balance:0
msgid "Total:"
msgstr ""
#. module: account
#: field:account.account,parent_right:0
msgid "Parent Right"
@ -9069,7 +9100,7 @@ msgid "Amount currency"
msgstr ""
#. module: account
#: code:addons/account/wizard/account_report_aged_partner_balance.py:57
#: code:addons/account/wizard/account_report_aged_partner_balance.py:55
#, python-format
msgid "You must enter a period length that cannot be 0 or below !"
msgstr ""
@ -9085,3 +9116,8 @@ msgstr ""
msgid "Create and manage the accounts you need to record journal entries. An account is part of a ledger allowing your company to register all kinds of debit and credit transactions. Companies present their annual accounts in two main parts: the balance sheet and the income statement (profit and loss account). The annual accounts of a company are required by law to disclose a certain amount of information. They have to be certified by an external auditor annually."
msgstr ""
#. module: account
#: help:account.move.line,amount_residual_currency:0
msgid "The residual amount on a receivable or payable of a journal entry expressed in its currency (maybe different of the company currency)."
msgstr ""

View File

@ -4094,6 +4094,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9172,6 +9178,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4111,6 +4111,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Грешка! Не могат да бъдат създавани рекурсивни сметки."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9208,6 +9214,12 @@ msgstr "Редове на фактура"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4122,6 +4122,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Greška: ne mogu se praviti rekurzivni nalozi."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9231,6 +9237,12 @@ msgstr "Retci fakture"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4140,6 +4140,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Error! No es poden crear comptes recursius."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9269,6 +9275,12 @@ msgstr "Línies de factura"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4094,6 +4094,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9169,6 +9175,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4109,6 +4109,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9189,6 +9195,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4344,6 +4344,12 @@ msgstr "Saldo auf Basis Kassenbuch"
msgid "Error ! You can not create recursive accounts."
msgstr "Fehler! Sie können keine rekursiven Konten definieren."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9833,6 +9839,12 @@ msgstr "Rechnungszeilen"
msgid "Error ! You can not create recursive account templates."
msgstr "Fehler ! Rekursive Finanzkontenvorlagen sind nicht erlaubt"
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4171,6 +4171,12 @@ msgid "Error ! You can not create recursive accounts."
msgstr ""
"Σφάλμα! Δεν μπορείτε να χρησιμοποιήσετε επαναλαμβανόμενους λογαριασμούς."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9301,6 +9307,12 @@ msgstr "Γραμμές Τιμολογίου"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4099,6 +4099,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9174,6 +9180,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4314,6 +4314,12 @@ msgstr "Saldo de cierre basado en la caja."
msgid "Error ! You can not create recursive accounts."
msgstr "¡Error! No se pueden crear cuentas recursivas."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9697,6 +9703,12 @@ msgstr "Líneas de factura"
msgid "Error ! You can not create recursive account templates."
msgstr "¡Error! No puede crear plantillas de cuentas recursivas."
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4140,6 +4140,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Error! No se pueden crear cuentas recursivas."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9273,6 +9279,12 @@ msgstr "Líneas de la factura"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4278,6 +4278,12 @@ msgstr "Closing balance based on cashBox"
msgid "Error ! You can not create recursive accounts."
msgstr "¡Error! No se pueden crear cuentas recursivas."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9599,6 +9605,12 @@ msgstr "Detalle de factura"
msgid "Error ! You can not create recursive account templates."
msgstr "Error ! You can not create recursive account templates."
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4094,6 +4094,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Viga! Sa ei saa luua rekursiivseid kontosid."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr "Arve read"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4126,6 +4126,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Virhe! et voi luoda rekursiivisia tilejä"
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9241,6 +9247,12 @@ msgstr "Laskurivit"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4376,6 +4376,12 @@ msgstr "Solde de clôture basé sur la caisse"
msgid "Error ! You can not create recursive accounts."
msgstr "Erreur ! Vous ne pouvez pas créer de comptes récursifs."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9822,6 +9828,12 @@ msgstr "Lignes de facture"
msgid "Error ! You can not create recursive account templates."
msgstr "Erreur ! Vous ne pouvez pas créer de modèles de compte récursifs"
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4097,6 +4097,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9173,6 +9179,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4096,6 +4096,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9171,6 +9177,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4108,6 +4108,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Greška ! Ne možete kreirati rekurzivna konta."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9201,6 +9207,12 @@ msgstr "Retci računa"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4094,6 +4094,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Hiba! Nem lehet létrehozni rekurzív számlákat."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9176,6 +9182,12 @@ msgstr "Tételek"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4097,6 +4097,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9176,6 +9182,12 @@ msgstr "Detail Invoice"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4282,6 +4282,12 @@ msgstr "Bilancio di chiusura basato sulla cassa."
msgid "Error ! You can not create recursive accounts."
msgstr "Errore! Non puoi creare conti ricorsivi"
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9452,6 +9458,12 @@ msgstr "Righe Fattura"
msgid "Error ! You can not create recursive account templates."
msgstr "Errore! Non puoi creare un modello di conto ricorsivo"
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4116,6 +4116,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Klaida! Negalima sukurti rekursyvių sąskaitų."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9219,6 +9225,12 @@ msgstr "Sąskaitos faktūros eilutės"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4102,6 +4102,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9182,6 +9188,12 @@ msgstr "Rēķina Rindas"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4191,6 +4191,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Алдаа ! Та цикл хэлбэрийн данс үүсгэх боломжтой."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9363,6 +9369,12 @@ msgstr "Нэхэмжлэлийн мөр"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4207,6 +4207,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Fout ! U kunt geen recursieve rekeningen aanmaken."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9337,6 +9343,12 @@ msgstr "Factuurregels"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4116,6 +4116,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9203,6 +9209,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4224,6 +4224,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Błąd ! Nie możesz tworzyć kont rekurencyjnych."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9466,6 +9472,12 @@ msgstr "Pozycje faktury"
msgid "Error ! You can not create recursive account templates."
msgstr "Błąd ! Nie możesz tworzyć rekurencyjnego szablonu kont."
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4175,6 +4175,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Erro! Não pode criar contas recursivas"
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9319,6 +9325,12 @@ msgstr "Linhas de factura"
msgid "Error ! You can not create recursive account templates."
msgstr "Erro! Não pode criar modelos de conta recursivamente."
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4253,6 +4253,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Erro ! Você não pode criar contas recursivas"
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9381,6 +9387,12 @@ msgstr "Linhas da fatura"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4131,6 +4131,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Eroare ! Nu puteţi crea conturi recursive."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9254,6 +9260,12 @@ msgstr "Poziţii factură"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4126,6 +4126,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Ошибка! Вы не можете создать рекурсивные счета."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9224,6 +9230,12 @@ msgstr "Позиции счета"
msgid "Error ! You can not create recursive account templates."
msgstr "Ошибка ! Нельзя создать рекурсивные шаблоны счетов."
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9173,6 +9179,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4105,6 +4105,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Napaka! Ne morete krerati rekurzivnih kontov."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9193,6 +9199,12 @@ msgstr "Postavke računa"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4105,6 +4105,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9186,6 +9192,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4124,6 +4124,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Greška ! Ne možete kreirati rekurzivna konta"
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9232,6 +9238,12 @@ msgstr "Stavke računa"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4124,6 +4124,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "Greška ! Ne možete kreirati rekurzivna konta"
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9232,6 +9238,12 @@ msgstr "Stavke računa"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4169,6 +4169,12 @@ msgstr "Utgående balans på kassalåda"
msgid "Error ! You can not create recursive accounts."
msgstr "Fel! Du kan inte skapa rekursiva konton."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9306,6 +9312,12 @@ msgstr "Fakturarader"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4094,6 +4094,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9169,6 +9175,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4213,6 +4213,12 @@ msgstr "Closing balance based on cashBox"
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9470,6 +9476,12 @@ msgstr "Fatura Kalemleri"
msgid "Error ! You can not create recursive account templates."
msgstr "Error ! You can not create recursive account templates."
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4096,6 +4096,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9175,6 +9181,12 @@ msgstr "Рядки інвойса"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4242,6 +4242,12 @@ msgstr "Closing balance based on cashBox"
msgid "Error ! You can not create recursive accounts."
msgstr "Lỗi ! Bạn không thể tạo các tài khoản đệ quy."
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9560,6 +9566,12 @@ msgstr "Invoice Lines"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4099,6 +4099,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr "错误!你不能创建递归的科目"
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9178,6 +9184,12 @@ msgstr "发票行"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4095,6 +4095,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9170,6 +9176,12 @@ msgstr ""
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -4094,6 +4094,12 @@ msgstr ""
msgid "Error ! You can not create recursive accounts."
msgstr ""
#. module: account
#: constraint:account.account:0
msgid "You cannot create an account! \n"
"Make sure if the account has children then it should be type \"View\"!"
msgstr ""
#. module: account
#: view:account.subscription.generate:0
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
@ -9169,6 +9175,12 @@ msgstr "发票行"
msgid "Error ! You can not create recursive account templates."
msgstr ""
#. module: account
#: constraint:account.account.template:0
msgid "You cannot create an account template! \n"
"Make sure if the account template has parent then it should be type \"View\"! "
msgstr ""
#. module: account
#: view:account.subscription:0
msgid "Recurring"

View File

@ -27,7 +27,7 @@ class account_fiscal_position(osv.osv):
_name = 'account.fiscal.position'
_description = 'Fiscal Position'
_columns = {
'name': fields.char('Fiscal Position', size=64, translate=True, required=True),
'name': fields.char('Fiscal Position', size=64, required=True),
'company_id': fields.many2one('res.company', 'Company'),
'account_ids': fields.one2many('account.fiscal.position.account', 'position_id', 'Account Mapping'),
'tax_ids': fields.one2many('account.fiscal.position.tax', 'position_id', 'Tax Mapping'),
@ -189,4 +189,4 @@ class res_partner(osv.osv):
res_partner()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -112,7 +112,8 @@ class account_balance(report_sxw.rml_parse, common_report_header):
ctx['fiscalyear'] = form['fiscalyear_id']
if form['filter'] == 'filter_period':
ctx['periods'] = form['periods']
ctx['period_from'] = form['period_from']
ctx['period_to'] = form['period_to']
elif form['filter'] == 'filter_date':
ctx['date_from'] = form['date_from']
ctx['date_to'] = form['date_to']

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:46+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:46+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:28+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:28+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:46+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:46+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:28+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:28+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:46+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:46+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:29+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:29+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:48+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:48+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:29+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:29+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:49+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:49+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:30+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:30+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:49+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:49+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:30+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:30+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:49+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:49+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:30+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:30+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:50+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:50+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:31+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:31+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:51+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:51+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:32+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:32+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:51+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:51+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:33+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:33+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:52+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:52+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:33+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:33+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:52+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:52+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:34+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:34+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:53+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:53+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:34+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:34+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -21,7 +21,7 @@ msgid "Unreconciliation transactions"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:259
#: code:addons/account_voucher/account_voucher.py:242
#, python-format
msgid "Write-Off"
msgstr ""
@ -53,7 +53,7 @@ msgid "Group By..."
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:607
#: code:addons/account_voucher/account_voucher.py:591
#, python-format
msgid "Cannot delete Voucher(s) which are already opened or paid !"
msgstr ""
@ -85,7 +85,7 @@ msgid "Bill Payment"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:753
#: code:addons/account_voucher/account_voucher.py:741
#, python-format
msgid "You have to configure account base code and account tax code on the '%s' tax!"
msgstr ""
@ -198,11 +198,6 @@ msgstr ""
msgid "Due Date"
msgstr ""
#. module: account_voucher
#: constraint:account.move.line:0
msgid "You can not create move line on closed account."
msgstr ""
#. module: account_voucher
#: field:account.voucher,narration:0
msgid "Notes"
@ -240,11 +235,6 @@ msgstr ""
msgid "Payment Options"
msgstr ""
#. module: account_voucher
#: sql_constraint:account.move.line:0
msgid "Wrong credit or debit value in accounting entry !"
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
msgid "Other Information"
@ -300,16 +290,8 @@ msgid "Analytic Account"
msgstr ""
#. module: account_voucher
#: constraint:account.move.line:0
msgid "You can not create move line on receivable/payable account without partner"
msgstr ""
#. module: account_voucher
#: help:account.voucher,state:0
msgid " * The 'Draft' state is used when a user is encoding a new and unconfirmed Voucher. \n"
"* The 'Pro-forma' when voucher is in Pro-forma state,voucher does not have an voucher number. \n"
"* The 'Posted' state is used when user create voucher,a voucher number is generated and voucher entries are created in account \n"
"* The 'Cancelled' state is used when user cancel voucher."
#: view:account.voucher:0
msgid "Payment Information"
msgstr ""
#. module: account_voucher
@ -394,7 +376,7 @@ msgid "Voucher Entries"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:656
#: code:addons/account_voucher/account_voucher.py:640
#, python-format
msgid "Error !"
msgstr ""
@ -422,7 +404,7 @@ msgid "Sales Receipt"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:607
#: code:addons/account_voucher/account_voucher.py:591
#, python-format
msgid "Invalid action !"
msgstr ""
@ -442,11 +424,6 @@ msgstr ""
msgid "Unreconciliation"
msgstr ""
#. module: account_voucher
#: field:account.voucher,tax_amount:0
msgid "Tax Amount"
msgstr ""
#. module: account_voucher
#: view:sale.receipt.report:0
#: field:sale.receipt.report,due_delay:0
@ -461,14 +438,14 @@ msgid "Pay Invoice"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:753
#: code:addons/account_voucher/account_voucher.py:741
#, python-format
msgid "No Account Base Code and Account Tax Code!"
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
msgid "Payment Information"
#: field:account.voucher,tax_amount:0
msgid "Tax Amount"
msgstr ""
#. module: account_voucher
@ -698,7 +675,7 @@ msgid "Credit"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:656
#: code:addons/account_voucher/account_voucher.py:640
#, python-format
msgid "Please define a sequence on the journal !"
msgstr ""
@ -741,8 +718,11 @@ msgid "Bill Date"
msgstr ""
#. module: account_voucher
#: constraint:account.move.line:0
msgid "Company must be same for its related account and period."
#: help:account.voucher,state:0
msgid " * The 'Draft' state is used when a user is encoding a new and unconfirmed Voucher. \n"
"* The 'Pro-forma' when voucher is in Pro-forma state,voucher does not have an voucher number. \n"
"* The 'Posted' state is used when user create voucher,a voucher number is generated and voucher entries are created in account \n"
"* The 'Cancelled' state is used when user cancel voucher."
msgstr ""
#. module: account_voucher
@ -812,7 +792,6 @@ msgstr ""
#. module: account_voucher
#: view:account.voucher:0
#: field:account.voucher,move_ids:0
#: model:ir.model,name:account_voucher.model_account_move_line
msgid "Journal Items"
msgstr ""
@ -824,11 +803,6 @@ msgstr ""
msgid "Customer Payment"
msgstr ""
#. module: account_voucher
#: field:account.move.line,amount_unreconciled:0
msgid "Unreconciled Amount"
msgstr ""
#. module: account_voucher
#: view:account.statement.from.invoice:0
#: model:ir.actions.act_window,name:account_voucher.action_view_account_statement_from_invoice
@ -1014,8 +988,3 @@ msgstr ""
msgid "Total"
msgstr ""
#. module: account_voucher
#: constraint:account.move.line:0
msgid "You can not create move line on view account."
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:53+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:53+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:35+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:35+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -4,15 +4,15 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-12-10 14:48:44+0000\n"
"PO-Revision-Date: 2010-12-10 15:49+0100\n"
"Last-Translator: \n"
"POT-Creation-Date: 2011-01-11 11:14:35+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:35+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: anonymization
@ -20,6 +20,11 @@ msgstr ""
msgid "ir.model.fields.anonymize.wizard"
msgstr ""
#. module: anonymization
#: field:ir.model.fields.anonymization,field_name:0
msgid "Field Name"
msgstr ""
#. module: anonymization
#: field:ir.model.fields.anonymization,field_id:0
msgid "Field"
@ -53,6 +58,7 @@ msgstr ""
#. module: anonymization
#: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymization_tree
#: view:ir.model.fields.anonymization:0
#: model:ir.ui.menu,name:anonymization.menu_administration_anonymization_fields
msgid "Anonymized Fields"
msgstr ""
@ -63,8 +69,10 @@ msgid "Database anonymization"
msgstr ""
#. module: anonymization
#: selection:ir.model.fields.anonymization.history,direction:0
msgid "clear -> anonymized"
#: code:addons/anonymization/anonymization.py:55
#: sql_constraint:ir.model.fields.anonymization:0
#, python-format
msgid "You cannot have two records having the same model and the same field"
msgstr ""
#. module: anonymization
@ -125,6 +133,11 @@ msgstr ""
msgid "Clear"
msgstr ""
#. module: anonymization
#: selection:ir.model.fields.anonymization.history,direction:0
msgid "clear -> anonymized"
msgstr ""
#. module: anonymization
#: view:ir.model.fields.anonymize.wizard:0
#: field:ir.model.fields.anonymize.wizard,summary:0
@ -138,8 +151,7 @@ msgstr ""
#. module: anonymization
#: model:ir.module.module,description:anonymization.module_meta_information
msgid ""
"\n"
msgid "\n"
"This module allows you to anonymize a database.\n"
" "
msgstr ""
@ -154,6 +166,17 @@ msgstr ""
msgid "Exception occured"
msgstr ""
#. module: anonymization
#: selection:ir.model.fields.anonymization,state:0
#: selection:ir.model.fields.anonymize.wizard,state:0
msgid "Not Existing"
msgstr ""
#. module: anonymization
#: field:ir.model.fields.anonymization,model_name:0
msgid "Object Name"
msgstr ""
#. module: anonymization
#: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymization_history_tree
#: view:ir.model.fields.anonymization.history:0

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:54+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:54+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:36+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:57+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:57+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:38+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:38+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:56:57+0000\n"
"PO-Revision-Date: 2011-01-03 16:56:57+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:38+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:38+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:13+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:13+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:51+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:51+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:14+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:14+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:53+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:53+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -254,7 +254,7 @@ msgid "Invitation Detail"
msgstr ""
#. module: base_calendar
#: code:addons/base_calendar/base_calendar.py:1354
#: code:addons/base_calendar/base_calendar.py:1356
#: code:addons/base_calendar/wizard/base_calendar_invite_attendee.py:96
#: code:addons/base_calendar/wizard/base_calendar_invite_attendee.py:143
#: code:addons/base_calendar/wizard/base_calendar_set_exrule.py:128
@ -587,6 +587,12 @@ msgstr ""
msgid "Required Reply"
msgstr ""
#. module: base_calendar
#: selection:calendar.event,end_type:0
#: selection:calendar.todo,end_type:0
msgid "Forever"
msgstr ""
#. module: base_calendar
#: selection:calendar.attendee,role:0
msgid "Participation required"
@ -1031,8 +1037,6 @@ msgstr ""
#. module: base_calendar
#: field:base.calendar.set.exrule,interval:0
#: field:calendar.alarm,trigger_interval:0
#: field:calendar.event,interval:0
#: field:calendar.todo,interval:0
#: field:res.alarm,trigger_interval:0
msgid "Interval"
msgstr ""
@ -1106,6 +1110,12 @@ msgstr ""
msgid "Defines the action to be invoked when an alarm is triggered"
msgstr ""
#. module: base_calendar
#: selection:calendar.event,end_type:0
#: selection:calendar.todo,end_type:0
msgid "End date"
msgstr ""
#. module: base_calendar
#: view:calendar.event:0
msgid "Search Events"
@ -1238,6 +1248,18 @@ msgstr ""
msgid "Tentative"
msgstr ""
#. module: base_calendar
#: field:calendar.event,interval:0
#: field:calendar.todo,interval:0
msgid "Repeat every"
msgstr ""
#. module: base_calendar
#: selection:calendar.event,end_type:0
#: selection:calendar.todo,end_type:0
msgid "Fix amout of times"
msgstr ""
#. module: base_calendar
#: field:calendar.event,recurrency:0
#: field:calendar.todo,recurrency:0
@ -1445,11 +1467,6 @@ msgstr ""
msgid "Sent By User"
msgstr ""
#. module: base_calendar
#: view:calendar.event:0
msgid "Repeat interval"
msgstr ""
#. module: base_calendar
#: selection:base.calendar.set.exrule,month_list:0
#: selection:calendar.event,month_list:0
@ -1570,6 +1587,12 @@ msgstr ""
msgid "Free/Busy"
msgstr ""
#. module: base_calendar
#: field:calendar.event,end_type:0
#: field:calendar.todo,end_type:0
msgid "Way to end reccurency"
msgstr ""
#. module: base_calendar
#: field:calendar.alarm,duration:0
#: field:calendar.alarm,trigger_duration:0

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:15+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:15+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:53+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:53+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:15+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:15+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:54+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:54+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -31,7 +31,7 @@ msgid "The chosen company is not in the allowed companies for this user"
msgstr ""
#. module: base_crypt
#: code:addons/base_crypt/crypt.py:134
#: code:addons/base_crypt/crypt.py:132
#, python-format
msgid "Please specify the password !"
msgstr ""
@ -42,7 +42,7 @@ msgid "Base - Password Encryption"
msgstr ""
#. module: base_crypt
#: code:addons/base_crypt/crypt.py:134
#: code:addons/base_crypt/crypt.py:132
#, python-format
msgid "Error"
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:16+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:16+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:54+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:54+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:16+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:16+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:54+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:54+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:17+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:17+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:55+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:55+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:17+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:17+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:55+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:55+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:17+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:17+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:56+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:56+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -47,7 +47,7 @@ msgid "Graph Mode"
msgstr ""
#. module: base_report_creator
#: code:addons/base_report_creator/base_report_creator.py:321
#: code:addons/base_report_creator/base_report_creator.py:320
#, python-format
msgid "These is/are model(s) (%s) in selection which is/are not related to any other model"
msgstr ""
@ -116,7 +116,7 @@ msgid "Custom Reports"
msgstr ""
#. module: base_report_creator
#: code:addons/base_report_creator/base_report_creator.py:321
#: code:addons/base_report_creator/base_report_creator.py:320
#, python-format
msgid "No Related Models!!"
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:18+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:18+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:56+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:56+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:18+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:18+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:57+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:57+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:19+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:19+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:57+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:57+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:19+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:19+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:58+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:58+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:19+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:19+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:58+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:58+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:20+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:20+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:58+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:58+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:21+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:21+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:59+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:59+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -20,6 +20,11 @@ msgstr ""
msgid "Value Mapping"
msgstr ""
#. module: caldav
#: help:caldav.browse,url:0
msgid "Url of the caldav server, use for synchronization"
msgstr ""
#. module: caldav
#: field:basic.calendar.alias,name:0
msgid "Filename"
@ -57,10 +62,11 @@ msgid "Can not map a field more than once"
msgstr ""
#. module: caldav
#: selection:basic.calendar,type:0
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "TODO"
#: code:addons/caldav/calendar.py:772
#: code:addons/caldav/calendar.py:861
#: code:addons/caldav/wizard/calendar_event_import.py:63
#, python-format
msgid "Warning !"
msgstr ""
#. module: caldav
@ -68,11 +74,31 @@ msgstr ""
msgid "Object"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
msgid "Todo"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_user_preference
msgid "User preference Form"
msgstr ""
#. module: caldav
#: field:user.preference,service:0
msgid "Services"
msgstr ""
#. module: caldav
#: selection:basic.calendar.fields,fn:0
msgid "Expression as constant"
msgstr ""
#. module: caldav
#: selection:user.preference,device:0
msgid "Evolution"
msgstr ""
#. module: caldav
#: view:calendar.event.import:0
#: view:calendar.event.subscribe:0
@ -90,6 +116,11 @@ msgstr ""
msgid "File name"
msgstr ""
#. module: caldav
#: field:caldav.browse,url:0
msgid "Caldav Server"
msgstr ""
#. module: caldav
#: code:addons/caldav/wizard/calendar_event_subscribe.py:59
#, python-format
@ -97,11 +128,72 @@ msgid "Error!"
msgstr ""
#. module: caldav
#: code:addons/caldav/calendar.py:772
#: code:addons/caldav/calendar.py:861
#: code:addons/caldav/wizard/calendar_event_import.py:63
#: help:caldav.browse,caldav_doc_file:0
msgid "download full caldav Documentation."
msgstr ""
#. module: caldav
#: selection:user.preference,device:0
msgid "iPhone"
msgstr ""
#. module: caldav
#: code:addons/caldav/wizard/caldav_browse.py:32
#, python-format
msgid "Warning !"
msgid "\n"
" * Webdav server that provides remote access to calendar\n"
" * Synchronisation of calendar using WebDAV\n"
" * Customize calendar event and todo attribute with any of OpenERP model\n"
" * Provides iCal Import/Export functionality\n"
"\n"
" To access Calendars using CalDAV clients, point them to:\n"
" http://HOSTNAME:PORT/webdav/DATABASE_NAME/calendars/users/USERNAME/c\n"
"\n"
" To access OpenERP Calendar using WebCal to remote site use the URL like:\n"
" http://HOSTNAME:PORT/webdav/DATABASE_NAME/Calendars/CALENDAR_NAME.ics\n"
"\n"
" Where,\n"
" HOSTNAME: Host on which OpenERP server(With webdav) is running\n"
" PORT : Port on which OpenERP server is running (By Default : 8069)\n"
" DATABASE_NAME: Name of database on which OpenERP Calendar is created\n"
" CALENDAR_NAME: Name of calendar to access\n"
" "
msgstr ""
#. module: caldav
#: code:addons/caldav/wizard/caldav_browse.py:147
#, python-format
msgid "\n"
"Prerequire\n"
"----------\n"
"If you are using thunderbird, first you need to install the lightning module\n"
"http://www.mozilla.org/projects/calendar/lightning/\n"
"\n"
"configuration\n"
"-------------\n"
"\n"
"1. Go to Calendar View\n"
"\n"
"2. File -> New Calendar\n"
"\n"
"3. Chosse \"On the Network\"\n"
"\n"
"4. for format choose CalDav\n"
" and as location the url given above (ie : http://host.com:8069/webdav/db/calendars/users/demo/c/Meetings)\n"
" \n"
"5. Choose a name and a color for the Calendar, and we advice you to uncheck \"alarm\"\n"
"\n"
"6. Then put your openerp login and password (to give the password only check the box \"Use password Manager to remember this password\"\n"
"\n"
"7. Then Finish, your meetings should appear now in your calendar view\n"
""
msgstr ""
#. module: caldav
#: selection:basic.calendar,type:0
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "TODO"
msgstr ""
#. module: caldav
@ -140,6 +232,7 @@ msgstr ""
#. module: caldav
#: view:calendar.event.import:0
#: view:calendar.event.subscribe:0
#: view:user.preference:0
msgid "_Cancel"
msgstr ""
@ -158,6 +251,7 @@ msgstr ""
#. module: caldav
#: field:document.directory,calendar_collection:0
#: field:user.preference,collection:0
msgid "Calendar Collection"
msgstr ""
@ -166,6 +260,11 @@ msgstr ""
msgid "Error! You can not create recursive Directories."
msgstr ""
#. module: caldav
#: view:user.preference:0
msgid "_Open"
msgstr ""
#. module: caldav
#: field:basic.calendar,type:0
#: field:basic.calendar.attributes,type:0
@ -185,11 +284,38 @@ msgstr ""
msgid "Error !"
msgstr ""
#. module: caldav
#: code:addons/caldav/wizard/caldav_browse.py:128
#, python-format
msgid "\n"
" 1. Go to Calendar View\n"
"\n"
" 2. File -> New -> Calendar\n"
"\n"
" 3. Fill the form \n"
" - type : CalDav\n"
" - name : Whaterver you want (ie : Meeting)\n"
" - url : http://HOST:PORT/webdav/DB_NAME/calendars/users/USER/c/Meetings (ie : http://localhost:8069/webdav/db_1/calendars/users/demo/c/Meetings) the one given on the top of this window\n"
" - uncheck \"User SSL\"\n"
" - Username : Your username (ie : Demo)\n"
" - Refresh : everytime you want that evolution synchronize the data with the server\n"
"\n"
" 4. Click ok and give your openerp password\n"
"\n"
" 5. A new calendar named with the name you gave should appear on the left side. \n"
" "
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_attributes
msgid "Calendar attributes"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_caldav_browse
msgid "Caldav Browse"
msgstr ""
#. module: caldav
#: model:ir.module.module,description:caldav.module_meta_information
msgid "\n"
@ -213,6 +339,11 @@ msgid "\n"
""
msgstr ""
#. module: caldav
#: selection:user.preference,device:0
msgid "Android based device"
msgstr ""
#. module: caldav
#: field:basic.calendar,create_date:0
msgid "Created Date"
@ -233,11 +364,21 @@ msgstr ""
msgid "Provide path for remote calendar"
msgstr ""
#. module: caldav
#: view:caldav.browse:0
msgid "_Ok"
msgstr ""
#. module: caldav
#: field:basic.calendar.lines,domain:0
msgid "Domain"
msgstr ""
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "_Subscribe"
msgstr ""
#. module: caldav
#: field:basic.calendar,user_id:0
msgid "Owner"
@ -248,12 +389,14 @@ msgstr ""
#: field:basic.calendar.alias,cal_line_id:0
#: field:basic.calendar.lines,calendar_id:0
#: model:ir.ui.menu,name:caldav.menu_calendar
#: field:user.preference,calendar:0
msgid "Calendar"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
msgid "Todo"
#: code:addons/caldav/calendar.py:41
#, python-format
msgid "Please install python-vobject from http://vobject.skyhouseconsulting.com/"
msgstr ""
#. module: caldav
@ -262,6 +405,11 @@ msgstr ""
msgid "Invalid format of the ics, file can not be imported"
msgstr ""
#. module: caldav
#: selection:user.preference,service:0
msgid "CalDAV"
msgstr ""
#. module: caldav
#: field:basic.calendar.fields,field_id:0
msgid "OpenObject Field"
@ -277,6 +425,11 @@ msgstr ""
msgid "Message..."
msgstr ""
#. module: caldav
#: selection:user.preference,device:0
msgid "Other"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
#: field:basic.calendar,has_webcal:0
@ -320,11 +473,100 @@ msgstr ""
msgid "Write Date"
msgstr ""
#. module: caldav
#: code:addons/caldav/wizard/caldav_browse.py:104
#, python-format
msgid "\n"
"Prerequire\n"
"----------\n"
"There is no buit-in way to synchronize calendar with caldav.\n"
"So you need to install a third part software : Calendar (CalDav) \n"
"for now it's the only one\n"
"\n"
"configuration\n"
"-------------\n"
"\n"
"1. Open Calendar Sync\n"
" I'll get an interface with 2 tabs\n"
" Stay on the first one\n"
" \n"
"2. CaDAV Calendar URL : put the URL given above (ie : http://host.com:8069/webdav/db/calendars/users/demo/c/Meetings)\n"
"\n"
"3. Put your openerp username and password\n"
"\n"
"4. If your server don't use SSL, you'll get a warnign, say \"Yes\"\n"
"\n"
"5. Then you can synchronize manually or custom the settings to synchronize every x minutes.\n"
" \n"
" "
msgstr ""
#. module: caldav
#: code:addons/caldav/wizard/caldav_browse.py:53
#, python-format
msgid "\n"
" For SSL specific configuration see the documentation below\n"
"\n"
"Now, to setup the calendars, you need to:\n"
"\n"
"1. Click on the \"Settings\" and go to the \"Mail, Contacts, Calendars\" page.\n"
"2. Go to \"Add account...\"\n"
"3. Click on \"Other\"\n"
"4. From the \"Calendars\" group, select \"Add CalDAV Account\"\n"
"\n"
"5. Enter the host's name \n"
" (ie : if the url is http://openerp.com:8069/webdav/db_1/calendars/ , openerp.com is the host)\n"
"\n"
"6. Fill Username and password with your openerp login and password\n"
"\n"
"7. As a description, you can either leave the server's name or\n"
" something like \"OpenERP calendars\".\n"
"\n"
"9. If you are not using a SSL server, you'll get an error, do not worry and push \"Continue\"\n"
"\n"
"10. Then click to \"Advanced Settings\" to specify the right\n"
" ports and paths. \n"
" \n"
"11. Specify the port for the OpenERP server: 8071 for SSL, 8069 without.\n"
"\n"
"12. Set the \"Account URL\" to the right path of the OpenERP webdav:\n"
" the url given by the wizard (ie : http://my.server.ip:8069/webdav/dbname/calendars/ )\n"
"\n"
"11. Click on Done. The phone will hopefully connect to the OpenERP server\n"
" and verify it can use the account.\n"
"\n"
"12. Go to the main menu of the iPhone and enter the Calendar application.\n"
" Your OpenERP calendars will be visible inside the selection of the\n"
" \"Calendars\" button.\n"
" Note that when creating a new calendar entry, you will have to specify\n"
" which calendar it should be saved at.\n"
"\n"
"\n"
"\n"
"IF you need SSL (and your certificate is not a verified one, as usual),\n"
"then you first will need to let the iPhone trust that. Follow these\n"
"steps:\n"
"\n"
" s1. Open Safari and enter the https location of the OpenERP server:\n"
" https://my.server.ip:8071/\n"
" (assuming you have the server at \"my.server.ip\" and the HTTPS port\n"
" is the default 8071)\n"
" s2. Safari will try to connect and issue a warning about the certificate\n"
" used. Inspect the certificate and click \"Accept\" so that iPhone\n"
" now trusts it. \n"
" "
msgstr ""
#. module: caldav
#: sql_constraint:document.directory:0
msgid "The directory name must be unique !"
msgstr ""
#. module: caldav
#: view:user.preference:0
msgid "User Preference"
msgstr ""
#. module: caldav
#: code:addons/caldav/wizard/calendar_event_subscribe.py:59
#, python-format
@ -357,11 +599,21 @@ msgstr ""
msgid "Select ICS file"
msgstr ""
#. module: caldav
#: field:caldav.browse,caldav_doc_file:0
msgid "Caldav Document"
msgstr ""
#. module: caldav
#: field:basic.calendar.lines,mapping_ids:0
msgid "Fields Mapping"
msgstr ""
#. module: caldav
#: view:caldav.browse:0
msgid "Browse caldav"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar
msgid "basic.calendar"
@ -373,8 +625,8 @@ msgid "Other Info"
msgstr ""
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "_Subscribe"
#: field:user.preference,device:0
msgid "Software/Devices"
msgstr ""
#. module: caldav
@ -390,6 +642,8 @@ msgstr ""
#. module: caldav
#: view:basic.calendar:0
#: field:basic.calendar,description:0
#: view:caldav.browse:0
#: field:caldav.browse,description:0
msgid "Description"
msgstr ""
@ -470,13 +724,13 @@ msgid "vobject Import Error!"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
msgid "MY"
#: field:calendar.event.export,file_path:0
msgid "Save ICS file"
msgstr ""
#. module: caldav
#: field:calendar.event.export,file_path:0
msgid "Save ICS file"
#: selection:user.preference,device:0
msgid "Sunbird/Thunderbird"
msgstr ""
#. module: caldav
@ -495,9 +749,8 @@ msgid "Color"
msgstr ""
#. module: caldav
#: code:addons/caldav/calendar.py:41
#, python-format
msgid "Please install python-vobject from http://vobject.skyhouseconsulting.com/"
#: view:basic.calendar:0
msgid "MY"
msgstr ""
#. module: caldav

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc2\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-03 16:57:21+0000\n"
"PO-Revision-Date: 2011-01-03 16:57:21+0000\n"
"POT-Creation-Date: 2011-01-11 11:14:59+0000\n"
"PO-Revision-Date: 2011-01-11 11:14:59+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

Some files were not shown because too many files have changed in this diff Show More