[MERGE] Resynchronized with trunk.

bzr revid: nicolas.vanhoren@openerp.com-20110325102413-7xjgusazsow7nwaf
This commit is contained in:
niv-openerp 2011-03-25 11:24:13 +01:00
commit 55a226ef3a
965 changed files with 71639 additions and 14196 deletions

View File

@ -22,7 +22,7 @@
"name" : "Accounting and Financial Management",
"version" : "1.1",
"author" : "OpenERP SA",
"category": 'Generic Modules/Accounting',
"category": 'Finance',
"description": """
Accounting and Financial Management.
====================================

View File

@ -641,6 +641,7 @@ class account_journal(osv.osv):
default = default.copy()
default['code'] = (journal['code'] or '') + '(copy)'
default['name'] = (journal['name'] or '') + '(copy)'
default['sequence_id'] = False
return super(account_journal, self).copy(cr, uid, id, default, context=context)
def write(self, cr, uid, ids, vals, context=None):

View File

@ -303,8 +303,7 @@ class account_bank_statement(osv.osv):
st = self.browse(cr, uid, st_id, context=context)
if not (abs((st.balance_end or 0.0) - st.balance_end_real) < 0.0001):
raise osv.except_osv(_('Error !'),
_('The statement balance is incorrect !\n') +
_('The expected balance (%.2f) is different than the computed one. (%.2f)') % (st.balance_end_real, st.balance_end))
_('The statement balance is incorrect !\nThe expected balance (%.2f) is different than the computed one. (%.2f)') % (st.balance_end_real, st.balance_end))
return True
def statement_close(self, cr, uid, ids, journal_type='bank', context=None):

View File

@ -172,7 +172,7 @@
<field name="reference" nolabel="1"/>
<field name="date_due"/>
<field name="check_total" required="2"/>
<field colspan="4" default_get="{'check_total': check_total, 'invoice_line': invoice_line, 'address_invoice_id': address_invoice_id, 'partner_id': partner_id, 'price_type': 'price_type' in dir() and price_type or False}" name="invoice_line" nolabel="1">
<field colspan="4" default_get="{'check_total': check_total, 'invoice_line': invoice_line, 'address_invoice_id': address_invoice_id, 'partner_id': partner_id, 'price_type': 'price_type' in dir() and price_type or False}" name="invoice_line" context="{'type': type}" nolabel="1">
<tree string="Invoice lines">
<field name="product_id" on_change="product_id_change(product_id, uos_id, quantity, name, parent.type, parent.partner_id, parent.fiscal_position, price_unit, parent.address_invoice_id, parent.currency_id, {'company_id': parent.company_id})"/>
<field domain="[('company_id', '=', parent.company_id), ('journal_id', '=', parent.journal_id), ('type', '&lt;&gt;', 'view')]" name="account_id" on_change="onchange_account_id(parent.fiscal_position,account_id)"/>
@ -280,7 +280,7 @@
<field domain="[('company_id', '=', company_id),('type','=', 'receivable')]" name="account_id" groups="account.group_account_user"/>
<field name="name"/>
<field name="payment_term" widget="selection"/>
<field colspan="4" name="invoice_line" nolabel="1" widget="one2many_list"/>
<field colspan="4" name="invoice_line" nolabel="1" widget="one2many_list" context="{'type': type}"/>
<group col="1" colspan="2">
<field name="tax_line" nolabel="1">
<tree editable="bottom" string="Taxes">
@ -506,12 +506,12 @@
</record>
<menuitem action="action_invoice_tree4" id="menu_action_invoice_tree4" parent="menu_finance_payables"/>
<act_window context="{'search_default_partner_id':[active_id]}" id="act_res_partner_2_account_invoice_opened" name="Invoices" res_model="account.invoice" src_model="res.partner"/>
<act_window context="{'search_default_partner_id':[active_id], 'default_partner_id': active_id}" id="act_res_partner_2_account_invoice_opened" name="Invoices" res_model="account.invoice" src_model="res.partner"/>
<act_window
id="act_account_journal_2_account_invoice_opened"
name="Unpaid Invoices"
context="{'search_default_journal_id':active_id, 'search_default_unpaid':1,}"
context="{'search_default_journal_id': [active_id], 'search_default_unpaid':1, 'default_journal_id': active_id}"
res_model="account.invoice"
src_model="account.journal"/>

View File

@ -1498,7 +1498,7 @@
<act_window
id="act_account_move_to_account_move_line_open"
name="Journal Items"
context="{'search_default_move_id':[active_id]}"
context="{'search_default_move_id':[active_id], 'default_move_id': active_id}"
res_model="account.move.line"
src_model="account.move"/>
@ -1540,7 +1540,7 @@
<act_window
id="act_account_acount_move_line_open"
name="Entries"
context="{'search_default_account_id':[active_id], 'search_default_unreconciled':0}"
context="{'search_default_account_id':[active_id], 'search_default_unreconciled':0, 'default_account_id': active_id}"
res_model="account.move.line"
src_model="account.account"/>
@ -1548,7 +1548,7 @@
id="act_account_acount_move_line_open_unreconciled"
name="Unreconciled Entries"
res_model="account.move.line"
context="{'search_default_account_id':[active_id], 'search_default_unreconciled':1,}"
context="{'search_default_account_id':[active_id], 'search_default_unreconciled':1, 'default_account_id': active_id}"
src_model="account.account"/>
<act_window domain="[('reconcile_id', '=', active_id)]" id="act_account_acount_move_line_reconcile_open" name="Reconciled entries" res_model="account.move.line" src_model="account.move.reconcile"/>
@ -1993,20 +1993,20 @@
<act_window
id="act_account_journal_2_account_bank_statement"
name="Bank statements"
context="{'search_default_journal_id':active_id,}"
context="{'search_default_journal_id': active_id, 'default_journal_id': active_id}"
res_model="account.bank.statement"
src_model="account.journal"/>
<act_window
id="act_account_journal_2_account_move_line"
name="Journal Items"
context="{'search_default_journal_id':active_id,}"
context="{'search_default_journal_id':active_id, 'default_journal_id': active_id}"
res_model="account.move.line"
src_model="account.journal"/>
<act_window context="{'search_default_reconcile_id':False, 'search_default_partner_id':[active_id]}" domain="[('account_id.reconcile', '=', True),('account_id.type', 'in', ['receivable', 'payable'])]" id="act_account_partner_account_move_all" name="Receivables &amp; Payables" res_model="account.move.line" src_model="res.partner" groups="base.group_extended"/>
<act_window context="{'search_default_reconcile_id':False, 'search_default_partner_id':[active_id], 'default_partner_id': active_id}" domain="[('account_id.reconcile', '=', True),('account_id.type', 'in', ['receivable', 'payable'])]" id="act_account_partner_account_move_all" name="Receivables &amp; Payables" res_model="account.move.line" src_model="res.partner" groups="base.group_extended"/>
<act_window context="{'search_default_partner_id':[active_id]}" id="act_account_partner_account_move" name="Journal Items" res_model="account.move.line" src_model="res.partner" groups="account.group_account_user"/>
<act_window context="{'search_default_partner_id':[active_id], 'default_partner_id': active_id}" id="act_account_partner_account_move" name="Journal Items" res_model="account.move.line" src_model="res.partner" groups="account.group_account_user"/>
<record id="view_account_addtmpl_wizard_form" model="ir.ui.view">
<field name="name">Create Account</field>

View File

@ -674,13 +674,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
""
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2459,9 +2452,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The expected balance (%.2f) is different than the computed one. (%.2f)"
msgid "The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
#. module: account
@ -2681,6 +2675,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -3997,12 +3997,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5238,9 +5232,9 @@ msgid "As soon as the reconciliation is done, the invoice's state turns to “do
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-20 04:52+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:47+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -708,12 +708,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2574,9 +2568,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2813,6 +2808,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4183,12 +4184,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5478,9 +5473,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

File diff suppressed because it is too large Load Diff

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:18+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:47+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:18+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:47+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -714,12 +714,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2589,9 +2583,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2835,6 +2830,12 @@ msgstr "Osnovni konto porezne prijave."
msgid "View"
msgstr "Prikaz"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4211,12 +4212,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Saldo računa -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5510,9 +5505,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -7,15 +7,15 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-11 11:14+0000\n"
"PO-Revision-Date: 2010-12-11 13:09+0000\n"
"PO-Revision-Date: 2011-03-20 18:47+0000\n"
"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
"<jesteve@zikzakmedia.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:19+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-21 04:46+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -716,12 +716,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "El balanç de l'extracte bancari és incorrecte!\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -1806,7 +1800,7 @@ msgstr ""
#. module: account
#: constraint:res.company:0
msgid "Error! You can not create recursive companies."
msgstr ""
msgstr "Error! No podeu crear companyies recursives."
#. module: account
#: view:account.analytic.account:0
@ -2598,11 +2592,12 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "El balanç previst (%.2f) és diferent del calculat. (%.2f)"
msgstr ""
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2847,6 +2842,12 @@ msgstr "El compte base de la declaració d'impostos."
msgid "View"
msgstr "Vista"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4229,12 +4230,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Balanç compte -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -4454,7 +4449,7 @@ msgstr ""
#: view:account.invoice.cancel:0
#: view:account.invoice.confirm:0
msgid "Close"
msgstr "Tancat"
msgstr "Tanca"
#. module: account
#: field:account.bank.statement.line,move_ids:0
@ -5537,9 +5532,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
@ -9964,6 +9959,11 @@ msgstr ""
#~ msgid "Invoice import"
#~ msgstr "Import factura"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "El balanç previst (%.2f) és diferent del calculat. (%.2f)"
#~ msgid "Ending Balance"
#~ msgstr "Saldo final"
@ -10933,6 +10933,10 @@ msgstr ""
#~ msgid "Fiscal Position Template Tax Mapping"
#~ msgstr "Mapa impostos plantilla posició fiscal"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "El balanç de l'extracte bancari és incorrecte!\n"
#, python-format
#~ msgid ""
#~ "No period defined for this date !\n"

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-27 04:36+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:48+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -712,12 +712,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2578,9 +2572,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2817,6 +2812,12 @@ msgstr ""
msgid "View"
msgstr "Pohled"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4187,12 +4188,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5482,9 +5477,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:19+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:48+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2582,12 +2576,12 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
"Den forventede balance (%.2f) er forskellig fra den beregnede. (%.2f)"
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2828,6 +2822,12 @@ msgstr ""
msgid "View"
msgstr "Vis"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4198,12 +4198,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5495,9 +5489,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
@ -9728,6 +9722,12 @@ msgstr ""
#~ msgid "Invoice import"
#~ msgstr "Faktura import"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr ""
#~ "Den forventede balance (%.2f) er forskellig fra den beregnede. (%.2f)"
#~ msgid "Continue"
#~ msgstr "Fortsæt"

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-02-15 04:37+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:49+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -757,12 +757,6 @@ msgstr "Schecks"
msgid "Partners Reconciled Today"
msgstr "Heute ausgeglichene Partner"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "Der Saldo für diesen gebuchten Auszug stimmt nicht überein !\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2730,11 +2724,12 @@ msgid "August"
msgstr "August"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "Der erwartete Wert (%.2f) weicht ab von dem berechneten Wert (%.2f)"
msgstr ""
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2990,6 +2985,12 @@ msgstr "Das Basis Konto für die Steuererklärung"
msgid "View"
msgstr "Ansicht"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4441,12 +4442,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Saldo"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr "Rechnung "
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5814,10 +5809,10 @@ msgstr ""
"zu 'Erledigt' ( d.h. Bezahlt)."
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgstr "wurde geprüft und gebucht."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
#: view:account.chart.template:0
@ -10560,6 +10555,11 @@ msgstr ""
#~ msgid "Invoice import"
#~ msgstr "Importiere Rechnungen"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "Der erwartete Wert (%.2f) weicht ab von dem berechneten Wert (%.2f)"
#~ msgid "Ending Balance"
#~ msgstr "Endsaldo"
@ -11888,6 +11888,10 @@ msgstr ""
#~ "Belegen der Finanzbuchhaltung: Rechnung, Gutschrift, Lieferantenzahlung, "
#~ "Bankauszug, etc."
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "Der Saldo für diesen gebuchten Auszug stimmt nicht überein !\n"
#, python-format
#~ msgid "UnknownError"
#~ msgstr "UnbekannterFehler"
@ -11951,6 +11955,10 @@ msgstr ""
#~ "Durch Aktivierung dieser Option, kann die Ansicht dieser Zahlungsbedingung "
#~ "verhindert werden ohne sie zu löschen."
#, python-format
#~ msgid "Invoice "
#~ msgstr "Rechnung "
#~ msgid ""
#~ "Define your company's fiscal year depending on the period you have chosen to "
#~ "follow. A fiscal year is a 1 year period over which a company budgets its "
@ -11996,6 +12004,10 @@ msgstr ""
#~ "Wenn dieses Feld aktiviert ist , kann eine definierte Steuer ausgeblendet "
#~ "werden, ohne diese vollständig zu entfernen."
#, python-format
#~ msgid "is validated."
#~ msgstr "wurde geprüft und gebucht."
#~ msgid ""
#~ "If the active field is set to true, it will allow you to hide the journal "
#~ "period without removing it."

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-25 04:55+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:49+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -741,12 +741,6 @@ msgstr "Επιταγή"
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "Το υπόλοιπο του παραστατικού είναι εσφαλμένο\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2631,13 +2625,12 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
"Το αναμενόμενο ισοζύγιο (%.2f) είναι διαφορετικό απο αυτό που έχει "
"υπολογιστεί. (%.2f)"
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2883,6 +2876,12 @@ msgstr "Ο βασικός λογαριασμός για φορολογική δ
msgid "View"
msgstr "Όψη"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4266,12 +4265,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Account Balance -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5578,9 +5571,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
@ -9898,6 +9891,13 @@ msgstr ""
#~ msgid "Invoice import"
#~ msgstr "Εισαγωγή τιμολογίων"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr ""
#~ "Το αναμενόμενο ισοζύγιο (%.2f) είναι διαφορετικό απο αυτό που έχει "
#~ "υπολογιστεί. (%.2f)"
#~ msgid "Continue"
#~ msgstr "Συνέχεια"
@ -10278,6 +10278,10 @@ msgstr ""
#~ msgid "Statement reconcile line"
#~ msgstr "Γραμμή συμφωνίας παραστατικού"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "Το υπόλοιπο του παραστατικού είναι εσφαλμένο\n"
#~ msgid "Legal Statements"
#~ msgstr "Νομικές Δηλώσεις"

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:26+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:56+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2577,9 +2571,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2816,6 +2811,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4188,12 +4189,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5483,9 +5478,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-19 04:44+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:54+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -395,7 +395,7 @@ msgid ""
"OpenERP. Journal items are created by OpenERP if you use Bank Statements, "
"Cash Registers, or Customer/Supplier payments."
msgstr ""
"Los contables utilizan esta vista para introducir apuntes masivamente en "
"Los contables utilizan esta vista para introducir asientos masivamente en "
"OpenERP. Cuando utiliza los extractos bancarios, registros de caja, o pagos "
"de cliente/proveedor OpenERP crea automáticamente apuntes contables."
@ -568,7 +568,7 @@ msgstr "Cuenta utilizada en este diario"
#: help:account.report.general.ledger,chart_account_id:0
#: help:account.vat.declaration,chart_account_id:0
msgid "Select Charts of Accounts"
msgstr "Seleccionar plan contable"
msgstr "Seleccionar plan contable."
#. module: account
#: view:product.product:0
@ -754,12 +754,6 @@ msgstr "Comprobar"
msgid "Partners Reconciled Today"
msgstr "Empresas conciliadas hoy"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "¡El balance del extracto bancario es incorrecto!\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -1431,9 +1425,9 @@ msgid ""
"statements, etc."
msgstr ""
"Un asiento de diario se compone de varias anotaciones, cada una de las "
"cuales es una operación bien al debe o bien al haber. OpenERP crea "
"automáticamente un asiento por cada documento contable: factura, reembolso, "
"pago a proveedor, extractos de cuenta bancaria, etc"
"cuales es una operación al debe o al haber. OpenERP crea automáticamente un "
"asiento por cada documento contable: factura, factura rectificativa (abono), "
"pago a proveedor, extractos de cuenta bancaria, etc."
#. module: account
#: view:account.entries.report:0
@ -1449,7 +1443,7 @@ msgstr "Una tabla temporal utilizada para la vista de tablero"
#: model:ir.actions.act_window,name:account.action_invoice_tree4
#: model:ir.ui.menu,name:account.menu_action_invoice_tree4
msgid "Supplier Refunds"
msgstr "Facturas rectificativas (abono) de proveedor"
msgstr "Facturas rectificativas de proveedor"
#. module: account
#: view:account.payment.term.line:0
@ -1945,8 +1939,8 @@ msgid ""
"Check this box if you want to use a different sequence for each created "
"journal. Otherwise, all will use the same sequence."
msgstr ""
"Marque esta caja si desea utilizar una secuencia diferente para cada diario "
"creado. De lo contrario, todos utilizarán la misma secuencia."
"Marque esta opción si desea utilizar una secuencia diferente para cada "
"diario creado. De lo contrario, todos utilizarán la misma secuencia."
#. module: account
#: help:account.partner.ledger,amount_currency:0
@ -2117,7 +2111,7 @@ msgid ""
"accounts."
msgstr ""
"Esta clasificación se utiliza para diferenciar tipos con efectos especiales "
"en OpenERP: vista no puede tener apuntes, consolidación son cuentas que "
"en OpenERP: vista no puede tener asientos, consolidación son cuentas que "
"pueden tener cuentas hijas para consolidaciones multi-empresa, "
"pagable/cobrable son para cuentas de empresas (para los cálculos de crédito "
"/ débito), cerrado es para cuentas de depreciación."
@ -2246,7 +2240,7 @@ msgstr "Ejercicio fiscal"
#: help:account.report.general.ledger,fiscalyear_id:0
#: help:account.vat.declaration,fiscalyear_id:0
msgid "Keep empty for all open fiscal year"
msgstr "Dejarlo vacío para todos los ejercicios fiscales abiertos"
msgstr "Dejarlo vacío para todos los ejercicios fiscales abiertos."
#. module: account
#: model:ir.model,name:account.model_account_move
@ -2527,8 +2521,7 @@ msgid ""
"You cannot modify company of this journal as its related record exist in "
"Entry Lines"
msgstr ""
"No puede modificar la compañía de este diario ya que existe un registro "
"relacionado en las líneas de asiento"
"No puede modificar la compañía de este diario porqué ya contiene asientos"
#. module: account
#: report:account.journal.period.print:0
@ -2651,9 +2644,9 @@ msgid ""
"Note that journal entries that are automatically created by the system are "
"always skipping that state."
msgstr ""
"Marque esta opción si no desea que los nuevos apuntes pasen por el estado "
"'Borrador' y por tanto vayan directamente al estado 'Asentado' sin ninguna "
"validación manual. \n"
"Marque esta opción si no desea que los nuevos asientos pasen por el estado "
"'No asentado' y por tanto vayan directamente al estado 'Asentado' sin "
"ninguna validación manual. \n"
"Tenga en cuenta que los apuntes creados automáticamente por el sistema "
"siempre obvian ese estado."
@ -2721,11 +2714,12 @@ msgid "August"
msgstr "Agosto"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "El balance previsto (%.2f) es diferente del calculado. (%.2f)"
msgstr ""
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2981,6 +2975,12 @@ msgstr "La cuenta base de la declaración de impuestos."
msgid "View"
msgstr "Vista"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -3074,7 +3074,7 @@ msgid ""
" 'Unreconciled' will copy only the journal items that were unreconciled on "
"the first day of the new fiscal year."
msgstr ""
"Establezca aquí el método que se usará, el asistente genérico, para crear el "
"Establezca aquí el método que usará el asistente genérico para crear el "
"asiento de cierre de ejercicio para todas las cuentas de este tipo.\n"
"\n"
" 'Ninguno' significa que no se hará nada.\n"
@ -3130,7 +3130,7 @@ msgstr "Empresas restantes"
#: view:account.subscription:0
#: field:account.subscription,lines_id:0
msgid "Subscription Lines"
msgstr "Líneas de asientos periódicos"
msgstr "Apuntes de asientos periódicos"
#. module: account
#: selection:account.analytic.journal,type:0
@ -3257,7 +3257,7 @@ msgid ""
"All selected journal entries will be validated and posted. It means you "
"won't be able to modify their accounting fields anymore."
msgstr ""
"Todos los apuntes seleccionadas serán validados y asentados. Esto significa "
"Todos los asientos seleccionados serán validados y asentados. Esto significa "
"que ya no podrá modificar sus campos contables."
#. module: account
@ -3489,8 +3489,8 @@ msgid ""
"based on partner payment term!\n"
"Please define partner on it!"
msgstr ""
"La fecha de vencimiento de la línea de asiento generado por la línea del "
"modelo '%s' del modelo '%s' se basa en el plazo de pago de la empresa.\n"
"La fecha de vencimiento del apunte generado por la línea del modelo '%s' del "
"modelo '%s' se basa en el plazo de pago de la empresa.\n"
"¡Por favor, defina la empresa en él!"
#. module: account
@ -4016,9 +4016,9 @@ msgid ""
"the system on document validation (invoices, bank statements...) and will be "
"created in 'Posted' state."
msgstr ""
"Todos los apuntes creadas manualmente están, por lo general, en el estado "
"Todos los asientos creados manualmente están, por lo general, en el estado "
"'No asentado', pero puede configurar la opción de omitir ese estado en el "
"diario correspondiente. En ese caso, se comportan como apuntes creados "
"diario correspondiente. En ese caso, se comportan como asientos creados "
"automáticamente por el sistema en la validación de documentos (facturas, "
"extractos bancarios, ...) y se crearán en estado 'Asentado'."
@ -4061,7 +4061,7 @@ msgstr "Descripción impuesto"
#: code:addons/account/report/common_report_header.py:68
#, python-format
msgid "All Posted Entries"
msgstr "Todos los apuntes asentados"
msgstr "Todos los asientos asentados"
#. module: account
#: code:addons/account/account_bank_statement.py:357
@ -4311,7 +4311,7 @@ msgstr "Considerar asientos conciliados."
#: view:validate.account.move:0
#: view:validate.account.move.lines:0
msgid "Post Journal Entries"
msgstr "Asentar apuntes"
msgstr "Asentar asientos"
#. module: account
#: selection:account.invoice,state:0
@ -4421,12 +4421,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Balance cuenta -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr "Factura "
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -4564,7 +4558,7 @@ msgstr "Aplicación impuesto"
#: model:ir.ui.menu,name:account.menu_eaction_account_moves_sale
#, python-format
msgid "Journal Items"
msgstr "Registros del diario"
msgstr "Apuntes contables"
#. module: account
#: selection:account.account.type,report_type:0
@ -4684,7 +4678,7 @@ msgid ""
"You should set the journal to allow cancelling entries if you want to do "
"that."
msgstr ""
"¡No se puede modificar una apunte asentado de este diario!\n"
"¡No se puede modificar una asiento asentado de este diario!\n"
"Debe configurar el diario para permitir la cancelación de los asientos si "
"quiere hacerlo."
@ -4831,7 +4825,7 @@ msgstr "mes"
#: code:addons/account/account_bank_statement.py:293
#, python-format
msgid "Journal Item \"%s\" is not valid"
msgstr "Registro del diario \"%s\" no es válido"
msgstr "Apunte \"%s\" no es válido"
#. module: account
#: view:account.payment.term:0
@ -5093,7 +5087,7 @@ msgstr "Contabilidad analítica"
#: selection:account.invoice.report,type:0
#: selection:report.invoice.created,type:0
msgid "Customer Refund"
msgstr "Reembolso del cliente"
msgstr "Factura rectificativa de cliente"
#. module: account
#: view:account.account:0
@ -5355,7 +5349,7 @@ msgstr "Contabilidad. Conciliación automática"
#: view:account.move:0
#: view:account.move.line:0
msgid "Journal Item"
msgstr "Registro diario"
msgstr "Apunte contable"
#. module: account
#: model:ir.model,name:account.model_account_move_journal
@ -5498,7 +5492,7 @@ msgstr "Reintegrar factura"
#. module: account
#: field:account.invoice,address_invoice_id:0
msgid "Invoice Address"
msgstr "Dirección factura"
msgstr "Dirección de factura"
#. module: account
#: model:ir.actions.act_window,help:account.action_account_entries_report_all
@ -5668,7 +5662,7 @@ msgstr " 365 Días "
#: model:ir.actions.act_window,name:account.action_invoice_tree3
#: model:ir.ui.menu,name:account.menu_action_invoice_tree3
msgid "Customer Refunds"
msgstr "Facturas rectificativas (abono) de cliente"
msgstr "Facturas rectificativas de cliente"
#. module: account
#: view:account.payment.term.line:0
@ -5742,9 +5736,9 @@ msgid ""
"line of the expense account. OpenERP will propose to you automatically the "
"Tax related to this account and the counterpart \"Account Payable\"."
msgstr ""
"Esta vista puede ser utilizada por los contables para registrar apuntes "
"Esta vista puede ser utilizada por los contables para registrar asientos "
"rápidamente en OpenERP. Si desea registrar una factura de proveedor, "
"comience registrando la línea de la cuenta de gastos. OpenERP le propondrá "
"comience registrando el apunte de la cuenta de gastos. OpenERP le propondrá "
"automáticamente el impuesto asociado a esta cuenta y la \"cuenta a pagar\" "
"de contrapartida."
@ -5781,10 +5775,10 @@ msgstr ""
"convierte en \"Realizada\" (es decir, pagada) en el sistema."
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgstr "está validada."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
#: view:account.chart.template:0
@ -5852,8 +5846,8 @@ msgid ""
"You cannot modify Company of account as its related record exist in Entry "
"Lines"
msgstr ""
"No puede modificar la compañía de la cuenta ya que existe un registro "
"relacionado en líneas de asientos"
"No puede modificar la compañía de la cuenta porqué ya hay apuntes con esta "
"cuenta"
#. module: account
#: help:account.fiscalyear.close.state,fy_id:0
@ -6085,7 +6079,7 @@ msgstr "Liquidez"
#: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form
#: model:ir.ui.menu,name:account.account_analytic_journal_entries
msgid "Analytic Journal Items"
msgstr "Registros diario analítico"
msgstr "Apuntes analíticos"
#. module: account
#: view:account.fiscalyear.close:0
@ -6149,7 +6143,7 @@ msgstr "¡Introduzca una fecha inicial!"
#: selection:account.invoice.report,type:0
#: selection:report.invoice.created,type:0
msgid "Supplier Refund"
msgstr "Factura rectificativa (abono) de proveedor"
msgstr "Factura rectificativa de proveedor"
#. module: account
#: model:ir.ui.menu,name:account.menu_dashboard_acc
@ -6477,7 +6471,7 @@ msgstr ""
"factura deben estar conciliados con sus contrapartidas, normalmente pagos. "
"Con la funcionalidad de reconciliación automática, OpenERP realiza su propia "
"búsqueda de apuntes a conciliar en una serie de cuentas. Encuentra los "
"apuntes, para cada tercero, donde las cantidades se correspondan."
"apuntes, para cada empresa, cuando las cantidades se correspondan."
#. module: account
#: view:account.move:0
@ -6515,8 +6509,8 @@ msgstr ""
msgid ""
"Selected Entry Lines does not have any account move enties in draft state"
msgstr ""
"Las líneas de asiento seleccionadas no tienen ningún movimiento contable en "
"estado borrador"
"Los apuntes seleccionados no tienen ningún movimiento contable en estado "
"borrador"
#. module: account
#: selection:account.aged.trial.balance,target_move:0
@ -6816,8 +6810,8 @@ msgid ""
"This date will be used as the invoice date for Refund Invoice and Period "
"will be chosen accordingly!"
msgstr ""
"¡Esta fecha se utilizará como la fecha de facturación de la factura "
"rectificativa (abono) y el período será elegido en consecuencia!"
"Esta fecha se utilizará como la fecha de facturación de la factura "
"rectificativa (abono) y el período será elegido en consecuencia."
#. module: account
#: field:account.aged.trial.balance,period_length:0
@ -6960,8 +6954,7 @@ msgid ""
"search for account entries, open a journal, then select a record line."
msgstr ""
"Puede buscar un asiento contable en concreto a través de información útil. "
"Para buscar asientos contables, abra un diario, luego seleccione una línea "
"de registro."
"Para buscar asientos contables, abra un diario, luego seleccione un apunte."
#. module: account
#: report:account.invoice:0
@ -7139,7 +7132,7 @@ msgid ""
"line of the expense account, OpenERP will propose to you automatically the "
"Tax related to this account and the counter-part \"Account Payable\"."
msgstr ""
"Esta vista es usada por los contables para registrar apuntes masivamente en "
"Esta vista es usada por los contables para registrar asientos masivamente en "
"OpenERP. Si quiere registrar una factura de proveedor, comience "
"introduciendo el apunte de la cuenta de gastos. OpenERP le propondrá "
"automáticamente el impuesto asociado a esta cuenta, y la \"cuenta a pagar\" "
@ -7232,7 +7225,7 @@ msgstr ""
#: view:account.move.line:0
#: selection:account.move.line,state:0
msgid "Unbalanced"
msgstr "No balanceado"
msgstr "Descuadrado"
#. module: account
#: selection:account.move.line,centralisation:0
@ -7371,7 +7364,7 @@ msgstr "Código"
#. module: account
#: view:validate.account.move:0
msgid "Post Journal Entries of a Journal"
msgstr "Asentar apuntes de un diario"
msgstr "Asentar asientos de un diario"
#. module: account
#: view:product.product:0
@ -8120,8 +8113,7 @@ msgstr "Diario de compras"
#: view:account.invoice.refund:0
msgid "Refund Invoice: Creates the refund invoice, ready for editing."
msgstr ""
"Factura rectificativa (abono): Crea la factura de abono, preparada para "
"editarla."
"Factura rectificativa: Crea la factura de abono, preparada para editarla."
#. module: account
#: field:account.invoice.line,price_subtotal:0
@ -8534,8 +8526,8 @@ msgid ""
"You cannot modify company of this period as its related record exist in "
"Entry Lines"
msgstr ""
"No puede modificar la compañía de este periodo ya que existe un registro "
"relacionado en las líneas de asiento"
"No puede modificar la compañía de este periodo porqué ya hay apuntes en este "
"período."
#. module: account
#: view:account.move:0
@ -8618,10 +8610,10 @@ msgid ""
"in which order. You can create your own view for a faster encoding in each "
"journal."
msgstr ""
"Establece la vista usada cuando se escriben o consultan apuntes en este "
"diario. La vista le dice a OpenERP qué campos deben ser visibles, requeridos "
"o de sólo lectura, y en qué orden. Puede crear su propia vista en cada "
"diario para introducir apuntes más rápido."
"Establece la vista usada cuando se escriben o consultan asientos en este "
"diario. La vista le indica a OpenERP qué campos deben ser visibles, "
"requeridos o de sólo lectura, y en qué orden. Puede crear su propia vista en "
"cada diario para introducir apuntes más rápido."
#. module: account
#: field:account.period,date_stop:0
@ -8729,10 +8721,11 @@ msgid ""
"partially. You can easily generate refunds and reconcile them directly from "
"the invoice form."
msgstr ""
"Con reembolsos de proveedor puede gestionar las notas de crédito que recibe "
"de sus proveedores. Un reembolso es un documento que abona una factura total "
"o parcialmente. Puede fácilmente generar reembolsos y conciliarlos "
"directamente desde el formulario de factura."
"Con facturas rectificativas de proveedor puede gestionar las facturas de "
"abono que recibe de sus proveedores. Una factura rectificativa es un "
"documento que abona una factura total o parcialmente. Puede fácilmente "
"generar facturas rectificativas y conciliarlas directamente desde el "
"formulario de factura."
#. module: account
#: view:account.account.template:0
@ -8848,7 +8841,7 @@ msgid ""
"the income account. OpenERP will propose to you automatically the Tax "
"related to this account and the counter-part \"Account receivable\"."
msgstr ""
"Esta vista es usada por los contables para registrar apuntes masivamente en "
"Esta vista es usada por los contables para registrar asientos masivamente en "
"OpenERP. Si quiere registrar una factura de cliente, seleccione el diario y "
"el periodo en la barra de herramientas de búsqueda. Luego, comience "
"introduciendo el apunte de la cuenta de ingresos. OpenERP le propondrá "
@ -9291,8 +9284,8 @@ msgid ""
"payment term!\n"
"Please define partner on it!"
msgstr ""
"La fecha de vencimiento de la línea de asiento generado por la línea del "
"modelo '%s' se basa en el plazo de pago de la empresa.\n"
"La fecha de vencimiento del apunte generado por la línea del modelo '%s' se "
"basa en el plazo de pago de la empresa.\n"
"¡Por favor, defina la empresa en él!"
#. module: account
@ -9421,7 +9414,7 @@ msgid ""
"and is the process of transferring debit and credit amounts from a journal "
"of original entry to a ledger book."
msgstr ""
"El proceso de validación de apuntes, también llamado 'asentar', transfiere "
"El proceso de validación de asientos, también llamado 'asentar', transfiere "
"los importes del debe y haber de la anotación original a un libro mayor."
#. module: account
@ -9498,7 +9491,7 @@ msgstr "Seleccionar periodo"
#: view:account.move.line:0
#: report:account.move.voucher:0
msgid "Posted"
msgstr "Fijado"
msgstr "Asentado"
#. module: account
#: report:account.account.balance:0
@ -10051,7 +10044,7 @@ msgstr "Buscar factura"
#: view:account.invoice.report:0
#: model:ir.actions.act_window,name:account.action_account_invoice_refund
msgid "Refund"
msgstr "Factura rectificativa (abono)"
msgstr "Factura rectificativa"
#. module: account
#: field:wizard.multi.charts.accounts,bank_accounts_id:0
@ -10270,6 +10263,10 @@ msgstr ""
#~ msgid "Keep empty to use the period of the validation date."
#~ msgstr "Dejarlo vacío para usar el período de la fecha de validación."
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "¡El balance del extracto bancario es incorrecto!\n"
#, python-format
#~ msgid ""
#~ "You can specify year, month and date in the name of the model using the "
@ -10514,6 +10511,11 @@ msgstr ""
#~ msgid "Invoice import"
#~ msgstr "Importe factura"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "El balance previsto (%.2f) es diferente del calculado. (%.2f)"
#~ msgid "Ending Balance"
#~ msgstr "Saldo final"
@ -11957,6 +11959,10 @@ msgstr ""
#~ "Si el campo activo se desmarca, permite ocultar el plazo de pago sin "
#~ "eliminarlo."
#, python-format
#~ msgid "Invoice "
#~ msgstr "Factura "
#~ msgid "Rule must have at least one checked access right !"
#~ msgstr "¡La regla debe tener por lo menos un derecho de acceso marcado!"
@ -11966,6 +11972,10 @@ msgstr ""
#~ msgstr ""
#~ "Si el campo activo se desmarca, permite ocultar el impuesto sin eliminarlo."
#, python-format
#~ msgid "is validated."
#~ msgstr "está validada."
#~ msgid ""
#~ "If the active field is set to true, it will allow you to hide the journal "
#~ "period without removing it."

View File

@ -7,24 +7,24 @@ msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-11 11:14+0000\n"
"PO-Revision-Date: 2009-11-18 03:34+0000\n"
"Last-Translator: Carlos Sebastián Macri - Daycrom <cmacri@daycrom.com>\n"
"PO-Revision-Date: 2011-03-17 20:16+0000\n"
"Last-Translator: jpdborgna <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:26+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:56+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
msgid "System payment"
msgstr ""
msgstr "Sistema de pagos"
#. module: account
#: view:account.journal:0
msgid "Other Configuration"
msgstr ""
msgstr "Otra configuración"
#. module: account
#: code:addons/account/wizard/account_open_closed_fiscalyear.py:40
@ -39,16 +39,17 @@ msgid ""
"You cannot remove/deactivate an account which is set as a property to any "
"Partner."
msgstr ""
"No se puede eliminar/desactivar una cuenta que está vinculada a una empresa."
#. module: account
#: view:account.move.reconcile:0
msgid "Journal Entry Reconcile"
msgstr ""
msgstr "Conciliar asiento contable"
#. module: account
#: field:account.installer.modules,account_voucher:0
msgid "Voucher Management"
msgstr ""
msgstr "Administracion de Comprobantes"
#. module: account
#: view:account.account:0
@ -62,7 +63,7 @@ msgstr "Estadísticas de cuentas"
#: field:account.invoice,residual:0
#: field:report.invoice.created,residual:0
msgid "Residual"
msgstr "Residuo"
msgstr "Valor residual"
#. module: account
#: code:addons/account/invoice.py:785
@ -714,12 +715,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "El balance del extracto es incorrecto!\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2596,11 +2591,12 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "El balance previsto (%.2f) es diferente del calculado. (%.2f)"
msgstr ""
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2846,6 +2842,12 @@ msgstr "La cuenta base de la declaración de impuestos."
msgid "View"
msgstr "Vista"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4229,12 +4231,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Balance de cuenta -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5538,9 +5534,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
@ -9675,7 +9671,7 @@ msgstr "Futuro"
#. module: account
#: view:account.move.line:0
msgid "Search Journal Items"
msgstr ""
msgstr "Buscar líneas asientos"
#. module: account
#: help:account.tax,base_sign:0
@ -9702,7 +9698,7 @@ msgstr "Cuenta de gastos en plantilla producto"
#. module: account
#: field:account.analytic.line,amount_currency:0
msgid "Amount currency"
msgstr ""
msgstr "Moneda del importe"
#. module: account
#: code:addons/account/wizard/account_report_aged_partner_balance.py:55
@ -9728,6 +9724,13 @@ msgid ""
"certain amount of information. They have to be certified by an external "
"auditor annually."
msgstr ""
"Cree y gestione las cuentas que necesite para codificar asientos en los "
"diarios. Una cuenta es parte de un plan de cuentas que permite a su compañía "
"registrar todo tipo de transacciones de crédito y débito. Las compañías "
"presentan sus cuentas anuales en dos partes principales: El balance y la "
"cuenta de pérdidas y ganancias. Las cuentas anuales de una compañía son "
"requeridas por ley para que contengan cierta cantidad de información. Tienen "
"que ser certificadas por un auditor externo anualmente."
#. module: account
#: help:account.move.line,amount_residual_currency:0
@ -9735,6 +9738,8 @@ msgid ""
"The residual amount on a receivable or payable of a journal entry expressed "
"in its currency (maybe different of the company currency)."
msgstr ""
"El importe residual de un apunte a cobrar o a pagar expresado en su moneda "
"(puede ser diferente de la moneda de la compañía)."
#~ msgid "Confirm statement from draft"
#~ msgstr "Confirmar extracto desde borrador"
@ -9935,6 +9940,11 @@ msgstr ""
#~ msgid "Analytic Credit"
#~ msgstr "Haber analítico"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "El balance previsto (%.2f) es diferente del calculado. (%.2f)"
#~ msgid "Continue"
#~ msgstr "Continuar"
@ -9962,6 +9972,10 @@ msgstr ""
#~ msgid "Crédit"
#~ msgstr "Haber"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "El balance del extracto es incorrecto!\n"
#~ msgid "Legal Statements"
#~ msgstr "Declaraciones Legales"

View File

@ -16,8 +16,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-19 04:44+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:57+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -750,12 +750,6 @@ msgstr "Revisar"
msgid "Partners Reconciled Today"
msgstr "Empresas conciliadas hoy"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "The statement balance is incorrect !\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2707,12 +2701,12 @@ msgid "August"
msgstr "Agosto"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
"The expected balance (%.2f) is different than the computed one. (%.2f)"
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2966,6 +2960,12 @@ msgstr "La cuenta base de la declaración de impuestos."
msgid "View"
msgstr "Vista"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4400,12 +4400,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Saldo de cuenta -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr "Invoice "
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5756,10 +5750,10 @@ msgstr ""
"(i.e. paid) in the system."
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgstr "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
#: view:account.chart.template:0
@ -11884,6 +11878,12 @@ msgstr ""
#~ msgstr ""
#~ "Cash Register allows you to manage cash entries in your cash journals."
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgid "Customer Invoices to Validate"
#~ msgstr "Facturas de Cliente a Validar"
@ -11954,6 +11954,10 @@ msgstr ""
#~ "If the active field is set to true, it will allow you to hide the payment "
#~ "term without removing it."
#, python-format
#~ msgid "Invoice "
#~ msgstr "Invoice "
#~ msgid "Invalid model name in the action definition."
#~ msgstr "Nombre de modelo no válido en la definición de acción."
@ -12010,6 +12014,10 @@ msgstr ""
#~ "impossible any new entry record. Close a fiscal year when you need to "
#~ "finalize your end of year results definitive."
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "The statement balance is incorrect !\n"
#~ msgid "TITLE COMPANY"
#~ msgstr "TITLE COMPANY"
@ -12033,6 +12041,10 @@ msgstr ""
#~ "all lines of your statement. When you are in the Payment column of the a "
#~ "line, you can press F1 to open the reconciliation form."
#, python-format
#~ msgid "is validated."
#~ msgstr "is validated."
#~ msgid "Treasory Analysis"
#~ msgstr "Treasory Analysis"

File diff suppressed because it is too large Load Diff

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:19+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:49+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -708,12 +708,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2574,9 +2568,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2813,6 +2808,12 @@ msgstr ""
msgid "View"
msgstr "Vaade"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4183,12 +4184,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Konto bilanss -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5475,9 +5470,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
@ -9909,6 +9904,9 @@ msgstr ""
#~ msgid "Unpaid invoices"
#~ msgstr "Maksmata arved"
#~ msgid "Unpaid Supplier Refunds"
#~ msgstr "Maksmata tarnija hüvitised"
#~ msgid "Are you sure you want to refund this invoice ?"
#~ msgstr "Oled sa kindel, et soovid hüvitada seda arvet?"
@ -10249,9 +10247,6 @@ msgstr ""
#~ msgid "The opening journal must not have any entry in the new fiscal year !"
#~ msgstr "Avatav päevik ei tohi sisaldama kirjeid uues finantsaastas !"
#~ msgid "Unpaid Supplier Refunds"
#~ msgstr "Maksmata tarnija hüvitised"
#~ msgid "Print Journal"
#~ msgstr "Prindi päevik"

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:18+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:47+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:22+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:52+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

9623
addons/account/i18n/fa_AF.po Normal file

File diff suppressed because it is too large Load Diff

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-19 04:42+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:49+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -715,12 +715,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "Tiliotteen saldo on virheellinen!\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -1237,7 +1231,7 @@ msgstr ""
#. module: account
#: report:account.invoice:0
msgid "Your Reference"
msgstr ""
msgstr "Viitteenne"
#. module: account
#: view:account.move.reconcile:0
@ -2594,11 +2588,12 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "Oletettu saldo (%.2f) on erisuuri kuin laskettu. (%2f)"
msgstr ""
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2842,6 +2837,12 @@ msgstr "Verotuksen tilipohja."
msgid "View"
msgstr "Näkymä"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4217,12 +4218,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Tilin saldo -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5525,9 +5520,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
@ -10003,6 +9998,11 @@ msgstr ""
#~ msgid "Select invoices you want to pay and manages advances"
#~ msgstr "Valitse maksettavat laskut sekä hallinnoi ennakkomaksuja"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "Oletettu saldo (%.2f) on erisuuri kuin laskettu. (%2f)"
#~ msgid "Invalid XML for View Architecture!"
#~ msgstr "Virheellinen XML näkymäarkkitehtuurille!"
@ -10558,6 +10558,10 @@ msgstr ""
#~ msgid "Parent Analytic Account"
#~ msgstr "Ylempi analyyttinen tili"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "Tiliotteen saldo on virheellinen!\n"
#~ msgid "Partner Ref."
#~ msgstr "Kumppanin viite"

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-21 04:39+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:49+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: code:addons/account/account.py:1291
@ -817,12 +817,6 @@ msgstr "Chèque"
msgid "Partners Reconciled Today"
msgstr "Partenaires rapprochés aujourd'hui"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "Le solde du relevé est incorrect.\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2782,11 +2776,12 @@ msgid "August"
msgstr "Août"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "Le solde affiché (%.2f) est différent du solde calculé. (%.2f)"
msgstr ""
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -3032,6 +3027,12 @@ msgstr "La base de compte de la déclaration fiscale."
msgid "View"
msgstr "Vue"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4476,12 +4477,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Balance"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr "Facture "
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5830,10 +5825,10 @@ msgstr ""
"(c'est à dire payée) dans le système."
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgstr "est validé."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
#: view:account.chart.template:0
@ -11906,6 +11901,10 @@ msgstr ""
#~ msgid "Error ! You can not create recursive Menu."
#~ msgstr "Erreur ! Vous ne pouvez pas créer de menu récursif."
#, python-format
#~ msgid "Invoice "
#~ msgstr "Facture "
#~ msgid ""
#~ "This account will be used for invoices instead of the default one to value "
#~ "expenses for the current product"
@ -11913,6 +11912,10 @@ msgstr ""
#~ "Ce compte sera utilisé pour les factures à la place du compte par défaut "
#~ "pour valoriser les charges liées au produit actuel"
#, python-format
#~ msgid "is validated."
#~ msgstr "est validé."
#~ msgid "Cash Journal - (test)"
#~ msgstr "Journal de liquidités - (test)"
@ -11974,6 +11977,15 @@ msgstr ""
#~ "indiquant qu'il rembourse une partie ou la totalité de la facture qu'il vous "
#~ "a adressée."
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "Le solde du relevé est incorrect.\n"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "Le solde affiché (%.2f) est différent du solde calculé. (%.2f)"
#~ msgid ""
#~ "Customer Refunds helps you manage the credit notes issued/to be issued for "
#~ "your customers. A refund invoice is a document that cancels an invoice or a "

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:26+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:56+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2577,9 +2571,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2816,6 +2811,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4186,12 +4187,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5481,9 +5476,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

File diff suppressed because it is too large Load Diff

View File

@ -14,13 +14,13 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:20+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:50+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
msgid "System payment"
msgstr ""
msgstr "ચુકવણી"
#. module: account
#: view:account.journal:0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr "જુઓ"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:20+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:50+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:21+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:50+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -710,12 +710,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2576,9 +2570,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2815,6 +2810,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4185,12 +4186,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5480,9 +5475,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-18 04:42+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:53+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -716,12 +716,6 @@ msgstr "Čekovi"
msgid "Partners Reconciled Today"
msgstr "Danas zatvoreni partneri"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "Saldo izvoda je netočan !\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2595,11 +2589,12 @@ msgid "August"
msgstr "Kolovoz"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "Očekivani slado (%.2f) je različit od izračunatog. (%.2f)"
msgstr ""
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2836,6 +2831,12 @@ msgstr "Porezna osnovica"
msgid "View"
msgstr "Pogled"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4212,12 +4213,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Saldo konta -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr "Račun "
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5516,9 +5511,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
@ -9765,6 +9760,11 @@ msgstr ""
#~ msgid "Ending Balance"
#~ msgstr "Završni saldo"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "Očekivani slado (%.2f) je različit od izračunatog. (%.2f)"
#~ msgid "Continue"
#~ msgstr "Nastavi"
@ -10099,6 +10099,10 @@ msgstr ""
#~ msgid "Entries by Statements"
#~ msgstr "Stavke po izvodima"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "Saldo izvoda je netočan !\n"
#~ msgid "Confirm statement with/without reconciliation from draft statement"
#~ msgstr "Potvrdi izvod sa/bez usklađivanja sa izvodom u pripremi."
@ -10821,3 +10825,7 @@ msgstr ""
#~ msgid "Template for Fiscal Mapping"
#~ msgstr "Predložak fiskalnog mapiranja"
#, python-format
#~ msgid "Invoice "
#~ msgstr "Račun "

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-11 11:14+0000\n"
"PO-Revision-Date: 2011-03-03 14:39+0000\n"
"PO-Revision-Date: 2011-03-18 11:11+0000\n"
"Last-Translator: NOVOTRADE RENDSZERHÁZ <openerp@novotrade.hu>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-04 04:44+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"X-Launchpad-Export-Date: 2011-03-19 05:19+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -747,12 +747,6 @@ msgstr "Csekk"
msgid "Partners Reconciled Today"
msgstr "Ma párosított partnerek"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "Hibás kivonat egyenleg!\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2698,11 +2692,14 @@ msgid "August"
msgstr "Augusztus"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "A várt egyenleg (%.2f) eltér a számított egyenlegtől (%.2f)."
msgstr ""
"A kivonat egyenlege hibás!\n"
"A várt egyenleg (%.2f) eltér a számított egyenlegtől (%.2f)."
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2949,6 +2946,12 @@ msgstr "Az adóbevallásban szereplő adóalap."
msgid "View"
msgstr "Gyűjtő"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr "BNK%s"
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4383,12 +4386,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Számla egyenleg -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr "Számla "
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5728,10 +5725,10 @@ msgstr ""
"rendszerben."
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgstr "jóváhagyásra került."
msgid "Invoice '%s' is validated."
msgstr "'%s' számla jóváhagyásra került."
#. module: account
#: view:account.chart.template:0
@ -10273,6 +10270,10 @@ msgstr ""
#~ msgid "Amount paid"
#~ msgstr "Kifizetés összege"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "Hibás kivonat egyenleg!\n"
#~ msgid "Total quantity"
#~ msgstr "Mennyiség összesen"
@ -10479,3 +10480,16 @@ msgstr ""
#~ msgid "Entry encoding"
#~ msgstr "Adatbevitel"
#, python-format
#~ msgid "Invoice "
#~ msgstr "Számla "
#, python-format
#~ msgid "is validated."
#~ msgstr "jóváhagyásra került."
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "A várt egyenleg (%.2f) eltér a számított egyenlegtől (%.2f)."

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-02-25 04:39+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:50+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -753,12 +753,6 @@ msgstr "Centang"
msgid "Partners Reconciled Today"
msgstr "Hari ini Para Mitra Telah Direkonsiliasi"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "Saldo neraca salah !\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2645,9 +2639,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2884,6 +2879,12 @@ msgstr ""
msgid "View"
msgstr "Tampilan"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4265,12 +4266,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5575,9 +5570,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
@ -10175,3 +10170,7 @@ msgstr ""
#~ msgid "Customize Report"
#~ msgstr "Mengatur Laporan"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "Saldo neraca salah !\n"

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-02-02 04:40+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:50+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -753,12 +753,6 @@ msgstr "Controllo"
msgid "Partners Reconciled Today"
msgstr "Partner con riconliliazione effettuata oggi."
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "Il bilancio della registrazione non è corretto!\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -1085,7 +1079,7 @@ msgstr "In contestazione"
#: model:ir.actions.act_window,name:account.action_view_bank_statement_tree
#: model:ir.ui.menu,name:account.journal_cash_move_lines
msgid "Cash Registers"
msgstr "Registratori di Cassa"
msgstr "Movimenti Registratore di Cassa"
#. module: account
#: selection:account.account.type,report_type:0
@ -2710,11 +2704,12 @@ msgid "August"
msgstr "Agosto"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "Il saldo calcolato (%.2f) è diverso da quello inserito. (%.2f)"
msgstr ""
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2967,6 +2962,12 @@ msgstr "Il conto si basa sulla denuncia della tassa"
msgid "View"
msgstr "Vista"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -3715,7 +3716,7 @@ msgstr ""
#. module: account
#: view:account.analytic.line:0
msgid "General Accounting"
msgstr "Contabilita' generale"
msgstr "Contabilità generale"
#. module: account
#: report:account.overdue:0
@ -4402,12 +4403,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Bilancio"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr "Fattura "
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -4839,7 +4834,7 @@ msgstr "Bilancio"
#. module: account
#: model:ir.ui.menu,name:account.final_accounting_reports
msgid "Accounting Reports"
msgstr "Reports di contabilita'"
msgstr "Reports di contabilità"
#. module: account
#: field:account.move,line_id:0
@ -4946,7 +4941,7 @@ msgstr "Periodo non trovato !"
#. module: account
#: field:account.journal,update_posted:0
msgid "Allow Cancelling Entries"
msgstr "Conferma cancellazione voci"
msgstr "Consenti cancellazione registrazioni"
#. module: account
#: field:account.tax.code,sign:0
@ -5667,8 +5662,8 @@ msgid ""
"Selected Invoice(s) cannot be confirmed as they are not in 'Draft' or 'Pro-"
"Forma' state!"
msgstr ""
"Le fatture scelte non possono essere confermate, essendo nello stato 'Draft' "
"o 'Pro-forma'"
"Le fatture scelte non possono essere confermate, non essendo nello stato "
"'Draft' o 'Pro-forma'!"
#. module: account
#: report:account.invoice:0
@ -5745,10 +5740,10 @@ msgstr ""
"nel sistema viene mutato in \"eseguito\" (e.s. pagata)."
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgstr "è convalidato."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
#: view:account.chart.template:0
@ -7625,7 +7620,7 @@ msgstr ""
#: view:account.installer.modules:0
msgid "Add extra Accounting functionalities to the ones already installed."
msgstr ""
"Aggiunge ulteriori funzionalita' alla contabilita', oltre a quelle gia' "
"Aggiunge ulteriori funzionalità alla contabilità, oltre a quelle già "
"installate"
#. module: account
@ -10969,6 +10964,14 @@ msgstr ""
#~ msgid "Error ! You can not create recursive Menu."
#~ msgstr "Errore! Non è possibile creare un menù ricorsivo."
#, python-format
#~ msgid "Invoice "
#~ msgstr "Fattura "
#, python-format
#~ msgid "is validated."
#~ msgstr "è convalidato."
#~ msgid ""
#~ "A journal entry consists of several journal items, each of which is either a "
#~ "debit or a credit. OpenERP creates automatically one journal entry per "
@ -11000,6 +11003,10 @@ msgstr ""
#~ "emesse. OpenERP genera in modo automatico le fatture in stato di bozza, in "
#~ "modo che basti confermarle per poterle spedire al cliente."
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "Il bilancio della registrazione non è corretto!\n"
#~ msgid ""
#~ "Exception made of a mistake of our side, it seems that the following bills "
#~ "stay unpaid. Please, take appropriate measures in order to carry out this "
@ -11018,6 +11025,11 @@ msgstr ""
#~ "Il rimborso da un fornitore consiste in una nota di credito che indica che "
#~ "rimborsa in tutto od in parte una fattura che ha inviato."
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "Il saldo calcolato (%.2f) è diverso da quello inserito. (%.2f)"
#~ msgid ""
#~ "A supplier refund is a credit note from your supplier indicating that he "
#~ "refunds part or totality of the invoice sent to you."

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:21+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:51+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:21+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:51+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-19 04:43+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:51+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:22+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:51+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -714,12 +714,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "Dokumento balansas neteisingas!\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2588,11 +2582,12 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "Tikėtinas balansas (%.2f) skirtingas nuo apskaičiuotojo. (%.2f)"
msgstr ""
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2827,6 +2822,12 @@ msgstr "Deklaruojama mokesčių suma"
msgid "View"
msgstr "Žiūrėti"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4205,12 +4206,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Sąskaitos balansas -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5509,9 +5504,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
@ -10185,6 +10180,11 @@ msgstr ""
#~ msgid "Bank Receipt"
#~ msgstr "Banko pajamos"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "Tikėtinas balansas (%.2f) skirtingas nuo apskaičiuotojo. (%.2f)"
#~ msgid "Fiscal Position Template Account Mapping"
#~ msgstr "Sąskaitų fiskalinės pozicijos nustatymai"
@ -10776,5 +10776,9 @@ msgstr ""
#~ msgid "Untaxed amount"
#~ msgstr "Suma be mokesčių"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "Dokumento balansas neteisingas!\n"
#~ msgid "Legal Statements"
#~ msgstr "Teisiniai dokumentai"

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:21+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:51+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2580,9 +2574,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2821,6 +2816,12 @@ msgstr ""
msgid "View"
msgstr "Skatījums"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4191,12 +4192,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5491,9 +5486,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:22+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:51+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -724,12 +724,6 @@ msgstr "Шалгах"
msgid "Partners Reconciled Today"
msgstr "Өнөөдөр төлбөр барагдсан харилцагч"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "Үлдэгдэл тохирохгүй байна !\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2622,12 +2616,12 @@ msgid "August"
msgstr "8 сар"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
"Бодит үлдэгдэл (%.2f) нь тооцоолсон үлдэгдлээс ялгаатай байна. (%.2f)"
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2876,6 +2870,12 @@ msgstr "Татварын зарлалтын суурь данс."
msgid "View"
msgstr "Харах"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4283,12 +4283,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Дансны тэнцэл-"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr "Нэхэмжлэл "
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5596,10 +5590,10 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgstr "батлагдсан."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
#: view:account.chart.template:0
@ -11185,6 +11179,12 @@ msgstr ""
#~ msgstr ""
#~ "Кассын ордер нь танд бэлэн мөнгөний журналд гүйлгээ удирдах боломж олгоно."
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr ""
#~ "Бодит үлдэгдэл (%.2f) нь тооцоолсон үлдэгдлээс ялгаатай байна. (%.2f)"
#~ msgid ""
#~ "Supplier Invoices allows you to enter and manage invoices issued by your "
#~ "suppliers. OpenERP generates draft of supplier invoices automatically so "
@ -11215,6 +11215,10 @@ msgstr ""
#~ msgid "Sale Tax"
#~ msgstr "Борлуулалтын татвар"
#, python-format
#~ msgid "Invoice "
#~ msgstr "Нэхэмжлэл "
#~ msgid "Invalid model name in the action definition."
#~ msgstr "Үйлдлийн тодорхойлолтод буруу моделийн нэр байна."
@ -11224,6 +11228,10 @@ msgstr ""
#~ msgid "Please select periods."
#~ msgstr "Мөчлөгөө сонгоно уу."
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "Үлдэгдэл тохирохгүй байна !\n"
#~ msgid ""
#~ "A bank statement is a summary of all financial transactions occurring over a "
#~ "given period of time on a deposit account, a credit card, or any other type "
@ -11236,6 +11244,10 @@ msgstr ""
#~ "Эхлээд нээлтийн болон хаалтийн үлдэгдлээ оруулаад бүх гүйлгээнүүдээ шивж "
#~ "оруулна."
#, python-format
#~ msgid "is validated."
#~ msgstr "батлагдсан."
#~ msgid "Treasory Analysis"
#~ msgstr "Сан хөмрөгийн анализ"

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-21 04:40+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:52+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -732,12 +732,6 @@ msgstr "Sjekk"
msgid "Partners Reconciled Today"
msgstr "Partnere avstemt i dag"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2600,9 +2594,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2839,6 +2834,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4209,12 +4210,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5504,9 +5499,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-19 04:42+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:48+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: code:addons/account/account.py:1167
@ -754,12 +754,6 @@ msgstr "Cheque"
msgid "Partners Reconciled Today"
msgstr "Vandaag afgeletterde relaties"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "Het saldo op het afschrift is onjuist!\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -1385,7 +1379,7 @@ msgstr "Belastingen zoeken"
#. module: account
#: model:ir.model,name:account.model_account_analytic_cost_ledger
msgid "Account Analytic Cost Ledger"
msgstr ""
msgstr "Analytisch kostenboek"
#. module: account
#: view:account.model:0
@ -2004,6 +1998,9 @@ msgid ""
"be with same name as statement name. This allows the statement entries to "
"have the same references than the statement itself"
msgstr ""
"Wanneer u een andere waarde voor Naam opgeeft dan /, dan krijgen de "
"gecreëerde boekingen dezelfde waarde voor naam. Hierdoor zullen referenties "
"makkelijker terug te vinden zijn."
#. module: account
#: model:ir.actions.act_window,name:account.action_account_unreconcile
@ -2332,6 +2329,9 @@ msgid ""
"You can create one in the menu: \n"
"Configuration\\Financial Accounting\\Accounts\\Journals."
msgstr ""
"Kan geen journaal van het type %s vinden voor dit bedrijf.\n"
"U kunt een journaal creëren in het menu:\n"
"Configuratie\\Financieel boekhouden\\Rekeningen\\Journalen"
#. module: account
#: field:account.invoice.tax,base_code_id:0
@ -2515,6 +2515,8 @@ msgid ""
"You cannot modify company of this journal as its related record exist in "
"Entry Lines"
msgstr ""
"U kunt het bedrijf niet meer veranderen in dit dagboek omdat er inmiddels al "
"gerelateerde transacties op zijn geboekt."
#. module: account
#: report:account.journal.period.print:0
@ -2707,12 +2709,12 @@ msgid "August"
msgstr "Augustus"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
"Het verwachte saldo (%.2f) is verschillend van het berekende saldo (%.2f)."
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2966,6 +2968,12 @@ msgstr "De grootboekrekening van de belastingverklaring"
msgid "View"
msgstr "Aanzicht"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -3001,7 +3009,7 @@ msgstr "Begint op"
#. module: account
#: model:ir.model,name:account.model_account_partner_ledger
msgid "Account Partner Ledger"
msgstr ""
msgstr "Relatie grootboek/saldi"
#. module: account
#: help:account.journal.column,sequence:0
@ -4386,12 +4394,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Grootboekkaart"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr "Factuur "
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5689,9 +5691,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
@ -10155,6 +10157,12 @@ msgstr ""
#~ msgid "Invoice import"
#~ msgstr "Factuurimport"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr ""
#~ "Het verwachte saldo (%.2f) is verschillend van het berekende saldo (%.2f)."
#~ msgid "Ending Balance"
#~ msgstr "Eindsaldo"
@ -11452,6 +11460,10 @@ msgstr ""
#~ msgid "logo"
#~ msgstr "logo"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "Het saldo op het afschrift is onjuist!\n"
#~ msgid ""
#~ "Example: 14 days 2%, 30 days net\n"
#~ "1. Line 1: percent 0.02 14 days\n"
@ -11550,3 +11562,7 @@ msgstr ""
#~ msgid "Ansicht"
#~ msgstr "Weergave"
#, python-format
#~ msgid "Invoice "
#~ msgstr "Factuur "

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:26+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:56+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -711,12 +711,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2583,9 +2577,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2833,6 +2828,12 @@ msgstr "De rekeningbasis van de btw-aangifte."
msgid "View"
msgstr "Weergave"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4205,12 +4206,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5504,9 +5499,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:22+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:52+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr "Afichatge"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:22+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:52+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -746,12 +746,6 @@ msgstr "Czek"
msgid "Partners Reconciled Today"
msgstr "Partnerzy uzgodnieni dzisiaj"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "Bilans zestawienia jest nieprawidłowy !\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2666,11 +2660,12 @@ msgid "August"
msgstr "Sierpień"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "Spodziewane saldo (%.2f) jest inne od obliczonego. (%.2f)"
msgstr ""
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2916,6 +2911,12 @@ msgstr "Rejestr podstawy podatku"
msgid "View"
msgstr "Widok"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4318,12 +4319,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Saldo konta -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr "Faktura "
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5642,10 +5637,10 @@ msgstr ""
"'Wykonano'."
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgstr "zostało zatwierdzone."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
#: view:account.chart.template:0
@ -10555,6 +10550,10 @@ msgstr ""
#~ msgid "Entry label"
#~ msgstr "Etykieta zapisu"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "Bilans zestawienia jest nieprawidłowy !\n"
#~ msgid "Encode manually the statement"
#~ msgstr "Wprowadź ręcznie zestawienie"
@ -10736,6 +10735,11 @@ msgstr ""
#~ msgid "Voucher Nb"
#~ msgstr "Nr vouchera"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "Spodziewane saldo (%.2f) jest inne od obliczonego. (%.2f)"
#~ msgid "Bank Receipt"
#~ msgstr "Potwierdzenie bankowe"
@ -11497,9 +11501,17 @@ msgstr ""
#~ msgid "Error ! You can not create recursive Menu."
#~ msgstr "Błąd ! Nie możesz tworzyć rekurencyjnych menu."
#, python-format
#~ msgid "Invoice "
#~ msgstr "Faktura "
#~ msgid "Rule must have at least one checked access right !"
#~ msgstr "Reguła musi mieć zaznaczone co najmniej jedno prawo dostępu !"
#, python-format
#~ msgid "is validated."
#~ msgstr "zostało zatwierdzone."
#~ msgid "Cash Journal - (test)"
#~ msgstr "Dziennik kasowy (test)"

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-23 04:58+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:52+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -30,7 +30,7 @@ msgstr "Outras configurações"
#: code:addons/account/wizard/account_open_closed_fiscalyear.py:40
#, python-format
msgid "No End of year journal defined for the fiscal year"
msgstr ""
msgstr "Nenhum diário de fim de ano definido para o ano fiscal"
#. module: account
#: code:addons/account/account.py:506
@ -692,7 +692,7 @@ msgstr "Período de abertura"
#. module: account
#: model:ir.model,name:account.model_account_journal_period
msgid "Journal Period"
msgstr ""
msgstr "Período do Diário"
#. module: account
#: code:addons/account/account_move_line.py:732
@ -738,12 +738,6 @@ msgstr "Cheque"
msgid "Partners Reconciled Today"
msgstr "Parceiros reconciliados hoje"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "O saldo do extrato é incorrecto!\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -1067,7 +1061,7 @@ msgstr "Em disputa"
#: model:ir.actions.act_window,name:account.action_view_bank_statement_tree
#: model:ir.ui.menu,name:account.journal_cash_move_lines
msgid "Cash Registers"
msgstr ""
msgstr "Registos de Caixa"
#. module: account
#: selection:account.account.type,report_type:0
@ -2636,11 +2630,12 @@ msgid "August"
msgstr "Agosto"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "O saldo esperado (%.2f) é diferente do calculado. (%.2f)"
msgstr ""
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2885,6 +2880,12 @@ msgstr "A contas base da declaração fiscal"
msgid "View"
msgstr "Ecrã"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4267,12 +4268,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Saldo da Conta -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr "Fatura "
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5578,10 +5573,10 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgstr "está validado"
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
#: view:account.chart.template:0
@ -10342,6 +10337,10 @@ msgstr ""
#~ msgid "You can not validate a non-balanced entry !"
#~ msgstr "Não pode validar um movimento não balanceado."
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "O saldo do extrato é incorrecto!\n"
#~ msgid "Date or Code"
#~ msgstr "Data ou Código"
@ -11328,6 +11327,10 @@ msgstr ""
#~ msgid "Error ! You can not create recursive Menu."
#~ msgstr "Erro! Não pode criar menus recursivos."
#, python-format
#~ msgid "Invoice "
#~ msgstr "Fatura "
#~ msgid "Size of the field can never be less than 1 !"
#~ msgstr "O tamanho do campo não pode ser inferior a 1 !"
@ -11373,6 +11376,10 @@ msgstr ""
#~ msgid "Bilanzkonten - Aktiva - Vermögenskonten"
#~ msgstr "Balanço de Contas - Ativo - Contas financeiras"
#, python-format
#~ msgid "is validated."
#~ msgstr "está validado"
#~ msgid "Default UoM"
#~ msgstr "UdM Padrão"
@ -11398,5 +11405,10 @@ msgstr ""
#~ "Faturas a clientes, permite criar e gerir as faturas emitidas aos clientes. "
#~ "O OpenERP gera faturas em rascunho automaticamente, que só terá de confirmar."
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "O saldo esperado (%.2f) é diferente do calculado. (%.2f)"
#~ msgid "Ansicht"
#~ msgstr "Vista"

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-09 04:39+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:56+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -749,12 +749,6 @@ msgstr "Verificar"
msgid "Partners Reconciled Today"
msgstr "Parceiros Reconciliados Hoje"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "O saldo do demonstrativo está incorreto\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2707,11 +2701,12 @@ msgid "August"
msgstr "Agosto"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "O saldo esperado (%.2f) é diferente do calculado. (%.2f)"
msgstr ""
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2965,6 +2960,12 @@ msgstr "A base contábil da declaração de imposto."
msgid "View"
msgstr "Visualizar"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4409,12 +4410,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Saldo da conta -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr "Fatura "
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5758,10 +5753,10 @@ msgstr ""
"'concluído' (pago) no sistema."
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgstr "está validada."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
#: view:account.chart.template:0
@ -11079,6 +11074,11 @@ msgstr ""
#~ msgid "Journal de vente"
#~ msgstr "Diário de vendas"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "O saldo esperado (%.2f) é diferente do calculado. (%.2f)"
#~ msgid "Fiscal Position Template Account Mapping"
#~ msgstr "Mapeamento contábil dos Modelos para Posição Fiscal"
@ -11308,6 +11308,10 @@ msgstr ""
#~ msgid "Parent Analytic Account"
#~ msgstr "Conta-pai analítica"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "O saldo do demonstrativo está incorreto\n"
#~ msgid "Balance brought forward"
#~ msgstr "Saldo transferido de para"
@ -11709,3 +11713,11 @@ msgstr ""
#~ msgid "Expenses Credit Notes Journal - (test)"
#~ msgstr "Diário de Notas de Crédito de despesas"
#, python-format
#~ msgid "Invoice "
#~ msgstr "Fatura "
#, python-format
#~ msgid "is validated."
#~ msgstr "está validada."

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-11 11:14+0000\n"
"PO-Revision-Date: 2011-03-03 07:58+0000\n"
"PO-Revision-Date: 2011-03-21 21:06+0000\n"
"Last-Translator: Dorin <dhongu@gmail.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-04 04:45+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"X-Launchpad-Export-Date: 2011-03-22 04:35+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -725,12 +725,6 @@ msgstr "Bifează"
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "Soldul final este incorect !\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2214,7 +2208,7 @@ msgstr "Filtre"
#: selection:report.invoice.created,state:0
#, python-format
msgid "Open"
msgstr "Deschidere"
msgstr "Deschis"
#. module: account
#: model:process.node,note:account.process_node_draftinvoices0
@ -2608,11 +2602,12 @@ msgid "August"
msgstr "August"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "The soldul prognozat (%.2f) este diferit de cel calculat. (%.2f)"
msgstr ""
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2857,6 +2852,12 @@ msgstr "Baza de conturi pentru declaraţia fiscală"
msgid "View"
msgstr "Machetă"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4235,12 +4236,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Sold cont -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -4290,7 +4285,7 @@ msgstr ""
#: view:account.invoice.report:0
#: field:account.invoice.report,user_id:0
msgid "Salesman"
msgstr ""
msgstr "Agent de vânzări"
#. module: account
#: view:account.invoice.report:0
@ -4376,7 +4371,7 @@ msgstr "Aplicare taxă"
#: model:ir.ui.menu,name:account.menu_eaction_account_moves_sale
#, python-format
msgid "Journal Items"
msgstr ""
msgstr "Poziții jurnal"
#. module: account
#: selection:account.account.type,report_type:0
@ -5544,9 +5539,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
@ -6437,7 +6432,7 @@ msgstr ""
#: field:account.invoice,origin:0
#: field:report.invoice.created,origin:0
msgid "Source Document"
msgstr ""
msgstr "Document sursă"
#. module: account
#: help:account.account.type,sign:0
@ -7741,7 +7736,7 @@ msgstr "Data scadenţei"
#: model:ir.ui.menu,name:account.menu_account_supplier
#: model:ir.ui.menu,name:account.menu_finance_payables
msgid "Suppliers"
msgstr ""
msgstr "Furnizori"
#. module: account
#: constraint:account.move:0
@ -8684,7 +8679,7 @@ msgstr ""
#. module: account
#: field:account.installer.modules,account_payment:0
msgid "Suppliers Payment Management"
msgstr ""
msgstr "Administrare Plată Furnizori"
#. module: account
#: field:account.period,name:0
@ -9670,7 +9665,7 @@ msgstr "Viitor"
#. module: account
#: view:account.move.line:0
msgid "Search Journal Items"
msgstr ""
msgstr "Caută poziții jurnal"
#. module: account
#: help:account.tax,base_sign:0
@ -9824,6 +9819,10 @@ msgstr ""
#~ msgid "Value"
#~ msgstr "Valoare"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "Soldul final este incorect !\n"
#~ msgid "Crédit"
#~ msgstr "Credit"
@ -10211,6 +10210,11 @@ msgstr ""
#~ msgid "Invoice import"
#~ msgstr "Import factură"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "The soldul prognozat (%.2f) este diferit de cel calculat. (%.2f)"
#~ msgid "Parent Analytic Account"
#~ msgstr "Contul analitic părinte"

File diff suppressed because it is too large Load Diff

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:23+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:53+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:23+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:53+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:24+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:54+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -716,12 +716,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2582,11 +2576,12 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "Pričakovano stanje (%.2f) je različno od izračunanega (%.2f)"
msgstr ""
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2824,6 +2819,12 @@ msgstr ""
msgid "View"
msgstr "Pogled:"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4194,12 +4195,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Stanje konta -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5494,9 +5489,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
@ -10104,6 +10099,11 @@ msgstr ""
#~ msgid "Continue"
#~ msgstr "Nadaljuj"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "Pričakovano stanje (%.2f) je različno od izračunanega (%.2f)"
#~ msgid "Skip"
#~ msgstr "Preskoči"

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:18+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:47+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -711,12 +711,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2582,9 +2576,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2824,6 +2819,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4194,12 +4195,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5492,9 +5487,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -14,18 +14,18 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:23+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:53+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
msgid "System payment"
msgstr ""
msgstr "Систем плаћања"
#. module: account
#: view:account.journal:0
msgid "Other Configuration"
msgstr ""
msgstr "Остале конфигурације"
#. module: account
#: code:addons/account/wizard/account_open_closed_fiscalyear.py:40
@ -40,6 +40,8 @@ msgid ""
"You cannot remove/deactivate an account which is set as a property to any "
"Partner."
msgstr ""
"Не можете обрисати/поставити неактивним конто јер је повезан са неким "
"партнером."
#. module: account
#: view:account.move.reconcile:0
@ -57,13 +59,13 @@ msgstr ""
#: view:account.move:0
#: view:account.move.line:0
msgid "Account Statistics"
msgstr "Knjigovodstvene statistike"
msgstr "Књиговодствене статистике"
#. module: account
#: field:account.invoice,residual:0
#: field:report.invoice.created,residual:0
msgid "Residual"
msgstr "Ostatak"
msgstr "Остатак"
#. module: account
#: code:addons/account/invoice.py:785
@ -74,27 +76,27 @@ msgstr ""
#. module: account
#: constraint:account.period:0
msgid "Error ! The duration of the Period(s) is/are invalid. "
msgstr "Greška! Trajanje razdoblja je pogrešno. "
msgstr "Грешка! Трајање раздобља је погрешно. "
#. module: account
#: field:account.analytic.line,currency_id:0
msgid "Account currency"
msgstr ""
msgstr "Валута налога"
#. module: account
#: view:account.tax:0
msgid "Children Definition"
msgstr ""
msgstr "Дефинисање подређеног члана"
#. module: account
#: model:ir.model,name:account.model_report_aged_receivable
msgid "Aged Receivable Till Today"
msgstr "Zaostala potraživanja do danas"
msgstr "Заостала потраживања до данас"
#. module: account
#: field:account.partner.ledger,reconcil:0
msgid "Include Reconciled Entries"
msgstr "Uključi zatvorene stavke"
msgstr "Укључи затворене ставке"
#. module: account
#: view:account.pl.report:0
@ -106,17 +108,17 @@ msgstr ""
#. module: account
#: model:process.transition,name:account.process_transition_invoiceimport0
msgid "Import from invoice or payment"
msgstr ""
msgstr "Преузимање из рачуна или плаћања"
#. module: account
#: model:ir.model,name:account.model_wizard_multi_charts_accounts
msgid "wizard.multi.charts.accounts"
msgstr "carobnjak.vise.kontnih.naloga"
msgstr "чаробњак.вишеконтних.налога"
#. module: account
#: view:account.move:0
msgid "Total Debit"
msgstr "Ukupno duguje"
msgstr "Укупно дугује"
#. module: account
#: view:account.unreconcile:0
@ -128,7 +130,7 @@ msgstr ""
#. module: account
#: report:account.tax.code.entries:0
msgid "Accounting Entries-"
msgstr "Stavke naloga"
msgstr "Ставке налога"
#. module: account
#: code:addons/account/account.py:1291
@ -714,12 +716,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2590,9 +2586,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2836,6 +2833,12 @@ msgstr "Porezka osnovica"
msgid "View"
msgstr "Pregled"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4213,12 +4216,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Saldo konta -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5512,9 +5509,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:27+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:58+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -714,12 +714,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2590,9 +2584,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2836,6 +2831,12 @@ msgstr "Porezka osnovica"
msgid "View"
msgstr "Pregled"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4213,12 +4214,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Saldo konta -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5512,9 +5507,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-25 04:55+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:54+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -24,7 +24,7 @@ msgstr "Systembetalning"
#. module: account
#: view:account.journal:0
msgid "Other Configuration"
msgstr "Övrig Konfiguration"
msgstr "Övrig konfiguration"
#. module: account
#: code:addons/account/wizard/account_open_closed_fiscalyear.py:40
@ -727,12 +727,6 @@ msgstr "Markera"
msgid "Partners Reconciled Today"
msgstr "Partners Sammanslagna Idag"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "The statement balance is incorrect !\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2625,12 +2619,12 @@ msgid "August"
msgstr "Augusti"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
"The expected balance (%.2f) is different than the computed one. (%.2f)"
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2874,6 +2868,12 @@ msgstr "The account basis of the tax declaration."
msgid "View"
msgstr "Visa"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -3947,7 +3947,7 @@ msgstr "Standardmoms"
#: code:addons/account/invoice.py:88
#, python-format
msgid "Free Reference"
msgstr "Free Reference"
msgstr "Meddelande"
#. module: account
#: model:ir.ui.menu,name:account.menu_finance_periodical_processing
@ -4260,12 +4260,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Account Balance -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr "Faktura "
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5570,10 +5564,10 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgstr "har validerats."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
#: view:account.chart.template:0
@ -10536,6 +10530,12 @@ msgstr ""
#~ msgid "Fiscal Position Template Account Mapping"
#~ msgstr "Fiscal Position Template Account Mapping"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgid "Third party (Country)"
#~ msgstr "Tredje part (Land)"
@ -10561,6 +10561,10 @@ msgstr ""
#~ "1. Line 1: percent 0.02 14 days\n"
#~ "2. Line 2: balance 30 days"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "The statement balance is incorrect !\n"
#~ msgid "TITLE COMPANY"
#~ msgstr "TITLE COMPANY"
@ -11134,3 +11138,11 @@ msgstr ""
#~ msgid "End of Year"
#~ msgstr "Årsavslut"
#, python-format
#~ msgid "is validated."
#~ msgstr "har validerats."
#, python-format
#~ msgid "Invoice "
#~ msgstr "Faktura "

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:24+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:54+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:24+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:54+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "ఖాతా నిల్వ -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-20 04:53+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:54+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr "ตรวจสอบ"
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "งบการเงินมียอดคงเหลือไม่ถูกต้อง\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2577,9 +2571,10 @@ msgid "August"
msgstr "สิงหาคม"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2816,6 +2811,12 @@ msgstr ""
msgid "View"
msgstr "แสดงตัวอย่าง"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4186,12 +4187,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5481,9 +5476,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
@ -9646,3 +9641,7 @@ msgstr ""
#~ msgid "Print Taxes Report"
#~ msgstr "พิมพ์รายงานภาษี"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "งบการเงินมียอดคงเหลือไม่ถูกต้อง\n"

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:25+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:54+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -708,12 +708,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2574,9 +2568,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2813,6 +2808,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4183,12 +4184,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5478,9 +5473,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-24 04:54+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:55+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -738,12 +738,6 @@ msgstr "Çek"
msgid "Partners Reconciled Today"
msgstr "Partners Reconciled Today"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "The statement balance is incorrect !\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2654,12 +2648,12 @@ msgid "August"
msgstr "August"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
"The expected balance (%.2f) is different than the computed one. (%.2f)"
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2910,6 +2904,12 @@ msgstr "The account basis of the tax declaration."
msgid "View"
msgstr "Görünüm"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4314,12 +4314,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Account Balance -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr "Invoice "
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5647,10 +5641,10 @@ msgstr ""
"(i.e. paid) in the system."
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgstr "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
#: view:account.chart.template:0
@ -13952,6 +13946,12 @@ msgstr ""
#~ "Seçilen dil systemde yüklü ise bu ortağa ait bütün belgeler bu dilde "
#~ "yazdırılacaktır. Aksi taktirde, İngilizce kullanılır."
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgid "Base Field"
#~ msgstr "Taban Alan"
@ -15902,6 +15902,10 @@ msgstr ""
#~ msgid "No product in this location."
#~ msgstr "No product in this location."
#, python-format
#~ msgid "Invoice "
#~ msgstr "Invoice "
#~ msgid "Field Type"
#~ msgstr "Alan Türü"
@ -17038,6 +17042,10 @@ msgstr ""
#~ msgid "Default Company"
#~ msgstr "Default Company"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "The statement balance is incorrect !\n"
#~ msgid "ID of the view defined in xml file"
#~ msgstr "ID of the view defined in xml file"
@ -17367,6 +17375,10 @@ msgstr ""
#~ msgid "ir.actions.todo"
#~ msgstr "ir.actions.todo"
#, python-format
#~ msgid "is validated."
#~ msgstr "is validated."
#~ msgid "Couldn't find previous ir.actions.todo"
#~ msgstr "Couldn't find previous ir.actions.todo"

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:25+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:55+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:25+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:55+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -710,12 +710,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2576,9 +2570,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2815,6 +2810,12 @@ msgstr ""
msgid "View"
msgstr "Перегляд"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4185,12 +4186,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5481,9 +5476,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-18 04:42+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:55+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -9,13 +9,13 @@ msgstr ""
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-11 11:14+0000\n"
"PO-Revision-Date: 2011-01-19 21:51+0000\n"
"Last-Translator: Phong Nguyen <Unknown>\n"
"Last-Translator: Phong Nguyen-Thanh <Unknown>\n"
"Language-Team: Vietnamese <vi@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-20 04:53+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:55+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -745,12 +745,6 @@ msgstr "Séc"
msgid "Partners Reconciled Today"
msgstr "Các đối tác được đối soát hôm nay"
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "The statement balance is incorrect !\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2668,12 +2662,12 @@ msgid "August"
msgstr "Tháng Tám"
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
"The expected balance (%.2f) is different than the computed one. (%.2f)"
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2925,6 +2919,12 @@ msgstr "The account basis of the tax declaration."
msgid "View"
msgstr "View"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4338,12 +4338,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "Số dư tài khoản -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr "Hóa đơn "
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5676,10 +5670,10 @@ msgstr ""
"(i.e. paid) in the system."
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgstr "đã được kiểm tra."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
#: view:account.chart.template:0
@ -10321,6 +10315,12 @@ msgstr ""
#~ msgid "The certificate ID of the module must be unique !"
#~ msgstr "Mã chứng nhận của mô đun này phải là duy nhất !"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgid "Options"
#~ msgstr "Options"
@ -10421,6 +10421,10 @@ msgstr ""
#~ msgid "Income"
#~ msgstr "Income"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "The statement balance is incorrect !\n"
#~ msgid ""
#~ "If the active field is set to true, it will allow you to hide the tax "
#~ "without removing it."
@ -10800,6 +10804,10 @@ msgstr ""
#~ "A supplier refund is a credit note from your supplier indicating that he "
#~ "refunds part or totality of the invoice sent to you."
#, python-format
#~ msgid "Invoice "
#~ msgstr "Hóa đơn "
#~ msgid "Default UoM"
#~ msgstr "Đơn vị đo mặc định"
@ -10820,3 +10828,7 @@ msgstr ""
#~ msgid "Entry encoding"
#~ msgstr "Mã hóa bút toán"
#, python-format
#~ msgid "is validated."
#~ msgstr "đã được kiểm tra."

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-02-05 05:00+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:57+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -710,12 +710,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr "银行单据的余额不对!\n"
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2578,11 +2572,12 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr "预期的余额为(%.2f)它和计算额(%.2f)不同。"
msgstr ""
#. module: account
#: model:process.transition,note:account.process_transition_paymentreconcile0
@ -2820,6 +2815,12 @@ msgstr "纳税申报的计税基准科目"
msgid "View"
msgstr "视图"
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4190,12 +4191,6 @@ msgstr ""
msgid "Account Balance -"
msgstr "科目余额 -"
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5487,9 +5482,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
@ -10642,6 +10637,11 @@ msgstr ""
#~ msgid "Standard entry"
#~ msgstr "普通凭证"
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "预期的余额为(%.2f)它和计算额(%.2f)不同。"
#~ msgid "Select invoices you want to pay and manages advances"
#~ msgstr "选择你要支付和要放款的发票"
@ -10666,6 +10666,10 @@ msgstr ""
#~ ".第一行:百分比2%14天\n"
#~ ".第二行:剩下30天"
#, python-format
#~ msgid "The statement balance is incorrect !\n"
#~ msgstr "银行单据的余额不对!\n"
#~ msgid "TITLE COMPANY"
#~ msgstr "公司名称"

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:26+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:56+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -709,12 +709,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2575,9 +2569,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2814,6 +2809,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4184,12 +4185,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5479,9 +5474,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account

View File

@ -13,24 +13,24 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:27+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:57+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
msgid "System payment"
msgstr ""
msgstr "系統付款"
#. module: account
#: view:account.journal:0
msgid "Other Configuration"
msgstr ""
msgstr "其他配置"
#. module: account
#: code:addons/account/wizard/account_open_closed_fiscalyear.py:40
#, python-format
msgid "No End of year journal defined for the fiscal year"
msgstr ""
msgstr "未為財政年度定義年終日記帳"
#. module: account
#: code:addons/account/account.py:506
@ -56,7 +56,7 @@ msgstr ""
#: view:account.move:0
#: view:account.move.line:0
msgid "Account Statistics"
msgstr ""
msgstr "帳戶統計"
#. module: account
#: field:account.invoice,residual:0
@ -78,7 +78,7 @@ msgstr ""
#. module: account
#: field:account.analytic.line,currency_id:0
msgid "Account currency"
msgstr ""
msgstr "帳戶貨幣"
#. module: account
#: view:account.tax:0
@ -149,7 +149,7 @@ msgstr ""
#: view:account.move.line.reconcile:0
#: view:account.move.line.reconcile.writeoff:0
msgid "Reconcile"
msgstr ""
msgstr "對帳"
#. module: account
#: field:account.bank.statement.line,ref:0
@ -159,12 +159,12 @@ msgstr ""
#: field:account.move.line,ref:0
#: field:account.subscription,ref:0
msgid "Reference"
msgstr "照"
msgstr "照"
#. module: account
#: view:account.open.closed.fiscalyear:0
msgid "Choose Fiscal Year "
msgstr ""
msgstr "選擇財政年度 "
#. module: account
#: help:account.payment.term,active:0
@ -177,7 +177,7 @@ msgstr ""
#: code:addons/account/invoice.py:1421
#, python-format
msgid "Warning!"
msgstr ""
msgstr "警告!"
#. module: account
#: field:account.fiscal.position.account,account_src_id:0
@ -708,12 +708,6 @@ msgstr ""
msgid "Partners Reconciled Today"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid "The statement balance is incorrect !\n"
msgstr ""
#. module: account
#: selection:account.payment.term.line,value:0
#: selection:account.tax.template,type:0
@ -2574,9 +2568,10 @@ msgid "August"
msgstr ""
#. module: account
#: code:addons/account/account_bank_statement.py:307
#: code:addons/account/account_bank_statement.py:306
#, python-format
msgid ""
"The statement balance is incorrect !\n"
"The expected balance (%.2f) is different than the computed one. (%.2f)"
msgstr ""
@ -2813,6 +2808,12 @@ msgstr ""
msgid "View"
msgstr ""
#. module: account
#: code:addons/account/account.py:2951
#, python-format
msgid "BNK%s"
msgstr ""
#. module: account
#: code:addons/account/account.py:2906
#: code:addons/account/installer.py:296
@ -4183,12 +4184,6 @@ msgstr ""
msgid "Account Balance -"
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#, python-format
msgid "Invoice "
msgstr ""
#. module: account
#: field:account.automatic.reconcile,date1:0
msgid "Starting Date"
@ -5478,9 +5473,9 @@ msgid ""
msgstr ""
#. module: account
#: code:addons/account/invoice.py:989
#: code:addons/account/invoice.py:997
#, python-format
msgid "is validated."
msgid "Invoice '%s' is validated."
msgstr ""
#. module: account
@ -7094,7 +7089,7 @@ msgstr ""
#: code:addons/account/invoice.py:720
#, python-format
msgid "Warning !"
msgstr ""
msgstr "警告!"
#. module: account
#: field:account.entries.report,move_line_state:0

View File

@ -36,7 +36,7 @@ class account_installer(osv.osv_memory):
def _get_charts(self, cr, uid, context=None):
modules = self.pool.get('ir.module.module')
ids = modules.search(cr, uid, [('category_id', '=', 'Account Charts')], context=context)
ids = modules.search(cr, uid, [('name', 'like', 'l10n_')], context=context)
charts = list(
sorted(((m.name, m.shortdesc)
for m in modules.browse(cr, uid, ids, context=context)),
@ -213,7 +213,7 @@ class account_installer(osv.osv_memory):
}, context=context)
if 'date_start' in res and 'date_stop' in res:
f_ids = fy_obj.search(cr, uid, [('date_start', '<=', res['date_start']), ('date_stop', '>=', res['date_stop']), ('company_id', '=', res['company_id'])], context=context)
f_ids = fy_obj.search(cr, uid, [('date_start', '<=', res['date_start']), ('date_stop', '>=', res['date_stop']), ('company_id', '=', res['company_id'][0])], context=context)
if not f_ids:
name = code = res['date_start'][:4]
if int(name) != int(res['date_stop'][:4]):
@ -224,7 +224,7 @@ class account_installer(osv.osv_memory):
'code': code,
'date_start': res['date_start'],
'date_stop': res['date_stop'],
'company_id': res['company_id']
'company_id': res['company_id'][0]
}
fiscal_id = fy_obj.create(cr, uid, vals, context=context)
if res['period'] == 'month':

View File

@ -362,13 +362,13 @@ class account_invoice(osv.osv):
def unlink(self, cr, uid, ids, context=None):
if context is None:
context = {}
invoices = self.read(cr, uid, ids, ['state'], context=context)
invoices = self.read(cr, uid, ids, ['state','internal_number'], context=context)
unlink_ids = []
for t in invoices:
if t['state'] in ('draft', 'cancel'):
if t['state'] in ('draft', 'cancel') and t['internal_number']== False:
unlink_ids.append(t['id'])
else:
raise osv.except_osv(_('Invalid action !'), _('Cannot delete invoice(s) that are already opened or paid !'))
raise osv.except_osv(_('Invalid action !'), _('Cannot delete invoice(s) that are already opened(or been in opened state ever) or paid!'))
osv.osv.unlink(self, cr, uid, unlink_ids, context=context)
return True
@ -994,7 +994,7 @@ class account_invoice(osv.osv):
ctx = context.copy()
if obj_inv.type in ('out_invoice', 'out_refund'):
ctx = self.get_log_context(cr, uid, context=ctx)
message = _('Invoice ') + " '" + name + "' "+ _("is validated.")
message = _("Invoice '%s' is validated.") % name
self.log(cr, uid, inv_id, message, context=ctx)
return True
@ -1290,6 +1290,20 @@ class account_invoice_line(osv.osv):
'price_unit': _price_unit_default,
}
def fields_view_get(self, cr, uid, view_id=None, view_type='form', context=None, toolbar=False, submenu=False):
if context is None:
context = {}
res = super(account_invoice_line,self).fields_view_get(cr, uid, view_id=view_id, view_type=view_type, context=context, toolbar=toolbar, submenu=submenu)
if context.get('type', False):
doc = etree.XML(res['arch'])
for node in doc.xpath("//field[@name='product_id']"):
if context['type'] in ('in_invoice', 'in_refund'):
node.set('domain', "[('purchase_ok', '=', True)]")
else:
node.set('domain', "[('sale_ok', '=', True)]")
res['arch'] = etree.tostring(doc)
return res
def product_id_change(self, cr, uid, ids, product, uom, qty=0, name='', type='out_invoice', partner_id=False, fposition_id=False, price_unit=False, address_invoice_id=False, currency_id=False, context=None):
if context is None:
context = {}
@ -1352,6 +1366,8 @@ class account_invoice_line(osv.osv):
currency = self.pool.get('res.currency').browse(cr, uid, currency_id, context=context)
if company.currency_id.id != currency.id:
if type in ('in_invoice', 'in_refund'):
res_final['value']['price_unit'] = res.standard_price
new_price = res_final['value']['price_unit'] * currency.rate
res_final['value']['price_unit'] = new_price

View File

@ -131,7 +131,7 @@
id="action_analytic_open"
name="Analytic Accounts"
res_model="account.analytic.account"
context="{'search_default_partner_id':[active_id]}"
context="{'search_default_partner_id':[active_id], 'default_partner_id': active_id}"
src_model="res.partner"
view_type="form"
view_mode="tree,form,graph,calendar"

View File

@ -56,19 +56,19 @@
<field name="field_parent">child_complete_ids</field>
<field name="arch" type="xml">
<tree colors="blue:type in ('view');red:(date&lt;current_date);black:(date&gt;=current_date);black:(date==False)" string="Analytic account" toolbar="1">
<field name="name"/>
<field name="name"/>
<field name="code"/>
<field name="quantity"/>
<field name="quantity_max"/>
<field name="debit"/>
<field name="credit"/>
<field name="balance"/>
<field name="currency_id" groups="base.group_extended"/>
<field name="currency_id" groups="base.group_extended"/>
<field name="date" invisible="1"/>
<field name="user_id" invisible="1"/>
<field name="partner_id" invisible="1"/>
<field name="parent_id" invisible="1"/>
<field name="type" invisible="1"/>
<field name="type"/>
</tree>
</field>
</record>
@ -82,7 +82,7 @@
<group colspan="4" col="6">
<field name="name" select="1" colspan="4"/>
<field name="code" select="1"/>
<field name="parent_id" on_change="on_change_parent(parent_id)" groups="base.group_extended"/>
<field name="parent_id" on_change="on_change_parent(parent_id)" groups="base.group_extended" domain="[('type','=','view')]"/>
<field name="company_id" on_change="on_change_company(company_id)" select="2" widget="selection" groups="base.group_multi_company" attrs="{'required': [('type','&lt;&gt;','view')]}"/>
<field name="type" select="2"/>
</group>
@ -446,7 +446,7 @@
</record>
<act_window
context="{'search_default_account_id': [active_id], 'search_default_user_id': False}"
context="{'search_default_account_id': [active_id], 'search_default_user_id': False, 'default_account_id': active_id}"
id="act_acc_analytic_acc_5_report_hr_timesheet_invoice_journal"
name="All Analytic Entries"
res_model="account.analytic.line"

View File

@ -89,7 +89,7 @@ class account_balance(report_sxw.rml_parse, common_report_header):
self.sum_debit += account_rec['debit']
self.sum_credit += account_rec['credit']
if disp_acc == 'bal_movement':
if not currency_obj.is_zero(self.cr, self.uid, currency, res['credit']) > 0 or not currency_obj.is_zero(self.cr, self.uid, currency, res['debit']) > 0 or not currency_obj.is_zero(self.cr, self.uid, currency, res['balance']):
if not currency_obj.is_zero(self.cr, self.uid, currency, res['credit']) or not currency_obj.is_zero(self.cr, self.uid, currency, res['debit']) or not currency_obj.is_zero(self.cr, self.uid, currency, res['balance']):
self.result_acc.append(res)
elif disp_acc == 'bal_solde':
if not currency_obj.is_zero(self.cr, self.uid, currency, res['balance']):

View File

@ -144,7 +144,7 @@ class report_balancesheet_horizontal(report_sxw.rml_parse, common_report_header)
if typ == 'asset' and account.type <> 'view' and (account.debit <> account.credit):
self.result_sum_cr += account.balance
if data['form']['display_account'] == 'bal_movement':
if not currency_pool.is_zero(self.cr, self.uid, currency, account.credit) > 0 or not currency_pool.is_zero(self.cr, self.uid, currency, account.debit) > 0 or not currency_pool.is_zero(self.cr, self.uid, currency, account.balance):
if not currency_pool.is_zero(self.cr, self.uid, currency, account.credit) or not currency_pool.is_zero(self.cr, self.uid, currency, account.debit) or not currency_pool.is_zero(self.cr, self.uid, currency, account.balance):
accounts_temp.append(account_dict)
elif data['form']['display_account'] == 'bal_solde':
if not currency_pool.is_zero(self.cr, self.uid, currency, account.balance):

View File

@ -114,7 +114,7 @@ class report_pl_account_horizontal(report_sxw.rml_parse, common_report_header):
if typ == 'income' and account.type <> 'view' and (account.debit <> account.credit):
self.result_sum_cr += abs(account.debit - account.credit)
if data['form']['display_account'] == 'bal_movement':
if not currency_pool.is_zero(self.cr, self.uid, currency, account.credit) > 0 or not currency_pool.is_zero(self.cr, self.uid, currency, account.debit) > 0 or not currency_pool.is_zero(self.cr, self.uid, currency, account.balance):
if not currency_pool.is_zero(self.cr, self.uid, currency, account.credit) or not currency_pool.is_zero(self.cr, self.uid, currency, account.debit) or not currency_pool.is_zero(self.cr, self.uid, currency, account.balance):
accounts_temp.append(account)
elif data['form']['display_account'] == 'bal_solde':
if not currency_pool.is_zero(self.cr, self.uid, currency, account.balance):

View File

@ -32,6 +32,7 @@
<field eval="True" name="global"/>
<field name="domain_force">['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])]</field>
</record>
<record id="journal_comp_rule" model="ir.rule">
<field name="name">Journal multi-company</field>
@ -79,7 +80,7 @@
<field name="name">Tax multi-company</field>
<field model="ir.model" name="model_id" ref="model_account_tax"/>
<field eval="True" name="global"/>
<field name="domain_force">['|',('company_id','=',False),('company_id','=',user.company_id.id)]</field>
<field name="domain_force">['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])]</field>
</record>
<record id="tax_code_comp_rule" model="ir.rule">
@ -110,4 +111,25 @@
<field name="domain_force">['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])]</field>
</record>
<record model="ir.rule" id="account_invoice_line_comp_rule">
<field name="name">Invoice Line company rule</field>
<field name="model_id" ref="model_account_invoice_line"/>
<field name="global" eval="True"/>
<field name="domain_force">['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])]</field>
</record>
<record model="ir.rule" id="account_bank_statement_comp_rule">
<field name="name">Account bank statement company rule</field>
<field name="model_id" ref="model_account_bank_statement"/>
<field name="global" eval="True"/>
<field name="domain_force">['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])]</field>
</record>
<record model="ir.rule" id="account_bank_statement_line_comp_rule">
<field name="name">Account bank statement line company rule</field>
<field name="model_id" ref="model_account_bank_statement_line"/>
<field name="global" eval="True"/>
<field name="domain_force">['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])]</field>
</record>
</data></openerp>

View File

@ -63,6 +63,7 @@
"access_account_fiscalyear_user","account.fiscalyear.user","model_account_fiscalyear","account.group_account_user",1,0,0,0
"access_account_fiscalyear_invoice","account.fiscalyear.invoice","model_account_fiscalyear","account.group_account_invoice",1,0,0,0
"access_account_fiscalyear_partner_manager","account.fiscalyear.partnermanager","model_account_fiscalyear","base.group_partner_manager",1,0,0,0
"access_account_fiscalyear_employee","account.fiscalyear employee","model_account_fiscalyear","base.group_user",1,0,0,0
"access_res_currency_account_manager","res.currency account manager","base.model_res_currency","group_account_manager",1,1,1,1
"access_res_currency_rate_account_manager","res.currency.rate account manager","base.model_res_currency_rate","group_account_manager",1,1,1,1
"access_account_invoice_user","account.invoice user","model_account_invoice","base.group_user",1,0,0,0

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
63 access_account_fiscalyear_user account.fiscalyear.user model_account_fiscalyear account.group_account_user 1 0 0 0
64 access_account_fiscalyear_invoice account.fiscalyear.invoice model_account_fiscalyear account.group_account_invoice 1 0 0 0
65 access_account_fiscalyear_partner_manager account.fiscalyear.partnermanager model_account_fiscalyear base.group_partner_manager 1 0 0 0
66 access_account_fiscalyear_employee account.fiscalyear employee model_account_fiscalyear base.group_user 1 0 0 0
67 access_res_currency_account_manager res.currency account manager base.model_res_currency group_account_manager 1 1 1 1
68 access_res_currency_rate_account_manager res.currency.rate account manager base.model_res_currency_rate group_account_manager 1 1 1 1
69 access_account_invoice_user account.invoice user model_account_invoice base.group_user 1 0 0 0

View File

@ -143,15 +143,15 @@ class account_automatic_reconcile(osv.osv_memory):
obj_model = self.pool.get('ir.model.data')
if context is None:
context = {}
form = self.read(cr, uid, ids, [])[0]
max_amount = form.get('max_amount', False) and form.get('max_amount') or 0.0
power = form['power']
allow_write_off = form['allow_write_off']
form = self.browse(cr, uid, ids, context=context)[0]
max_amount = form.max_amount or 0.0
power = form.power
allow_write_off = form.allow_write_off
reconciled = unreconciled = 0
if not form['account_ids']:
if not form.account_ids:
raise osv.except_osv(_('UserError'), _('You must select accounts to reconcile'))
for account_id in form['account_ids']:
params = (account_id,)
for account_id in form.account_ids:
params = (account_id.id,)
if not allow_write_off:
query = """SELECT partner_id FROM account_move_line WHERE account_id=%s AND reconcile_id IS NULL
AND state <> 'draft' GROUP BY partner_id
@ -172,12 +172,12 @@ class account_automatic_reconcile(osv.osv_memory):
"AND partner_id=%s " \
"AND state <> 'draft' " \
"AND reconcile_id IS NULL",
(account_id, partner_id))
(account_id.id, partner_id))
line_ids = [id for (id,) in cr.fetchall()]
if line_ids:
reconciled += len(line_ids)
if allow_write_off:
move_line_obj.reconcile(cr, uid, line_ids, 'auto', form['writeoff_acc_id'], form['period_id'], form['journal_id'], context)
move_line_obj.reconcile(cr, uid, line_ids, 'auto', form.writeoff_acc_id.id, form.period_id.id, form.journal_id.id, context)
else:
move_line_obj.reconcile_partial(cr, uid, line_ids, 'manual', context=context)
@ -191,7 +191,7 @@ class account_automatic_reconcile(osv.osv_memory):
"AND partner_id IS NOT NULL " \
"GROUP BY partner_id " \
"HAVING count(*)>1",
(account_id,))
(account_id.id,))
partner_ids = [id for (id,) in cr.fetchall()]
#filter?
for partner_id in partner_ids:
@ -205,7 +205,7 @@ class account_automatic_reconcile(osv.osv_memory):
"AND state <> 'draft' " \
"AND debit > 0 " \
"ORDER BY date_maturity",
(account_id, partner_id))
(account_id.id, partner_id))
debits = cr.fetchall()
# get the list of unreconciled 'credit transactions' for this partner
@ -218,10 +218,10 @@ class account_automatic_reconcile(osv.osv_memory):
"AND state <> 'draft' " \
"AND credit > 0 " \
"ORDER BY date_maturity",
(account_id, partner_id))
(account_id.id, partner_id))
credits = cr.fetchall()
(rec, unrec) = self.do_reconcile(cr, uid, credits, debits, max_amount, power, form['writeoff_acc_id'], form['period_id'], form['journal_id'], context)
(rec, unrec) = self.do_reconcile(cr, uid, credits, debits, max_amount, power, form.writeoff_acc_id.id, form.period_id.id, form.journal_id.id, context)
reconciled += rec
unreconciled += unrec
@ -234,7 +234,7 @@ class account_automatic_reconcile(osv.osv_memory):
"WHERE account_id=%s " \
"AND reconcile_id IS NULL " \
"AND state <> 'draft' " + partner_filter,
(account_id,))
(account_id.id,))
additional_unrec = cr.fetchone()[0]
unreconciled = unreconciled + additional_unrec
context.update({'reconciled': reconciled, 'unreconciled': unreconciled})
@ -252,4 +252,4 @@ class account_automatic_reconcile(osv.osv_memory):
account_automatic_reconcile()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -45,8 +45,8 @@ class account_change_currency(osv.osv_memory):
obj_currency = self.pool.get('res.currency')
if context is None:
context = {}
data = self.read(cr, uid, ids)[0]
new_currency = data['currency_id']
data = self.browse(cr, uid, ids, context=context)[0]
new_currency = data.currency_id.id
invoice = obj_inv.browse(cr, uid, context['active_id'], context=context)
if invoice.currency_id.id == new_currency:
@ -76,4 +76,4 @@ class account_change_currency(osv.osv_memory):
account_change_currency()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -30,12 +30,12 @@ class account_chart(osv.osv_memory):
_columns = {
'fiscalyear': fields.many2one('account.fiscalyear', \
'Fiscal year', \
help = 'Keep empty for all open fiscal years'),
help='Keep empty for all open fiscal years'),
'period_from': fields.many2one('account.period', 'Start period'),
'period_to': fields.many2one('account.period', 'End period'),
'target_move': fields.selection([('posted', 'All Posted Entries'),
('all', 'All Entries'),
], 'Target Moves', required = True),
], 'Target Moves', required=True),
}
def onchange_fiscalyear(self, cr, uid, ids, fiscalyear_id=False, context=None):
@ -83,13 +83,16 @@ class account_chart(osv.osv_memory):
result = mod_obj.get_object_reference(cr, uid, 'account', 'action_account_tree')
id = result and result[1] or False
result = act_obj.read(cr, uid, [id], context=context)[0]
fiscalyear_id = data.get('fiscalyear', False) and data['fiscalyear'][0] or False
result['periods'] = []
if data['period_from'] and data['period_to']:
result['periods'] = period_obj.build_ctx_periods(cr, uid, data['period_from'], data['period_to'])
result['context'] = str({'fiscalyear': data['fiscalyear'], 'periods': result['periods'], \
period_from = data.get('period_from', False) and data['period_from'][0] or False
period_to = data.get('period_to', False) and data['period_to'][0] or False
result['periods'] = period_obj.build_ctx_periods(cr, uid, period_from, period_to)
result['context'] = str({'fiscalyear': fiscalyear_id, 'periods': result['periods'], \
'state': data['target_move']})
if data['fiscalyear']:
result['name'] += ':' + fy_obj.read(cr, uid, [data['fiscalyear']], context=context)[0]['code']
if fiscalyear_id:
result['name'] += ':' + fy_obj.read(cr, uid, [fiscalyear_id], context=context)[0]['code']
return result
_defaults = {

View File

@ -56,22 +56,22 @@ class account_fiscalyear_close(osv.osv_memory):
obj_acc_account = self.pool.get('account.account')
obj_acc_journal_period = self.pool.get('account.journal.period')
data = self.read(cr, uid, ids, context=context)
data = self.browse(cr, uid, ids, context=context)
if context is None:
context = {}
fy_id = data[0]['fy_id']
fy_id = data[0].fy_id.id
cr.execute("SELECT id FROM account_period WHERE date_stop < (SELECT date_start FROM account_fiscalyear WHERE id = %s)", (str(data[0]['fy2_id']),))
cr.execute("SELECT id FROM account_period WHERE date_stop < (SELECT date_start FROM account_fiscalyear WHERE id = %s)", (str(data[0].fy2_id.id),))
fy_period_set = ','.join(map(lambda id: str(id[0]), cr.fetchall()))
cr.execute("SELECT id FROM account_period WHERE date_start > (SELECT date_stop FROM account_fiscalyear WHERE id = %s)", (str(fy_id),))
fy2_period_set = ','.join(map(lambda id: str(id[0]), cr.fetchall()))
period = obj_acc_period.browse(cr, uid, data[0]['period_id'], context=context)
new_fyear = obj_acc_fiscalyear.browse(cr, uid, data[0]['fy2_id'], context=context)
old_fyear = obj_acc_fiscalyear.browse(cr, uid, data[0]['fy_id'], context=context)
period = obj_acc_period.browse(cr, uid, data[0].period_id.id, context=context)
new_fyear = obj_acc_fiscalyear.browse(cr, uid, data[0].fy2_id.id, context=context)
old_fyear = obj_acc_fiscalyear.browse(cr, uid, fy_id, context=context)
new_journal = data[0]['journal_id']
new_journal = data[0].journal_id.id
new_journal = obj_acc_journal.browse(cr, uid, new_journal, context=context)
if not new_journal.default_credit_account_id or not new_journal.default_debit_account_id:
@ -107,7 +107,7 @@ class account_fiscalyear_close(osv.osv_memory):
obj_acc_move_line.create(cr, uid, {
'debit': account.balance>0 and account.balance,
'credit': account.balance<0 and -account.balance,
'name': data[0]['report_name'],
'name': data[0].report_name,
'date': period.date_start,
'journal_id': new_journal.id,
'period_id': period.id,
@ -204,7 +204,7 @@ class account_fiscalyear_close(osv.osv_memory):
if ids:
obj_acc_move_line.reconcile(cr, uid, ids, context=context)
new_period = data[0]['period_id']
new_period = data[0].period_id.id
ids = obj_acc_journal_period.search(cr, uid, [('journal_id','=',new_journal.id),('period_id','=',new_period)])
if not ids:
ids = [obj_acc_journal_period.create(cr, uid, {

View File

@ -41,7 +41,7 @@ class account_fiscalyear_close_state(osv.osv_memory):
"""
for data in self.read(cr, uid, ids, context=context):
fy_id = data['fy_id']
fy_id = data['fy_id'][0]
cr.execute('UPDATE account_journal_period ' \
'SET state = %s ' \
@ -61,4 +61,4 @@ class account_fiscalyear_close_state(osv.osv_memory):
account_fiscalyear_close_state()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -88,29 +88,29 @@ class account_invoice_refund(osv.osv_memory):
if context is None:
context = {}
for form in self.read(cr, uid, ids, context=context):
for form in self.browse(cr, uid, ids, context=context):
created_inv = []
date = False
period = False
description = False
company = res_users_obj.browse(cr, uid, uid, context=context).company_id
journal_id = form.get('journal_id', False)
journal_id = form.journal_id.id
for inv in inv_obj.browse(cr, uid, context.get('active_ids'), context=context):
if inv.state in ['draft', 'proforma2', 'cancel']:
raise osv.except_osv(_('Error !'), _('Can not %s draft/proforma/cancel invoice.') % (mode))
if inv.reconciled and mode in ('cancel', 'modify'):
raise osv.except_osv(_('Error !'), _('Can not %s invoice which is already reconciled, invoice should be unreconciled first. You can only Refund this invoice') % (mode))
if form['period']:
period = form['period']
if form.period.id:
period = form.period.id
else:
period = inv.period_id and inv.period_id.id or False
if not journal_id:
journal_id = inv.journal_id.id
if form['date']:
date = form['date']
if not form['period']:
if form.date:
date = form.date
if not form.period.id:
cr.execute("select name from ir_model_fields \
where model = 'account.period' \
and name = 'company_id'")
@ -128,8 +128,8 @@ class account_invoice_refund(osv.osv_memory):
period = res[0]
else:
date = inv.date_invoice
if form['description']:
description = form['description']
if form.description:
description = form.description
else:
description = inv.name
@ -211,10 +211,10 @@ class account_invoice_refund(osv.osv_memory):
return result
def invoice_refund(self, cr, uid, ids, context=None):
data_refund = self.read(cr, uid, ids, [],context=context)[0]['filter_refund']
data_refund = self.read(cr, uid, ids, ['filter_refund'],context=context)[0]['filter_refund']
return self.compute_refund(cr, uid, ids, data_refund, context=context)
account_invoice_refund()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -148,7 +148,7 @@ class account_move_journal(osv.osv_memory):
journal_id = self._get_journal(cr, uid, context)
period_id = self._get_period(cr, uid, context)
target_move = self.read(cr, uid, ids, [])[0]['target_move']
target_move = self.read(cr, uid, ids, ['target_move'], context=context)[0]['target_move']
name = _("Journal Items")
if journal_id:

View File

@ -31,14 +31,13 @@ class account_open_closed_fiscalyear(osv.osv_memory):
}
def remove_entries(self, cr, uid, ids, context=None):
fy_obj = self.pool.get('account.fiscalyear')
move_obj = self.pool.get('account.move')
data = self.read(cr, uid, ids, [], context=context)[0]
data_fyear = fy_obj.browse(cr, uid, data['fyear_id'], context=context)
if not data_fyear.end_journal_period_id:
data = self.browse(cr, uid, ids, context=context)[0]
period_journal = data.fyear_id.end_journal_period_id or False
if not period_journal:
raise osv.except_osv(_('Error !'), _('No End of year journal defined for the fiscal year'))
period_journal = data_fyear.end_journal_period_id
ids_move = move_obj.search(cr, uid, [('journal_id','=',period_journal.journal_id.id),('period_id','=',period_journal.period_id.id)])
if ids_move:
cr.execute('delete from account_move where id IN %s', (tuple(ids_move),))
@ -46,4 +45,4 @@ class account_open_closed_fiscalyear(osv.osv_memory):
account_open_closed_fiscalyear()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -153,9 +153,9 @@ class account_move_line_reconcile_writeoff(osv.osv_memory):
if context is None:
context = {}
data = self.read(cr, uid, ids,context=context)[0]
account_id = data['writeoff_acc_id']
account_id = data['writeoff_acc_id'][0]
context['date_p'] = data['date_p']
journal_id = data['journal_id']
journal_id = data['journal_id'][0]
context['comment'] = data['comment']
if data['analytic_id']:
context['analytic_id'] = data['analytic_id']

View File

@ -131,7 +131,10 @@ class account_common_report(osv.osv_memory):
data = {}
data['ids'] = context.get('active_ids', [])
data['model'] = context.get('active_model', 'ir.ui.menu')
data['form'] = self.read(cr, uid, ids, ['date_from', 'date_to', 'fiscalyear_id', 'journal_ids', 'period_from', 'period_to', 'filter', 'chart_account_id', 'target_move'])[0]
data['form'] = self.read(cr, uid, ids, ['date_from', 'date_to', 'fiscalyear_id', 'journal_ids', 'period_from', 'period_to', 'filter', 'chart_account_id', 'target_move'], context=context)[0]
for field in ['fiscalyear_id', 'chart_account_id', 'period_from', 'period_to']:
if isinstance(data['form'][field], tuple):
data['form'][field] = data['form'][field][0]
used_context = self._build_contexts(cr, uid, ids, data, context=context)
data['form']['periods'] = used_context.get('periods', False) and used_context['periods'] or []
data['form']['used_context'] = used_context

View File

@ -54,21 +54,19 @@ class account_tax_chart(osv.osv_memory):
period_obj = self.pool.get('account.period')
if context is None:
context = {}
data = self.read(cr, uid, ids, [], context=context)[0]
data = self.browse(cr, uid, ids, context=context)[0]
result = mod_obj.get_object_reference(cr, uid, 'account', 'action_tax_code_tree')
id = result and result[1] or False
result = act_obj.read(cr, uid, [id], context=context)[0]
if data['period_id']:
fiscalyear_id = period_obj.read(cr, uid, [data['period_id']], context=context)[0]['fiscalyear_id'][0]
result['context'] = str({'period_id': data['period_id'], \
'fiscalyear_id': fiscalyear_id, \
'state': data['target_move']})
else:
result['context'] = str({'state': data['target_move']})
if data['period_id']:
period_code = period_obj.read(cr, uid, [data['period_id']], context=context)[0]['code']
if data.period_id:
result['context'] = str({'period_id': data.period_id.id, \
'fiscalyear_id': data.period_id.fiscalyear_id.id, \
'state': data.target_move})
period_code = data.period_id.code
result['name'] += period_code and (':' + period_code) or ''
else:
result['context'] = str({'state': data.target_move})
return result
_defaults = {
@ -78,4 +76,4 @@ class account_tax_chart(osv.osv_memory):
account_tax_chart()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -33,8 +33,8 @@ class validate_account_move(osv.osv_memory):
obj_move = self.pool.get('account.move')
if context is None:
context = {}
data = self.read(cr, uid, ids, context=context)[0]
ids_move = obj_move.search(cr, uid, [('state','=','draft'),('journal_id','=',data['journal_id']),('period_id','=',data['period_id'])])
data = self.browse(cr, uid, ids, context=context)[0]
ids_move = obj_move.search(cr, uid, [('state','=','draft'),('journal_id','=',data.journal_id.id),('period_id','=',data.period_id.id)])
if not ids_move:
raise osv.except_osv(_('Warning'), _('Specified Journal does not have any account move entries in draft state for this period'))
obj_move.button_validate(cr, uid, ids_move, context=context)

View File

@ -46,7 +46,10 @@ class account_vat_declaration(osv.osv_memory):
context = {}
datas = {'ids': context.get('active_ids', [])}
datas['model'] = 'account.tax.code'
datas['form'] = self.read(cr, uid, ids)[0]
datas['form'] = self.read(cr, uid, ids, context=context)[0]
for field in datas['form'].keys():
if isinstance(datas['form'][field], tuple):
datas['form'][field] = datas['form'][field][0]
datas['form']['company_id'] = self.pool.get('account.tax.code').browse(cr, uid, [datas['form']['chart_tax_id']], context=context)[0].company_id.id
return {
'type': 'ir.actions.report.xml',

View File

@ -19,10 +19,10 @@
#
##############################################################################
{
"name" : "Accountant",
"name" : "Accountant Access",
"version" : "1.1",
"author" : "OpenERP SA",
"category": 'Generic Modules/Accounting',
"category": 'Finance',
"description": """
Accounting Access Rights.
=========================

View File

@ -21,9 +21,9 @@
{
'name' : 'Analysis of Analytic Account ',
'name' : 'Analytic Account View',
'version' : '1.1',
'category' : 'Generic Modules/Accounting',
'category' : 'Finance',
'description': """
This module is for modifying account analytic view to show important data to project manager of services companies.
===================================================================================================================

View File

@ -20,10 +20,10 @@
##############################################################################
{
'name' : 'Account Analytic Default',
'name' : 'Account Analytic Defaults',
'version' : '1.0',
'category' : 'Generic Modules/Accounting',
'description': """
'category' : 'Finance',
'description': """Set default values for your analytic accounts
Allows to automatically select analytic accounts based on criterions:
=====================================================================

View File

@ -81,7 +81,7 @@
id="act_account_acount_move_line_open"
res_model="account.move.line"
src_model="account.account"
context="{'search_default_account_id': [active_id]}"
context="{'search_default_account_id': [active_id], 'default_account_id': active_id}"
/>
<menuitem
@ -95,7 +95,7 @@
id="analytic_rule_action_partner"
res_model="account.analytic.default"
src_model="res.partner"
context="{'search_default_partner_id': [active_id]}"
context="{'search_default_partner_id': [active_id], 'default_partner_id': active_id}"
groups="analytic.group_analytic_accounting"/>
<act_window
@ -103,7 +103,7 @@
id="analytic_rule_action_user"
res_model="account.analytic.default"
src_model="res.users"
context="{'search_default_user_id': [active_id]}"
context="{'search_default_user_id': [active_id], 'default_user_id': active_id}"
groups="analytic.group_analytic_accounting"/>
<act_window
@ -111,7 +111,7 @@
res_model="account.analytic.default"
id="analytic_rule_action_product"
src_model="product.product"
context="{'search_default_product_id': [active_id]}"
context="{'search_default_product_id': [active_id], 'default_product_id': active_id}"
groups="analytic.group_analytic_accounting"/>
</data>

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-11 11:14+0000\n"
"PO-Revision-Date: 2010-08-02 20:47+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"PO-Revision-Date: 2011-03-17 07:29+0000\n"
"Last-Translator: Dorin <dhongu@gmail.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-01-15 05:36+0000\n"
"X-Generator: Launchpad (build 12177)\n"
"X-Launchpad-Export-Date: 2011-03-18 04:58+0000\n"
"X-Generator: Launchpad (build 12559)\n"
#. module: account_analytic_default
#: model:ir.module.module,shortdesc:account_analytic_default.module_meta_information
@ -44,12 +44,12 @@ msgstr ""
#. module: account_analytic_default
#: view:account.analytic.default:0
msgid "Current"
msgstr ""
msgstr "Curent"
#. module: account_analytic_default
#: view:account.analytic.default:0
msgid "Group By..."
msgstr ""
msgstr "Grupează după..."
#. module: account_analytic_default
#: help:account.analytic.default,date_stop:0
@ -59,7 +59,7 @@ msgstr ""
#. module: account_analytic_default
#: model:ir.model,name:account_analytic_default.model_stock_picking
msgid "Picking List"
msgstr ""
msgstr "Listă preluare"
#. module: account_analytic_default
#: view:account.analytic.default:0
@ -154,7 +154,7 @@ msgstr "Secvenţă"
#. module: account_analytic_default
#: model:ir.model,name:account_analytic_default.model_account_invoice_line
msgid "Invoice Line"
msgstr ""
msgstr "Linie factură"
#. module: account_analytic_default
#: view:account.analytic.default:0
@ -165,7 +165,7 @@ msgstr "Cont analitic"
#. module: account_analytic_default
#: view:account.analytic.default:0
msgid "Accounts"
msgstr ""
msgstr "Conturi"
#. module: account_analytic_default
#: view:account.analytic.default:0
@ -187,7 +187,7 @@ msgstr ""
#. module: account_analytic_default
#: model:ir.model,name:account_analytic_default.model_sale_order_line
msgid "Sales Order Line"
msgstr ""
msgstr "Linie comandă de vânzare"
#~ msgid "Seq"
#~ msgstr "Secv"

View File

@ -21,9 +21,9 @@
{
'name' : 'Multiple-plans management in Analytic Accounting',
'name' : 'Manage multiple plans in Analytic Accounting',
'version' : '1.0',
'category' : 'Generic Modules/Accounting',
'category' : 'Finance',
'description': """
This module allows to use several analytic plans, according to the general journal.
===================================================================================

View File

@ -154,8 +154,8 @@
</record>
<act_window name="Distribution Models"
domain="[('plan_id', '=', active_id),('plan_id','&lt;&gt;',False)]"
context="{'plan_id':active_id}"
domain="[('plan_id','&lt;&gt;',False)]"
context="{'search_default_plan_id': active_id, 'default_plan_id': active_id}"
res_model="account.analytic.plan.instance"
src_model="account.analytic.plan"
id="account_analytic_instance_model_open"/>

View File

@ -45,6 +45,7 @@ class account_crossovered_analytic(osv.osv_memory):
acc_ids = [x[0] for x in res]
data = self.read(cr, uid, ids, [], context=context)[0]
data['ref'] = data['ref'][0]
obj_acc = self.pool.get('account.analytic.account').browse(cr, uid, data['ref'], context=context)
name = obj_acc.name
@ -72,4 +73,4 @@ class account_crossovered_analytic(osv.osv_memory):
account_crossovered_analytic()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -35,7 +35,7 @@ when the invoice is created to transfer this amount to the debtor or creditor ac
Secondly, price differences between actual purchase price and fixed product standard price are booked on a separate account""",
"images" : ["images/account_anglo_saxon.jpeg"],
"depends" : ["product", "purchase"],
"category" : "Generic Modules/Inventory Control",
"category" : "Warehouse",
"init_xml" : [],
"demo_xml" : [],
"update_xml" : ["product_view.xml",],

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