merged with trunk

bzr revid: husen@husen-laptop-20101230095809-cl6dkve1odgdtqtv
This commit is contained in:
husen 2010-12-30 15:28:09 +05:30
commit f433b959c2
6740 changed files with 6185 additions and 8680 deletions

0
addons/.bzrignore Normal file → Executable file
View File

0
addons/account/__init__.py Normal file → Executable file
View File

4
addons/account/__openerp__.py Normal file → Executable file
View File

@ -133,7 +133,9 @@ module named account_voucher.
'test/account_bank_statement.yml',
'test/account_cash_statement.yml',
'test/account_report.yml',
],
],
'installable': True,
'active': False,
'certificate': '0080331923549',

14
addons/account/account.py Normal file → Executable file
View File

@ -204,7 +204,7 @@ class account_account(osv.osv):
args[pos] = ('id', 'in', ids1)
pos += 1
if context and context.has_key('consolidate_childs'): #add consolidated childs of accounts
if context and context.has_key('consolidate_children'): #add consolidated children of accounts
ids = super(account_account, self).search(cr, uid, args, offset, limit,
order, context=context, count=count)
for consolidate_child in self.browse(cr, uid, context['account_id'], context=context).child_consol_ids:
@ -285,6 +285,7 @@ class account_account(osv.osv):
children_and_consolidated.reverse()
brs = list(self.browse(cr, uid, children_and_consolidated, context=context))
sums = {}
currency_obj = self.pool.get('res.currency')
while brs:
current = brs[0]
# can_compute = True
@ -299,8 +300,11 @@ class account_account(osv.osv):
brs.pop(0)
for fn in field_names:
sums.setdefault(current.id, {})[fn] = accounts.get(current.id, {}).get(fn, 0.0)
if current.child_id:
sums[current.id][fn] += sum(sums[child.id][fn] for child in current.child_id)
for child in current.child_id:
if child.company_id.currency_id.id == current.company_id.currency_id.id:
sums[current.id][fn] += sums[child.id][fn]
else:
sums[current.id][fn] += currency_obj.compute(cr, uid, child.company_id.currency_id.id, current.company_id.currency_id.id, sums[child.id][fn], context=context)
res = {}
null_result = dict((fn, 0.0) for fn in field_names)
for id in ids:
@ -1917,7 +1921,7 @@ class account_tax(osv.osv):
RETURN:
[ tax ]
tax = {'name':'', 'amount':0.0, 'account_collected_id':1, 'account_paid_id':2}
one tax for each tax id in IDS and their childs
one tax for each tax id in IDS and their children
"""
res = self._unit_compute(cr, uid, taxes, price_unit, address_id, product, partner, quantity)
total = 0.0
@ -2012,7 +2016,7 @@ class account_tax(osv.osv):
RETURN:
[ tax ]
tax = {'name':'', 'amount':0.0, 'account_collected_id':1, 'account_paid_id':2}
one tax for each tax id in IDS and their childs
one tax for each tax id in IDS and their children
"""
res = self._unit_compute_inv(cr, uid, taxes, price_unit, address_id, product, partner=None)
total = 0.0

0
addons/account/account_analytic_line.py Normal file → Executable file
View File

0
addons/account/account_assert_test.xml Normal file → Executable file
View File

0
addons/account/account_bank_statement.py Normal file → Executable file
View File

0
addons/account/account_cash_statement.py Normal file → Executable file
View File

0
addons/account/account_demo.xml Normal file → Executable file
View File

0
addons/account/account_end_fy.xml Normal file → Executable file
View File

4
addons/account/account_installer.xml Normal file → Executable file
View File

@ -24,8 +24,8 @@
<attribute name='string'></attribute>
</xpath>
<group colspan="8">
<group colspan="4" height="450" width="600">
<field name="charts"/>
<group colspan="4" width="600">
<field name="charts"/>
<group colspan="4" groups="base.group_extended">
<separator col="4" colspan="4" string="Configure Fiscal Year"/>
<field name="company_id" colspan="4" widget="selection"/> <!--always visible because we assume that this wizard will be ran by administrators only and because it was source of blocking form with 'correct red fields' message without displaying the field -->

0
addons/account/account_invoice_view.xml Normal file → Executable file
View File

0
addons/account/account_invoice_workflow.xml Normal file → Executable file
View File

1
addons/account/account_menuitem.xml Normal file → Executable file
View File

@ -6,7 +6,6 @@
groups="group_account_user,group_account_manager,group_account_invoice"
web_icon="images/accounting.png"
web_icon_hover="images/accounting-hover.png"/>
<menuitem id="menu_partners" name="Partners" parent="menu_finance" sequence="1"/>
<menuitem id="menu_finance_receivables" name="Customers" parent="menu_finance" sequence="2"/>
<menuitem id="menu_finance_payables" name="Suppliers" parent="menu_finance" sequence="3"/>
<menuitem id="menu_finance_bank_and_cash" name="Bank and Cash" parent="menu_finance" sequence="4"

0
addons/account/account_move_line.py Normal file → Executable file
View File

0
addons/account/account_report.xml Normal file → Executable file
View File

0
addons/account/account_unit_test.xml Normal file → Executable file
View File

15
addons/account/account_view.xml Normal file → Executable file
View File

@ -276,6 +276,7 @@
<field name="company_currency_id"/>
<field name="company_id" groups="base.group_multi_company"/>
<field name="type"/>
<field name="parent_id" invisible="1"/>
</tree>
</field>
</record>
@ -2062,7 +2063,7 @@
<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_partner_id':[active_id]}" id="act_account_partner_account_move" name="Journal Items" res_model="account.move.line" src_model="res.partner"/>
<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"/>
<record id="view_account_addtmpl_wizard_form" model="ir.ui.view">
<field name="name">Create Account</field>
@ -2763,11 +2764,13 @@ action = self.pool.get('res.config').next(cr, uid, [], context)
<field name="filter" eval="True"/>
</record>
<menuitem id="menu_partners_partners"
name="Partners"
parent="menu_partners"
action="action_partner_all"
sequence="1"/>
<menuitem id="menu_account_customer" name="Customers"
parent="menu_finance_receivables"
action="base.action_partner_customer_form" sequence="100"/>
<menuitem id="menu_account_supplier" name="Suppliers"
parent="menu_finance_payables"
action="base.action_partner_supplier_form" sequence="100"/>
</data>
</openerp>

0
addons/account/board_account_view.xml Normal file → Executable file
View File

0
addons/account/company.py Normal file → Executable file
View File

0
addons/account/company_view.xml Normal file → Executable file
View File

0
addons/account/configurable_account_chart.xml Normal file → Executable file
View File

0
addons/account/data/account_data2.xml Normal file → Executable file
View File

0
addons/account/data/account_invoice.xml Normal file → Executable file
View File

0
addons/account/demo/account_minimal.xml Normal file → Executable file
View File

0
addons/account/i18n/account.pot Normal file → Executable file
View File

8
addons/account/i18n/ar.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:43+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7845,9 +7845,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/bg.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:17+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:43+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7876,9 +7876,9 @@ msgstr "Вид отпратка"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/br.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:17+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:43+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/bs.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:43+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7900,9 +7900,9 @@ msgstr "Tip reference"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/ca.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:17+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:43+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7935,9 +7935,9 @@ msgstr "Tipus referència"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/cs.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:17+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:44+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7842,9 +7842,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/da.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:17+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:44+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7862,9 +7862,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

10
addons/account/i18n/de.po Normal file → Executable file
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: 2010-12-21 19:43+0000\n"
"PO-Revision-Date: 2010-12-25 20:08+0000\n"
"PO-Revision-Date: 2010-12-28 21:39+0000\n"
"Last-Translator: Thorsten Vocks (OpenBig.org) <thorsten.vocks@big-"
"consulting.net>\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: 2010-12-26 04:50+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -8408,9 +8408,9 @@ msgstr "Referenztyp"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
"Dieses Konto wird als vorläufiges Konto für einen Gewinn oder Verlust aus "
"dem Geschäftsjahr verwendet (Bei vorläufigem Gewinn: Betrag wird "

10
addons/account/i18n/el.po Normal file → Executable file
View File

@ -8,13 +8,13 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-12-21 19:43+0000\n"
"PO-Revision-Date: 2010-12-27 14:04+0000\n"
"PO-Revision-Date: 2010-12-28 07:19+0000\n"
"Last-Translator: Dimitris Andavoglou <dimitrisand@gmail.com>\n"
"Language-Team: Greek <el@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: 2010-12-28 04:41+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7966,9 +7966,9 @@ msgstr "Τύπος Παραπομπής"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

78
addons/account/i18n/es.po Normal file → Executable file
View File

@ -7,13 +7,13 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-12-21 19:43+0000\n"
"PO-Revision-Date: 2010-12-27 10:40+0000\n"
"PO-Revision-Date: 2010-12-28 19:28+0000\n"
"Last-Translator: Borja López Soilán <borjalopezsoilan@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: 2010-12-28 04:41+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:49+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -399,9 +399,9 @@ 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 asientos masivamente en "
"OpenERP. OpenERP crea los asientos contables si utiliza extractos bancarios, "
"registros de caja o pagos de cliente/proveedor."
"Los contables utilizan esta vista para introducir apuntes masivamente en "
"OpenERP. Cuando utiliza los extractos bancarios, hojas de caja, o pagos de "
"cliente/proveedor OpenERP crea automáticamente apuntes contables."
#. module: account
#: model:ir.model,name:account.model_account_tax_template
@ -2153,7 +2153,7 @@ msgstr "Descripción"
#: code:addons/account/installer.py:0
#, python-format
msgid "ECNJ"
msgstr ""
msgstr "ACOMPRA"
#. module: account
#: view:account.subscription:0
@ -2412,7 +2412,7 @@ msgstr "Contabilidad. Líneas de modelo"
#: code:addons/account/installer.py:0
#, python-format
msgid "EXJ"
msgstr "GASTO"
msgstr "COMPRA"
#. module: account
#: field:product.template,supplier_taxes_id:0
@ -4754,6 +4754,15 @@ msgid ""
"calendar year gives many companies an advantage, allowing them to close "
"their books at a time which is most convenient for them."
msgstr ""
"Defina el ejercicio fiscal de su compañía según la periodicidad que ha "
"decidido seguir. Un ejercicio fiscal es un periodo de 1 año sobre el cual la "
"compañía presupuesta sus gastos. Puede incluir cualquier periodo de 12 "
"meses. El ejercicio fiscal suele denominarse según la fecha en la que acaba. "
"Así, si el ejercicio fiscal de una compañía finaliza el 30 de noviembre de "
"2011, entonces todo lo comprendido entre el 1 de diciembre de 2010 y el 30 "
"de noviembre de 2011 será considerado como el EF 2011. No usar el calendario "
"natural es una ventaja para muchas compañías, ya que les permite cerrar sus "
"libros en el momento más conveniente para ellas."
#. module: account
#: model:ir.actions.act_window,name:account.action_payment_term_form
@ -6389,6 +6398,9 @@ msgid ""
"o.journal_id.id) - sum_credit(o.period_id.id, o.journal_id.id))) ]] [[ "
"o.journal_id.currency and o.journal_id.currency.symbol"
msgstr ""
"o.journal_id.currency and formatLang((sum_debit(o.period_id.id, "
"o.journal_id.id) - sum_credit(o.period_id.id, o.journal_id.id))) ]] [[ "
"o.journal_id.currency and o.journal_id.currency.symbol"
#. module: account
#: view:account.vat.declaration:0
@ -6694,6 +6706,12 @@ msgid ""
"Create and manage them from here and decide whether a period should be left "
"open or closed depending on your company's activities over a specific period."
msgstr ""
"Aquí puede definir un periodo, un intervalo de tiempo entre cierres "
"consecutivos de los libros de su compañía. Un periodo contable es "
"típicamente un mes o un trimestre, correspondientemente al régimen "
"impositivo usado en el negocio. Creelos y gestionelos desde aquí, y decida "
"si un periodo debe permanecer abierto o cerrado según las actividades de su "
"compañía en un plazo específico."
#. module: account
#: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled
@ -7054,6 +7072,11 @@ 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 "
"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\" "
"de contrapartida."
#. module: account
#: help:res.company,property_reserve_and_surplus_account:0
@ -7118,6 +7141,12 @@ msgid ""
"Situation' to be used at the time of new fiscal year creation or end of year "
"entries generation."
msgstr ""
"Seleccione 'Ventas' para el diario de ventas que será usado cuando se creen "
"facturas. Seleccione 'Compras' para el diario a usar cuando se aprueben "
"pedidos de compra. Seleccione 'Efectivo' (Caja) para que se use a la hora de "
"hacer pagos. Seleccione 'General' para operaciones misceláneas. Seleccione "
"'Situación apertura/cierre' para usarlo cuando se crea un nuevo ejercicio "
"fiscal o la generación del asiento de cierre."
#. module: account
#: report:account.invoice:0
@ -7806,6 +7835,13 @@ msgid ""
"useful because it enables you to preview at any time the tax that you owe at "
"the start and end of the month or quarter."
msgstr ""
"Este menú imprime una declaración de IVA basada en facturas o pagos. Puede "
"seleccionar uno o varios periodos del ejercicio fiscal. La información "
"necesaria para la declaración de impuestos es generada por OpenERP a partir "
"de las facturas (o pagos, en algunos países). Esta información se actualiza "
"en tiempo real; lo cual es muy útil porque le permite previsualizar en "
"cualquier momento los impuestos a pagar al principio y al final del mes o "
"trimestre."
#. module: account
#: report:account.invoice:0
@ -7875,6 +7911,10 @@ msgid ""
"of it. You can easily generate refunds and reconcile them from the invoice "
"form."
msgstr ""
"Este menú le permite gestionar notas de crédito (reembolsos) emitidas/a "
"emitir a sus clientes. Una factura rectificativa es un documento que anula "
"una factura o parte de ella. Puede generar reembolsos fácilmente y "
"reconciliarlos desde el formulario de factura."
#. module: account
#: model:process.transition,name:account.process_transition_filestatement0
@ -7907,7 +7947,7 @@ msgstr "No se puede crear asiento factura en el diario centralizado"
#. module: account
#: field:account.account.type,report_type:0
msgid "P&L / BS Category"
msgstr ""
msgstr "Categoría Balance / PyG"
#. module: account
#: view:account.automatic.reconcile:0
@ -8306,9 +8346,9 @@ msgstr "Tipo de referencia"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
"Esta cuenta se utiliza para transferir las Pérdidas/Ganancias (si es una "
"Ganancia: Importe será añadido, Pérdida: Importe será deducido), que se "
@ -8488,7 +8528,7 @@ msgstr ""
#: code:addons/account/installer.py:0
#, python-format
msgid "SCNJ"
msgstr ""
msgstr "AVENTA"
#. module: account
#: model:process.transition,note:account.process_transition_analyticinvoice0
@ -8507,6 +8547,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."
#. module: account
#: field:account.period,date_stop:0
@ -8735,6 +8779,12 @@ 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 "
"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á "
"automáticamente el impuesto asociado a esta cuenta, y la \"cuenta a cobrar\" "
"de contrapartida."
#. module: account
#: code:addons/account/account_bank_statement.py:0
@ -9056,6 +9106,10 @@ msgid ""
"Make sure you have configured Payment Term properly !\n"
"It should contain atleast one Payment Term Line with type \"Balance\" !"
msgstr ""
"¡ No se puede confirmar un asiento descuadrado !\n"
"¡ Asegúrese de haber configurado el plazo de pago correctamente !\n"
"¡ Debería contener al menos una línea de plazo de pago con de tipo \"Saldo\" "
"!"
#. module: account
#: help:res.partner,property_account_payable:0

8
addons/account/i18n/es_AR.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:25+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7937,9 +7937,9 @@ msgstr "Tipo de referencia"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

20
addons/account/i18n/es_EC.po Normal file → Executable file
View File

@ -16,7 +16,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:25+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:52+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -8249,13 +8249,10 @@ msgstr "Tipo de referencia"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
#. module: account
#: view:account.analytic.cost.ledger.journal.report:0
@ -11819,6 +11816,15 @@ msgstr "You cannot remove an account which has account entries!. "
#~ " def create_entries(self, cr, uid, ids, context=None):\n"
#~ " account_model_obj = self.pool.get('account.model"
#~ msgid ""
#~ "This Account is used for trasfering Profit/Loss(If It is Profit: Amount will "
#~ "be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
#~ "& Loss Report"
#~ msgstr ""
#~ "This Account is used for trasfering Profit/Loss(If It is Profit: Amount will "
#~ "be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
#~ "& Loss Report"
#~ msgid "Liability View"
#~ msgstr "Vista de Pasivo"

8
addons/account/i18n/et.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:18+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:44+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr "Viite tüüp"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/eu.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:43+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/fa.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:21+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/fi.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:18+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:44+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7907,9 +7907,9 @@ msgstr "Viitetyyppi"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/fr.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-27 04:39+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -8353,9 +8353,9 @@ msgstr "Type de référence"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/gl.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:18+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/gu.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:19+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/he.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:19+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/hi.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:19+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:45+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7844,9 +7844,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/hr.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:22+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:48+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7872,9 +7872,9 @@ msgstr "Tip veze"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

21
addons/account/i18n/hu.po Normal file → Executable file
View File

@ -7,13 +7,13 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-12-21 19:43+0000\n"
"PO-Revision-Date: 2010-12-25 18:32+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"PO-Revision-Date: 2010-12-28 20:26+0000\n"
"Last-Translator: NOVOTRADE SYSTEMHOUSE <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: 2010-12-26 04:50+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:46+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -4575,7 +4575,7 @@ msgstr ""
#: field:account.invoice.tax,account_id:0
#: field:account.move.line,tax_code_id:0
msgid "Tax Account"
msgstr "Adó számla"
msgstr "Adószámla"
#. module: account
#: view:account.automatic.reconcile:0
@ -4678,7 +4678,7 @@ msgstr ""
#: field:account.tax,child_depend:0
#: field:account.tax.template,child_depend:0
msgid "Tax on Children"
msgstr ""
msgstr "Gyermekek utáni adó"
#. module: account
#: constraint:account.move.line:0
@ -6965,6 +6965,9 @@ msgid ""
"positive, it gives the day of the next month. Set 0 for net days (otherwise "
"it's based on the beginning of the month)."
msgstr ""
"Hónap napja, állíts -1 -et az utolsó napnak az aktuális hónapban. Ha ez "
"pozitív, akkor megadja a következő hónap napját. Állíts 0 -t netto napoknak "
"(máskülönben a hónap eleje alapján lesz meghatározva )"
#. module: account
#: model:ir.ui.menu,name:account.menu_finance_legal_statement
@ -7109,7 +7112,7 @@ msgstr ""
#. module: account
#: field:account.tax.template,type_tax_use:0
msgid "Tax Use In"
msgstr ""
msgstr "Használt adó"
#. module: account
#: model:ir.actions.act_window,help:account.action_account_journal_form
@ -7846,9 +7849,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/id.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:19+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:46+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7847,9 +7847,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/it.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-28 04:41+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:46+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -8139,9 +8139,9 @@ msgstr "Tipo riferimento"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/kab.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:20+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:46+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/ko.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:20+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:46+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/lt.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:20+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7886,9 +7886,9 @@ msgstr "Nuorodos tipas"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/lv.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:20+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7855,9 +7855,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/mn.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:20+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -8039,9 +8039,9 @@ msgstr "Дугаарлалтын төрөл"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/nb.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:20+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/nl.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:17+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:44+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7968,9 +7968,9 @@ msgstr "Referentietype"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/nl_BE.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:25+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:52+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7874,9 +7874,9 @@ msgstr "Referentietype"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/oc.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:21+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:47+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/pl.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:21+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:48+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7970,9 +7970,9 @@ msgstr "Typ odnośnika"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/pt.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:21+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:48+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7985,9 +7985,9 @@ msgstr "Tipo de referência"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/pt_BR.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:24+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7938,9 +7938,9 @@ msgstr "Tipo de referência"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/ro.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:21+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:48+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7919,9 +7919,9 @@ msgstr "Tipul referinţei"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

16
addons/account/i18n/ru.po Normal file → Executable file
View File

@ -7,13 +7,13 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-12-21 19:43+0000\n"
"PO-Revision-Date: 2010-12-21 14:14+0000\n"
"PO-Revision-Date: 2010-12-28 14:42+0000\n"
"Last-Translator: Chertykov Denis <chertykov@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: 2010-12-24 05:21+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:48+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -3828,7 +3828,7 @@ msgstr "Счет расходов не определен для этого то
#. module: account
#: view:res.partner:0
msgid "Customer Accounting Properties"
msgstr "Настройки бух. учета для заказчика"
msgstr "Настройки бухучета для заказчика"
#. module: account
#: field:account.invoice.tax,name:0
@ -4741,7 +4741,7 @@ msgstr ""
#. module: account
#: report:account.partner.balance:0
msgid "(Account/Partner) Name"
msgstr "Имя счета/контрагента"
msgstr "Название счета/партнера"
#. module: account
#: view:account.bank.statement:0
@ -7645,7 +7645,7 @@ msgstr "Разрешенные типы счетов (оставьте пуст
#. module: account
#: view:res.partner:0
msgid "Supplier Accounting Properties"
msgstr "Настройки бухгалтерского учета для контрагента-поставщика"
msgstr "Настройки бухучета для поставщика"
#. module: account
#: view:account.payment.term.line:0
@ -7897,9 +7897,9 @@ msgstr "Тип ссылки"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/si.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:22+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:49+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/sk.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:22+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:49+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7846,9 +7846,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/sl.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:22+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:49+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7864,9 +7864,9 @@ msgstr "Vrsta sklica"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/sq.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:43+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7859,9 +7859,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/sr.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:22+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:48+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7901,9 +7901,9 @@ msgstr "Tip reference"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/sr@latin.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-25 04:52+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:52+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7901,9 +7901,9 @@ msgstr "Tip reference"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/sv.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:23+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:49+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7946,9 +7946,9 @@ msgstr "Referenstyp"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/ta.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:23+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:50+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/te.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:23+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:50+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/th.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:23+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:50+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/tlh.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:23+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:50+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7842,9 +7842,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

18
addons/account/i18n/tr.po Normal file → Executable file
View File

@ -7,13 +7,13 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-12-21 19:43+0000\n"
"PO-Revision-Date: 2010-12-02 07:52+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"PO-Revision-Date: 2010-12-28 19:06+0000\n"
"Last-Translator: François Degrave (OpenERP) <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: 2010-12-24 05:24+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:50+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -8115,13 +8115,13 @@ msgstr "Referans Tipi"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
#. module: account
#: view:account.analytic.cost.ledger.journal.report:0

8
addons/account/i18n/ug.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:24+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:50+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/uk.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:24+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7848,9 +7848,9 @@ msgstr "Тип посилання"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

22
addons/account/i18n/vi.po Normal file → Executable file
View File

@ -8,13 +8,13 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-12-21 19:43+0000\n"
"PO-Revision-Date: 2010-12-21 14:38+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"PO-Revision-Date: 2010-12-28 20:26+0000\n"
"Last-Translator: François Degrave (OpenERP) <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: 2010-12-24 05:24+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2428,7 +2428,7 @@ msgstr ""
#. module: account
#: constraint:product.category:0
msgid "Error ! You can not create recursive categories."
msgstr ""
msgstr "Lỗi ! Bạn không thể tạo ra loại đệ quy."
#. module: account
#: model:account.account.type,name:account.account_type_tax
@ -4112,7 +4112,7 @@ msgstr "Account Journal Select"
#. module: account
#: view:account.invoice:0
msgid "Print Invoice"
msgstr ""
msgstr "In hóa đơn"
#. module: account
#: view:account.tax.template:0
@ -8238,13 +8238,13 @@ msgstr "Lọai tham chiếu"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
#. module: account
#: view:account.analytic.cost.ledger.journal.report:0

8
addons/account/i18n/zh_CN.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-25 04:51+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:52+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7849,9 +7849,9 @@ msgstr "关联类型"
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/zh_HK.po Normal file → Executable file
View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:24+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7843,9 +7843,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

8
addons/account/i18n/zh_TW.po Normal file → Executable file
View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-12-24 05:25+0000\n"
"X-Launchpad-Export-Date: 2010-12-29 04:52+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -7842,9 +7842,9 @@ msgstr ""
#. module: account
#: help:account.bs.report,reserve_account_id:0
msgid ""
"This Account is used for transferring Profit/Loss(If It is Profit: Amount will "
"be added, Loss : Amount will be duducted.), Which is calculated from Profilt "
"& Loss Report"
"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
"will be added, Loss : Amount will be duducted.), Which is calculated from "
"Profilt & Loss Report"
msgstr ""
#. module: account

0
addons/account/installer.py Normal file → Executable file
View File

0
addons/account/invoice.py Normal file → Executable file
View File

0
addons/account/partner.py Normal file → Executable file
View File

0
addons/account/partner_view.xml Normal file → Executable file
View File

0
addons/account/process/customer_invoice_process.xml Normal file → Executable file
View File

0
addons/account/process/statement_process.xml Normal file → Executable file
View File

0
addons/account/process/supplier_invoice_process.xml Normal file → Executable file
View File

0
addons/account/product.py Normal file → Executable file
View File

0
addons/account/product_view.xml Normal file → Executable file
View File

0
addons/account/project/__init__.py Normal file → Executable file
View File

0
addons/account/project/analytic_account_demo.xml Normal file → Executable file
View File

0
addons/account/project/project.py Normal file → Executable file
View File

0
addons/account/project/project_demo.xml Normal file → Executable file
View File

0
addons/account/project/project_report.xml Normal file → Executable file
View File

3
addons/account/project/project_view.xml Normal file → Executable file
View File

@ -82,12 +82,13 @@
<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="company_id" select="2" widget="selection" groups="base.group_multi_company"/>
<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>
<notebook colspan="4">
<page string="Account Data">
<field name="partner_id" select="1"/>
<field name="currency_id" select="1"/>
<newline/>
<field name="date_start"/>
<field name="date" select="2"/>

0
addons/account/project/report/__init__.py Normal file → Executable file
View File

0
addons/account/project/report/account_journal.py Normal file → Executable file
View File

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