diff --git a/addons/.bzrignore b/addons/.bzrignore old mode 100644 new mode 100755 diff --git a/addons/account/__init__.py b/addons/account/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account/__openerp__.py b/addons/account/__openerp__.py old mode 100644 new mode 100755 index 0131ca0437b..06c3ed15a93 --- a/addons/account/__openerp__.py +++ b/addons/account/__openerp__.py @@ -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', diff --git a/addons/account/account.py b/addons/account/account.py old mode 100644 new mode 100755 index 7ad20843e4c..f79e36c7681 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -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 diff --git a/addons/account/account_analytic_line.py b/addons/account/account_analytic_line.py old mode 100644 new mode 100755 diff --git a/addons/account/account_assert_test.xml b/addons/account/account_assert_test.xml old mode 100644 new mode 100755 diff --git a/addons/account/account_bank_statement.py b/addons/account/account_bank_statement.py old mode 100644 new mode 100755 diff --git a/addons/account/account_cash_statement.py b/addons/account/account_cash_statement.py old mode 100644 new mode 100755 diff --git a/addons/account/account_demo.xml b/addons/account/account_demo.xml old mode 100644 new mode 100755 diff --git a/addons/account/account_end_fy.xml b/addons/account/account_end_fy.xml old mode 100644 new mode 100755 diff --git a/addons/account/account_installer.xml b/addons/account/account_installer.xml old mode 100644 new mode 100755 index 95dc29e64f6..97143197db4 --- a/addons/account/account_installer.xml +++ b/addons/account/account_installer.xml @@ -24,8 +24,8 @@ - - + + diff --git a/addons/account/account_invoice_view.xml b/addons/account/account_invoice_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/account_invoice_workflow.xml b/addons/account/account_invoice_workflow.xml old mode 100644 new mode 100755 diff --git a/addons/account/account_menuitem.xml b/addons/account/account_menuitem.xml old mode 100644 new mode 100755 index 7b7e6b308b1..867aaeeba51 --- a/addons/account/account_menuitem.xml +++ b/addons/account/account_menuitem.xml @@ -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"/> - + @@ -2062,7 +2063,7 @@ - + Create Account @@ -2763,11 +2764,13 @@ action = self.pool.get('res.config').next(cr, uid, [], context) - + + + diff --git a/addons/account/board_account_view.xml b/addons/account/board_account_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/company.py b/addons/account/company.py old mode 100644 new mode 100755 diff --git a/addons/account/company_view.xml b/addons/account/company_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/configurable_account_chart.xml b/addons/account/configurable_account_chart.xml old mode 100644 new mode 100755 diff --git a/addons/account/data/account_data2.xml b/addons/account/data/account_data2.xml old mode 100644 new mode 100755 diff --git a/addons/account/data/account_invoice.xml b/addons/account/data/account_invoice.xml old mode 100644 new mode 100755 diff --git a/addons/account/demo/account_minimal.xml b/addons/account/demo/account_minimal.xml old mode 100644 new mode 100755 diff --git a/addons/account/i18n/account.pot b/addons/account/i18n/account.pot old mode 100644 new mode 100755 diff --git a/addons/account/i18n/ar.po b/addons/account/i18n/ar.po old mode 100644 new mode 100755 index 7db46e935b5..68aad9e9f21 --- a/addons/account/i18n/ar.po +++ b/addons/account/i18n/ar.po @@ -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 diff --git a/addons/account/i18n/bg.po b/addons/account/i18n/bg.po old mode 100644 new mode 100755 index 7b5b0d9cac9..8ab36111445 --- a/addons/account/i18n/bg.po +++ b/addons/account/i18n/bg.po @@ -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 diff --git a/addons/account/i18n/br.po b/addons/account/i18n/br.po old mode 100644 new mode 100755 index 19a05b00c9b..92c8df05ee3 --- a/addons/account/i18n/br.po +++ b/addons/account/i18n/br.po @@ -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 diff --git a/addons/account/i18n/bs.po b/addons/account/i18n/bs.po old mode 100644 new mode 100755 index 35dfd9669ab..dfa9bd472dc --- a/addons/account/i18n/bs.po +++ b/addons/account/i18n/bs.po @@ -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 diff --git a/addons/account/i18n/ca.po b/addons/account/i18n/ca.po old mode 100644 new mode 100755 index 2201ee988f1..252eda0f7d9 --- a/addons/account/i18n/ca.po +++ b/addons/account/i18n/ca.po @@ -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 diff --git a/addons/account/i18n/cs.po b/addons/account/i18n/cs.po old mode 100644 new mode 100755 index 722527a41ff..a73284105cf --- a/addons/account/i18n/cs.po +++ b/addons/account/i18n/cs.po @@ -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 diff --git a/addons/account/i18n/da.po b/addons/account/i18n/da.po old mode 100644 new mode 100755 index fc33be16eba..d4c7c605787 --- a/addons/account/i18n/da.po +++ b/addons/account/i18n/da.po @@ -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 diff --git a/addons/account/i18n/de.po b/addons/account/i18n/de.po old mode 100644 new mode 100755 index 475eba310ce..59e85405ccb --- a/addons/account/i18n/de.po +++ b/addons/account/i18n/de.po @@ -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) \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 " diff --git a/addons/account/i18n/el.po b/addons/account/i18n/el.po old mode 100644 new mode 100755 index e0c4d54edde..7bd646fc715 --- a/addons/account/i18n/el.po +++ b/addons/account/i18n/el.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \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 \n" "Language-Team: Greek \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 diff --git a/addons/account/i18n/es.po b/addons/account/i18n/es.po old mode 100644 new mode 100755 index 6b8f08ebf02..73c1bc7fafd --- a/addons/account/i18n/es.po +++ b/addons/account/i18n/es.po @@ -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 \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 diff --git a/addons/account/i18n/es_AR.po b/addons/account/i18n/es_AR.po old mode 100644 new mode 100755 index 22b2943171e..4dc0a67d9c6 --- a/addons/account/i18n/es_AR.po +++ b/addons/account/i18n/es_AR.po @@ -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 diff --git a/addons/account/i18n/es_EC.po b/addons/account/i18n/es_EC.po old mode 100644 new mode 100755 index b31e3b1b27f..1172cbd60ef --- a/addons/account/i18n/es_EC.po +++ b/addons/account/i18n/es_EC.po @@ -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" diff --git a/addons/account/i18n/et.po b/addons/account/i18n/et.po old mode 100644 new mode 100755 index 3483fd89fa5..4058dc98bf6 --- a/addons/account/i18n/et.po +++ b/addons/account/i18n/et.po @@ -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 diff --git a/addons/account/i18n/eu.po b/addons/account/i18n/eu.po old mode 100644 new mode 100755 index e2fa2d47565..93332441b01 --- a/addons/account/i18n/eu.po +++ b/addons/account/i18n/eu.po @@ -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 diff --git a/addons/account/i18n/fa.po b/addons/account/i18n/fa.po old mode 100644 new mode 100755 index 6e975ce508e..f7345a59754 --- a/addons/account/i18n/fa.po +++ b/addons/account/i18n/fa.po @@ -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 diff --git a/addons/account/i18n/fi.po b/addons/account/i18n/fi.po old mode 100644 new mode 100755 index ef3d8ed27d9..380b83a4326 --- a/addons/account/i18n/fi.po +++ b/addons/account/i18n/fi.po @@ -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 diff --git a/addons/account/i18n/fr.po b/addons/account/i18n/fr.po old mode 100644 new mode 100755 index bf390c81c5d..edf26144e40 --- a/addons/account/i18n/fr.po +++ b/addons/account/i18n/fr.po @@ -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 diff --git a/addons/account/i18n/gl.po b/addons/account/i18n/gl.po old mode 100644 new mode 100755 index 444e9c4cd8a..d80eb5e46fc --- a/addons/account/i18n/gl.po +++ b/addons/account/i18n/gl.po @@ -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 diff --git a/addons/account/i18n/gu.po b/addons/account/i18n/gu.po old mode 100644 new mode 100755 index 8b830dd6662..bcc84d5d800 --- a/addons/account/i18n/gu.po +++ b/addons/account/i18n/gu.po @@ -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 diff --git a/addons/account/i18n/he.po b/addons/account/i18n/he.po old mode 100644 new mode 100755 index 12b561f2a70..179c2e1d777 --- a/addons/account/i18n/he.po +++ b/addons/account/i18n/he.po @@ -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 diff --git a/addons/account/i18n/hi.po b/addons/account/i18n/hi.po old mode 100644 new mode 100755 index 44a12e35dea..db6ece7f8b6 --- a/addons/account/i18n/hi.po +++ b/addons/account/i18n/hi.po @@ -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 diff --git a/addons/account/i18n/hr.po b/addons/account/i18n/hr.po old mode 100644 new mode 100755 index 7afaec736eb..4b8a8f007c4 --- a/addons/account/i18n/hr.po +++ b/addons/account/i18n/hr.po @@ -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 diff --git a/addons/account/i18n/hu.po b/addons/account/i18n/hu.po old mode 100644 new mode 100755 index d72269a3630..60d932be557 --- a/addons/account/i18n/hu.po +++ b/addons/account/i18n/hu.po @@ -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 \n" +"PO-Revision-Date: 2010-12-28 20:26+0000\n" +"Last-Translator: NOVOTRADE SYSTEMHOUSE \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 diff --git a/addons/account/i18n/id.po b/addons/account/i18n/id.po old mode 100644 new mode 100755 index 6a4543117ea..50ef835d67b --- a/addons/account/i18n/id.po +++ b/addons/account/i18n/id.po @@ -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 diff --git a/addons/account/i18n/it.po b/addons/account/i18n/it.po old mode 100644 new mode 100755 index f7d74941c9a..6957f6c6768 --- a/addons/account/i18n/it.po +++ b/addons/account/i18n/it.po @@ -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 diff --git a/addons/account/i18n/kab.po b/addons/account/i18n/kab.po old mode 100644 new mode 100755 index 17cb3908f17..5ba12ec7af7 --- a/addons/account/i18n/kab.po +++ b/addons/account/i18n/kab.po @@ -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 diff --git a/addons/account/i18n/ko.po b/addons/account/i18n/ko.po old mode 100644 new mode 100755 index 31435872c44..d1949cd6e3c --- a/addons/account/i18n/ko.po +++ b/addons/account/i18n/ko.po @@ -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 diff --git a/addons/account/i18n/lt.po b/addons/account/i18n/lt.po old mode 100644 new mode 100755 index 6b8fa6eae0d..bd097563434 --- a/addons/account/i18n/lt.po +++ b/addons/account/i18n/lt.po @@ -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 diff --git a/addons/account/i18n/lv.po b/addons/account/i18n/lv.po old mode 100644 new mode 100755 index e8455d0549f..f3fc8690527 --- a/addons/account/i18n/lv.po +++ b/addons/account/i18n/lv.po @@ -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 diff --git a/addons/account/i18n/mn.po b/addons/account/i18n/mn.po old mode 100644 new mode 100755 index 4d46104cfdb..f30185907e6 --- a/addons/account/i18n/mn.po +++ b/addons/account/i18n/mn.po @@ -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 diff --git a/addons/account/i18n/nb.po b/addons/account/i18n/nb.po old mode 100644 new mode 100755 index 2886d174b15..96abe8aec24 --- a/addons/account/i18n/nb.po +++ b/addons/account/i18n/nb.po @@ -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 diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po old mode 100644 new mode 100755 index ed55fea12cc..16dbefd36c5 --- a/addons/account/i18n/nl.po +++ b/addons/account/i18n/nl.po @@ -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 diff --git a/addons/account/i18n/nl_BE.po b/addons/account/i18n/nl_BE.po old mode 100644 new mode 100755 index 7f1500287f8..bf40cfe5975 --- a/addons/account/i18n/nl_BE.po +++ b/addons/account/i18n/nl_BE.po @@ -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 diff --git a/addons/account/i18n/oc.po b/addons/account/i18n/oc.po old mode 100644 new mode 100755 index f7c8e1f9354..52681a5c75f --- a/addons/account/i18n/oc.po +++ b/addons/account/i18n/oc.po @@ -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 diff --git a/addons/account/i18n/pl.po b/addons/account/i18n/pl.po old mode 100644 new mode 100755 index 3ce5a1f48f4..c95ec989c5c --- a/addons/account/i18n/pl.po +++ b/addons/account/i18n/pl.po @@ -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 diff --git a/addons/account/i18n/pt.po b/addons/account/i18n/pt.po old mode 100644 new mode 100755 index e4987b74c53..b9a96aa1b9d --- a/addons/account/i18n/pt.po +++ b/addons/account/i18n/pt.po @@ -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 diff --git a/addons/account/i18n/pt_BR.po b/addons/account/i18n/pt_BR.po old mode 100644 new mode 100755 index 95b041cfe4e..9ef76060f0a --- a/addons/account/i18n/pt_BR.po +++ b/addons/account/i18n/pt_BR.po @@ -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 diff --git a/addons/account/i18n/ro.po b/addons/account/i18n/ro.po old mode 100644 new mode 100755 index 7e388ec9e1f..2a6e49c1f1a --- a/addons/account/i18n/ro.po +++ b/addons/account/i18n/ro.po @@ -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 diff --git a/addons/account/i18n/ru.po b/addons/account/i18n/ru.po old mode 100644 new mode 100755 index e34e9be6358..ea2c50929a8 --- a/addons/account/i18n/ru.po +++ b/addons/account/i18n/ru.po @@ -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 \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 diff --git a/addons/account/i18n/si.po b/addons/account/i18n/si.po old mode 100644 new mode 100755 index 3c1027c59dc..fe3a33a6a66 --- a/addons/account/i18n/si.po +++ b/addons/account/i18n/si.po @@ -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 diff --git a/addons/account/i18n/sk.po b/addons/account/i18n/sk.po old mode 100644 new mode 100755 index e2968ffaeb2..8c5f78a04ed --- a/addons/account/i18n/sk.po +++ b/addons/account/i18n/sk.po @@ -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 diff --git a/addons/account/i18n/sl.po b/addons/account/i18n/sl.po old mode 100644 new mode 100755 index e2c0082c3c8..97d3a69e52e --- a/addons/account/i18n/sl.po +++ b/addons/account/i18n/sl.po @@ -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 diff --git a/addons/account/i18n/sq.po b/addons/account/i18n/sq.po old mode 100644 new mode 100755 index 9ed78c77c82..e1aba62b2bd --- a/addons/account/i18n/sq.po +++ b/addons/account/i18n/sq.po @@ -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 diff --git a/addons/account/i18n/sr.po b/addons/account/i18n/sr.po old mode 100644 new mode 100755 index 781d08b832f..a1450282190 --- a/addons/account/i18n/sr.po +++ b/addons/account/i18n/sr.po @@ -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 diff --git a/addons/account/i18n/sr@latin.po b/addons/account/i18n/sr@latin.po old mode 100644 new mode 100755 index 86ce9ff25a4..d760cb8e40c --- a/addons/account/i18n/sr@latin.po +++ b/addons/account/i18n/sr@latin.po @@ -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 diff --git a/addons/account/i18n/sv.po b/addons/account/i18n/sv.po old mode 100644 new mode 100755 index b1208d79002..de1ce0ba607 --- a/addons/account/i18n/sv.po +++ b/addons/account/i18n/sv.po @@ -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 diff --git a/addons/account/i18n/ta.po b/addons/account/i18n/ta.po old mode 100644 new mode 100755 index d55e950ab25..848c0398d10 --- a/addons/account/i18n/ta.po +++ b/addons/account/i18n/ta.po @@ -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 diff --git a/addons/account/i18n/te.po b/addons/account/i18n/te.po old mode 100644 new mode 100755 index 23778ab9ee0..8739b0bd292 --- a/addons/account/i18n/te.po +++ b/addons/account/i18n/te.po @@ -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 diff --git a/addons/account/i18n/th.po b/addons/account/i18n/th.po old mode 100644 new mode 100755 index 5577baa72b8..cbe7921a871 --- a/addons/account/i18n/th.po +++ b/addons/account/i18n/th.po @@ -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 diff --git a/addons/account/i18n/tlh.po b/addons/account/i18n/tlh.po old mode 100644 new mode 100755 index 5aa34d6ab1e..1f525bd463a --- a/addons/account/i18n/tlh.po +++ b/addons/account/i18n/tlh.po @@ -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 diff --git a/addons/account/i18n/tr.po b/addons/account/i18n/tr.po old mode 100644 new mode 100755 index d8a9e382942..1e980932b85 --- a/addons/account/i18n/tr.po +++ b/addons/account/i18n/tr.po @@ -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 \n" +"PO-Revision-Date: 2010-12-28 19:06+0000\n" +"Last-Translator: François Degrave (OpenERP) \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 diff --git a/addons/account/i18n/ug.po b/addons/account/i18n/ug.po old mode 100644 new mode 100755 index ed3f77b708e..e542713e728 --- a/addons/account/i18n/ug.po +++ b/addons/account/i18n/ug.po @@ -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 diff --git a/addons/account/i18n/uk.po b/addons/account/i18n/uk.po old mode 100644 new mode 100755 index 7f83feb9b0f..9389b56fecd --- a/addons/account/i18n/uk.po +++ b/addons/account/i18n/uk.po @@ -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 diff --git a/addons/account/i18n/vi.po b/addons/account/i18n/vi.po old mode 100644 new mode 100755 index 5949c81ca45..b4a5442ac87 --- a/addons/account/i18n/vi.po +++ b/addons/account/i18n/vi.po @@ -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 \n" +"PO-Revision-Date: 2010-12-28 20:26+0000\n" +"Last-Translator: François Degrave (OpenERP) \n" "Language-Team: Vietnamese \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 diff --git a/addons/account/i18n/zh_CN.po b/addons/account/i18n/zh_CN.po old mode 100644 new mode 100755 index 81b29a22a73..8ffa9ee557d --- a/addons/account/i18n/zh_CN.po +++ b/addons/account/i18n/zh_CN.po @@ -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 diff --git a/addons/account/i18n/zh_HK.po b/addons/account/i18n/zh_HK.po old mode 100644 new mode 100755 index be9a359125a..10611a2ec06 --- a/addons/account/i18n/zh_HK.po +++ b/addons/account/i18n/zh_HK.po @@ -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 diff --git a/addons/account/i18n/zh_TW.po b/addons/account/i18n/zh_TW.po old mode 100644 new mode 100755 index bb287c8aefd..e7e047b0940 --- a/addons/account/i18n/zh_TW.po +++ b/addons/account/i18n/zh_TW.po @@ -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 diff --git a/addons/account/installer.py b/addons/account/installer.py old mode 100644 new mode 100755 diff --git a/addons/account/invoice.py b/addons/account/invoice.py old mode 100644 new mode 100755 diff --git a/addons/account/partner.py b/addons/account/partner.py old mode 100644 new mode 100755 diff --git a/addons/account/partner_view.xml b/addons/account/partner_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/process/customer_invoice_process.xml b/addons/account/process/customer_invoice_process.xml old mode 100644 new mode 100755 diff --git a/addons/account/process/statement_process.xml b/addons/account/process/statement_process.xml old mode 100644 new mode 100755 diff --git a/addons/account/process/supplier_invoice_process.xml b/addons/account/process/supplier_invoice_process.xml old mode 100644 new mode 100755 diff --git a/addons/account/product.py b/addons/account/product.py old mode 100644 new mode 100755 diff --git a/addons/account/product_view.xml b/addons/account/product_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/project/__init__.py b/addons/account/project/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account/project/analytic_account_demo.xml b/addons/account/project/analytic_account_demo.xml old mode 100644 new mode 100755 diff --git a/addons/account/project/project.py b/addons/account/project/project.py old mode 100644 new mode 100755 diff --git a/addons/account/project/project_demo.xml b/addons/account/project/project_demo.xml old mode 100644 new mode 100755 diff --git a/addons/account/project/project_report.xml b/addons/account/project/project_report.xml old mode 100644 new mode 100755 diff --git a/addons/account/project/project_view.xml b/addons/account/project/project_view.xml old mode 100644 new mode 100755 index 79a13bf1ffd..789c76addcf --- a/addons/account/project/project_view.xml +++ b/addons/account/project/project_view.xml @@ -82,12 +82,13 @@ - + + diff --git a/addons/account/project/report/__init__.py b/addons/account/project/report/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account/project/report/account_journal.py b/addons/account/project/report/account_journal.py old mode 100644 new mode 100755 diff --git a/addons/account/project/report/analytic_balance.py b/addons/account/project/report/analytic_balance.py old mode 100644 new mode 100755 diff --git a/addons/account/project/report/analytic_balance.rml b/addons/account/project/report/analytic_balance.rml old mode 100644 new mode 100755 diff --git a/addons/account/project/report/analytic_journal.py b/addons/account/project/report/analytic_journal.py old mode 100644 new mode 100755 diff --git a/addons/account/project/report/analytic_journal.rml b/addons/account/project/report/analytic_journal.rml old mode 100644 new mode 100755 diff --git a/addons/account/project/report/cost_ledger.py b/addons/account/project/report/cost_ledger.py old mode 100644 new mode 100755 diff --git a/addons/account/project/report/cost_ledger.rml b/addons/account/project/report/cost_ledger.rml old mode 100644 new mode 100755 diff --git a/addons/account/project/report/inverted_analytic_balance.py b/addons/account/project/report/inverted_analytic_balance.py old mode 100644 new mode 100755 diff --git a/addons/account/project/report/inverted_analytic_balance.rml b/addons/account/project/report/inverted_analytic_balance.rml old mode 100644 new mode 100755 diff --git a/addons/account/project/report/quantity_cost_ledger.py b/addons/account/project/report/quantity_cost_ledger.py old mode 100644 new mode 100755 diff --git a/addons/account/project/report/quantity_cost_ledger.rml b/addons/account/project/report/quantity_cost_ledger.rml old mode 100644 new mode 100755 diff --git a/addons/account/project/wizard/__init__.py b/addons/account/project/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account/project/wizard/account_analytic_balance_report.py b/addons/account/project/wizard/account_analytic_balance_report.py old mode 100644 new mode 100755 diff --git a/addons/account/project/wizard/account_analytic_balance_report_view.xml b/addons/account/project/wizard/account_analytic_balance_report_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/project/wizard/account_analytic_chart.py b/addons/account/project/wizard/account_analytic_chart.py old mode 100644 new mode 100755 diff --git a/addons/account/project/wizard/account_analytic_chart_view.xml b/addons/account/project/wizard/account_analytic_chart_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/project/wizard/account_analytic_cost_ledger_for_journal_report.py b/addons/account/project/wizard/account_analytic_cost_ledger_for_journal_report.py old mode 100644 new mode 100755 diff --git a/addons/account/project/wizard/account_analytic_cost_ledger_for_journal_report_view.xml b/addons/account/project/wizard/account_analytic_cost_ledger_for_journal_report_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/project/wizard/account_analytic_cost_ledger_report.py b/addons/account/project/wizard/account_analytic_cost_ledger_report.py old mode 100644 new mode 100755 diff --git a/addons/account/project/wizard/account_analytic_cost_ledger_view.xml b/addons/account/project/wizard/account_analytic_cost_ledger_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/project/wizard/account_analytic_inverted_balance_report.py b/addons/account/project/wizard/account_analytic_inverted_balance_report.py old mode 100644 new mode 100755 diff --git a/addons/account/project/wizard/account_analytic_inverted_balance_report.xml b/addons/account/project/wizard/account_analytic_inverted_balance_report.xml old mode 100644 new mode 100755 diff --git a/addons/account/project/wizard/account_analytic_journal_report.py b/addons/account/project/wizard/account_analytic_journal_report.py old mode 100644 new mode 100755 diff --git a/addons/account/project/wizard/account_analytic_journal_report_view.xml b/addons/account/project/wizard/account_analytic_journal_report_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/project/wizard/project_account_analytic_line.py b/addons/account/project/wizard/project_account_analytic_line.py old mode 100644 new mode 100755 diff --git a/addons/account/project/wizard/project_account_analytic_line_view.xml b/addons/account/project/wizard/project_account_analytic_line_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/report/__init__.py b/addons/account/report/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_aged_partner_balance.py b/addons/account/report/account_aged_partner_balance.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_aged_partner_balance.rml b/addons/account/report/account_aged_partner_balance.rml old mode 100644 new mode 100755 diff --git a/addons/account/report/account_analytic_entries_report.py b/addons/account/report/account_analytic_entries_report.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_analytic_entries_report_view.xml b/addons/account/report/account_analytic_entries_report_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/report/account_balance.py b/addons/account/report/account_balance.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_balance.rml b/addons/account/report/account_balance.rml old mode 100644 new mode 100755 diff --git a/addons/account/report/account_balance_landscape.py b/addons/account/report/account_balance_landscape.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_balance_landscape.rml b/addons/account/report/account_balance_landscape.rml old mode 100644 new mode 100755 diff --git a/addons/account/report/account_balance_sheet.py b/addons/account/report/account_balance_sheet.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_balance_sheet.rml b/addons/account/report/account_balance_sheet.rml old mode 100644 new mode 100755 index 74b3bf81190..680c7d4bb43 --- a/addons/account/report/account_balance_sheet.rml +++ b/addons/account/report/account_balance_sheet.rml @@ -253,13 +253,13 @@ - [[ repeatIn(get_lines_another('liability'), 'a') ]][[ a['code'] ]][[ a['level']<4 and ( setTag('para','para',{'style':'terp_default_Bold_9'})) or removeParentNode('font') ]] + [[ repeatIn(get_lines_another('liability'), 'a') ]][[ a['code'] ]][[ a['level']<4 and ( setTag('para','para',{'style':'terp_default_Bold_9'})) or removeParentNode('font') ]] [[ a['name']=='Net Profit' and setTag('para','para',{'style':'terp_default_Bold_9'}) or removeParentNode('font') ]] - [[ '. '*(a['level']-1) ]][[ a['level']<4 and ( setTag('para','para',{'style':'terp_default_Bold_9'})) or removeParentNode('font') ]][[ a['name'] ]] + [[ '. '*(a['level']-1) ]][[ a['level']<4 and ( setTag('para','para',{'style':'terp_default_Bold_9'})) or removeParentNode('font') ]][[ a['name'] ]][[ a['name']=='Net Profit' and setTag('para','para',{'style':'terp_default_Bold_9'}) or removeParentNode('font') ]] - [[ a['level']<4 and ( setTag('para','para',{'style':'terp_default_Right_9_Bold'})) or removeParentNode('font') ]][[ formatLang(abs(a['balance'])) ]] [[ company.currency_id.symbol ]] + [[ a['level']<4 and ( setTag('para','para',{'style':'terp_default_Right_9_Bold'})) or removeParentNode('font') ]][[ formatLang(abs(a['balance'])) ]] [[ company.currency_id.symbol ]][[ a['name']=='Net Profit' and setTag('para','para',{'style':'terp_default_Right_9_Bold'}) or removeParentNode('font') ]] diff --git a/addons/account/report/account_balance_sheet_horizontal.rml b/addons/account/report/account_balance_sheet_horizontal.rml old mode 100644 new mode 100755 index d29ee5abffd..f9942c41b95 --- a/addons/account/report/account_balance_sheet_horizontal.rml +++ b/addons/account/report/account_balance_sheet_horizontal.rml @@ -205,13 +205,15 @@ [[ a['level1']<4 and ( setTag('para','para',{'style':'terp_default_Right_9_Bold'})) or removeParentNode('font') ]][[ formatLang(abs(a['balance1'])) ]] [[ company.currency_id.symbol ]] - [[ repeatIn(get_lines(), 'a') ]] [[ a['level']<4 and ( setTag('para','para',{'style':'terp_default_Bold_9'})) or removeParentNode('font') ]][[ a['code'] ]] + [[ repeatIn(get_lines(), 'a') ]] [[ a['level']<4 and ( setTag('para','para',{'style':'terp_default_Bold_9'})) or removeParentNode('font') ]][[ a['code'] ]][[ a['name']=='Net Profit' and setTag('para','para',{'style':'terp_default_Bold_9'}) or removeParentNode('font') ]] - [[ '. '*(a['level']-1) ]][[ a['level']<4 and ( setTag('para','para',{'style':'terp_default_Bold_9'})) or removeParentNode('font') ]][[ a['name'] ]] + [[ '. '*(a['level']-1) ]][[ a['level']<4 and ( setTag('para','para',{'style':'terp_default_Bold_9'})) or removeParentNode('font') ]][[ a['name'] ]][[ a['name']=='Net Profit' and setTag('para','para',{'style':'terp_default_Bold_9'}) or removeParentNode('font') ]] - [[ a['level1']<4 and ( setTag('para','para',{'style':'terp_default_Right_9_Bold'})) or removeParentNode('font') ]][[(a['code'] and a['name']) and formatLang(abs(a['balance'])) or removeParentNode('font')]] [[ company.currency_id.symbol ]] + [[ a['level1']<4 and ( setTag('para','para',{'style':'terp_default_Right_9_Bold'})) or removeParentNode('font') ]] +[[ a['name']=='Net Profit' and setTag('para','para',{'style':'terp_default_Right_9_Bold'}) or removeParentNode('font') ]] + [[(a['code'] and a['name']) and formatLang(abs(a['balance'])) or removeParentNode('font')]] [[ company.currency_id.symbol ]] diff --git a/addons/account/report/account_central_journal.py b/addons/account/report/account_central_journal.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_central_journal.rml b/addons/account/report/account_central_journal.rml old mode 100644 new mode 100755 index 320a38370a2..33566083652 --- a/addons/account/report/account_central_journal.rml +++ b/addons/account/report/account_central_journal.rml @@ -233,7 +233,7 @@ - + [[ data['model']=='account.journal.period' and 'Company' or removeParentNode('para') ]] [[ data['model']=='ir.ui.menu' and 'Chart of Account' or removeParentNode('para') ]] @@ -274,7 +274,7 @@ - [[ display_currency(data) == False or removeParentNode('blockTable') ]] + [[ display_currency(data) == False or removeParentNode('blockTable') ]] A/C No. Account Name @@ -293,7 +293,7 @@ Currency - [[ display_currency(data) == False or removeParentNode('blockTable') ]] + [[ display_currency(data) == False or removeParentNode('blockTable') ]] Total: @@ -314,7 +314,7 @@
[[ repeatIn(lines(o.period_id.id,o.journal_id.id),'line') ]] - [[ display_currency(data) == False or removeParentNode('blockTable') ]] + [[ display_currency(data) == False or removeParentNode('blockTable') ]] [[ line['code'] ]] [[ line['name'] ]] diff --git a/addons/account/report/account_entries_report.py b/addons/account/report/account_entries_report.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_entries_report_view.xml b/addons/account/report/account_entries_report_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/report/account_general_journal.py b/addons/account/report/account_general_journal.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_general_journal.rml b/addons/account/report/account_general_journal.rml old mode 100644 new mode 100755 diff --git a/addons/account/report/account_general_ledger.py b/addons/account/report/account_general_ledger.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_general_ledger.rml b/addons/account/report/account_general_ledger.rml old mode 100644 new mode 100755 diff --git a/addons/account/report/account_general_ledger_landscape.rml b/addons/account/report/account_general_ledger_landscape.rml old mode 100644 new mode 100755 index 56624256300..2d2fbed9ef9 --- a/addons/account/report/account_general_ledger_landscape.rml +++ b/addons/account/report/account_general_ledger_landscape.rml @@ -263,11 +263,11 @@ - + - + @@ -313,7 +313,7 @@ Currency - + [[ data['form']['amount_currency'] == False or removeParentNode('blockTable') ]] @@ -496,19 +496,19 @@ [[data['form']['amount_currency'] == True or removeParentNode('blockTable')]] - [[ '..'*(o.level-1) ]][[ o.code ]] [[ o.name ]] + [[ '..'*(o.level-1) ]][[ o.code ]] [[ o.name ]] - [[ formatLang(sum_debit_account(o), digits=get_digits(dp='Account')) ]] + [[ formatLang(sum_debit_account(o), digits=get_digits(dp='Account')) ]] - [[ formatLang(sum_credit_account(o), digits=get_digits(dp='Account')) ]] + [[ formatLang(sum_credit_account(o), digits=get_digits(dp='Account')) ]] - [[ formatLang(sum_balance_account(o), digits=get_digits(dp='Account')) ]] [[ company.currency_id.symbol ]] + [[ formatLang(sum_balance_account(o), digits=get_digits(dp='Account')) ]] [[ company.currency_id.symbol ]] - [[ o.currency_id and formatLang(sum_currency_amount_account(o), digits=get_digits(dp='Account')) + o.currency_id.code or '' ]] + [[ o.currency_id and formatLang(sum_currency_amount_account(o), digits=get_digits(dp='Account')) + o.currency_id.code or '' ]] @@ -526,7 +526,7 @@ [[ line['lcode'] ]] - [[ strip_name(line['partner_name'],21) ]] + [[ strip_name(line['partner_name'],20) ]] [[ strip_name(line['lref'],17) ]] @@ -535,7 +535,7 @@ [[ line['move'] ]] - [[ strip_name(line['lname'],26) ]] + [[ strip_name(line['lname'],22) ]] [[ strip_name(line['line_corresp'],18) ]] @@ -598,16 +598,16 @@ [[ data['form']['amount_currency'] == False or removeParentNode('blockTable') ]] - [[ '..'*(o.level-1) ]][[ o.code ]] [[ o.name ]] + [[ '..'*(o.level-1) ]][[ o.code ]] [[ o.name ]] - [[ formatLang(sum_debit_account(o), digits=get_digits(dp='Account')) ]] + [[ formatLang(sum_debit_account(o), digits=get_digits(dp='Account')) ]] - [[ formatLang(sum_credit_account(o), digits=get_digits(dp='Account')) ]] + [[ formatLang(sum_credit_account(o), digits=get_digits(dp='Account')) ]] - [[ formatLang(sum_balance_account(o), digits=get_digits(dp='Account')) ]] [[ company.currency_id.symbol ]] + [[ formatLang(sum_balance_account(o), digits=get_digits(dp='Account')) ]] [[ company.currency_id.symbol ]] @@ -625,7 +625,7 @@ [[ line['lcode'] ]] - [[ strip_name(line['partner_name'],25) ]] + [[ strip_name(line['partner_name'],24) ]] [[ strip_name(line['lref'],21) ]] @@ -634,7 +634,7 @@ [[ line['move'] ]] - [[ strip_name(line['lname'],35) ]] + [[ strip_name(line['lname'],28) ]] [[ strip_name(line['line_corresp'],23) ]] diff --git a/addons/account/report/account_invoice_report.py b/addons/account/report/account_invoice_report.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_invoice_report_view.xml b/addons/account/report/account_invoice_report_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/report/account_journal.py b/addons/account/report/account_journal.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_journal.rml b/addons/account/report/account_journal.rml old mode 100644 new mode 100755 index a81c634ddc8..9b0ac55bb56 --- a/addons/account/report/account_journal.rml +++ b/addons/account/report/account_journal.rml @@ -229,7 +229,7 @@ - [[ display_currency(data) == False or removeParentNode('blockTable') ]] + [[ display_currency(data) == False or removeParentNode('blockTable') ]] Date Ref @@ -256,14 +256,14 @@ [[ strip_name(line.ref,20) ]] [[ line.move_id.name <> '/' and line.move_id.name or ('*'+str(line.move_id.id)) ]] [[ line.account_id.code ]] - [[ line.partner_id and strip_name(line.partner_id.name,16) ]] - [[ strip_name(line.name,35) ]] + [[ line.partner_id and strip_name(line.partner_id.name,17) ]] + [[ strip_name(line.name,27) ]] [[ formatLang(line.debit) ]] [[ company.currency_id.symbol ]] [[ formatLang(line.credit) ]] [[ company.currency_id.symbol ]] - [[ display_currency(data) or removeParentNode('blockTable') ]] + [[ display_currency(data) or removeParentNode('blockTable') ]] Date Ref @@ -293,7 +293,7 @@ [[ strip_name(line.ref,20) ]] [[ line.move_id.name <> '/' and line.move_id.name or ('*'+str(line.move_id.id)) ]] [[ line.account_id.code ]] - [[ line.partner_id and strip_name(line.partner_id.name,16) ]] + [[ line.partner_id and strip_name(line.partner_id.name,15) ]] [[ strip_name(line.name,17) ]] [[ formatLang(line.debit) ]] [[ company.currency_id.symbol ]] [[ formatLang(line.credit) ]] [[ company.currency_id.symbol ]] diff --git a/addons/account/report/account_partner_balance.py b/addons/account/report/account_partner_balance.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_partner_balance.rml b/addons/account/report/account_partner_balance.rml old mode 100644 new mode 100755 diff --git a/addons/account/report/account_partner_ledger.py b/addons/account/report/account_partner_ledger.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_partner_ledger.rml b/addons/account/report/account_partner_ledger.rml old mode 100644 new mode 100755 index 1a32bc13bde..69faa977da1 --- a/addons/account/report/account_partner_ledger.rml +++ b/addons/account/report/account_partner_ledger.rml @@ -262,11 +262,11 @@ - + - + @@ -274,67 +274,65 @@ - - [[ display_currency(data) == False or removeParentNode('blockTable') ]] - - - Date - - - JNRL - - - Ref - - - Account - - - Entry Label - - - Debit - - - Credit - - - Balance - - - - - [[ display_currency(data) == True or removeParentNode('blockTable') ]] - - - Date - - - JNRL - - - Ref - - - Account - - - Entry Label - - - Debit - - - Credit - - - Balance - - - Currency - - - + + + + Date + + + JNRL + + + Ref + + + Account + + + Entry Label + + + Debit + + + Credit + + + Balance + + + + + + + Date + + + JNRL + + + Ref + + + Account + + + Entry Label + + + Debit + + + Credit + + + Balance + + + Currency + + + [[ repeatIn(objects, 'p') ]] [[ setLang(p.lang) ]] @@ -439,7 +437,7 @@ [[ display_currency(data) == False or removeParentNode('section') ]] - + Date @@ -490,47 +488,47 @@ - Initial Balance + Initial Balance - [[ formatLang(get_intial_balance(p)[0][0])]] + [[ formatLang(get_intial_balance(p)[0][0])]] - [[ formatLang(get_intial_balance(p)[0][1]) ]] + [[ formatLang(get_intial_balance(p)[0][1]) ]] - [[ formatLang(get_intial_balance(p)[0][2]) ]] [[ company.currency_id.symbol ]] + [[ formatLang(get_intial_balance(p)[0][2]) ]] [[ company.currency_id.symbol ]]
[[ repeatIn(lines(p), 'line') ]] - + - [[ formatLang(line['date'],date=True) ]] + [[ formatLang(line['date'],date=True) ]] - [[ line['code'] ]] + [[ line['code'] ]] - [[ line['move_name'] ]] + [[ line['move_name'] ]] - [[ line['a_code'] ]] + [[ line['a_code'] ]] - [[ strip_name(line['ref'],10) ]] - [[ strip_name(line['name'],15) ]] + [[ strip_name(line['ref'],10) ]] - [[ strip_name(line['name'],15) ]] - [[ formatLang((line['debit'])) ]] + [[ formatLang((line['debit'])) ]] - [[ formatLang((line['credit'])) ]] + [[ formatLang((line['credit'])) ]] - [[ formatLang((line['progress'])) ]] [[ company.currency_id.symbol ]] + [[ formatLang((line['progress'])) ]] [[ company.currency_id.symbol ]] @@ -540,7 +538,7 @@ [[ display_currency(data) == True or removeParentNode('section') ]] - + Date @@ -571,7 +569,7 @@ - + [[ p.ref ]] - [[ p.name ]] @@ -594,7 +592,7 @@
[[ data['form']['initial_balance']==True or removeParentNode('section') ]] - + Initial Balance @@ -618,35 +616,35 @@
[[ repeatIn(lines(p), 'line') ]] - + - [[ formatLang(line['date'],date=True) ]] + [[ formatLang(line['date'],date=True) ]] - [[ line['code'] ]] + [[ line['code'] ]] - [[ line['move_name'] ]] + [[ line['move_name'] ]] - [[ line['a_code'] ]] + [[ line['a_code'] ]] - [[ strip_name(line['ref'],5) ]] - [[ strip_name(line['name'],5) ]] + [[ strip_name(line['ref'],8) ]] - [[ strip_name(line['name'],7) ]] - [[ formatLang((line['debit'])) ]] + [[ formatLang((line['debit'])) ]] - [[ formatLang((line['credit'])) ]] + [[ formatLang((line['credit'])) ]] - [[ formatLang((line['progress'])) ]] [[ company.currency_id.symbol ]] + [[ formatLang((line['progress'])) ]] [[ company.currency_id.symbol ]] - [[ (line['currency_id']==None or line['amount_currency']==None) and removeParentNode('font') ]] [[ formatLang(line['amount_currency'] ) ]] [[ line['currency_code'] or '' ]] + [[ (line['currency_id']==None or line['amount_currency']==None) and removeParentNode('font') ]] [[ formatLang(line['amount_currency'] ) ]] [[ line['currency_code'] or '' ]] @@ -655,4 +653,4 @@
- \ No newline at end of file + diff --git a/addons/account/report/account_partner_ledger_other.rml b/addons/account/report/account_partner_ledger_other.rml old mode 100644 new mode 100755 index b3dec993cdb..22942e15c78 --- a/addons/account/report/account_partner_ledger_other.rml +++ b/addons/account/report/account_partner_ledger_other.rml @@ -262,11 +262,11 @@ - + - + @@ -274,67 +274,67 @@ - - [[ display_currency(data) == False or removeParentNode('blockTable') ]] - - - Date - - - JNRL - - - Ref - - - Account - - - Entry Label - - - Debit - - - Credit - - - Balance - - - - - [[ display_currency(data) == True or removeParentNode('blockTable') ]] - - - Date - - - JNRL - - - Ref - - - Account - - - Entry Label - - - Debit - - - Credit - - - Balance - - - Currency - - - + + [[ display_currency(data) == False or removeParentNode('blockTable') ]] + + + Date + + + JNRL + + + Ref + + + Account + + + Entry Label + + + Debit + + + Credit + + + Balance + + + + + [[ display_currency(data) == True or removeParentNode('blockTable') ]] + + + Date + + + JNRL + + + Ref + + + Account + + + Entry Label + + + Debit + + + Credit + + + Balance + + + Currency + + + @@ -434,7 +434,7 @@ - + [[ display_currency(data) == False or removeParentNode('blockTable') ]] @@ -493,53 +493,53 @@ - Initial Balance + Initial Balance - [[ formatLang(get_intial_balance(p)[0][0])]] + [[ formatLang(get_intial_balance(p)[0][0])]] - [[ formatLang(get_intial_balance(p)[0][1]) ]] + [[ formatLang(get_intial_balance(p)[0][1]) ]] - [[ formatLang(get_intial_balance(p)[0][2]) ]] [[ company.currency_id.symbol ]] + [[ formatLang(get_intial_balance(p)[0][2]) ]] [[ company.currency_id.symbol ]]
[[ repeatIn(lines(p), 'line') ]] - + - [[ formatLang(line['date'],date=True) ]] + [[ formatLang(line['date'],date=True) ]] - [[ line['code'] ]] + [[ line['code'] ]] - [[ line['move_name'] ]] + [[ line['move_name'] ]] - [[ line['a_code'] ]] + [[ line['a_code'] ]] - [[ strip_name(line['ref'],10) ]] - [[ strip_name(line['name'],15) ]] + [[ strip_name(line['ref'],10) ]] - [[ strip_name(line['name'],15) ]] - [[ formatLang((line['debit'])) ]] + [[ formatLang((line['debit'])) ]] - [[ formatLang((line['credit'])) ]] + [[ formatLang((line['credit'])) ]] - [[ formatLang((line['progress'])) ]] [[ company.currency_id.symbol ]] + [[ formatLang((line['progress'])) ]] [[ company.currency_id.symbol ]]
- + [[ display_currency(data) == True or removeParentNode('blockTable') ]] @@ -578,7 +578,7 @@ [[ display_currency(data) == True or removeParentNode('section') ]] - + [[ p.ref ]] - [[ p.name ]] @@ -601,22 +601,22 @@
[[ data['form']['initial_balance']==True or removeParentNode('section') ]] - + - Initial Balance + Initial Balance - [[ formatLang(get_intial_balance(p)[0][0])]] + [[ formatLang(get_intial_balance(p)[0][0])]] - [[ formatLang(get_intial_balance(p)[0][1]) ]] + [[ formatLang(get_intial_balance(p)[0][1]) ]] - [[ formatLang(get_intial_balance(p)[0][2]) ]] [[ company.currency_id.symbol ]] + [[ formatLang(get_intial_balance(p)[0][2]) ]] [[ company.currency_id.symbol ]] - + @@ -625,35 +625,35 @@
[[ repeatIn(lines(p), 'line') ]] - + - [[ formatLang(line['date'],date=True) ]] + [[ formatLang(line['date'],date=True) ]] - [[ line['code'] ]] + [[ line['code'] ]] - [[ line['move_name'] ]] + [[ line['move_name'] ]] - [[ line['a_code'] ]] + [[ line['a_code'] ]] - [[ strip_name(line['ref'],5) ]] - [[ strip_name(line['name'],5) ]] + [[ strip_name(line['ref'],8) ]] - [[ strip_name(line['name'],7) ]] - [[ formatLang((line['debit'])) ]] + [[ formatLang((line['debit'])) ]] - [[ formatLang((line['credit'])) ]] + [[ formatLang((line['credit'])) ]] - [[ formatLang((line['progress'])) ]] [[ company.currency_id.symbol ]] + [[ formatLang((line['progress'])) ]] [[ company.currency_id.symbol ]] - [[ (line['currency_id']==None or line['amount_currency']==None) and removeParentNode('font') ]] [[ formatLang(line['amount_currency'] ) ]] [[ line['currency_code'] or '' ]] + [[ (line['currency_id']==None or line['amount_currency']==None) and removeParentNode('font') ]] [[ formatLang(line['amount_currency'] ) ]] [[ line['currency_code'] or '' ]] @@ -662,4 +662,4 @@
- \ No newline at end of file + diff --git a/addons/account/report/account_print_invoice.py b/addons/account/report/account_print_invoice.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_print_invoice.rml b/addons/account/report/account_print_invoice.rml old mode 100644 new mode 100755 index 80ccd2aabae..b4492e05b0d --- a/addons/account/report/account_print_invoice.rml +++ b/addons/account/report/account_print_invoice.rml @@ -27,6 +27,10 @@ + + + + @@ -41,6 +45,10 @@ + + + + @@ -178,20 +186,23 @@ - + - Document + Description Invoice Date + + Origin + - Partner Ref. + Your Reference - + [[ o.name or ' ' ]] @@ -199,6 +210,9 @@ [[ formatLang(o.date_invoice,date=True) ]] + + [[ o.origin or '' ]] + [[ (o.address_invoice_id and o.address_invoice_id.partner_id and o.address_invoice_id.partner_id.ref) or ' ' ]] @@ -207,31 +221,31 @@ - + - Description + Description - Taxes + Taxes - Quantity + Quantity - Unit Price + Unit Price - Disc.(%) + Disc.(%) - Price + Price
[[ repeatIn(o.invoice_line,'l') ]] - + [[ l.name ]] @@ -246,7 +260,7 @@ [[ formatLang(l.price_unit) ]] - [[ formatLang(l.discount, digits=get_digits(dp='Account')) ]] + [[ formatLang(l.discount, digits=get_digits(dp='Account')) ]] [[ formatLang(l.price_subtotal, digits=get_digits(dp='Account')) ]] [[ o.currency_id.symbol ]] @@ -284,7 +298,7 @@
- + @@ -393,4 +407,4 @@ - \ No newline at end of file + diff --git a/addons/account/report/account_print_overdue.py b/addons/account/report/account_print_overdue.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_print_overdue.rml b/addons/account/report/account_print_overdue.rml old mode 100644 new mode 100755 diff --git a/addons/account/report/account_profit_horizontal.rml b/addons/account/report/account_profit_horizontal.rml old mode 100644 new mode 100755 diff --git a/addons/account/report/account_profit_loss.py b/addons/account/report/account_profit_loss.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_profit_loss.rml b/addons/account/report/account_profit_loss.rml old mode 100644 new mode 100755 index 33e69d02e96..582885d89dc --- a/addons/account/report/account_profit_loss.rml +++ b/addons/account/report/account_profit_loss.rml @@ -231,7 +231,7 @@ [[ final_result()['type'] == 'Net Profit' and final_result()['type'] or removeParentNode('blockTable') ]] - [[ final_result()['balance'] and final_result()['type'] == 'Net Loss' and formatLang(abs(final_result()['balance'])) ]] [[ final_result()['balance'] and final_result()['type'] == 'Net Loss' and company.currency_id.symbol ]] + [[ final_result()['balance'] and final_result()['type'] == 'Net Profit' and formatLang(abs(final_result()['balance'])) ]] [[ final_result()['balance'] and final_result()['type'] == 'Net Profit' and company.currency_id.symbol ]] diff --git a/addons/account/report/account_report.py b/addons/account/report/account_report.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_report_view.xml b/addons/account/report/account_report_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/report/account_tax_code.py b/addons/account/report/account_tax_code.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_tax_code.rml b/addons/account/report/account_tax_code.rml old mode 100644 new mode 100755 diff --git a/addons/account/report/account_tax_report.py b/addons/account/report/account_tax_report.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_tax_report.rml b/addons/account/report/account_tax_report.rml old mode 100644 new mode 100755 diff --git a/addons/account/report/account_voucher_print.py b/addons/account/report/account_voucher_print.py old mode 100644 new mode 100755 diff --git a/addons/account/report/account_voucher_print.rml b/addons/account/report/account_voucher_print.rml old mode 100644 new mode 100755 diff --git a/addons/account/report/common_report_header.py b/addons/account/report/common_report_header.py old mode 100644 new mode 100755 diff --git a/addons/account/report/transfer.xml b/addons/account/report/transfer.xml old mode 100644 new mode 100755 diff --git a/addons/account/report/transfer.xsl b/addons/account/report/transfer.xsl old mode 100644 new mode 100755 diff --git a/addons/account/res_currency.py b/addons/account/res_currency.py old mode 100644 new mode 100755 diff --git a/addons/account/security/account_security.xml b/addons/account/security/account_security.xml old mode 100644 new mode 100755 diff --git a/addons/account/security/ir.model.access.csv b/addons/account/security/ir.model.access.csv old mode 100644 new mode 100755 index b7775c48c8d..fe98ef7a403 --- a/addons/account/security/ir.model.access.csv +++ b/addons/account/security/ir.model.access.csv @@ -31,7 +31,7 @@ "access_account_tax_code_template","account.tax.code.template","model_account_tax_code_template","account.group_account_manager",1,1,1,1 "access_account_chart_template","account.chart.template","model_account_chart_template","account.group_account_manager",1,1,1,1 "access_account_tax_template","account.tax.template","model_account_tax_template","account.group_account_manager",1,1,1,1 -"access_account_bank_statement","account.bank.statement","model_account_bank_statement","account.group_account_user",1,0,0,0 +"access_account_bank_statement","account.bank.statement","model_account_bank_statement","account.group_account_user",1,1,1,1 "access_account_bank_statement_line","account.bank.statement.line","model_account_bank_statement_line","account.group_account_user",1,1,1,1 "access_account_analytic_line","account.analytic.line","model_account_analytic_line","account.group_account_user",1,1,1,1 "access_account_analytic_line_manager","account.analytic.line manager","model_account_analytic_line","account.group_account_manager",1,0,0,0 @@ -69,8 +69,8 @@ "access_account_invoice_user","account.invoice.line user","model_account_invoice_line","base.group_user",1,0,0,0 "access_account_payment_term_partner_manager","account.payment.term partner manager","model_account_payment_term","base.group_user",1,0,0,0 "access_account_payment_term_line_partner_manager","account.payment.term.line partner manager","model_account_payment_term_line","base.group_user",1,0,0,0 -"access_account_account_product_manager","account.account product manager","model_account_account","product.group_product_manager",1,0,0,0 -"access_account_journal_product_manager","account.journal product manager","model_account_journal","product.group_product_manager",1,0,0,0 +"access_account_account_sale_manager","account.account sale manager","model_account_account","base.group_sale_manager",1,0,0,0 +"access_account_journal_sale_manager","account.journal sale manager","model_account_journal","base.group_sale_manager",1,0,0,0 "access_account_fiscal_position_product_manager","account.fiscal.position account.manager","model_account_fiscal_position","account.group_account_manager",1,1,1,1 "access_account_fiscal_position_tax_product_manager","account.fiscal.position.tax account.manager","model_account_fiscal_position_tax","account.group_account_manager",1,1,1,1 "access_account_fiscal_position_account_product_manager","account.fiscal.position account.manager","model_account_fiscal_position_account","account.group_account_manager",1,1,1,1 @@ -97,6 +97,7 @@ "access_account_invoice_manager","account.invoice manager","model_account_invoice","account.group_account_manager",1,0,0,0 "access_account_bank_statement_manager","account.bank.statement manager","model_account_bank_statement","account.group_account_manager",1,1,1,1 "access_account_entries_report_manager","account.entries.report","model_account_entries_report","account.group_account_manager",1,1,1,1 +"access_account_entries_report_user","account.entries.report","model_account_entries_report","account.group_account_user",1,0,0,0 "access_analytic_entries_report_manager","analytic.entries.report","model_analytic_entries_report","account.group_account_manager",1,0,0,0 "access_account_cashbox_line","account.cashbox.line","model_account_cashbox_line","account.group_account_manager",1,1,1,1 "access_account_cashbox_line","account.cashbox.line","model_account_cashbox_line","account.group_account_user",1,1,1,1 @@ -116,5 +117,8 @@ "access_report_account_receivable_invoice","report.account.receivable.invoice","model_report_account_receivable","account.group_account_invoice",1,1,1,1 "access_report_account_receivable_user","report.account.receivable.user","model_report_account_receivable","account.group_account_user",1,1,1,1 "access_account_sequence_fiscal_year_invoice","account.sequence.fiscalyear invoice","model_account_sequence_fiscalyear","account.group_account_invoice",1,1,1,1 +"access_account_tax_sale_manager","account.tax sale manager","model_account_tax","base.group_sale_salesman",1,0,0,0 +"access_account_journal_sale_manager","account.journal sale manager","model_account_journal","base.group_sale_salesman",1,0,0,0 +"access_account_invoice_tax_sale_manager","account.invoice.tax sale manager","model_account_invoice_tax","base.group_sale_salesman",1,0,0,0 "access_account_sequence_fiscal_year_sale_user","account.sequence.fiscalyear.sale.user","model_account_sequence_fiscalyear","base.group_sale_salesman",1,1,1,0 "access_account_sequence_fiscal_year_sale_manager","account.sequence.fiscalyear.sale.manager","model_account_sequence_fiscalyear","base.group_sale_manager",1,1,1,1 diff --git a/addons/account/sequence.py b/addons/account/sequence.py old mode 100644 new mode 100755 diff --git a/addons/account/sequence_view.xml b/addons/account/sequence_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/test/account_bank_statement.yml b/addons/account/test/account_bank_statement.yml old mode 100644 new mode 100755 diff --git a/addons/account/test/account_cash_statement.yml b/addons/account/test/account_cash_statement.yml old mode 100644 new mode 100755 diff --git a/addons/account/test/account_change_currency.yml b/addons/account/test/account_change_currency.yml old mode 100644 new mode 100755 diff --git a/addons/account/test/account_customer_invoice.yml b/addons/account/test/account_customer_invoice.yml old mode 100644 new mode 100755 diff --git a/addons/account/test/account_fiscalyear_close.yml b/addons/account/test/account_fiscalyear_close.yml old mode 100644 new mode 100755 diff --git a/addons/account/test/account_fiscalyear_close_state.yml b/addons/account/test/account_fiscalyear_close_state.yml old mode 100644 new mode 100755 diff --git a/addons/account/test/account_invoice_state.yml b/addons/account/test/account_invoice_state.yml old mode 100644 new mode 100755 diff --git a/addons/account/test/account_period_close.yml b/addons/account/test/account_period_close.yml old mode 100644 new mode 100755 diff --git a/addons/account/test/account_report.yml b/addons/account/test/account_report.yml old mode 100644 new mode 100755 index aaf45de3212..312db44cd0c --- a/addons/account/test/account_report.yml +++ b/addons/account/test/account_report.yml @@ -28,7 +28,6 @@ (data, format) = netsvc.LocalService('report.account.overdue').create(cr, uid, [ref('base.res_partner_asus'),ref('base.res_partner_agrolait'),ref('base.res_partner_c2c')], {}, {}) if tools.config['test_report_directory']: file(os.path.join(tools.config['test_report_directory'], 'account-report_overdue.'+format), 'wb+').write(data) - - In order to test the PDF reports defined on Account Move, we will print the Voucher Report - @@ -37,311 +36,183 @@ (data, format) = netsvc.LocalService('report.account.move.voucher').create(cr, uid, [ref('account.account_move_0')], {}, {}) if tools.config['test_report_directory']: file(os.path.join(tools.config['test_report_directory'], 'account-voucher-report.'+format), 'wb+').write(data) - - Print the Aged Partner Balance Report - - !python {model: res.partner}: | - import time - from datetime import datetime - from dateutil.relativedelta import relativedelta - start = datetime.fromtimestamp(time.mktime(time.strptime(time.strftime('%Y-%m-%d'), "%Y-%m-%d"))) - start = datetime(int(start.year), int(start.month), int(start.day)) - res = {} - for i in range(5)[::-1]: - stop = start - relativedelta(days=30) - res[str(i)] = { - 'name': (i!=0 and (str((5-(i+1)) * 30) + '-' + str((5-i) * 30)) or ('+'+str(4 * 30))), - 'stop': start.strftime('%Y-%m-%d'), - 'start': (i!=0 and stop.strftime('%Y-%m-%d') or False), - } - start = stop - relativedelta(days=1) - obj_move = self.pool.get('account.move.line') - ctx = {} - fy_id = ref('account.data_fiscalyear') - period_list = self.pool.get('account.period').search(cr, uid, [('fiscalyear_id', 'in', [fy_id])], context=context) - journal_ids = [ref('account.sales_journal'),ref('account.refund_sales_journal'),ref('account.expenses_journal'),ref('account.refund_expenses_journal'),ref('account.bank_journal'),ref('account.check_journal'),ref('account.cash_journal')] - ctx['fiscalyear'] = fy_id - ctx['journal_ids'] = journal_ids - ctx['chart_account_id'] = ref('account.chart0') - - query_line = obj_move._query_get(cr, uid, obj='l', context=ctx) - - data_dict = {'model': 'ir.ui.menu', 'form': \ - {'chart_account_id':ref('account.chart0'), - 'initial_balance': 1, 'periods': period_list, - 'journal_ids':journal_ids, 'page_split': 0, - 'date_from': time.strftime('%Y-%m-%d'), - 'period_length': 30, 'amount_currency': 0, - 'query_line' : query_line, 'result_selection': - 'customer','direction_selection': - 'past','fiscalyear_id':fy_id } } - data_dict['form'].update(res) - from tools.test_reports import try_report - try_report(cr, uid, 'report.account.aged_trial_balance', [], data_dict, context={}) + !python {model: account.account}: | + ctx={} + ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')],'active_id':ref('account.chart0')}) + data_dict = {'chart_account_id':ref('account.chart0')} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_aged_balance_view',wiz_data=data_dict, context=ctx, our_module='account') - Print the Account Balance Sheet in Horizontal mode - !python {model: account.account}: | - import netsvc, tools, os, time - data_dict = {'model': 'ir.ui.menu', 'form': {'reserve_account_id':ref('account.rsa') ,'chart_account_id':ref('account.chart0'),'display_account':'bal_all','filter': 'filter_no','display_type': 1,'journal_ids':[],'fiscalyear': ref('account.data_fiscalyear') ,'target_move': 'all'}} - (data, format) = netsvc.LocalService('report.account.balancesheet.horizontal').create(cr, uid, [], data_dict, {'periods': []}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-account_balance_sheet_horizontal.'+format), 'wb+').write(data) - + ctx={} + ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')]}) + data_dict = {'chart_account_id':ref('account.chart0'),'display_type': True} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_bs_report',wiz_data=data_dict, context=ctx, our_module='account') - Print the Account Balance Sheet in Normal mode - !python {model: account.account}: | - import netsvc, tools, os, time - data_dict = {'model': 'ir.ui.menu', 'form': {'reserve_account_id':ref('account.rsa') ,'chart_account_id':ref('account.chart0'),'display_account':'bal_all','filter': 'filter_no','display_type': 0,'journal_ids':[],'fiscalyear': ref('account.data_fiscalyear') ,'target_move': 'all'}} - (data, format) = netsvc.LocalService('report.account.balancesheet').create(cr, uid, [], data_dict, {'periods': []}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-account_balance_sheet.'+format), 'wb+').write(data) - + ctx={} + ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')]}) + data_dict = {'chart_account_id':ref('account.chart0'),'display_type': False} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_bs_report',wiz_data=data_dict, context=ctx, our_module='account') - - Print the Account Balance Report in Normal mode - From Account Chart + Print the Account Balance Report in Normal mode through the wizard - From Account Chart - !python {model: account.account}: | - import netsvc, tools, os, time - data_dict = {'model': 'account.account', 'form': {'chart_account_id':ref('account.chart0'),'select_account': False,'display_account':'bal_all','format_perc':0,'filter': 'filter_no','show_columns' :0, 'account_choice': 'moves','landscape':0,'period_manner': 'actual','fiscalyear_id': ref('account.data_fiscalyear') ,'target_move': 'all','periods': [],'id':ref('account.bal'),'context':{'state':'all'}}} - (data, format) = netsvc.LocalService('report.account.account.balance').create(cr, uid, [ref('account.bal'),ref('account.gpf')], data_dict, {'periods': []}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-account_balance-normal.'+format), 'wb+').write(data) - - data_dict.update({'model': 'ir.ui.menu'}) - data_dict['form'].update({'active_ids':[ref('account.bal'),ref('account.gpf')]}) - - (data, format) = netsvc.LocalService('report.account.account.balance').create(cr, uid, [], data_dict, {'periods': []}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-account_balance-normal-menu.'+format), 'wb+').write(data) - + ctx={} + ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')]}) + data_dict = {'chart_account_id':ref('account.chart0')} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_balance_menu',wiz_data=data_dict, context=ctx, our_module='account') - Print the Central Journal Report - From Account - !python {model: account.journal.period}: | - import netsvc, tools, os, time - fy_id = ref('account.data_fiscalyear') - period_list = self.pool.get('account.period').search(cr, uid, [('fiscalyear_id', 'in', [fy_id])], context=context) - journal_ids = [ref('account.sales_journal'),ref('account.refund_sales_journal'),ref('account.expenses_journal'),ref('account.refund_expenses_journal'),ref('account.bank_journal'),ref('account.check_journal'),ref('account.cash_journal')] - journal_period_ids = self.pool.get('account.journal.period').search(cr, uid, [('journal_id', 'in', journal_ids), ('period_id', 'in', period_list)], context=context) - - obj_move = self.pool.get('account.move.line') - ctx = {} - ctx['fiscalyear'] = fy_id - ctx['journal_ids'] = journal_ids - ctx['chart_account_id'] = ref('account.chart0') - - query_line = obj_move._query_get(cr, uid, obj='l', context=ctx) - data_dict = {'model': 'account.journal.period', 'id':journal_period_ids[0], 'form': {'chart_account_id':ref('account.chart0'),'display_account':'bal_all','filter': 'filter_no','amount_currency': 0,'compare_pattern': 'none','account_choice': 'moves','landscape':0,'period_manner': 'actual','fiscalyear_id': fy_id ,'query_line':query_line,'target_move': 'all','periods': period_list,'journal_ids':journal_ids,'id':ref('account.bal') }} - (data, format) = netsvc.LocalService('report.account.central.journal').create(cr, uid, journal_period_ids, data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-central_journal.'+format), 'wb+').write(data) - - data_dict.update({'model': 'ir.ui.menu'}) - data_dict['form'].update({'active_ids':journal_period_ids}) - - (data, format) = netsvc.LocalService('report.account.central.journal').create(cr, uid, [], data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-central_journal-menu.'+format), 'wb+').write(data) + journal_ids = [ref('account.sales_journal'),ref('account.refund_sales_journal'),ref('account.expenses_journal'),ref('account.refund_expenses_journal'), + ref('account.bank_journal'),ref('account.check_journal'),ref('account.cash_journal')] + ctx={} + ctx.update({'model': 'account.journal.period','active_ids':journal_ids}) + data_dict = {'chart_account_id':ref('account.chart0')} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_central_journal',wiz_data=data_dict, context=ctx, our_module='account') - Print the General Journal Report - From Journal - !python {model: account.journal.period}: | - import netsvc, tools, os, time - fy_id = ref('account.data_fiscalyear') - period_list = self.pool.get('account.period').search(cr, uid, [('fiscalyear_id', 'in', [fy_id])], context=context) - journal_ids = [ref('account.sales_journal'),ref('account.refund_sales_journal'),ref('account.expenses_journal'),ref('account.refund_expenses_journal'),ref('account.bank_journal'),ref('account.check_journal'),ref('account.cash_journal')] - journal_period_ids = self.pool.get('account.journal.period').search(cr, uid, [('journal_id', 'in', journal_ids), ('period_id', 'in', period_list)], context=context) - - obj_move = self.pool.get('account.move.line') - ctx = {} - ctx['fiscalyear'] = fy_id - ctx['journal_ids'] = journal_ids - ctx['chart_account_id'] = ref('account.chart0') - - query_line = obj_move._query_get(cr, uid, obj='l', context=ctx) - data_dict = {'model': 'ir.ui.menu','id':journal_period_ids[0], 'form': {'chart_account_id':ref('account.chart0'),'display_account':'bal_all','filter': 'filter_no','amount_currency': 0,'compare_pattern': 'none','account_choice': 'moves','landscape':0,'period_manner': 'actual','fiscalyear_id': fy_id ,'query_line':query_line,'target_move': 'all','periods': period_list,'journal_ids':journal_ids, 'active_ids':journal_period_ids}} - (data, format) = netsvc.LocalService('report.account.general.journal').create(cr, uid, journal_period_ids, data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-general_journal.'+format), 'wb+').write(data) - + journal_ids = [ref('account.sales_journal'),ref('account.refund_sales_journal'),ref('account.expenses_journal'),ref('account.refund_expenses_journal'), + ref('account.bank_journal'),ref('account.check_journal'),ref('account.cash_journal')] + ctx={} + ctx.update({'model': 'account.journal.period','active_ids':journal_ids}) + data_dict = {'chart_account_id':ref('account.chart0')} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_general_journal',wiz_data=data_dict, context=ctx, our_module='account') - Print the General Ledger Report in Normal Mode - !python {model: account.account}: | - import netsvc, tools, os, time - fy_id = ref('account.data_fiscalyear') - period_list = self.pool.get('account.period').search(cr, uid, [('fiscalyear_id', 'in', [fy_id])], context=context) - journal_ids = [ref('account.sales_journal'),ref('account.refund_sales_journal'),ref('account.expenses_journal'),ref('account.refund_expenses_journal'),ref('account.bank_journal'),ref('account.check_journal'),ref('account.cash_journal')] - acc_ids = [ref('account.bal'),ref('account.gpf')] - - obj_move = self.pool.get('account.move.line') - ctx = {} - ctx['fiscalyear'] = fy_id - ctx['journal_ids'] = journal_ids - ctx['chart_account_id'] = ref('account.chart0') - - query_line = obj_move._query_get(cr, uid, obj='l', context=ctx) - - data_dict = {'model': 'account.account', 'form': {'initial_balance': 1,'initial_bal_query': query_line,'chart_account_id':ref('account.chart0'),'display_account':'bal_all','filter': 'filter_no','sortby': 'sort_date','amount_currency': 0,'landscape':0,'period_manner': 'actual','fiscalyear_id': fy_id ,'query_line':query_line,'target_move': 'all','periods': period_list,'journal_ids':journal_ids,'id':ref('account.bal') }} - (data, format) = netsvc.LocalService('report.account.general.ledger').create(cr, uid, acc_ids, data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-general_ledger.'+format), 'wb+').write(data) - - data_dict.update({'model': 'ir.ui.menu'}) - data_dict['form'].update({'active_ids': acc_ids}) - (data, format) = netsvc.LocalService('report.account.general.ledger').create(cr, uid, [], data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-general_ledger-menu.'+format), 'wb+').write(data) + ctx={} + ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')]}) + data_dict = {'chart_account_id':ref('account.chart0'),'landscape':False} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_general_ledger_menu',wiz_data=data_dict, context=ctx, our_module='account') - Print the General Ledger Report in Landscape Mode - !python {model: account.account}: | - import netsvc, tools, os, time - fy_id = ref('account.data_fiscalyear') - period_list = self.pool.get('account.period').search(cr, uid, [('fiscalyear_id', 'in', [fy_id])], context=context) - journal_ids = [ref('account.sales_journal'),ref('account.refund_sales_journal'),ref('account.expenses_journal'),ref('account.refund_expenses_journal'),ref('account.bank_journal'),ref('account.check_journal'),ref('account.cash_journal')] - acc_ids = [ref('account.bal'),ref('account.gpf')] - - obj_move = self.pool.get('account.move.line') - ctx = {} - ctx['fiscalyear'] = fy_id - ctx['journal_ids'] = journal_ids - ctx['chart_account_id'] = ref('account.chart0') - - query_line = obj_move._query_get(cr, uid, obj='l', context=ctx) - - data_dict = {'model': 'account.account', 'form': {'initial_balance': 1,'initial_bal_query':query_line,'chart_account_id':ref('account.chart0'),'display_account':'bal_all','filter': 'filter_no','sortby': 'sort_date','amount_currency': 0,'landscape':1,'period_manner': 'actual','fiscalyear_id': fy_id ,'query_line':query_line,'target_move': 'all','periods': period_list,'journal_ids':journal_ids,'id':ref('account.bal') }} - (data, format) = netsvc.LocalService('report.account.general.ledger_landscape').create(cr, uid, acc_ids, data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-general_ledger-landscape.'+format), 'wb+').write(data) - - data_dict.update({'model': 'ir.ui.menu'}) - data_dict['form'].update({'active_ids': acc_ids}) - (data, format) = netsvc.LocalService('report.account.general.ledger_landscape').create(cr, uid, [], data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-general_ledger-landscape-menu.'+format), 'wb+').write(data) - + ctx={} + ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')]}) + data_dict = {'chart_account_id':ref('account.chart0'),'landscape':True} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_general_ledger_menu',wiz_data=data_dict, context=ctx, our_module='account') - Print Journal Report - From Model - !python {model: account.journal.period}: | - import netsvc, tools, os, time - fy_id = ref('account.data_fiscalyear') - period_list = self.pool.get('account.period').search(cr, uid, [('fiscalyear_id', 'in', [fy_id])], context=context) journal_ids = [ref('account.sales_journal'),ref('account.refund_sales_journal'),ref('account.expenses_journal'),ref('account.refund_expenses_journal'),ref('account.bank_journal'),ref('account.check_journal'),ref('account.cash_journal')] - journal_period_ids = self.pool.get('account.journal.period').search(cr, uid, [('journal_id', 'in', journal_ids), ('period_id', 'in', period_list)], context=context) - - obj_move = self.pool.get('account.move.line') - ctx = {} - ctx['fiscalyear'] = fy_id - ctx['journal_ids'] = journal_ids - ctx['chart_account_id'] = ref('account.chart0') - - query_line = obj_move._query_get(cr, uid, obj='l', context=ctx) - - data_dict = {'model': 'account.journal.period', 'id':journal_period_ids[0], 'form': {'sort_selection': 'date','chart_account_id':ref('account.chart0'),'display_account':'bal_all','filter': 'filter_no','amount_currency': 0,'compare_pattern': 'none','account_choice': 'moves','landscape':0,'period_manner': 'actual','fiscalyear_id': fy_id ,'query_line':query_line,'target_move': 'all','periods': period_list,'journal_ids':journal_ids,'id':ref('account.bal') }} - (data, format) = netsvc.LocalService('report.account.journal.period.print').create(cr, uid, journal_period_ids, data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-print_journal.'+format), 'wb+').write(data) - - data_dict.update({'model': 'ir.ui.menu'}) - data_dict['form'].update({'active_ids':journal_period_ids}) - - (data, format) = netsvc.LocalService('report.account.journal.period.print').create(cr, uid, [], data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-print_journal-menu.'+format), 'wb+').write(data) - + ctx={} + ctx.update({'model': 'account.journal.period','active_ids':journal_ids}) + data_dict = {'chart_account_id':ref('account.chart0')} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_print_journal',wiz_data=data_dict, context=ctx, our_module='account') - Print the Partner Balance Report - - !python {model: res.partner}: | - import netsvc, tools, os, time - fy_id = ref('account.data_fiscalyear') - period_list = self.pool.get('account.period').search(cr, uid, [('fiscalyear_id', 'in', [fy_id])], context=context) - journal_ids = [ref('account.sales_journal'),ref('account.refund_sales_journal'),ref('account.expenses_journal'),ref('account.refund_expenses_journal'),ref('account.bank_journal'),ref('account.check_journal'),ref('account.cash_journal')] - journal_period_ids = self.pool.get('account.journal.period').search(cr, uid, [('journal_id', 'in', journal_ids), ('period_id', 'in', period_list)], context=context) - obj_move = self.pool.get('account.move.line') - ctx = {} - ctx['fiscalyear'] = fy_id - ctx['journal_ids'] = journal_ids - ctx['chart_account_id'] = ref('account.chart0') - - query_line = obj_move._query_get(cr, uid, obj='l', context=ctx) - - data_dict = {'model': 'ir.ui.menu', 'form': {'result_selection': 'customer','chart_account_id':ref('account.chart0'),'display_account':'bal_all','filter': 'filter_no','display_type': 0,'journal_ids':journal_ids,'active_ids':journal_period_ids,'display_partner': 'all','fiscalyear': fy_id ,'target_move': 'all','query_line':query_line}} - (data, format) = netsvc.LocalService('report.account.partner.balance').create(cr, uid, journal_period_ids, data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-partner_balance.'+format), 'wb+').write(data) - + !python {model: account.account}: | + ctx={} + data_dict = {'chart_account_id':ref('account.chart0')} + ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')],'active_id':ref('account.chart0')}) + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_partner_balance',wiz_data=data_dict, context=ctx, our_module='account') - Print the Partner Ledger Report - - !python {model: res.partner}: | - import netsvc, tools, os, time - fy_id = ref('account.data_fiscalyear') - period_list = self.pool.get('account.period').search(cr, uid, [('fiscalyear_id', 'in', [fy_id])], context=context) - journal_ids = [ref('account.sales_journal'),ref('account.refund_sales_journal'),ref('account.expenses_journal'),ref('account.refund_expenses_journal'),ref('account.bank_journal'),ref('account.check_journal'),ref('account.cash_journal')] - - obj_move = self.pool.get('account.move.line') - ctx = {} - ctx['fiscalyear'] = fy_id - ctx['journal_ids'] = journal_ids - ctx['chart_account_id'] = ref('account.chart0') - - query_line = obj_move._query_get(cr, uid, obj='l', context=ctx) - - data_dict = {'model': 'ir.ui.menu', 'form': {'initial_bal_query':query_line,'amount_currency': 0,'reconcil': True,'initial_balance':1,'page_split': True,'result_selection': 'customer','chart_account_id':ref('account.chart0'),'display_account':'bal_all','filter': 'filter_no','display_type': 0,'journal_ids':journal_ids,'display_partner': 'non-zero_balance','fiscalyear': fy_id ,'target_move': 'all','query_line':query_line}} - (data, format) = netsvc.LocalService('report.account.third_party_ledger').create(cr, uid, [], data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-partner_ledger.'+format), 'wb+').write(data) - + !python {model: account.account}: | + ctx={} + data_dict = {'chart_account_id':ref('account.chart0'),'page_split': True} + ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')],'active_id':ref('account.chart0')}) + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_partner_ledger',wiz_data=data_dict, context=ctx, our_module='account') - Print the Partner Ledger-Other Report - !python {model: res.partner}: | - import netsvc, tools, os, time - fy_id = ref('account.data_fiscalyear') - period_list = self.pool.get('account.period').search(cr, uid, [('fiscalyear_id', 'in', [fy_id])], context=context) - journal_ids = [ref('account.sales_journal'),ref('account.refund_sales_journal'),ref('account.expenses_journal'),ref('account.refund_expenses_journal'),ref('account.bank_journal'),ref('account.check_journal'),ref('account.cash_journal')] - - obj_move = self.pool.get('account.move.line') - ctx = {} - ctx['fiscalyear'] = fy_id - ctx['journal_ids'] = journal_ids - ctx['chart_account_id'] = ref('account.chart0') - - query_line = obj_move._query_get(cr, uid, obj='l', context=ctx) - data_dict = {'model': 'ir.ui.menu', 'form': {'initial_bal_query':query_line,'amount_currency': 0,'reconcil': True,'initial_balance':1,'page_split': False,'result_selection': 'customer','chart_account_id':ref('account.chart0'),'display_account':'bal_all','filter': 'filter_no','display_type': 0,'journal_ids':journal_ids,'display_partner': 'non-zero_balance','fiscalyear': fy_id ,'target_move': 'all','query_line':query_line}} - (data, format) = netsvc.LocalService('report.account.third_party_ledger_other').create(cr, uid, [], data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-partner_ledger-other.'+format), 'wb+').write(data) - + ctx={} + data_dict = {'chart_account_id':ref('account.chart0'),'page_split': False} + ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')],'active_id':ref('account.chart0')}) + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_partner_ledger',wiz_data=data_dict, context=ctx, our_module='account') - Print the Profit-Loss Report in Normal Mode - !python {model: account.account}: | - import netsvc, tools, os, time - fy_id = ref('account.data_fiscalyear') - period_list = self.pool.get('account.period').search(cr, uid, [('fiscalyear_id', 'in', [fy_id])], context=context) - journal_ids = [] - acc_ids = [ref('account.bal'),ref('account.gpf')] - data_dict = {'model': 'ir.ui.menu', 'form': {'display_type': False,'chart_account_id':ref('account.chart0'),'display_account':'bal_all','filter': 'filter_no','amount_currency': 0,'landscape':0,'period_manner': 'actual','fiscalyear_id': fy_id ,'query_line':'True ','target_move': 'all','periods': period_list,'journal_ids':journal_ids,'id':ref('account.bal'),'active_ids':acc_ids }} - (data, format) = netsvc.LocalService('report.pl.account').create(cr, uid, [], data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-profit-loss.'+format), 'wb+').write(data) - + ctx={} + ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')]}) + data_dict = {'chart_account_id':ref('account.chart0'),'display_type': False} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_pl_report',wiz_data=data_dict, context=ctx, our_module='account') - Print the Profit-Loss Report in Horizontal Mode - !python {model: account.account}: | - import netsvc, tools, os, time - fy_id = ref('account.data_fiscalyear') - period_list = self.pool.get('account.period').search(cr, uid, [('fiscalyear_id', 'in', [fy_id])], context=context) - journal_ids = [] - acc_ids = [ref('account.bal'),ref('account.gpf')] - data_dict = {'model': 'ir.ui.menu', 'form': {'display_type': True,'chart_account_id':ref('account.chart0'),'display_account':'bal_all','filter': 'filter_no','amount_currency': 0,'landscape':0,'period_manner': 'actual','fiscalyear_id': fy_id ,'query_line':'True ','target_move': 'all','periods': period_list,'journal_ids':journal_ids,'id':ref('account.bal'),'active_ids':acc_ids }} - (data, format) = netsvc.LocalService('report.pl.account.horizontal').create(cr, uid, [], data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account-profit-loss-horizontal.'+format), 'wb+').write(data) + ctx={} + ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')]}) + data_dict = {'chart_account_id':ref('account.chart0'),'display_type': True} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_pl_report',wiz_data=data_dict, context=ctx, our_module='account') +- + Print the Analytic Balance Report through the wizard +- + !python {model: account.analytic.account}: | + ctx={} + ctx.update({'model': 'account.analytic.account','active_ids': [ref('account.analytic_root')]}) + data_dict = {} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_analytic_balance',wiz_data=data_dict, context=ctx, our_module='account') + +- + Print the Cost Ledger Report through the wizard +- + !python {model: account.analytic.account}: | + ctx={} + ctx.update({'model': 'account.analytic.account','active_ids': [ref('account.analytic_root'),ref('account.analytic_absences'),ref('account.analytic_internal'),ref('account.analytic_our_super_product')]}) + data_dict = {} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_analytic_cost',wiz_data=data_dict, context=ctx, our_module='account') + +- + Print the Cost Ledger(Only Quantities) Report through the wizard +- + !python {model: account.analytic.account}: | + ctx={} + ctx.update({'model': 'account.analytic.account','active_ids': [ref('account.analytic_root'),ref('account.analytic_absences'),ref('account.analytic_internal'),ref('account.analytic_our_super_product')]}) + data_dict = {} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_analytic_cost_ledger_journal',wiz_data=data_dict, context=ctx, our_module='account') + +- + Print the Analytic Journal Report through the wizard +- + !python {model: account.analytic.journal}: | + ctx={} + ctx.update({'model': 'account.analytic.journal','active_ids': [ref('account.cose_journal_sale'), ref('account.exp'), ref('account.sit')]}) + data_dict = {} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_analytic_journal',wiz_data=data_dict, context=ctx, our_module='account') + +- + Print the Inverted Analytic Balance Report through the wizard +- + !python {model: account.analytic.account}: | + ctx={} + ctx.update({'model': 'account.analytic.account','active_ids': [ref('account.analytic_root')]}) + data_dict = {} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_analytic_invert_balance',wiz_data=data_dict, context=ctx, our_module='account') diff --git a/addons/account/test/account_sequence_test.yml b/addons/account/test/account_sequence_test.yml old mode 100644 new mode 100755 diff --git a/addons/account/test/account_supplier_invoice.yml b/addons/account/test/account_supplier_invoice.yml old mode 100644 new mode 100755 diff --git a/addons/account/test/account_use_model.yml b/addons/account/test/account_use_model.yml old mode 100644 new mode 100755 diff --git a/addons/account/test/account_validate_account_move.yml b/addons/account/test/account_validate_account_move.yml old mode 100644 new mode 100755 diff --git a/addons/account/test/chart_of_account.yml b/addons/account/test/chart_of_account.yml old mode 100644 new mode 100755 diff --git a/addons/account/test/price_accuracy00.yml b/addons/account/test/price_accuracy00.yml old mode 100644 new mode 100755 diff --git a/addons/account/test/test_parent_structure.py b/addons/account/test/test_parent_structure.py old mode 100644 new mode 100755 diff --git a/addons/account/test/test_parent_structure.yml b/addons/account/test/test_parent_structure.yml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/__init__.py b/addons/account/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_automatic_reconcile.py b/addons/account/wizard/account_automatic_reconcile.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_automatic_reconcile_view.xml b/addons/account/wizard/account_automatic_reconcile_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_change_currency.py b/addons/account/wizard/account_change_currency.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_change_currency_view.xml b/addons/account/wizard/account_change_currency_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_chart.py b/addons/account/wizard/account_chart.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_chart_view.xml b/addons/account/wizard/account_chart_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_fiscalyear_close.py b/addons/account/wizard/account_fiscalyear_close.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_fiscalyear_close_state.py b/addons/account/wizard/account_fiscalyear_close_state.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_fiscalyear_close_state.xml b/addons/account/wizard/account_fiscalyear_close_state.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_fiscalyear_close_view.xml b/addons/account/wizard/account_fiscalyear_close_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_invoice_refund.py b/addons/account/wizard/account_invoice_refund.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_invoice_refund_view.xml b/addons/account/wizard/account_invoice_refund_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_invoice_state.py b/addons/account/wizard/account_invoice_state.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_invoice_state_view.xml b/addons/account/wizard/account_invoice_state_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_journal_select.py b/addons/account/wizard/account_journal_select.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_journal_select_view.xml b/addons/account/wizard/account_journal_select_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_move_bank_reconcile.py b/addons/account/wizard/account_move_bank_reconcile.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_move_bank_reconcile_view.xml b/addons/account/wizard/account_move_bank_reconcile_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_move_journal.py b/addons/account/wizard/account_move_journal.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_move_journal_view.xml b/addons/account/wizard/account_move_journal_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_move_line_reconcile_select.py b/addons/account/wizard/account_move_line_reconcile_select.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_move_line_reconcile_select_view.xml b/addons/account/wizard/account_move_line_reconcile_select_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_move_line_select.py b/addons/account/wizard/account_move_line_select.py old mode 100644 new mode 100755 index 12ab0236759..4a2f40ec708 --- a/addons/account/wizard/account_move_line_select.py +++ b/addons/account/wizard/account_move_line_select.py @@ -63,7 +63,7 @@ class account_move_line_select(osv.osv_memory): if context['active_id']: acc_data = account_obj.browse(cr, uid, context['active_id']).child_consol_ids if acc_data: - result['context'].update({'consolidate_childs': True}) + result['context'].update({'consolidate_children': True}) result['domain']=result['domain'][0:-1]+','+domain+result['domain'][-1] return result diff --git a/addons/account/wizard/account_move_line_select_view.xml b/addons/account/wizard/account_move_line_select_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_move_line_unreconcile_select.py b/addons/account/wizard/account_move_line_unreconcile_select.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_move_line_unreconcile_select_view.xml b/addons/account/wizard/account_move_line_unreconcile_select_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_open_closed_fiscalyear.py b/addons/account/wizard/account_open_closed_fiscalyear.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_open_closed_fiscalyear_view.xml b/addons/account/wizard/account_open_closed_fiscalyear_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_period_close.py b/addons/account/wizard/account_period_close.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_period_close_view.xml b/addons/account/wizard/account_period_close_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_reconcile.py b/addons/account/wizard/account_reconcile.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_reconcile_partner_process.py b/addons/account/wizard/account_reconcile_partner_process.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_reconcile_partner_process_view.xml b/addons/account/wizard/account_reconcile_partner_process_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_reconcile_view.xml b/addons/account/wizard/account_reconcile_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_account_balance.py b/addons/account/wizard/account_report_account_balance.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_account_balance_view.xml b/addons/account/wizard/account_report_account_balance_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_aged_partner_balance.py b/addons/account/wizard/account_report_aged_partner_balance.py old mode 100644 new mode 100755 index f76beb6bee1..5cb5d52c413 --- a/addons/account/wizard/account_report_aged_partner_balance.py +++ b/addons/account/wizard/account_report_aged_partner_balance.py @@ -79,7 +79,8 @@ class account_aged_trial_balance(osv.osv_memory): } start = stop + relativedelta(days=1) data['form'].update(res) - + if data.get('form',False): + data['ids']=[data['form'].get('chart_account_id',False)] return { 'type': 'ir.actions.report.xml', 'report_name': 'account.aged_trial_balance', diff --git a/addons/account/wizard/account_report_aged_partner_balance_view.xml b/addons/account/wizard/account_report_aged_partner_balance_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_balance_sheet.py b/addons/account/wizard/account_report_balance_sheet.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_balance_sheet_view.xml b/addons/account/wizard/account_report_balance_sheet_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_central_journal.py b/addons/account/wizard/account_report_central_journal.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_central_journal_view.xml b/addons/account/wizard/account_report_central_journal_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_common.py b/addons/account/wizard/account_report_common.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_common_account.py b/addons/account/wizard/account_report_common_account.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_common_journal.py b/addons/account/wizard/account_report_common_journal.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_common_partner.py b/addons/account/wizard/account_report_common_partner.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_common_view.xml b/addons/account/wizard/account_report_common_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_general_journal.py b/addons/account/wizard/account_report_general_journal.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_general_journal_view.xml b/addons/account/wizard/account_report_general_journal_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_general_ledger.py b/addons/account/wizard/account_report_general_ledger.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_general_ledger_view.xml b/addons/account/wizard/account_report_general_ledger_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_partner_balance.py b/addons/account/wizard/account_report_partner_balance.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_partner_balance_view.xml b/addons/account/wizard/account_report_partner_balance_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_partner_ledger.py b/addons/account/wizard/account_report_partner_ledger.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_partner_ledger_view.xml b/addons/account/wizard/account_report_partner_ledger_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_print_journal.py b/addons/account/wizard/account_report_print_journal.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_print_journal_view.xml b/addons/account/wizard/account_report_print_journal_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_profit_loss.py b/addons/account/wizard/account_report_profit_loss.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_report_profit_loss_view.xml b/addons/account/wizard/account_report_profit_loss_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_state_open.py b/addons/account/wizard/account_state_open.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_state_open_view.xml b/addons/account/wizard/account_state_open_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_subscription_generate.py b/addons/account/wizard/account_subscription_generate.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_subscription_generate_view.xml b/addons/account/wizard/account_subscription_generate_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_tax_chart.py b/addons/account/wizard/account_tax_chart.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_tax_chart_view.xml b/addons/account/wizard/account_tax_chart_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_unreconcile.py b/addons/account/wizard/account_unreconcile.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_unreconcile_view.xml b/addons/account/wizard/account_unreconcile_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_use_model.py b/addons/account/wizard/account_use_model.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_use_model_view.xml b/addons/account/wizard/account_use_model_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_validate_account_move.py b/addons/account/wizard/account_validate_account_move.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_validate_move_view.xml b/addons/account/wizard/account_validate_move_view.xml old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_vat.py b/addons/account/wizard/account_vat.py old mode 100644 new mode 100755 diff --git a/addons/account/wizard/account_vat_view.xml b/addons/account/wizard/account_vat_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_accountant/__init__.py b/addons/account_accountant/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_accountant/__openerp__.py b/addons/account_accountant/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/account_accountant/account_accountant_demo.xml b/addons/account_accountant/account_accountant_demo.xml old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/account_accountant.pot b/addons/account_accountant/i18n/account_accountant.pot old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/da.po b/addons/account_accountant/i18n/da.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/de.po b/addons/account_accountant/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/el.po b/addons/account_accountant/i18n/el.po old mode 100644 new mode 100755 index a297e367389..f21e656d0cc --- a/addons/account_accountant/i18n/el.po +++ b/addons/account_accountant/i18n/el.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-14 07:49+0000\n" +"PO-Revision-Date: 2010-12-28 17:22+0000\n" "Last-Translator: Dimitris Andavoglou \n" "Language-Team: Greek \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:57+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_accountant @@ -26,6 +26,11 @@ msgid "" "items and the chart of accounts.\n" " " msgstr "" +"\n" +"Αυτό το άρθωμα δίνει στον Διαχειριστή πρόσβαση σε όλες τις δυνατότητες της " +"λογιστικής όπως το ημερολόγιο\n" +"και το Λογιστικό Σχέδιο.\n" +" " #. module: account_accountant #: model:ir.module.module,shortdesc:account_accountant.module_meta_information diff --git a/addons/account_accountant/i18n/es.po b/addons/account_accountant/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/es_EC.po b/addons/account_accountant/i18n/es_EC.po old mode 100644 new mode 100755 index 82f45ddb4c0..e78454ba159 --- a/addons/account_accountant/i18n/es_EC.po +++ b/addons/account_accountant/i18n/es_EC.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-22 20:40+0000\n" +"PO-Revision-Date: 2010-12-28 05:07+0000\n" "Last-Translator: Cristian Salamea (Gnuthink) \n" "Language-Team: Spanish (Ecuador) \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:57+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_accountant @@ -26,6 +26,11 @@ msgid "" "items and the chart of accounts.\n" " " msgstr "" +"\n" +"Este módulo proporciona al usuario admin el acceso a todas las " +"funcionalidades de contabilidad como\n" +"los asientos y el plan contable.\n" +" " #. module: account_accountant #: model:ir.module.module,shortdesc:account_accountant.module_meta_information diff --git a/addons/account_accountant/i18n/fr.po b/addons/account_accountant/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/hi.po b/addons/account_accountant/i18n/hi.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/it.po b/addons/account_accountant/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/lv.po b/addons/account_accountant/i18n/lv.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/mn.po b/addons/account_accountant/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/nl.po b/addons/account_accountant/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/nl_BE.po b/addons/account_accountant/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/pl.po b/addons/account_accountant/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/pt.po b/addons/account_accountant/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/pt_BR.po b/addons/account_accountant/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/ro.po b/addons/account_accountant/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/ru.po b/addons/account_accountant/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/sk.po b/addons/account_accountant/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/sl.po b/addons/account_accountant/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/sr.po b/addons/account_accountant/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/sr@latin.po b/addons/account_accountant/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/sv.po b/addons/account_accountant/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/tr.po b/addons/account_accountant/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/uk.po b/addons/account_accountant/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/vi.po b/addons/account_accountant/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/i18n/zh_CN.po b/addons/account_accountant/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/account_accountant/security/account_security.xml b/addons/account_accountant/security/account_security.xml old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/__init__.py b/addons/account_analytic_analysis/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/__openerp__.py b/addons/account_analytic_analysis/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/account_analytic_analysis.py b/addons/account_analytic_analysis/account_analytic_analysis.py old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/account_analytic_analysis_menu.xml b/addons/account_analytic_analysis/account_analytic_analysis_menu.xml old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/account_analytic_analysis_view.xml b/addons/account_analytic_analysis/account_analytic_analysis_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot b/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/ar.po b/addons/account_analytic_analysis/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/bg.po b/addons/account_analytic_analysis/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/bs.po b/addons/account_analytic_analysis/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/ca.po b/addons/account_analytic_analysis/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/cs.po b/addons/account_analytic_analysis/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/da.po b/addons/account_analytic_analysis/i18n/da.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/de.po b/addons/account_analytic_analysis/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/el.po b/addons/account_analytic_analysis/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/es.po b/addons/account_analytic_analysis/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/es_AR.po b/addons/account_analytic_analysis/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/es_EC.po b/addons/account_analytic_analysis/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/et.po b/addons/account_analytic_analysis/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/fi.po b/addons/account_analytic_analysis/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/fr.po b/addons/account_analytic_analysis/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/gl.po b/addons/account_analytic_analysis/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/hr.po b/addons/account_analytic_analysis/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/hu.po b/addons/account_analytic_analysis/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/id.po b/addons/account_analytic_analysis/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/it.po b/addons/account_analytic_analysis/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/ko.po b/addons/account_analytic_analysis/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/lt.po b/addons/account_analytic_analysis/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/lv.po b/addons/account_analytic_analysis/i18n/lv.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/mn.po b/addons/account_analytic_analysis/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/nb.po b/addons/account_analytic_analysis/i18n/nb.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/nl.po b/addons/account_analytic_analysis/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/nl_BE.po b/addons/account_analytic_analysis/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/oc.po b/addons/account_analytic_analysis/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/pl.po b/addons/account_analytic_analysis/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/pt.po b/addons/account_analytic_analysis/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/pt_BR.po b/addons/account_analytic_analysis/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/ro.po b/addons/account_analytic_analysis/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/ru.po b/addons/account_analytic_analysis/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/sl.po b/addons/account_analytic_analysis/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/sq.po b/addons/account_analytic_analysis/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/sr.po b/addons/account_analytic_analysis/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/sr@latin.po b/addons/account_analytic_analysis/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/sv.po b/addons/account_analytic_analysis/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/tlh.po b/addons/account_analytic_analysis/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/tr.po b/addons/account_analytic_analysis/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/uk.po b/addons/account_analytic_analysis/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/vi.po b/addons/account_analytic_analysis/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/zh_CN.po b/addons/account_analytic_analysis/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/i18n/zh_TW.po b/addons/account_analytic_analysis/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_analysis/security/ir.model.access.csv b/addons/account_analytic_analysis/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/__init__.py b/addons/account_analytic_default/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/__openerp__.py b/addons/account_analytic_default/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/account_analytic_default.py b/addons/account_analytic_default/account_analytic_default.py old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/account_analytic_default_view.xml b/addons/account_analytic_default/account_analytic_default_view.xml old mode 100644 new mode 100755 index 00656771c42..3bc3ba5222a --- a/addons/account_analytic_default/account_analytic_default_view.xml +++ b/addons/account_analytic_default/account_analytic_default_view.xml @@ -96,7 +96,7 @@ res_model="account.analytic.default" src_model="res.partner" context="{'search_default_partner_id': [active_id]}" - groups="base.group_extended"/> + groups="analytic.group_analytic_accounting"/> + groups="analytic.group_analytic_accounting"/> + groups="analytic.group_analytic_accounting"/> diff --git a/addons/account_analytic_default/i18n/account_analytic_default.pot b/addons/account_analytic_default/i18n/account_analytic_default.pot old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/ar.po b/addons/account_analytic_default/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/bg.po b/addons/account_analytic_default/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/bs.po b/addons/account_analytic_default/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/ca.po b/addons/account_analytic_default/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/cs.po b/addons/account_analytic_default/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/de.po b/addons/account_analytic_default/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/el.po b/addons/account_analytic_default/i18n/el.po old mode 100644 new mode 100755 index 058690a2dcd..712db87c772 --- a/addons/account_analytic_default/i18n/el.po +++ b/addons/account_analytic_default/i18n/el.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-14 08:17+0000\n" +"PO-Revision-Date: 2010-12-28 17:24+0000\n" "Last-Translator: Dimitris Andavoglou \n" "Language-Team: Greek \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:35+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_default @@ -60,7 +60,7 @@ msgstr "Προκαθορισμένη Ημερομηνία Λήξης γι' αυ #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_stock_picking msgid "Picking List" -msgstr "" +msgstr "Λίστα Παραλαβής" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -89,7 +89,7 @@ msgstr "Προϊόν" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_analytic_default msgid "Analytic Distribution" -msgstr "" +msgstr "Αναλυτική Κατανομή" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -155,7 +155,7 @@ msgstr "Αλληλουχία" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Γραμμή Τιμολογίου" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -166,7 +166,7 @@ msgstr "Αναλυτικός Λογαριασμός" #. module: account_analytic_default #: view:account.analytic.default:0 msgid "Accounts" -msgstr "" +msgstr "Λογαριασμοί" #. module: account_analytic_default #: view:account.analytic.default:0 diff --git a/addons/account_analytic_default/i18n/es.po b/addons/account_analytic_default/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/es_AR.po b/addons/account_analytic_default/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/es_EC.po b/addons/account_analytic_default/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/et.po b/addons/account_analytic_default/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/fi.po b/addons/account_analytic_default/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/fr.po b/addons/account_analytic_default/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/gl.po b/addons/account_analytic_default/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/hr.po b/addons/account_analytic_default/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/hu.po b/addons/account_analytic_default/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/id.po b/addons/account_analytic_default/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/it.po b/addons/account_analytic_default/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/ko.po b/addons/account_analytic_default/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/lt.po b/addons/account_analytic_default/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/lv.po b/addons/account_analytic_default/i18n/lv.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/mn.po b/addons/account_analytic_default/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/nb.po b/addons/account_analytic_default/i18n/nb.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/nl.po b/addons/account_analytic_default/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/nl_BE.po b/addons/account_analytic_default/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/oc.po b/addons/account_analytic_default/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/pl.po b/addons/account_analytic_default/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/pt.po b/addons/account_analytic_default/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/pt_BR.po b/addons/account_analytic_default/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/ro.po b/addons/account_analytic_default/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/ru.po b/addons/account_analytic_default/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/sk.po b/addons/account_analytic_default/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/sl.po b/addons/account_analytic_default/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/sq.po b/addons/account_analytic_default/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/sr.po b/addons/account_analytic_default/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/sr@latin.po b/addons/account_analytic_default/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/sv.po b/addons/account_analytic_default/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/tlh.po b/addons/account_analytic_default/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/tr.po b/addons/account_analytic_default/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/uk.po b/addons/account_analytic_default/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/vi.po b/addons/account_analytic_default/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/zh_CN.po b/addons/account_analytic_default/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/i18n/zh_TW.po b/addons/account_analytic_default/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_default/security/ir.model.access.csv b/addons/account_analytic_default/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/__init__.py b/addons/account_analytic_plans/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/__openerp__.py b/addons/account_analytic_plans/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/account_analytic_plans.py b/addons/account_analytic_plans/account_analytic_plans.py old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/account_analytic_plans_report.xml b/addons/account_analytic_plans/account_analytic_plans_report.xml old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/account_analytic_plans_view.xml b/addons/account_analytic_plans/account_analytic_plans_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/account_analytic_plans.pot b/addons/account_analytic_plans/i18n/account_analytic_plans.pot old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/ar.po b/addons/account_analytic_plans/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/bg.po b/addons/account_analytic_plans/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/bs.po b/addons/account_analytic_plans/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/ca.po b/addons/account_analytic_plans/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/cs.po b/addons/account_analytic_plans/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/de.po b/addons/account_analytic_plans/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/el.po b/addons/account_analytic_plans/i18n/el.po old mode 100644 new mode 100755 index 697cb6dca11..dac88f2f5fa --- a/addons/account_analytic_plans/i18n/el.po +++ b/addons/account_analytic_plans/i18n/el.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-19 13:31+0000\n" -"Last-Translator: Kontaxis Panagiotis \n" +"PO-Revision-Date: 2010-12-28 17:26+0000\n" +"Last-Translator: Dimitris Andavoglou \n" "Language-Team: Greek \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:31+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_plans @@ -139,7 +139,7 @@ msgstr "Λογαριασμος Αναλυτικής" #. module: account_analytic_plans #: sql_constraint:account.journal:0 msgid "The code of the journal must be unique per company !" -msgstr "" +msgstr "Ο κωδικός του ημερολογίου πρέπει να είναι μοναδικός ανά εταιρία !" #. module: account_analytic_plans #: field:account.crossovered.analytic,ref:0 @@ -155,7 +155,7 @@ msgstr "" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_sale_order_line msgid "Sales Order Line" -msgstr "" +msgstr "Γραμμή Παραγγελίας" #. module: account_analytic_plans #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:0 @@ -502,7 +502,7 @@ msgstr "Κώδικας Διανομής" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "%" -msgstr "" +msgstr "%" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -548,7 +548,7 @@ msgstr "Αλληλουχία" #. module: account_analytic_plans #: sql_constraint:account.journal:0 msgid "The name of the journal must be unique per company !" -msgstr "" +msgstr "Το όνομα του ημερολογίου πρέπει να είναι μοναδικός ανά εταιρία !" #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:0 diff --git a/addons/account_analytic_plans/i18n/es.po b/addons/account_analytic_plans/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/es_AR.po b/addons/account_analytic_plans/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/es_EC.po b/addons/account_analytic_plans/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/et.po b/addons/account_analytic_plans/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/fi.po b/addons/account_analytic_plans/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/fr.po b/addons/account_analytic_plans/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/gl.po b/addons/account_analytic_plans/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/hr.po b/addons/account_analytic_plans/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/hu.po b/addons/account_analytic_plans/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/id.po b/addons/account_analytic_plans/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/it.po b/addons/account_analytic_plans/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/ko.po b/addons/account_analytic_plans/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/lt.po b/addons/account_analytic_plans/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/mn.po b/addons/account_analytic_plans/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/nl.po b/addons/account_analytic_plans/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/nl_BE.po b/addons/account_analytic_plans/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/oc.po b/addons/account_analytic_plans/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/pl.po b/addons/account_analytic_plans/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/pt.po b/addons/account_analytic_plans/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/pt_BR.po b/addons/account_analytic_plans/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/ro.po b/addons/account_analytic_plans/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/ru.po b/addons/account_analytic_plans/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/sl.po b/addons/account_analytic_plans/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/sq.po b/addons/account_analytic_plans/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/sr.po b/addons/account_analytic_plans/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/sr@latin.po b/addons/account_analytic_plans/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/sv.po b/addons/account_analytic_plans/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/tlh.po b/addons/account_analytic_plans/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/tr.po b/addons/account_analytic_plans/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/uk.po b/addons/account_analytic_plans/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/vi.po b/addons/account_analytic_plans/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/zh_CN.po b/addons/account_analytic_plans/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/i18n/zh_TW.po b/addons/account_analytic_plans/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/report/__init__.py b/addons/account_analytic_plans/report/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/report/crossovered_analytic.py b/addons/account_analytic_plans/report/crossovered_analytic.py old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/report/crossovered_analytic.rml b/addons/account_analytic_plans/report/crossovered_analytic.rml old mode 100644 new mode 100755 index 0292522206d..6e331ed1b83 --- a/addons/account_analytic_plans/report/crossovered_analytic.rml +++ b/addons/account_analytic_plans/report/crossovered_analytic.rml @@ -150,7 +150,7 @@ Amount - Percentage + Perc(%) @@ -222,7 +222,7 @@ Amount - Percentage + Perc(%)
@@ -301,4 +301,4 @@ - \ No newline at end of file + diff --git a/addons/account_analytic_plans/security/account_analytic_plan_security.xml b/addons/account_analytic_plans/security/account_analytic_plan_security.xml old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/security/ir.model.access.csv b/addons/account_analytic_plans/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/test/acount_analytic_plans_report.yml b/addons/account_analytic_plans/test/acount_analytic_plans_report.yml old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/wizard/__init__.py b/addons/account_analytic_plans/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/wizard/account_crossovered_analytic.py b/addons/account_analytic_plans/wizard/account_crossovered_analytic.py old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/wizard/account_crossovered_analytic_view.xml b/addons/account_analytic_plans/wizard/account_crossovered_analytic_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/wizard/analytic_plan_create_model.py b/addons/account_analytic_plans/wizard/analytic_plan_create_model.py old mode 100644 new mode 100755 diff --git a/addons/account_analytic_plans/wizard/analytic_plan_create_model_view.xml b/addons/account_analytic_plans/wizard/analytic_plan_create_model_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/__init__.py b/addons/account_anglo_saxon/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/__openerp__.py b/addons/account_anglo_saxon/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/account_anglo_saxon.pot b/addons/account_anglo_saxon/i18n/account_anglo_saxon.pot old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/ar.po b/addons/account_anglo_saxon/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/bg.po b/addons/account_anglo_saxon/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/de.po b/addons/account_anglo_saxon/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/el.po b/addons/account_anglo_saxon/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/es.po b/addons/account_anglo_saxon/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/es_EC.po b/addons/account_anglo_saxon/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/et.po b/addons/account_anglo_saxon/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/fr.po b/addons/account_anglo_saxon/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/fr_BE.po b/addons/account_anglo_saxon/i18n/fr_BE.po deleted file mode 100644 index 54f33713af6..00000000000 --- a/addons/account_anglo_saxon/i18n/fr_BE.po +++ /dev/null @@ -1,54 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_anglo_saxon -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-11-24 12:50:50+0000\n" -"PO-Revision-Date: 2009-11-24 12:50:50+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_anglo_saxon -#: view:product.category:0 -msgid " Accounting Property" -msgstr "" - -#. module: account_anglo_saxon -#: model:ir.module.module,description:account_anglo_saxon.module_meta_information -msgid "This module will support the Anglo-Saxons accounting methodology by \n" -" changing the accounting logic with stock transactions. The difference between the Anglo-Saxon accounting countries \n" -" and the Rhine or also called Continental accounting countries is the moment of taking the Cost of Goods Sold versus Cost of Sales. \n" -" Anglo-Saxons accounting does take the cost when sales invoice is created, Continental accounting will take the cost at he moment the goods are shipped.\n" -" This module will add this functionality by using a interim account, to store the value of shipped goods and will contra book this interim account \n" -" when the invoice is created to transfer this amount to the debtor or creditor account." -msgstr "" - -#. module: account_anglo_saxon -#: model:ir.module.module,shortdesc:account_anglo_saxon.module_meta_information -msgid "Stock Account" -msgstr "" - -#. module: account_anglo_saxon -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_anglo_saxon -#: field:product.category,property_account_creditor_price_difference_categ:0 -#: field:product.template,property_account_creditor_price_difference:0 -msgid "Price Difference Account" -msgstr "" - -#. module: account_anglo_saxon -#: help:product.category,property_account_creditor_price_difference_categ:0 -#: help:product.template,property_account_creditor_price_difference:0 -msgid "This account will be used to value price difference between purchase price and cost price." -msgstr "" - diff --git a/addons/account_anglo_saxon/i18n/hi.po b/addons/account_anglo_saxon/i18n/hi.po old mode 100644 new mode 100755 index 033a87db618..677193a794f --- a/addons/account_anglo_saxon/i18n/hi.po +++ b/addons/account_anglo_saxon/i18n/hi.po @@ -8,19 +8,19 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-21 11:14+0000\n" +"PO-Revision-Date: 2010-12-28 08:00+0000\n" "Last-Translator: Sanjay Kumar \n" "Language-Team: Hindi \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:52+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_anglo_saxon #: view:product.category:0 msgid " Accounting Property" -msgstr "" +msgstr " लेखांकन संपत्ति" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category @@ -56,7 +56,7 @@ msgstr "उत्पाद प्रारूप" #. module: account_anglo_saxon #: model:ir.module.module,shortdesc:account_anglo_saxon.module_meta_information msgid "Stock Accounting for Anglo Saxon countries" -msgstr "" +msgstr "अंग्लो Saxon देशों के लिए भण्डार लेखा" #. module: account_anglo_saxon #: field:product.category,property_account_creditor_price_difference_categ:0 @@ -100,6 +100,7 @@ msgid "" "This account will be used to value price difference between purchase price " "and cost price." msgstr "" +"इस खाता का उपयोग क्रय मूल्य और विक्रय मूल्य का अंतर निकालने में किया जायेगा" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "संरचना देखने के लिए अमान्य XML!" diff --git a/addons/account_anglo_saxon/i18n/id.po b/addons/account_anglo_saxon/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/it.po b/addons/account_anglo_saxon/i18n/it.po old mode 100644 new mode 100755 index e04b4ca782d..d5c13679c57 --- a/addons/account_anglo_saxon/i18n/it.po +++ b/addons/account_anglo_saxon/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-27 07:56+0000\n" -"Last-Translator: Nicola Riolini - Micronaet \n" +"PO-Revision-Date: 2010-12-28 09:17+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Italian \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:43+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/mn.po b/addons/account_anglo_saxon/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/nl.po b/addons/account_anglo_saxon/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/oc.po b/addons/account_anglo_saxon/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/pl.po b/addons/account_anglo_saxon/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/pt.po b/addons/account_anglo_saxon/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/pt_BR.po b/addons/account_anglo_saxon/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/ru.po b/addons/account_anglo_saxon/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/sl.po b/addons/account_anglo_saxon/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/sr@latin.po b/addons/account_anglo_saxon/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/sv.po b/addons/account_anglo_saxon/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/ta.po b/addons/account_anglo_saxon/i18n/ta.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/i18n/zh_CN.po b/addons/account_anglo_saxon/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/invoice.py b/addons/account_anglo_saxon/invoice.py old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/product.py b/addons/account_anglo_saxon/product.py old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/product_view.xml b/addons/account_anglo_saxon/product_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/purchase.py b/addons/account_anglo_saxon/purchase.py old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/sale.py b/addons/account_anglo_saxon/sale.py old mode 100644 new mode 100755 diff --git a/addons/account_anglo_saxon/stock.py b/addons/account_anglo_saxon/stock.py old mode 100644 new mode 100755 diff --git a/addons/account_budget/__init__.py b/addons/account_budget/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_budget/__openerp__.py b/addons/account_budget/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/account_budget/account_budget.py b/addons/account_budget/account_budget.py old mode 100644 new mode 100755 diff --git a/addons/account_budget/account_budget_demo.xml b/addons/account_budget/account_budget_demo.xml old mode 100644 new mode 100755 diff --git a/addons/account_budget/account_budget_report.xml b/addons/account_budget/account_budget_report.xml old mode 100644 new mode 100755 diff --git a/addons/account_budget/account_budget_view.xml b/addons/account_budget/account_budget_view.xml old mode 100644 new mode 100755 index 295569f8d86..4d3cbfa225f --- a/addons/account_budget/account_budget_view.xml +++ b/addons/account_budget/account_budget_view.xml @@ -272,6 +272,9 @@ + + +
diff --git a/addons/account_budget/account_budget_workflow.xml b/addons/account_budget/account_budget_workflow.xml old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/account_budget.pot b/addons/account_budget/i18n/account_budget.pot old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/ar.po b/addons/account_budget/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/bg.po b/addons/account_budget/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/bs.po b/addons/account_budget/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/ca.po b/addons/account_budget/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/cs.po b/addons/account_budget/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/de.po b/addons/account_budget/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/el.po b/addons/account_budget/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/es.po b/addons/account_budget/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/es_AR.po b/addons/account_budget/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/es_EC.po b/addons/account_budget/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/et.po b/addons/account_budget/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/fi.po b/addons/account_budget/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/fr.po b/addons/account_budget/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/gl.po b/addons/account_budget/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/hi.po b/addons/account_budget/i18n/hi.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/hr.po b/addons/account_budget/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/hu.po b/addons/account_budget/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/id.po b/addons/account_budget/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/it.po b/addons/account_budget/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/ko.po b/addons/account_budget/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/lt.po b/addons/account_budget/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/mn.po b/addons/account_budget/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/nl.po b/addons/account_budget/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/nl_BE.po b/addons/account_budget/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/oc.po b/addons/account_budget/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/pl.po b/addons/account_budget/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/pt.po b/addons/account_budget/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/pt_BR.po b/addons/account_budget/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/ro.po b/addons/account_budget/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/ru.po b/addons/account_budget/i18n/ru.po old mode 100644 new mode 100755 index 7a4a5fa2c9d..8bb703fe612 --- a/addons/account_budget/i18n/ru.po +++ b/addons/account_budget/i18n/ru.po @@ -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-08-02 21:08+0000\n" -"Last-Translator: mga (Open ERP) \n" +"PO-Revision-Date: 2010-12-28 14:57+0000\n" +"Last-Translator: Chertykov Denis \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:46+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_budget @@ -214,7 +214,7 @@ msgstr "" #: view:crossovered.budget:0 #: field:crossovered.budget.lines,theoritical_amount:0 msgid "Theoritical Amount" -msgstr "" +msgstr "Теоретическая сумма" #. module: account_budget #: field:account.budget.post,name:0 @@ -252,7 +252,7 @@ msgstr "Напечатано:" #: code:addons/account_budget/account_budget.py:0 #, python-format msgid "Error!" -msgstr "" +msgstr "Ошибка !" #. module: account_budget #: field:account.budget.post,code:0 diff --git a/addons/account_budget/i18n/sl.po b/addons/account_budget/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/sq.po b/addons/account_budget/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/sr.po b/addons/account_budget/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/sr@latin.po b/addons/account_budget/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/sv.po b/addons/account_budget/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/tlh.po b/addons/account_budget/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/tr.po b/addons/account_budget/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/uk.po b/addons/account_budget/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/vi.po b/addons/account_budget/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/zh_CN.po b/addons/account_budget/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/i18n/zh_TW.po b/addons/account_budget/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/account_budget/report/__init__.py b/addons/account_budget/report/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_budget/report/analytic_account_budget_report.py b/addons/account_budget/report/analytic_account_budget_report.py old mode 100644 new mode 100755 diff --git a/addons/account_budget/report/analytic_account_budget_report.rml b/addons/account_budget/report/analytic_account_budget_report.rml old mode 100644 new mode 100755 diff --git a/addons/account_budget/report/budget_report.py b/addons/account_budget/report/budget_report.py old mode 100644 new mode 100755 diff --git a/addons/account_budget/report/budget_report.rml b/addons/account_budget/report/budget_report.rml old mode 100644 new mode 100755 diff --git a/addons/account_budget/report/crossovered_budget_report.py b/addons/account_budget/report/crossovered_budget_report.py old mode 100644 new mode 100755 diff --git a/addons/account_budget/report/crossovered_budget_report.rml b/addons/account_budget/report/crossovered_budget_report.rml old mode 100644 new mode 100755 diff --git a/addons/account_budget/security/account_budget_security.xml b/addons/account_budget/security/account_budget_security.xml old mode 100644 new mode 100755 diff --git a/addons/account_budget/security/ir.model.access.csv b/addons/account_budget/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/account_budget/test/account_budget.yml b/addons/account_budget/test/account_budget.yml old mode 100644 new mode 100755 diff --git a/addons/account_budget/test/account_budget_report.yml b/addons/account_budget/test/account_budget_report.yml old mode 100644 new mode 100755 index d0766e31196..40b0175f045 --- a/addons/account_budget/test/account_budget_report.yml +++ b/addons/account_budget/test/account_budget_report.yml @@ -1,27 +1,33 @@ - - Print the Analytic Budget Report in Normal mode + Print the Analytic Budget Report through wizard - !python {model: account.analytic.account}: | import netsvc, tools, os, time - data_dict = {'model': 'account.analytic.account', 'form': {'date_from':time.strftime("%Y-01-01"),'date_to':time.strftime('%Y-%m-%d'),'id':ref('account.analytic_root'),'context':{}}} - (data, format) = netsvc.LocalService('report.account.analytic.account.budget').create(cr, uid, [ref('account.analytic_root')], data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account_budget-analytic_budget_report.'+format), 'wb+').write(data) + ctx={} + ctx.update({'model': 'account.analytic.account','active_ids': [ref('account.analytic_root')]}) + data_dict = {} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_budget_analytic',wiz_data=data_dict, context=ctx, our_module='account_budget') + - - Print the Budget Report in Normal mode + Print the Budget Report through wizard - !python {model: account.budget.post}: | import netsvc, tools, os, time - data_dict = {'model': 'account.budget.post', 'form': {'date_from':time.strftime("%Y-01-01"),'date_to':time.strftime('%Y-%m-%d'),'id':ref('account_budget.account_budget_post_sales0'),'context':{}}} - (data, format) = netsvc.LocalService('report.account.analytic.account.budget').create(cr, uid, [ref('account_budget.account_budget_post_sales0')], data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account_budget-budget_report.'+format), 'wb+').write(data) + ctx={} + ctx.update({'model': 'account.budget.post','active_ids': [ref('account_budget.account_budget_post_sales0')]}) + data_dict = {} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_budget_report',wiz_data=data_dict, context=ctx, our_module='account_budget') + - - Print the CrossOvered Budget Report in Normal mode + Print the CrossOvered Budget Report mode through wizard - !python {model: crossovered.budget}: | import netsvc, tools, os, time - data_dict = {'model': 'account.budget.post', 'form': {'date_from':time.strftime("%Y-01-01"),'date_to':time.strftime('%Y-%m-%d'),'report':'analytic-full','id':ref('account_budget.crossovered_budget_budgetoptimistic0'),'context':{}}} - (data, format) = netsvc.LocalService('report.crossovered.budget.report').create(cr, uid, [ref('account_budget.crossovered_budget_budgetoptimistic0')], data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account_budget-crossovered_budget_report.'+format), 'wb+').write(data) + ctx={} + ctx.update({'model': 'account.budget.post','active_ids': [ref('account_budget.crossovered_budget_budgetoptimistic0')]}) + data_dict = {} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_budget_crossvered_report',wiz_data=data_dict, context=ctx, our_module='account_budget') + diff --git a/addons/account_budget/test/account_budget_spread.yml b/addons/account_budget/test/account_budget_spread.yml old mode 100644 new mode 100755 diff --git a/addons/account_budget/wizard/__init__.py b/addons/account_budget/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_budget/wizard/account_budget_analytic.py b/addons/account_budget/wizard/account_budget_analytic.py old mode 100644 new mode 100755 diff --git a/addons/account_budget/wizard/account_budget_analytic_view.xml b/addons/account_budget/wizard/account_budget_analytic_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_budget/wizard/account_budget_crossovered_report.py b/addons/account_budget/wizard/account_budget_crossovered_report.py old mode 100644 new mode 100755 diff --git a/addons/account_budget/wizard/account_budget_crossovered_report_view.xml b/addons/account_budget/wizard/account_budget_crossovered_report_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_budget/wizard/account_budget_crossovered_summary_report.py b/addons/account_budget/wizard/account_budget_crossovered_summary_report.py old mode 100644 new mode 100755 diff --git a/addons/account_budget/wizard/account_budget_crossovered_summary_report_view.xml b/addons/account_budget/wizard/account_budget_crossovered_summary_report_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_budget/wizard/account_budget_report.py b/addons/account_budget/wizard/account_budget_report.py old mode 100644 new mode 100755 diff --git a/addons/account_budget/wizard/account_budget_report_view.xml b/addons/account_budget/wizard/account_budget_report_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_cancel/__init__.py b/addons/account_cancel/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_cancel/__openerp__.py b/addons/account_cancel/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/account_cancel/account_cancel_view.xml b/addons/account_cancel/account_cancel_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/account_cancel.pot b/addons/account_cancel/i18n/account_cancel.pot old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/br.po b/addons/account_cancel/i18n/br.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/bs.po b/addons/account_cancel/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/da.po b/addons/account_cancel/i18n/da.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/de.po b/addons/account_cancel/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/el.po b/addons/account_cancel/i18n/el.po old mode 100644 new mode 100755 index 2e9ec2bc140..97bf7fc72e3 --- a/addons/account_cancel/i18n/el.po +++ b/addons/account_cancel/i18n/el.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-30 16:43+0000\n" +"PO-Revision-Date: 2010-12-28 17:04+0000\n" "Last-Translator: Dimitris Andavoglou \n" "Language-Team: Greek \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:54+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_cancel @@ -25,6 +25,11 @@ msgid "" "journal. If set to true it allows user to cancel entries & invoices.\n" " " msgstr "" +"\n" +" Το άρθρωμα πρσθέτει το πεδίο 'Επιτρέπονται ακυρωτικές εγγραφές' στην " +"μορφή φόρμας του ημερολογίου του λογαριασμού. Εάν είναι αληθές επιτρέπει τον " +"χρήστη να ακυρώσει εγγραφές και τιμολόγια.\n" +" " #. module: account_cancel #: model:ir.module.module,shortdesc:account_cancel.module_meta_information diff --git a/addons/account_cancel/i18n/en_US.po b/addons/account_cancel/i18n/en_US.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/es.po b/addons/account_cancel/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/es_EC.po b/addons/account_cancel/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/fr.po b/addons/account_cancel/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/hi.po b/addons/account_cancel/i18n/hi.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/hr.po b/addons/account_cancel/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/it.po b/addons/account_cancel/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/mn.po b/addons/account_cancel/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/nl.po b/addons/account_cancel/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/pl.po b/addons/account_cancel/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/pt.po b/addons/account_cancel/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/pt_BR.po b/addons/account_cancel/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/ro.po b/addons/account_cancel/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/ru.po b/addons/account_cancel/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/sl.po b/addons/account_cancel/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/sr.po b/addons/account_cancel/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/sr@latin.po b/addons/account_cancel/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/sv.po b/addons/account_cancel/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/ta.po b/addons/account_cancel/i18n/ta.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/tr.po b/addons/account_cancel/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/account_cancel/i18n/vi.po b/addons/account_cancel/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/__init__.py b/addons/account_chart/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_chart/__openerp__.py b/addons/account_chart/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/account_chart/account_chart.xml b/addons/account_chart/account_chart.xml old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/account_chart.pot b/addons/account_chart/i18n/account_chart.pot old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/ar.po b/addons/account_chart/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/bg.po b/addons/account_chart/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/bs.po b/addons/account_chart/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/ca.po b/addons/account_chart/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/cs.po b/addons/account_chart/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/da.po b/addons/account_chart/i18n/da.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/de.po b/addons/account_chart/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/el.po b/addons/account_chart/i18n/el.po old mode 100644 new mode 100755 index a0fb6b56699..342da5a96f3 --- a/addons/account_chart/i18n/el.po +++ b/addons/account_chart/i18n/el.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2009-09-08 16:16+0000\n" -"Last-Translator: Fabien (Open ERP) \n" +"PO-Revision-Date: 2010-12-28 17:27+0000\n" +"Last-Translator: Dimitris Andavoglou \n" "Language-Team: Greek \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:50+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_chart @@ -25,4 +25,4 @@ msgstr "Αφαιρέστε το ελάχιστο πρότυπο λογιστικ #. module: account_chart #: model:ir.module.module,shortdesc:account_chart.module_meta_information msgid "Charts of Accounts" -msgstr "" +msgstr "Λογιστικό Σχέδιο" diff --git a/addons/account_chart/i18n/es.po b/addons/account_chart/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/es_AR.po b/addons/account_chart/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/es_EC.po b/addons/account_chart/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/et.po b/addons/account_chart/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/eu.po b/addons/account_chart/i18n/eu.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/fi.po b/addons/account_chart/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/fr.po b/addons/account_chart/i18n/fr.po old mode 100644 new mode 100755 index b13a74a00e9..0321267e53b --- a/addons/account_chart/i18n/fr.po +++ b/addons/account_chart/i18n/fr.po @@ -7,14 +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-11-17 08:22+0000\n" -"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " -"\n" +"PO-Revision-Date: 2010-12-28 15:44+0000\n" +"Last-Translator: Aline (OpenERP) \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:50+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_chart @@ -25,4 +24,4 @@ msgstr "Supprime le plan de compte minimal" #. module: account_chart #: model:ir.module.module,shortdesc:account_chart.module_meta_information msgid "Charts of Accounts" -msgstr "" +msgstr "Plan comptable" diff --git a/addons/account_chart/i18n/gl.po b/addons/account_chart/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/hi.po b/addons/account_chart/i18n/hi.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/hr.po b/addons/account_chart/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/hu.po b/addons/account_chart/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/id.po b/addons/account_chart/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/it.po b/addons/account_chart/i18n/it.po old mode 100644 new mode 100755 index 215ddad0224..30b45ee044b --- a/addons/account_chart/i18n/it.po +++ b/addons/account_chart/i18n/it.po @@ -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 08:00+0000\n" -"Last-Translator: Nicola Riolini - Micronaet \n" +"PO-Revision-Date: 2010-12-28 09:17+0000\n" +"Last-Translator: OpenERP Administrators \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:43+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/ko.po b/addons/account_chart/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/lt.po b/addons/account_chart/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/lv.po b/addons/account_chart/i18n/lv.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/mn.po b/addons/account_chart/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/nb.po b/addons/account_chart/i18n/nb.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/nl.po b/addons/account_chart/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/nl_BE.po b/addons/account_chart/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/oc.po b/addons/account_chart/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/pl.po b/addons/account_chart/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/pt.po b/addons/account_chart/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/pt_BR.po b/addons/account_chart/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/ro.po b/addons/account_chart/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/ru.po b/addons/account_chart/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/sk.po b/addons/account_chart/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/sl.po b/addons/account_chart/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/sq.po b/addons/account_chart/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/sr.po b/addons/account_chart/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/sr@latin.po b/addons/account_chart/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/sv.po b/addons/account_chart/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/ta.po b/addons/account_chart/i18n/ta.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/th.po b/addons/account_chart/i18n/th.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/tr.po b/addons/account_chart/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/uk.po b/addons/account_chart/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/vi.po b/addons/account_chart/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/zh_CN.po b/addons/account_chart/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/account_chart/i18n/zh_TW.po b/addons/account_chart/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/__init__.py b/addons/account_coda/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_coda/__openerp__.py b/addons/account_coda/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/account_coda/account_coda.py b/addons/account_coda/account_coda.py old mode 100644 new mode 100755 diff --git a/addons/account_coda/account_coda_demo.xml b/addons/account_coda/account_coda_demo.xml old mode 100644 new mode 100755 diff --git a/addons/account_coda/account_coda_view.xml b/addons/account_coda/account_coda_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/account_coda.pot b/addons/account_coda/i18n/account_coda.pot old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/ar.po b/addons/account_coda/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/de.po b/addons/account_coda/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/el.po b/addons/account_coda/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/es.po b/addons/account_coda/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/es_EC.po b/addons/account_coda/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/et.po b/addons/account_coda/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/fr.po b/addons/account_coda/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/fr_BE.po b/addons/account_coda/i18n/fr_BE.po deleted file mode 100644 index f9055a016bd..00000000000 --- a/addons/account_coda/i18n/fr_BE.po +++ /dev/null @@ -1,163 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_coda -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-11-24 13:11:29+0000\n" -"PO-Revision-Date: 2009-11-24 13:11:29+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_coda -#: field:account.coda,journal_id:0 -#: wizard_field:account.coda_import,init,journal_id:0 -msgid "Bank Journal" -msgstr "" - -#. module: account_coda -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_coda -#: wizard_field:account.coda_import,extraction,note:0 -msgid "Log" -msgstr "" - -#. module: account_coda -#: wizard_button:account.coda_import,extraction,open:0 -msgid "_Open Statement" -msgstr "" - -#. module: account_coda -#: model:ir.module.module,shortdesc:account_coda.module_meta_information -msgid "Account CODA" -msgstr "" - -#. module: account_coda -#: field:account.coda,name:0 -msgid "Coda file" -msgstr "" - -#. module: account_coda -#: wizard_view:account.coda_import,init:0 -msgid "Clic on 'New' to select your file :" -msgstr "" - -#. module: account_coda -#: model:ir.actions.wizard,name:account_coda.wizard_account_coda_import -msgid "Import Coda File" -msgstr "" - -#. module: account_coda -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_coda -#: field:account.coda,note:0 -msgid "Import log" -msgstr "" - -#. module: account_coda -#: wizard_field:account.coda_import,init,def_receivable:0 -msgid "Default receivable Account" -msgstr "" - -#. module: account_coda -#: model:ir.module.module,description:account_coda.module_meta_information -msgid "Module provides functionality to import\n" -" bank statements from .csv file.\n" -" Import coda file wizard is used to import bank statements." -msgstr "" - -#. module: account_coda -#: wizard_button:account.coda_import,extraction,end:0 -msgid "_Close" -msgstr "" - -#. module: account_coda -#: field:account.coda,statement_id:0 -msgid "Generated Bank Statement" -msgstr "" - -#. module: account_coda -#: view:account.coda:0 -#: model:ir.actions.act_window,name:account_coda.act_account_payment_account_bank_statement -#: model:ir.actions.act_window,name:account_coda.action_account_coda -msgid "Coda import" -msgstr "" - -#. module: account_coda -#: field:account.coda,user_id:0 -msgid "User" -msgstr "" - -#. module: account_coda -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_coda -#: model:ir.model,name:account_coda.model_account_coda -msgid "coda for an Account" -msgstr "" - -#. module: account_coda -#: wizard_field:account.coda_import,init,def_payable:0 -msgid "Default Payable Account" -msgstr "" - -#. module: account_coda -#: model:ir.ui.menu,name:account_coda.menu_account_coda -msgid "Coda Statements" -msgstr "" - -#. module: account_coda -#: model:ir.ui.menu,name:account_coda.menu_account_coda_wizard -msgid "Import Coda Statements" -msgstr "" - -#. module: account_coda -#: wizard_button:account.coda_import,init,extraction:0 -msgid "_Ok" -msgstr "" - -#. module: account_coda -#: wizard_view:account.coda_import,extraction:0 -#: wizard_view:account.coda_import,init:0 -msgid "Import Coda Statement" -msgstr "" - -#. module: account_coda -#: field:account.bank.statement,coda_id:0 -msgid "Coda" -msgstr "" - -#. module: account_coda -#: wizard_view:account.coda_import,extraction:0 -msgid "Results :" -msgstr "" - -#. module: account_coda -#: wizard_field:account.coda_import,init,coda:0 -msgid "Coda File" -msgstr "" - -#. module: account_coda -#: field:account.coda,date:0 -msgid "Import Date" -msgstr "" - -#. module: account_coda -#: wizard_view:account.coda_import,init:0 -msgid "Select your bank journal :" -msgstr "" - diff --git a/addons/account_coda/i18n/hr.po b/addons/account_coda/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/it.po b/addons/account_coda/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/nl.po b/addons/account_coda/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/pt.po b/addons/account_coda/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/pt_BR.po b/addons/account_coda/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/ru.po b/addons/account_coda/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/sr.po b/addons/account_coda/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/sr@latin.po b/addons/account_coda/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/sv.po b/addons/account_coda/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/i18n/zh_CN.po b/addons/account_coda/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/account_coda/security/account_security.xml b/addons/account_coda/security/account_security.xml old mode 100644 new mode 100755 diff --git a/addons/account_coda/security/ir.model.access.csv b/addons/account_coda/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/account_coda/test_coda_file/statement_coda.txt b/addons/account_coda/test_coda_file/statement_coda.txt old mode 100644 new mode 100755 diff --git a/addons/account_coda/wizard/__init__.py b/addons/account_coda/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_coda/wizard/account_coda_import.py b/addons/account_coda/wizard/account_coda_import.py old mode 100644 new mode 100755 diff --git a/addons/account_coda/wizard/account_coda_import.xml b/addons/account_coda/wizard/account_coda_import.xml old mode 100644 new mode 100755 diff --git a/addons/account_followup/__init__.py b/addons/account_followup/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_followup/__openerp__.py b/addons/account_followup/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/account_followup/account_followup.py b/addons/account_followup/account_followup.py old mode 100644 new mode 100755 diff --git a/addons/account_followup/account_followup_data.xml b/addons/account_followup/account_followup_data.xml old mode 100644 new mode 100755 diff --git a/addons/account_followup/account_followup_demo.xml b/addons/account_followup/account_followup_demo.xml old mode 100644 new mode 100755 diff --git a/addons/account_followup/account_followup_view.xml b/addons/account_followup/account_followup_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/account_followup.pot b/addons/account_followup/i18n/account_followup.pot old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/ar.po b/addons/account_followup/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/bg.po b/addons/account_followup/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/bs.po b/addons/account_followup/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/ca.po b/addons/account_followup/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/cs.po b/addons/account_followup/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/de.po b/addons/account_followup/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/el.po b/addons/account_followup/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/es.po b/addons/account_followup/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/es_AR.po b/addons/account_followup/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/es_EC.po b/addons/account_followup/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/et.po b/addons/account_followup/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/fi.po b/addons/account_followup/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/fr.po b/addons/account_followup/i18n/fr.po old mode 100644 new mode 100755 index 9193ace3705..659e802b567 --- a/addons/account_followup/i18n/fr.po +++ b/addons/account_followup/i18n/fr.po @@ -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-26 08:12+0000\n" -"Last-Translator: lolivier \n" +"PO-Revision-Date: 2010-12-28 15:47+0000\n" +"Last-Translator: Aline (OpenERP) \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-27 04:39+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_followup @@ -88,6 +88,10 @@ msgid "" "E-Mail sent to following Partners successfully. !\n" "\n" msgstr "" +"\n" +"\n" +"Courriel envoyé avec succès aux partenaires suivants. !\n" +"\n" #. module: account_followup #: view:account_followup.followup:0 @@ -308,7 +312,7 @@ msgstr "" #. module: account_followup #: field:account.followup.print.all,partner_lang:0 msgid "Send Email in Partner Language" -msgstr "" +msgstr "Envoyer un courriel dans la langue du partenaire" #. module: account_followup #: constraint:account.move.line:0 @@ -490,6 +494,8 @@ msgid "" "All E-mails have been successfully sent to Partners:.\n" "\n" msgstr "" +"Tous les couriels ont bien été envoyés aux partenaires :.\n" +"\n" #. module: account_followup #: constraint:res.company:0 @@ -584,7 +590,7 @@ msgstr "Lignes de Relances" #. module: account_followup #: view:account_followup.stat:0 msgid "Litigation" -msgstr "" +msgstr "Litige" #. module: account_followup #: field:account_followup.stat.by.partner,max_followup_id:0 @@ -635,6 +641,8 @@ msgid "" "Do not change message text, if you want to send email in partner language, " "or configure from company" msgstr "" +"Ne changez pas ce message si vous voulez envoyer des courriels dans la " +"langue du partenaire, ou configurez-le à partir des données de la société" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.act_account_partner_account_move_all @@ -719,7 +727,7 @@ msgstr "Séquence" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(company_name)s: User's Company Name" -msgstr "" +msgstr "%(company_name)s : Nom de la société de l'utilisateur" #. module: account_followup #: report:account_followup.followup.print:0 diff --git a/addons/account_followup/i18n/hr.po b/addons/account_followup/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/hu.po b/addons/account_followup/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/id.po b/addons/account_followup/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/it.po b/addons/account_followup/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/ko.po b/addons/account_followup/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/lt.po b/addons/account_followup/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/mn.po b/addons/account_followup/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/nl.po b/addons/account_followup/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/nl_BE.po b/addons/account_followup/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/oc.po b/addons/account_followup/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/pl.po b/addons/account_followup/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/pt.po b/addons/account_followup/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/pt_BR.po b/addons/account_followup/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/ro.po b/addons/account_followup/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/ru.po b/addons/account_followup/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/sl.po b/addons/account_followup/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/sq.po b/addons/account_followup/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/sr.po b/addons/account_followup/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/sr@latin.po b/addons/account_followup/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/sv.po b/addons/account_followup/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/tlh.po b/addons/account_followup/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/tr.po b/addons/account_followup/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/uk.po b/addons/account_followup/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/vi.po b/addons/account_followup/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/zh_CN.po b/addons/account_followup/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/i18n/zh_TW.po b/addons/account_followup/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/account_followup/report/__init__.py b/addons/account_followup/report/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_followup/report/account_followup_print.py b/addons/account_followup/report/account_followup_print.py old mode 100644 new mode 100755 diff --git a/addons/account_followup/report/account_followup_print.rml b/addons/account_followup/report/account_followup_print.rml old mode 100644 new mode 100755 diff --git a/addons/account_followup/report/account_followup_report.py b/addons/account_followup/report/account_followup_report.py old mode 100644 new mode 100755 diff --git a/addons/account_followup/report/account_followup_report.xml b/addons/account_followup/report/account_followup_report.xml old mode 100644 new mode 100755 diff --git a/addons/account_followup/security/ir.model.access.csv b/addons/account_followup/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/account_followup/test/account_followup.yml b/addons/account_followup/test/account_followup.yml old mode 100644 new mode 100755 diff --git a/addons/account_followup/wizard/__init__.py b/addons/account_followup/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_followup/wizard/account_followup_print.py b/addons/account_followup/wizard/account_followup_print.py old mode 100644 new mode 100755 diff --git a/addons/account_followup/wizard/account_followup_print_view.xml b/addons/account_followup/wizard/account_followup_print_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/__init__.py b/addons/account_invoice_layout/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/__openerp__.py b/addons/account_invoice_layout/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/account_invoice_layout.py b/addons/account_invoice_layout/account_invoice_layout.py old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/account_invoice_layout_demo.xml b/addons/account_invoice_layout/account_invoice_layout_demo.xml old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/account_invoice_layout_report.xml b/addons/account_invoice_layout/account_invoice_layout_report.xml old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/account_invoice_layout_view.xml b/addons/account_invoice_layout/account_invoice_layout_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/account_invoice_layout.pot b/addons/account_invoice_layout/i18n/account_invoice_layout.pot old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/ar.po b/addons/account_invoice_layout/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/bg.po b/addons/account_invoice_layout/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/bs.po b/addons/account_invoice_layout/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/ca.po b/addons/account_invoice_layout/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/cs.po b/addons/account_invoice_layout/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/de.po b/addons/account_invoice_layout/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/el.po b/addons/account_invoice_layout/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/es.po b/addons/account_invoice_layout/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/es_AR.po b/addons/account_invoice_layout/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/es_EC.po b/addons/account_invoice_layout/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/et.po b/addons/account_invoice_layout/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/eu.po b/addons/account_invoice_layout/i18n/eu.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/fi.po b/addons/account_invoice_layout/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/fr.po b/addons/account_invoice_layout/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/hi.po b/addons/account_invoice_layout/i18n/hi.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/hr.po b/addons/account_invoice_layout/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/hu.po b/addons/account_invoice_layout/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/id.po b/addons/account_invoice_layout/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/it.po b/addons/account_invoice_layout/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/iu.po b/addons/account_invoice_layout/i18n/iu.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/iu_IU.po b/addons/account_invoice_layout/i18n/iu_IU.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/ko.po b/addons/account_invoice_layout/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/lt.po b/addons/account_invoice_layout/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/nb.po b/addons/account_invoice_layout/i18n/nb.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/nb_NB.po b/addons/account_invoice_layout/i18n/nb_NB.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/nl.po b/addons/account_invoice_layout/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/nl_BE.po b/addons/account_invoice_layout/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/oc.po b/addons/account_invoice_layout/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/pl.po b/addons/account_invoice_layout/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/pt.po b/addons/account_invoice_layout/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/pt_BR.po b/addons/account_invoice_layout/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/ro.po b/addons/account_invoice_layout/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/ru.po b/addons/account_invoice_layout/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/sl.po b/addons/account_invoice_layout/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/sq.po b/addons/account_invoice_layout/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/sr.po b/addons/account_invoice_layout/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/sr@latin.po b/addons/account_invoice_layout/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/sv.po b/addons/account_invoice_layout/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/tlh.po b/addons/account_invoice_layout/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/tr.po b/addons/account_invoice_layout/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/uk.po b/addons/account_invoice_layout/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/vi.po b/addons/account_invoice_layout/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/zh_CN.po b/addons/account_invoice_layout/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/i18n/zh_TW.po b/addons/account_invoice_layout/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/report/__init__.py b/addons/account_invoice_layout/report/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/report/report_account_invoice_layout.py b/addons/account_invoice_layout/report/report_account_invoice_layout.py old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/report/report_account_invoice_layout.rml b/addons/account_invoice_layout/report/report_account_invoice_layout.rml old mode 100644 new mode 100755 index 7841a3a0d47..dd802503430 --- a/addons/account_invoice_layout/report/report_account_invoice_layout.rml +++ b/addons/account_invoice_layout/report/report_account_invoice_layout.rml @@ -27,6 +27,10 @@ + + + + @@ -41,6 +45,10 @@ + + + + @@ -237,20 +245,23 @@ - + - Document + Description Invoice Date + + Origin + - Partner Ref. + Your Reference - + [[ o.name ]] @@ -258,6 +269,9 @@ [[ formatLang(o.date_invoice,date=True) ]] + + [[ o.name or '' ]] + [[ (o.address_invoice_id and o.address_invoice_id.partner_id and o.address_invoice_id.partner_id.ref) or ' ' ]] @@ -493,4 +507,4 @@ - \ No newline at end of file + diff --git a/addons/account_invoice_layout/report/special_message_invoice.py b/addons/account_invoice_layout/report/special_message_invoice.py old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/report/special_message_invoice.rml b/addons/account_invoice_layout/report/special_message_invoice.rml old mode 100644 new mode 100755 index ab7f02f0b6d..b9cdafee0bf --- a/addons/account_invoice_layout/report/special_message_invoice.rml +++ b/addons/account_invoice_layout/report/special_message_invoice.rml @@ -27,6 +27,10 @@ + + + + @@ -41,6 +45,10 @@ + + + + @@ -241,20 +249,23 @@ - + - Document + Description Invoice Date + + Origin + - Partner Ref. + Your Reference - + [[ o.name ]] @@ -262,6 +273,9 @@ [[ formatLang(o.date_invoice,date=True) ]] + + [[ o.name or '' ]] + [[ (o.address_invoice_id and o.address_invoice_id.partner_id and o.address_invoice_id.partner_id.ref) or ' ' ]] @@ -382,7 +396,7 @@ - + @@ -390,14 +404,14 @@ - Net Total: + Net Total : [[ formatLang(o.amount_untaxed, digits=get_digits(dp='Account')) ]] [[ o.currency_id.symbol ]] - + @@ -405,14 +419,14 @@ - Taxes: + Taxes : [[ formatLang(o.amount_tax, digits=get_digits(dp='Account')) ]] [[ o.currency_id.symbol ]] - + @@ -420,7 +434,7 @@ - Total: + Total : [[ formatLang(o.amount_total, digits=get_digits(dp='Account')) ]] [[ o.currency_id.symbol ]] @@ -511,4 +525,4 @@ - \ No newline at end of file + diff --git a/addons/account_invoice_layout/security/ir.model.access.csv b/addons/account_invoice_layout/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/test/account_invoice_layout_report.yml b/addons/account_invoice_layout/test/account_invoice_layout_report.yml old mode 100644 new mode 100755 index cdaccf0630c..91967358a3d --- a/addons/account_invoice_layout/test/account_invoice_layout_report.yml +++ b/addons/account_invoice_layout/test/account_invoice_layout_report.yml @@ -19,12 +19,14 @@ (data, format) = netsvc.LocalService('report.account.invoice.layout').create(cr, uid, [ref('test_invoice_1')], {}, {}) if tools.config['test_report_directory']: file(os.path.join(tools.config['test_report_directory'], 'account_invoice_layout.'+format), 'wb+').write(data) + - - Print the Invoice Layout Report with Message in Normal mode + Print the Invoice Layout Report with Message through wizard - !python {model: account.invoice}: | - import netsvc, tools, os, time - data_dict = {'model': 'account.invoice', 'form': {'message':ref('account_invoice_layout.demo_message1'),'id':ref('test_invoice_1'),'context':{}}} - (data, format) = netsvc.LocalService('report.notify_account.invoice').create(cr, uid, [ref('test_invoice_1')], data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account_invoice_layout_message_report.'+format), 'wb+').write(data) \ No newline at end of file + ctx={} + ctx.update({'model': 'account.invoice','active_ids': [ref('test_invoice_1')]}) + data_dict = {'message':ref('account_invoice_layout.demo_message1')} + from tools import test_reports + test_reports.try_report_action(cr, uid, 'action_account_invoice_special_msg',wiz_data=data_dict, context=ctx, our_module='account_invoice_layout') + diff --git a/addons/account_invoice_layout/wizard/__init__.py b/addons/account_invoice_layout/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/wizard/account_invoice_special_message.py b/addons/account_invoice_layout/wizard/account_invoice_special_message.py old mode 100644 new mode 100755 diff --git a/addons/account_invoice_layout/wizard/account_invoice_special_message.xml b/addons/account_invoice_layout/wizard/account_invoice_special_message.xml old mode 100644 new mode 100755 diff --git a/addons/account_payment/__init__.py b/addons/account_payment/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_payment/__openerp__.py b/addons/account_payment/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/account_payment/account_invoice.py b/addons/account_payment/account_invoice.py old mode 100644 new mode 100755 diff --git a/addons/account_payment/account_invoice_view.xml b/addons/account_payment/account_invoice_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_payment/account_move_line.py b/addons/account_payment/account_move_line.py old mode 100644 new mode 100755 diff --git a/addons/account_payment/account_payment.py b/addons/account_payment/account_payment.py old mode 100644 new mode 100755 diff --git a/addons/account_payment/account_payment_demo.xml b/addons/account_payment/account_payment_demo.xml old mode 100644 new mode 100755 diff --git a/addons/account_payment/account_payment_report.xml b/addons/account_payment/account_payment_report.xml old mode 100644 new mode 100755 diff --git a/addons/account_payment/account_payment_sequence.xml b/addons/account_payment/account_payment_sequence.xml old mode 100644 new mode 100755 diff --git a/addons/account_payment/account_payment_view.xml b/addons/account_payment/account_payment_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_payment/account_payment_workflow.xml b/addons/account_payment/account_payment_workflow.xml old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/account_payment.pot b/addons/account_payment/i18n/account_payment.pot old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/ar.po b/addons/account_payment/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/bg.po b/addons/account_payment/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/bs.po b/addons/account_payment/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/ca.po b/addons/account_payment/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/cs.po b/addons/account_payment/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/de.po b/addons/account_payment/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/el.po b/addons/account_payment/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/es.po b/addons/account_payment/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/es_AR.po b/addons/account_payment/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/es_EC.po b/addons/account_payment/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/et.po b/addons/account_payment/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/fi.po b/addons/account_payment/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/fr.po b/addons/account_payment/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/hi.po b/addons/account_payment/i18n/hi.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/hr.po b/addons/account_payment/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/hu.po b/addons/account_payment/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/id.po b/addons/account_payment/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/it.po b/addons/account_payment/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/ko.po b/addons/account_payment/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/lt.po b/addons/account_payment/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/mn.po b/addons/account_payment/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/nl.po b/addons/account_payment/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/nl_BE.po b/addons/account_payment/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/oc.po b/addons/account_payment/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/pl.po b/addons/account_payment/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/pt.po b/addons/account_payment/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/pt_BR.po b/addons/account_payment/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/ro.po b/addons/account_payment/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/ru.po b/addons/account_payment/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/sl.po b/addons/account_payment/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/sq.po b/addons/account_payment/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/sr.po b/addons/account_payment/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/sr@latin.po b/addons/account_payment/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/sv.po b/addons/account_payment/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/tlh.po b/addons/account_payment/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/tr.po b/addons/account_payment/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/uk.po b/addons/account_payment/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/vi.po b/addons/account_payment/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/zh_CN.po b/addons/account_payment/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/i18n/zh_TW.po b/addons/account_payment/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/account_payment/report/__init__.py b/addons/account_payment/report/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_payment/report/order.rml b/addons/account_payment/report/order.rml old mode 100644 new mode 100755 index e47691f54d7..9198b12db25 --- a/addons/account_payment/report/order.rml +++ b/addons/account_payment/report/order.rml @@ -210,7 +210,7 @@ [[ o.date_prefered == 'fixed' and 'Fixed date' or removeParentNode('para') ]] - [[ get_company_currency() ]] + [[ o.user_id and o.user_id.company_id and o.user_id.company_id.currency_id and o.user_id.company_id.currency_id.name or '' ]] @@ -287,4 +287,4 @@ - \ No newline at end of file + diff --git a/addons/account_payment/report/payment_order.py b/addons/account_payment/report/payment_order.py old mode 100644 new mode 100755 diff --git a/addons/account_payment/security/account_payment_security.xml b/addons/account_payment/security/account_payment_security.xml old mode 100644 new mode 100755 diff --git a/addons/account_payment/security/ir.model.access.csv b/addons/account_payment/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/account_payment/test/account_payment.yml b/addons/account_payment/test/account_payment.yml old mode 100644 new mode 100755 diff --git a/addons/account_payment/test/account_payment_report.yml b/addons/account_payment/test/account_payment_report.yml old mode 100644 new mode 100755 diff --git a/addons/account_payment/wizard/__init__.py b/addons/account_payment/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_payment/wizard/account_payment_create_order_view.xml b/addons/account_payment/wizard/account_payment_create_order_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_payment/wizard/account_payment_order.py b/addons/account_payment/wizard/account_payment_order.py old mode 100644 new mode 100755 diff --git a/addons/account_payment/wizard/account_payment_pay.py b/addons/account_payment/wizard/account_payment_pay.py old mode 100644 new mode 100755 diff --git a/addons/account_payment/wizard/account_payment_pay_view.xml b/addons/account_payment/wizard/account_payment_pay_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_payment/wizard/account_payment_populate_statement.py b/addons/account_payment/wizard/account_payment_populate_statement.py old mode 100644 new mode 100755 diff --git a/addons/account_payment/wizard/account_payment_populate_statement_view.xml b/addons/account_payment/wizard/account_payment_populate_statement_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_sequence/__init__.py b/addons/account_sequence/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_sequence/__openerp__.py b/addons/account_sequence/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/account_sequence/account_sequence.py b/addons/account_sequence/account_sequence.py old mode 100644 new mode 100755 diff --git a/addons/account_sequence/account_sequence.xml b/addons/account_sequence/account_sequence.xml old mode 100644 new mode 100755 diff --git a/addons/account_sequence/account_sequence_data.xml b/addons/account_sequence/account_sequence_data.xml old mode 100644 new mode 100755 diff --git a/addons/account_sequence/account_sequence_installer.py b/addons/account_sequence/account_sequence_installer.py old mode 100644 new mode 100755 diff --git a/addons/account_sequence/account_sequence_installer_view.xml b/addons/account_sequence/account_sequence_installer_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_sequence/i18n/account_sequence.pot b/addons/account_sequence/i18n/account_sequence.pot old mode 100644 new mode 100755 diff --git a/addons/account_sequence/i18n/fr.po b/addons/account_sequence/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/__init__.py b/addons/account_voucher/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_voucher/__openerp__.py b/addons/account_voucher/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/account_voucher/account_voucher.py b/addons/account_voucher/account_voucher.py old mode 100644 new mode 100755 index 11d4585f9d0..f0fcec1d781 --- a/addons/account_voucher/account_voucher.py +++ b/addons/account_voucher/account_voucher.py @@ -49,8 +49,9 @@ account_move_line() class account_voucher(osv.osv): - def _get_type(self, cr, uid, ids, context=None): - if context is None: context = {} + def _get_type(self, cr, uid, context=None): + if context is None: + context = {} return context.get('type', False) def _get_period(self, cr, uid, context=None): diff --git a/addons/account_voucher/account_voucher_pay_invoice.xml b/addons/account_voucher/account_voucher_pay_invoice.xml old mode 100644 new mode 100755 diff --git a/addons/account_voucher/account_voucher_report.xml b/addons/account_voucher/account_voucher_report.xml old mode 100644 new mode 100755 diff --git a/addons/account_voucher/account_voucher_sequence.xml b/addons/account_voucher/account_voucher_sequence.xml old mode 100644 new mode 100755 diff --git a/addons/account_voucher/account_voucher_view.xml b/addons/account_voucher/account_voucher_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_voucher/account_voucher_wizard.xml b/addons/account_voucher/account_voucher_wizard.xml old mode 100644 new mode 100755 diff --git a/addons/account_voucher/account_voucher_workflow.xml b/addons/account_voucher/account_voucher_workflow.xml old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/account_voucher.pot b/addons/account_voucher/i18n/account_voucher.pot old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/ar.po b/addons/account_voucher/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/bg.po b/addons/account_voucher/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/bs.po b/addons/account_voucher/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/ca.po b/addons/account_voucher/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/cs.po b/addons/account_voucher/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/de.po b/addons/account_voucher/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/el.po b/addons/account_voucher/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/es.po b/addons/account_voucher/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/es_AR.po b/addons/account_voucher/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/es_EC.po b/addons/account_voucher/i18n/es_EC.po old mode 100644 new mode 100755 index 1c25ed67633..3d803d641ef --- a/addons/account_voucher/i18n/es_EC.po +++ b/addons/account_voucher/i18n/es_EC.po @@ -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-10 18:11+0000\n" +"PO-Revision-Date: 2010-12-28 05:10+0000\n" "Last-Translator: Cristian Salamea (Gnuthink) \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:44+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_voucher @@ -25,7 +25,7 @@ msgstr "Transacciones sin conciliar" #: code:addons/account_voucher/account_voucher.py:0 #, python-format msgid "Write-Off" -msgstr "" +msgstr "Ajuste" #. module: account_voucher #: view:account.voucher:0 @@ -137,7 +137,7 @@ msgstr "Cambiar a borrador" #. module: account_voucher #: field:account.voucher,comment:0 msgid "Write-Off Comment" -msgstr "" +msgstr "Comentario del desajuste" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_view_account_voucher_unreconcile @@ -309,6 +309,13 @@ msgid "" "\n" "* The 'Cancelled' state is used when user cancel voucher." msgstr "" +" * El estado 'Borrador' se utiliza cuando un usuario codifica un recibo " +"nuevo sin confirmar.\n" +"* El estado 'Pro-forma' cuando el recibo no tiene un número de recibo.\n" +"* El estado \"Fijado\" se utiliza cuando el usuario crea el recibo, se " +"genera un número de recibo y se crean los asientos del recibo en la " +"contabilidad.\n" +"* El estado \"Cancelado\" se utiliza cuando el usuario cancela el recibo." #. module: account_voucher #: view:account.statement.from.invoice:0 @@ -354,7 +361,7 @@ msgstr "En cuenta de :" #. module: account_voucher #: field:account.voucher,writeoff_amount:0 msgid "Write-Off Amount" -msgstr "" +msgstr "Importe del desajuste" #. module: account_voucher #: view:account.voucher:0 @@ -469,7 +476,7 @@ msgstr "Monto Pagado" #. module: account_voucher #: field:account.voucher,payment_option:0 msgid "Payment Difference" -msgstr "" +msgstr "Diferencia del pago" #. module: account_voucher #: constraint:account.bank.statement.line:0 @@ -477,6 +484,8 @@ msgid "" "The amount of the voucher must be the same amount as the one on the " "statement line" msgstr "" +"El importe del recibo debe ser el mismo importe que el de la línea del " +"extracto" #. module: account_voucher #: selection:account.voucher,pay_now:0 @@ -604,7 +613,7 @@ msgstr "Monto conciliado" #. module: account_voucher #: field:account.voucher,analytic_id:0 msgid "Write-Off Analytic Account" -msgstr "" +msgstr "Cuenta analítica del desajuste" #. module: account_voucher #: view:account.voucher:0 @@ -647,7 +656,7 @@ msgstr "A través de :" #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payment" -msgstr "" +msgstr "Pago a Proveedor" #. module: account_voucher #: help:account.voucher,reference:0 @@ -768,7 +777,7 @@ msgstr "¿Desea confirmar este registro?" #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Reconcile with Write-Off" -msgstr "" +msgstr "Conciliar con desajuste" #. module: account_voucher #: view:account.voucher:0 @@ -837,12 +846,12 @@ msgstr "Cuenta de desajuste" #. module: account_voucher #: view:account.voucher:0 msgid "Supplier Invoices and Outstanding transactions" -msgstr "" +msgstr "Facturas de proveedor y transiciones de salida" #. module: account_voucher #: view:account.voucher:0 msgid "Open Supplier Journal Entries" -msgstr "" +msgstr "Abrir asientos de proveedor" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice @@ -863,7 +872,7 @@ msgstr "Fecha de vigencia de asientos contables" #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Keep Open" -msgstr "" +msgstr "Mantener abierto" #. module: account_voucher #: view:account.voucher.unreconcile:0 diff --git a/addons/account_voucher/i18n/et.po b/addons/account_voucher/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/fr.po b/addons/account_voucher/i18n/fr.po old mode 100644 new mode 100755 index 85e14fb86f5..3fe66158509 --- a/addons/account_voucher/i18n/fr.po +++ b/addons/account_voucher/i18n/fr.po @@ -7,19 +7,19 @@ 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 22:35+0000\n" -"Last-Translator: lolivier \n" +"PO-Revision-Date: 2010-12-28 15:51+0000\n" +"Last-Translator: Aline (OpenERP) \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:42+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_voucher #: view:account.voucher.unreconcile:0 msgid "Unreconciliation transactions" -msgstr "" +msgstr "Transactions non rapprochées" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:0 @@ -45,7 +45,7 @@ msgstr "Particuliers" #. module: account_voucher #: view:account.voucher:0 msgid "Group By..." -msgstr "" +msgstr "Regrouper par..." #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:0 diff --git a/addons/account_voucher/i18n/hi.po b/addons/account_voucher/i18n/hi.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/hr.po b/addons/account_voucher/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/hu.po b/addons/account_voucher/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/id.po b/addons/account_voucher/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/it.po b/addons/account_voucher/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/ko.po b/addons/account_voucher/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/lt.po b/addons/account_voucher/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/mn.po b/addons/account_voucher/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/nl.po b/addons/account_voucher/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/nl_BE.po b/addons/account_voucher/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/oc.po b/addons/account_voucher/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/pl.po b/addons/account_voucher/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/pt.po b/addons/account_voucher/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/pt_BR.po b/addons/account_voucher/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/ro.po b/addons/account_voucher/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/ru.po b/addons/account_voucher/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/sl.po b/addons/account_voucher/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/sq.po b/addons/account_voucher/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/sr.po b/addons/account_voucher/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/sr@latin.po b/addons/account_voucher/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/sv.po b/addons/account_voucher/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/tlh.po b/addons/account_voucher/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/tr.po b/addons/account_voucher/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/uk.po b/addons/account_voucher/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/vi.po b/addons/account_voucher/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/zh_CN.po b/addons/account_voucher/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/i18n/zh_TW.po b/addons/account_voucher/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/account_voucher/invoice.py b/addons/account_voucher/invoice.py old mode 100644 new mode 100755 diff --git a/addons/account_voucher/report/__init__.py b/addons/account_voucher/report/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_voucher/report/account_voucher.py b/addons/account_voucher/report/account_voucher.py old mode 100644 new mode 100755 diff --git a/addons/account_voucher/report/account_voucher_print.py b/addons/account_voucher/report/account_voucher_print.py old mode 100644 new mode 100755 diff --git a/addons/account_voucher/report/account_voucher_sales_receipt.py b/addons/account_voucher/report/account_voucher_sales_receipt.py old mode 100644 new mode 100755 diff --git a/addons/account_voucher/report/account_voucher_sales_receipt_view.xml b/addons/account_voucher/report/account_voucher_sales_receipt_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_voucher/security/account_voucher_security.xml b/addons/account_voucher/security/account_voucher_security.xml old mode 100644 new mode 100755 diff --git a/addons/account_voucher/security/ir.model.access.csv b/addons/account_voucher/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/account_voucher/test/account_voucher.yml b/addons/account_voucher/test/account_voucher.yml old mode 100644 new mode 100755 diff --git a/addons/account_voucher/test/account_voucher_report.yml b/addons/account_voucher/test/account_voucher_report.yml old mode 100644 new mode 100755 diff --git a/addons/account_voucher/test/sales_payment.yml b/addons/account_voucher/test/sales_payment.yml old mode 100644 new mode 100755 diff --git a/addons/account_voucher/test/sales_receipt.yml b/addons/account_voucher/test/sales_receipt.yml old mode 100644 new mode 100755 diff --git a/addons/account_voucher/voucher_payment_receipt_view.xml b/addons/account_voucher/voucher_payment_receipt_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_voucher/voucher_sales_purchase_view.xml b/addons/account_voucher/voucher_sales_purchase_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_voucher/wizard/__init__.py b/addons/account_voucher/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/account_voucher/wizard/account_statement_from_invoice.py b/addons/account_voucher/wizard/account_statement_from_invoice.py old mode 100644 new mode 100755 diff --git a/addons/account_voucher/wizard/account_statement_from_invoice_view.xml b/addons/account_voucher/wizard/account_statement_from_invoice_view.xml old mode 100644 new mode 100755 diff --git a/addons/account_voucher/wizard/account_voucher_unreconcile.py b/addons/account_voucher/wizard/account_voucher_unreconcile.py old mode 100644 new mode 100755 diff --git a/addons/account_voucher/wizard/account_voucher_unreconcile_view.xml b/addons/account_voucher/wizard/account_voucher_unreconcile_view.xml old mode 100644 new mode 100755 diff --git a/addons/analytic/__init__.py b/addons/analytic/__init__.py old mode 100644 new mode 100755 diff --git a/addons/analytic/__openerp__.py b/addons/analytic/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/analytic/analytic.py b/addons/analytic/analytic.py old mode 100644 new mode 100755 index f87df6200d6..a94d1a36a9d --- a/addons/analytic/analytic.py +++ b/addons/analytic/analytic.py @@ -30,11 +30,15 @@ class account_analytic_account(osv.osv): def _compute_level_tree(self, cr, uid, ids, child_ids, res, field_names, context=None): def recursive_computation(account_id, res): + currency_obj = self.pool.get('res.currency') account = self.browse(cr, uid, account_id) for son in account.child_ids: res = recursive_computation(son.id, res) for field in field_names: - res[account.id][field] += res[son.id][field] + if account.currency_id.id == son.currency_id.id: + res[account.id][field] += res[son.id][field] + else: + res[account.id][field] += currency_obj.compute(cr, uid, son.currency_id.id, account.currency_id.id, res[son.id][field], context=context) return res for account in self.browse(cr, uid, ids, context=context): if account.id not in child_ids: @@ -125,7 +129,7 @@ class account_analytic_account(osv.osv): 'user_id': fields.many2one('res.users', 'Account Manager'), 'date_start': fields.date('Date Start'), 'date': fields.date('Date End'), - 'company_id': fields.many2one('res.company', 'Company', required=True), + 'company_id': fields.many2one('res.company', 'Company', required=False), #not required because we want to allow different companies to use the same chart of account, except for leaf accounts. 'state': fields.selection([('draft','Draft'),('open','Open'), ('pending','Pending'),('cancelled', 'Cancelled'),('close','Closed'),('template', 'Template')], 'State', required=True, help='* When an account is created its in \'Draft\' state.\ \n* If any associated partner is there, it can be in \'Open\' state.\ @@ -133,7 +137,7 @@ class account_analytic_account(osv.osv): \n* And finally when all the transactions are over, it can be in \'Close\' state. \ \n* The project can be in either if the states \'Template\' and \'Running\'.\n If it is template then we can make projects based on the template projects. If its in \'Running\' state it is a normal project.\ \n If it is to be reviewed then the state is \'Pending\'.\n When the project is completed the state is set to \'Done\'.'), - 'currency_id': fields.related('company_id', 'currency_id', type='many2one', relation='res.currency', string='Account currency', store=True, readonly=True), + 'currency_id': fields.many2one('res.currency', 'Account currency', required=True), } def _default_company(self, cr, uid, context=None): @@ -142,6 +146,10 @@ class account_analytic_account(osv.osv): return user.company_id.id return self.pool.get('res.company').search(cr, uid, [('parent_id', '=', False)])[0] + def _get_default_currency(self, cr, uid, context=None): + user = self.pool.get('res.users').browse(cr, uid, uid, context=context) + return user.company_id.currency_id.id + _defaults = { 'type': 'normal', 'company_id': _default_company, @@ -149,15 +157,24 @@ class account_analytic_account(osv.osv): 'user_id': lambda self, cr, uid, ctx: uid, 'partner_id': lambda self, cr, uid, ctx: ctx.get('partner_id', False), 'contact_id': lambda self, cr, uid, ctx: ctx.get('contact_id', False), - 'date_start': lambda *a: time.strftime('%Y-%m-%d') + 'date_start': lambda *a: time.strftime('%Y-%m-%d'), + 'currency_id': _get_default_currency, } + def check_currency(self, cr, uid, ids, context=None): + obj = self.browse(cr, uid, ids[0], context=context) + if obj.company_id: + if obj.currency_id.id != self.pool.get('res.company').browse(cr, uid, obj.company_id.id, context=context).currency_id.id: + return False + return True + def check_recursion(self, cr, uid, ids, parent=None): return super(account_analytic_account, self)._check_recursion(cr, uid, ids, parent=parent) _order = 'date_start desc,parent_id desc,code' _constraints = [ - (check_recursion, 'Error! You can not create recursive analytic accounts.', ['parent_id']) + (check_recursion, 'Error! You can not create recursive analytic accounts.', ['parent_id']), + (check_currency, 'Error! The currency has to be the same as the currency of the selected company', ['currency_id', 'company_id']), ] def copy(self, cr, uid, id, default=None, context=None): @@ -167,6 +184,12 @@ class account_analytic_account(osv.osv): default['line_ids'] = [] return super(account_analytic_account, self).copy(cr, uid, id, default, context=context) + def on_change_company(self, cr, uid, id, company_id): + if not company_id: + return {} + currency = self.pool.get('res.company').read(cr, uid, [company_id], ['currency_id'])[0]['currency_id'] + return {'value': {'currency_id': currency}} + def on_change_parent(self, cr, uid, id, parent_id): if not parent_id: return {} diff --git a/addons/analytic/i18n/analytic.pot b/addons/analytic/i18n/analytic.pot old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/bs.po b/addons/analytic/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/de.po b/addons/analytic/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/el.po b/addons/analytic/i18n/el.po old mode 100644 new mode 100755 index 0bab19b40d6..ef1eef949f3 --- a/addons/analytic/i18n/el.po +++ b/addons/analytic/i18n/el.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-10-23 07:01+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2010-12-28 17:18+0000\n" +"Last-Translator: Dimitris Andavoglou \n" "Language-Team: Greek \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:53+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: analytic @@ -30,7 +30,7 @@ msgstr "Όνομα λογαριασμού" #. module: analytic #: help:account.analytic.line,unit_amount:0 msgid "Specifies the amount of quantity to count." -msgstr "" +msgstr "Καθορίζει την επιμετρούμενη ποσότητα" #. module: analytic #: model:ir.module.module,description:analytic.module_meta_information @@ -38,6 +38,8 @@ msgid "" "Module for defining analytic accounting object.\n" " " msgstr "" +"Άρθρωμα προς ορισμό αντικειμένου αναλυτικής λογιστικής\n" +" " #. module: analytic #: field:account.analytic.account,state:0 @@ -101,7 +103,7 @@ msgstr "Εκκρεμεί" #. module: analytic #: model:ir.model,name:analytic.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Γραμμή Αναλυτικής" #. module: analytic #: field:account.analytic.account,description:0 @@ -143,7 +145,7 @@ msgstr "Ημερομηνία" #. module: analytic #: field:account.analytic.account,currency_id:0 msgid "Account currency" -msgstr "" +msgstr "Νόμισμα Λογαριασμού" #. module: analytic #: field:account.analytic.account,quantity:0 @@ -157,11 +159,14 @@ msgid "" "Calculated by multiplying the quantity and the price given in the Product's " "cost price. Always expressed in the company main currency." msgstr "" +"Υπολογίστηκε πολλαπλασιάζοντας τη νποσότητα επί την τιμή που προκύπτει από " +"την τιμή κόστους του πίνακα Προϊόντων. Πάντα εκφράζεται στο κύριο νόμισμα " +"της εταιρείας." #. module: analytic #: help:account.analytic.account,quantity_max:0 msgid "Sets the higher limit of quantity of hours." -msgstr "" +msgstr "Θέτει τα ανώτατα όρια των ωρών" #. module: analytic #: field:account.analytic.account,credit:0 @@ -199,6 +204,8 @@ msgid "" "If you select the View Type, it means you won't allow to create journal " "entries using that account." msgstr "" +"Εαν επιλέξετε Προβολή Τύπου, αυτό σημαίνει ότι δεν θα επιτρέπετε την " +"δημιουργία εγγραφών ημερολογίου χρησιμοποιόντας αυτόν τον λογαριασμό." #. module: analytic #: field:account.analytic.account,date:0 diff --git a/addons/analytic/i18n/en_US.po b/addons/analytic/i18n/en_US.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/es.po b/addons/analytic/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/es_EC.po b/addons/analytic/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/et.po b/addons/analytic/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/fr.po b/addons/analytic/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/it.po b/addons/analytic/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/mn.po b/addons/analytic/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/nl.po b/addons/analytic/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/pl.po b/addons/analytic/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/pt.po b/addons/analytic/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/pt_BR.po b/addons/analytic/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/sl.po b/addons/analytic/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/sr.po b/addons/analytic/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/sr@latin.po b/addons/analytic/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/sv.po b/addons/analytic/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/vi.po b/addons/analytic/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/analytic/i18n/zh_CN.po b/addons/analytic/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/analytic/security/analytic_security.xml b/addons/analytic/security/analytic_security.xml old mode 100644 new mode 100755 diff --git a/addons/analytic/security/ir.model.access.csv b/addons/analytic/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/__init__.py b/addons/analytic_journal_billing_rate/__init__.py old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/__openerp__.py b/addons/analytic_journal_billing_rate/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/analytic_journal_billing_rate.py b/addons/analytic_journal_billing_rate/analytic_journal_billing_rate.py old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/analytic_journal_billing_rate_view.xml b/addons/analytic_journal_billing_rate/analytic_journal_billing_rate_view.xml old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/analytic_journal_billing_rate.pot b/addons/analytic_journal_billing_rate/i18n/analytic_journal_billing_rate.pot old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/ar.po b/addons/analytic_journal_billing_rate/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/bg.po b/addons/analytic_journal_billing_rate/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/bs.po b/addons/analytic_journal_billing_rate/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/ca.po b/addons/analytic_journal_billing_rate/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/cs.po b/addons/analytic_journal_billing_rate/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/de.po b/addons/analytic_journal_billing_rate/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/el.po b/addons/analytic_journal_billing_rate/i18n/el.po old mode 100644 new mode 100755 index 0bc307f16c2..83601f9085e --- a/addons/analytic_journal_billing_rate/i18n/el.po +++ b/addons/analytic_journal_billing_rate/i18n/el.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2009-09-08 13:49+0000\n" -"Last-Translator: Makis Nicolaou \n" +"PO-Revision-Date: 2010-12-28 17:14+0000\n" +"Last-Translator: Dimitris Andavoglou \n" "Language-Team: Greek \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:44+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: analytic_journal_billing_rate @@ -71,7 +71,7 @@ msgstr "" #. module: analytic_journal_billing_rate #: model:ir.model,name:analytic_journal_billing_rate.model_account_invoice msgid "Invoice" -msgstr "" +msgstr "Τιμολόγιο" #. module: analytic_journal_billing_rate #: field:analytic_journal_rate_grid,rate_id:0 @@ -86,7 +86,7 @@ msgstr "" #. module: analytic_journal_billing_rate #: model:ir.model,name:analytic_journal_billing_rate.model_hr_analytic_timesheet msgid "Timesheet Line" -msgstr "" +msgstr "Γραμμή Φύλλου Xρόνου Eργασίας" #~ msgid "Analytic Journal Billing Rate" #~ msgstr "Ποσό Τιμολόγησης Ημερολόγιου Αναλυτικής" diff --git a/addons/analytic_journal_billing_rate/i18n/es.po b/addons/analytic_journal_billing_rate/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/es_AR.po b/addons/analytic_journal_billing_rate/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/es_EC.po b/addons/analytic_journal_billing_rate/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/et.po b/addons/analytic_journal_billing_rate/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/fr.po b/addons/analytic_journal_billing_rate/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/gl.po b/addons/analytic_journal_billing_rate/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/hr.po b/addons/analytic_journal_billing_rate/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/hu.po b/addons/analytic_journal_billing_rate/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/id.po b/addons/analytic_journal_billing_rate/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/it.po b/addons/analytic_journal_billing_rate/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/ko.po b/addons/analytic_journal_billing_rate/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/lt.po b/addons/analytic_journal_billing_rate/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/mn.po b/addons/analytic_journal_billing_rate/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/nl.po b/addons/analytic_journal_billing_rate/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/nl_BE.po b/addons/analytic_journal_billing_rate/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/oc.po b/addons/analytic_journal_billing_rate/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/pl.po b/addons/analytic_journal_billing_rate/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/pt.po b/addons/analytic_journal_billing_rate/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/pt_BR.po b/addons/analytic_journal_billing_rate/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/ro.po b/addons/analytic_journal_billing_rate/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/ru.po b/addons/analytic_journal_billing_rate/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/sl.po b/addons/analytic_journal_billing_rate/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/sq.po b/addons/analytic_journal_billing_rate/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/sr.po b/addons/analytic_journal_billing_rate/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/sr@latin.po b/addons/analytic_journal_billing_rate/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/sv.po b/addons/analytic_journal_billing_rate/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/tlh.po b/addons/analytic_journal_billing_rate/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/tr.po b/addons/analytic_journal_billing_rate/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/uk.po b/addons/analytic_journal_billing_rate/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/vi.po b/addons/analytic_journal_billing_rate/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/zh_CN.po b/addons/analytic_journal_billing_rate/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/i18n/zh_TW.po b/addons/analytic_journal_billing_rate/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/analytic_journal_billing_rate/security/ir.model.access.csv b/addons/analytic_journal_billing_rate/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/__init__.py b/addons/analytic_user_function/__init__.py old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/__openerp__.py b/addons/analytic_user_function/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/analytic_user_function.py b/addons/analytic_user_function/analytic_user_function.py old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/analytic_user_function_view.xml b/addons/analytic_user_function/analytic_user_function_view.xml old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/analytic_user_function.pot b/addons/analytic_user_function/i18n/analytic_user_function.pot old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/ar.po b/addons/analytic_user_function/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/bg.po b/addons/analytic_user_function/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/bs.po b/addons/analytic_user_function/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/ca.po b/addons/analytic_user_function/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/cs.po b/addons/analytic_user_function/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/de.po b/addons/analytic_user_function/i18n/de.po old mode 100644 new mode 100755 index 4d7a72247e4..e9e6735e6e9 --- a/addons/analytic_user_function/i18n/de.po +++ b/addons/analytic_user_function/i18n/de.po @@ -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-27 09:08+0000\n" +"PO-Revision-Date: 2010-12-28 07:56+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \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:42+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/el.po b/addons/analytic_user_function/i18n/el.po old mode 100644 new mode 100755 index 9070ce6f58a..9d810a11045 --- a/addons/analytic_user_function/i18n/el.po +++ b/addons/analytic_user_function/i18n/el.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-08-03 02:54+0000\n" -"Last-Translator: mga (Open ERP) \n" +"PO-Revision-Date: 2010-12-28 17:21+0000\n" +"Last-Translator: Dimitris Andavoglou \n" "Language-Team: Greek \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:46+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: analytic_user_function @@ -26,12 +26,12 @@ msgstr "Προϊόν" #: code:addons/analytic_user_function/analytic_user_function.py:0 #, python-format msgid "Error !" -msgstr "" +msgstr "Σφάλμα!" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_hr_analytic_timesheet msgid "Timesheet Line" -msgstr "" +msgstr "Γραμμή Φύλλου Xρόνου Eργασίας" #. module: analytic_user_function #: field:analytic_user_funct_grid,account_id:0 @@ -55,6 +55,7 @@ msgstr "Χρήστης" #, python-format msgid "There is no expense account define for this product: \"%s\" (id:%d)" msgstr "" +"Δεν έχει οριστεί λογαριασμός εξόδων για αυτό το προϊόν: \"%s\" (id:%d)" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid diff --git a/addons/analytic_user_function/i18n/es.po b/addons/analytic_user_function/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/es_AR.po b/addons/analytic_user_function/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/es_EC.po b/addons/analytic_user_function/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/et.po b/addons/analytic_user_function/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/fr.po b/addons/analytic_user_function/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/gl.po b/addons/analytic_user_function/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/hr.po b/addons/analytic_user_function/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/hu.po b/addons/analytic_user_function/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/id.po b/addons/analytic_user_function/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/it.po b/addons/analytic_user_function/i18n/it.po old mode 100644 new mode 100755 index 52e1d44d796..3eee6f2985b --- a/addons/analytic_user_function/i18n/it.po +++ b/addons/analytic_user_function/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\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 08:02+0000\n" -"Last-Translator: Nicola Riolini - Micronaet \n" +"PO-Revision-Date: 2010-12-28 07:57+0000\n" +"Last-Translator: OpenERP Administrators \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:42+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/ko.po b/addons/analytic_user_function/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/lt.po b/addons/analytic_user_function/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/mn.po b/addons/analytic_user_function/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/nl.po b/addons/analytic_user_function/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/nl_BE.po b/addons/analytic_user_function/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/oc.po b/addons/analytic_user_function/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/pl.po b/addons/analytic_user_function/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/pt.po b/addons/analytic_user_function/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/pt_BR.po b/addons/analytic_user_function/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/ro.po b/addons/analytic_user_function/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/ru.po b/addons/analytic_user_function/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/sk.po b/addons/analytic_user_function/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/sl.po b/addons/analytic_user_function/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/sq.po b/addons/analytic_user_function/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/sr.po b/addons/analytic_user_function/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/sr@latin.po b/addons/analytic_user_function/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/sv.po b/addons/analytic_user_function/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/tlh.po b/addons/analytic_user_function/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/tr.po b/addons/analytic_user_function/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/uk.po b/addons/analytic_user_function/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/vi.po b/addons/analytic_user_function/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/zh_CN.po b/addons/analytic_user_function/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/i18n/zh_TW.po b/addons/analytic_user_function/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/analytic_user_function/security/ir.model.access.csv b/addons/analytic_user_function/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/association/__init__.py b/addons/association/__init__.py old mode 100644 new mode 100755 diff --git a/addons/association/__openerp__.py b/addons/association/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/association/i18n/ar.po b/addons/association/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/association.pot b/addons/association/i18n/association.pot old mode 100644 new mode 100755 diff --git a/addons/association/i18n/bg.po b/addons/association/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/bs.po b/addons/association/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/ca.po b/addons/association/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/cs.po b/addons/association/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/de.po b/addons/association/i18n/de.po old mode 100644 new mode 100755 index a2b1ebcea34..b5502df4edc --- a/addons/association/i18n/de.po +++ b/addons/association/i18n/de.po @@ -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-27 09:11+0000\n" +"PO-Revision-Date: 2010-12-28 07:54+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \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:43+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: association diff --git a/addons/association/i18n/el.po b/addons/association/i18n/el.po old mode 100644 new mode 100755 index 466b740772c..03b34147a18 --- a/addons/association/i18n/el.po +++ b/addons/association/i18n/el.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-30 17:20+0000\n" +"PO-Revision-Date: 2010-12-28 17:27+0000\n" "Last-Translator: Dimitris Andavoglou \n" "Language-Team: Greek \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:57+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: association @@ -135,7 +135,7 @@ msgstr "Διαχείριση Έργων" #. module: association #: view:profile.association.config.install_modules_wizard:0 msgid "Configure" -msgstr "" +msgstr "Παραμετροποίηση" #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" diff --git a/addons/association/i18n/es.po b/addons/association/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/es_AR.po b/addons/association/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/et.po b/addons/association/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/fr.po b/addons/association/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/hr.po b/addons/association/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/hu.po b/addons/association/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/id.po b/addons/association/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/it.po b/addons/association/i18n/it.po old mode 100644 new mode 100755 index 9d4b2553908..b7ec3bd0db5 --- a/addons/association/i18n/it.po +++ b/addons/association/i18n/it.po @@ -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 07:49+0000\n" -"Last-Translator: Nicola Riolini - Micronaet \n" +"PO-Revision-Date: 2010-12-28 08:30+0000\n" +"Last-Translator: OpenERP Administrators \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:43+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: association diff --git a/addons/association/i18n/ko.po b/addons/association/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/lt.po b/addons/association/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/lv.po b/addons/association/i18n/lv.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/nl.po b/addons/association/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/nl_BE.po b/addons/association/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/pl.po b/addons/association/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/pt.po b/addons/association/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/pt_BR.po b/addons/association/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/ro.po b/addons/association/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/ru.po b/addons/association/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/sl.po b/addons/association/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/sq.po b/addons/association/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/sr.po b/addons/association/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/sr@latin.po b/addons/association/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/sv.po b/addons/association/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/tlh.po b/addons/association/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/tr.po b/addons/association/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/uk.po b/addons/association/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/vi.po b/addons/association/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/zh_CN.po b/addons/association/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/association/i18n/zh_TW.po b/addons/association/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/association/profile_association.py b/addons/association/profile_association.py old mode 100644 new mode 100755 diff --git a/addons/association/profile_association.xml b/addons/association/profile_association.xml old mode 100644 new mode 100755 diff --git a/addons/association/security/ir.model.access.csv b/addons/association/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/auction/__init__.py b/addons/auction/__init__.py old mode 100644 new mode 100755 diff --git a/addons/auction/__openerp__.py b/addons/auction/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/auction/auction.png b/addons/auction/auction.png old mode 100644 new mode 100755 diff --git a/addons/auction/auction.py b/addons/auction/auction.py old mode 100644 new mode 100755 index 983bdeb0144..20442f16250 --- a/addons/auction/auction.py +++ b/addons/auction/auction.py @@ -186,7 +186,7 @@ class aie_category(osv.osv): 'name': fields.char('Name', size=64, required=True), 'code':fields.char('Code', size=64), 'parent_id': fields.many2one('aie.category', 'Parent aie Category', ondelete='cascade'), - 'child_ids': fields.one2many('aie.category', 'parent_id', help="Childs aie category") + 'child_ids': fields.one2many('aie.category', 'parent_id', help="children aie category") } def name_get(self, cr, uid, ids, context=None): diff --git a/addons/auction/auction_data.xml b/addons/auction/auction_data.xml old mode 100644 new mode 100755 diff --git a/addons/auction/auction_demo.xml b/addons/auction/auction_demo.xml old mode 100644 new mode 100755 diff --git a/addons/auction/auction_report.xml b/addons/auction/auction_report.xml old mode 100644 new mode 100755 diff --git a/addons/auction/auction_sequence.xml b/addons/auction/auction_sequence.xml old mode 100644 new mode 100755 diff --git a/addons/auction/auction_view.xml b/addons/auction/auction_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/auction_wizard.xml b/addons/auction/auction_wizard.xml old mode 100644 new mode 100755 diff --git a/addons/auction/barcode/__init__.py b/addons/auction/barcode/__init__.py old mode 100644 new mode 100755 diff --git a/addons/auction/barcode/code128.py b/addons/auction/barcode/code128.py old mode 100644 new mode 100755 diff --git a/addons/auction/barcode/code39.py b/addons/auction/barcode/code39.py old mode 100644 new mode 100755 diff --git a/addons/auction/barcode/code93.py b/addons/auction/barcode/code93.py old mode 100644 new mode 100755 diff --git a/addons/auction/barcode/common.py b/addons/auction/barcode/common.py old mode 100644 new mode 100755 diff --git a/addons/auction/barcode/fourstate.py b/addons/auction/barcode/fourstate.py old mode 100644 new mode 100755 diff --git a/addons/auction/barcode/out.pdf b/addons/auction/barcode/out.pdf old mode 100644 new mode 100755 diff --git a/addons/auction/barcode/test.py b/addons/auction/barcode/test.py old mode 100644 new mode 100755 diff --git a/addons/auction/barcode/usps.py b/addons/auction/barcode/usps.py old mode 100644 new mode 100755 diff --git a/addons/auction/board_auction_demo.xml b/addons/auction/board_auction_demo.xml old mode 100644 new mode 100755 diff --git a/addons/auction/board_auction_manager_view.xml b/addons/auction/board_auction_manager_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/board_auction_view.xml b/addons/auction/board_auction_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/i18n/ar.po b/addons/auction/i18n/ar.po old mode 100644 new mode 100755 index 1d0c72ca99b..2dd5dc150d1 --- a/addons/auction/i18n/ar.po +++ b/addons/auction/i18n/ar.po @@ -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:35+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/auction.pot b/addons/auction/i18n/auction.pot old mode 100644 new mode 100755 index 2366d44d9d5..66c5eb6c020 --- a/addons/auction/i18n/auction.pot +++ b/addons/auction/i18n/auction.pot @@ -1441,7 +1441,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/bg.po b/addons/auction/i18n/bg.po old mode 100644 new mode 100755 index 1b326149bdf..17e9536e62d --- a/addons/auction/i18n/bg.po +++ b/addons/auction/i18n/bg.po @@ -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:35+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/bs.po b/addons/auction/i18n/bs.po old mode 100644 new mode 100755 index 6484cab105b..0eb810c0c50 --- a/addons/auction/i18n/bs.po +++ b/addons/auction/i18n/bs.po @@ -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:35+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/ca.po b/addons/auction/i18n/ca.po old mode 100644 new mode 100755 index b6210be0201..ec2d7d21256 --- a/addons/auction/i18n/ca.po +++ b/addons/auction/i18n/ca.po @@ -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:35+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1451,7 +1451,7 @@ msgstr "Lot" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/cs.po b/addons/auction/i18n/cs.po old mode 100644 new mode 100755 index 588096eb0e1..1b56a87a47b --- a/addons/auction/i18n/cs.po +++ b/addons/auction/i18n/cs.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/de.po b/addons/auction/i18n/de.po old mode 100644 new mode 100755 index 30a09fc4301..ad64d4fc7fe --- a/addons/auction/i18n/de.po +++ b/addons/auction/i18n/de.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "Auktionslos" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/el.po b/addons/auction/i18n/el.po old mode 100644 new mode 100755 index d58685861ae..2c3c24e6fa2 --- a/addons/auction/i18n/el.po +++ b/addons/auction/i18n/el.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1451,7 +1451,7 @@ msgstr "Παρτίδα" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/es.po b/addons/auction/i18n/es.po old mode 100644 new mode 100755 index d21add0d670..e7aa22f719f --- a/addons/auction/i18n/es.po +++ b/addons/auction/i18n/es.po @@ -7,14 +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-10-30 08:44+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\n" +"PO-Revision-Date: 2010-12-28 13:37+0000\n" +"Last-Translator: Borja López Soilán \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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -44,7 +43,7 @@ msgstr "Vendedor" #. module: auction #: field:auction.lots,name:0 msgid "Title" -msgstr "" +msgstr "Título" #. module: auction #: field:auction.lots.sms.send,text:0 @@ -56,7 +55,7 @@ msgstr "Mensaje SMS" #: view:auction.lots.auction.move:0 #: view:auction.lots.make.invoice.buyer:0 msgid " " -msgstr "" +msgstr " " #. module: auction #: view:auction.lots.auction.move:0 @@ -82,7 +81,7 @@ msgstr "Nº de objetos" #. module: auction #: view:auction.lots:0 msgid "Authors" -msgstr "" +msgstr "Autores" #. module: auction #: view:auction.bid:0 @@ -129,7 +128,7 @@ msgstr "Importe facturado" #. module: auction #: help:auction.lots,name:0 msgid "Auction object name" -msgstr "" +msgstr "Nombre objeto subastado" #. module: auction #: model:ir.model,name:auction.model_aie_category @@ -153,7 +152,7 @@ msgstr "Justificante de depósito" #. module: auction #: view:auction.deposit:0 msgid "Reference" -msgstr "" +msgstr "Referencia" #. module: auction #: help:auction.dates,state:0 @@ -180,7 +179,7 @@ msgstr "Núm. de lista" #. module: auction #: report:buyer.list:0 msgid "Date:" -msgstr "" +msgstr "Fecha:" #. module: auction #: field:auction.deposit.cost,name:0 @@ -200,12 +199,12 @@ msgstr "Estado" #. module: auction #: view:auction.dates:0 msgid "First Auction Date" -msgstr "" +msgstr "Primera fecha subasta" #. module: auction #: selection:report.auction,month:0 msgid "January" -msgstr "" +msgstr "Enero" #. module: auction #: help:auction.lot.category,active:0 @@ -222,7 +221,7 @@ msgstr "Ref." #. module: auction #: field:report.auction,total_price:0 msgid "Total Price" -msgstr "" +msgstr "Precio total" #. module: auction #: view:auction.lots:0 @@ -280,7 +279,7 @@ msgstr "Apuestas" #. module: auction #: view:auction.lots.buyer_map:0 msgid "Buyer Map" -msgstr "" +msgstr "Mapa compradores" #. module: auction #: field:report.object.encoded,obj_ret:0 @@ -290,18 +289,18 @@ msgstr "Nº obj ret" #. module: auction #: model:ir.model,name:auction.model_auction_bid msgid "Bid Auctions" -msgstr "" +msgstr "Pujar subastas" #. module: auction #: help:auction.lots,image:0 msgid "Object Image" -msgstr "" +msgstr "Imagen del objeto" #. module: auction #: code:addons/auction/wizard/auction_lots_buyer_map.py:0 #, python-format msgid "No buyer is set for this lot." -msgstr "" +msgstr "No hay comprador para este lote." #. module: auction #: code:addons/auction/auction.py:0 @@ -327,12 +326,12 @@ msgstr "Formulario justificante de depósito" #. module: auction #: help:auction.lots,statement_id:0 msgid "Bank statement line for given buyer" -msgstr "" +msgstr "Línea extracto bancario para el comprador dado" #. module: auction #: field:auction.lot.category,aie_categ:0 msgid "Category" -msgstr "" +msgstr "Categoría" #. module: auction #: model:ir.actions.act_window,name:auction.action_view_auction_buyer_map @@ -342,7 +341,7 @@ msgstr "Asociar nombre de comprador a empresas" #. module: auction #: view:auction.lots:0 msgid "Search Auction Lots" -msgstr "" +msgstr "Buscar lotes subastados" #. module: auction #: field:report.auction,net_revenue:0 @@ -363,7 +362,7 @@ msgstr "Enviar SMS" #. module: auction #: selection:report.auction,month:0 msgid "August" -msgstr "" +msgstr "Agosto" #. module: auction #: view:auction.lots:0 @@ -376,18 +375,18 @@ msgstr "Vendido" #. module: auction #: selection:report.auction,month:0 msgid "June" -msgstr "" +msgstr "Junio" #. module: auction #: code:addons/auction/wizard/auction_catalog_flagey_report.py:0 #, python-format msgid "No Lots belong to this Auction Date" -msgstr "" +msgstr "Ningún lote pertenece a esta fecha de subasta" #. module: auction #: selection:report.auction,month:0 msgid "October" -msgstr "" +msgstr "Octubre" #. module: auction #: field:auction.bid_line,name:0 @@ -412,17 +411,17 @@ msgstr "Descripción del objeto" #. module: auction #: field:auction.lots,artist2_id:0 msgid "Artist/Author2" -msgstr "" +msgstr "Artist/Autor2" #. module: auction #: view:auction.pay.buy:0 msgid "Line1" -msgstr "" +msgstr "Línea1" #. module: auction #: model:ir.model,name:auction.model_auction_lots_make_invoice_buyer msgid "Make Invoice for Buyer" -msgstr "" +msgstr "Crear factura para el comprador" #. module: auction #: field:auction.lots,gross_revenue:0 @@ -438,7 +437,7 @@ msgstr "Pagar objetos del comprador" #. module: auction #: help:auction.dates,auction2:0 msgid "End date of auction" -msgstr "" +msgstr "Fecha fin de la subasta" #. module: auction #: view:auction.lots.sms.send:0 @@ -464,7 +463,7 @@ msgstr "IVA 12%" #. module: auction #: view:auction.dates:0 msgid "Buyer Invoices" -msgstr "" +msgstr "Facturas comprador" #. module: auction #: model:ir.actions.report.xml,name:auction.res_w_buyer @@ -479,7 +478,7 @@ msgstr "Precio máximo" #. module: auction #: help:auction.dates,auction1:0 msgid "Start date of auction" -msgstr "" +msgstr "Fecha inicio de la subasta" #. module: auction #: model:ir.model,name:auction.model_auction_lots_auction_move @@ -489,12 +488,12 @@ msgstr "" #. module: auction #: help:auction.dates,buyer_costs:0 msgid "Account tax for buyer" -msgstr "" +msgstr "Cuenta impuestos para el comprador" #. module: auction #: view:auction.dates:0 msgid "Next Auction" -msgstr "" +msgstr "Siguiente subasta" #. module: auction #: view:auction.taken:0 @@ -520,12 +519,12 @@ msgstr "Guardar hasta la venta" #. module: auction #: view:auction.dates:0 msgid "Last Auction Date" -msgstr "" +msgstr "Fecha última subasta" #. module: auction #: model:account.tax,name:auction.tax_seller msgid "Seller Costs (12%)" -msgstr "" +msgstr "Costes vendedor (12%)" #. module: auction #: field:auction.lots,paid_vnd:0 @@ -574,12 +573,12 @@ msgstr "%)" #. module: auction #: view:auction.lots:0 msgid "Buyer Information" -msgstr "" +msgstr "Información comprador" #. module: auction #: help:auction.lots,gross_revenue:0 msgid "Buyer Price - Seller Price" -msgstr "" +msgstr "Precio comprador - Precio vendedor" #. module: auction #: field:auction.lots.make.invoice,objects:0 @@ -600,7 +599,7 @@ msgstr "Precio comprador" #. module: auction #: view:auction.lots:0 msgid "Bids Details" -msgstr "" +msgstr "Detalles de la puja" #. module: auction #: field:auction.lots,is_ok:0 @@ -621,7 +620,7 @@ msgstr "Catálogo de subastas" #. module: auction #: selection:report.auction,month:0 msgid "March" -msgstr "" +msgstr "Marzo" #. module: auction #: model:account.tax,name:auction.auction_tax4 @@ -647,14 +646,14 @@ msgstr "Costes indirectos" #. module: auction #: help:auction.dates,seller_costs:0 msgid "Account tax for seller" -msgstr "" +msgstr "Cuenta impuesto para el vendedor" #. module: auction #: code:addons/auction/wizard/auction_lots_invoice.py:0 #: code:addons/auction/wizard/auction_lots_numerotate.py:0 #, python-format msgid "UserError" -msgstr "" +msgstr "Error de usuario" #. module: auction #: model:ir.module.module,shortdesc:auction.module_meta_information @@ -692,13 +691,13 @@ msgstr "" #. module: auction #: view:auction.catalog.flagey:0 msgid "Print" -msgstr "" +msgstr "Imprimir" #. module: auction #: view:auction.lots:0 #: view:report.auction:0 msgid "Type" -msgstr "" +msgstr "Tipo" #. module: auction #: help:auction.lots,ach_emp:0 @@ -747,7 +746,7 @@ msgstr "Estimación mín.:" #. module: auction #: selection:report.auction,month:0 msgid "September" -msgstr "" +msgstr "Septiembre" #. module: auction #: field:report.auction,net_margin:0 @@ -762,7 +761,7 @@ msgstr "¿Límite neto?" #. module: auction #: field:aie.category,child_ids:0 msgid "unknown" -msgstr "" +msgstr "desconocido" #. module: auction #: report:auction.total.rml:0 @@ -788,7 +787,7 @@ msgstr "" #. module: auction #: view:report.auction:0 msgid "Auction Summary" -msgstr "" +msgstr "Resumen subasta" #. module: auction #: view:auction.lots.make.invoice:0 @@ -811,17 +810,17 @@ msgstr "" #: code:addons/auction/wizard/auction_lots_numerotate.py:0 #, python-format msgid "This record does not exist !" -msgstr "" +msgstr "¡ Este registro no existe !" #. module: auction #: field:auction.pay.buy,total:0 msgid "Total Amount" -msgstr "" +msgstr "Importe total" #. module: auction #: help:auction.pay.buy,amount:0 msgid "Amount For First Bank Statement" -msgstr "" +msgstr "Importe para el primer extracto bancario" #. module: auction #: model:ir.model,name:auction.model_report_auction_object_date @@ -832,7 +831,7 @@ msgstr "Objetos por día" #. module: auction #: help:auction.lots,author_right:0 msgid "Account tax for author commission" -msgstr "" +msgstr "Cuenta impuesto para la comisión del autor" #. module: auction #: model:product.template,name:auction.monproduit_product_template @@ -863,12 +862,12 @@ msgstr "Costes extra" #. module: auction #: view:auction.lots.buyer_map:0 msgid "Map " -msgstr "" +msgstr "Mapa " #. module: auction #: field:auction.lots,paid_ach:0 msgid "Buyer Invoice Reconciled" -msgstr "" +msgstr "Factura comprador reconciliada" #. module: auction #: field:auction.deposit,date_dep:0 @@ -888,17 +887,17 @@ msgstr "Costes específicos" #. module: auction #: report:buyer.list:0 msgid "To pay (" -msgstr "" +msgstr "A pagar (" #. module: auction #: model:account.tax,name:auction.tax_buyer msgid "Buyer Costs (20%)" -msgstr "" +msgstr "Costes comprador (20%)" #. module: auction #: model:ir.ui.menu,name:auction.menu_board_auction msgid "Dashboard" -msgstr "" +msgstr "Cuadro de mandos" #. module: auction #: view:auction.dates:0 @@ -916,12 +915,12 @@ msgstr "Total adjudicaciones" #. module: auction #: model:ir.model,name:auction.model_auction_lots_make_invoice msgid "Make invoice" -msgstr "" +msgstr "Crear factura" #. module: auction #: selection:report.auction,month:0 msgid "November" -msgstr "" +msgstr "Noviembre" #. module: auction #: view:auction.dates:0 @@ -932,7 +931,7 @@ msgstr "Historial" #. module: auction #: field:aie.category,code:0 msgid "Code" -msgstr "" +msgstr "Código" #. module: auction #: report:auction.code_bar_lot:0 @@ -957,7 +956,7 @@ msgstr "Cancelar" #. module: auction #: view:auction.lots:0 msgid "Buyer's Payment History" -msgstr "" +msgstr "Historial de pagos del comprador" #. module: auction #: view:auction.artists:0 @@ -978,7 +977,7 @@ msgstr "Pagar" #. module: auction #: view:auction.lots.make.invoice:0 msgid "Create Invoices For Seller" -msgstr "" +msgstr "Crear facturas para el vendedor" #. module: auction #: field:report.object.encoded,obj_margin:0 @@ -1000,6 +999,8 @@ msgstr "Analítico" msgid "" "When state of Buyer Invoice is 'Paid', this field is selected as True." msgstr "" +"Cuando el estado de la factura del comprador es 'Pagada', este campo se pone " +"a verdadero." #. module: auction #: report:bids.lots:0 @@ -1026,17 +1027,17 @@ msgstr "Facturar objetos comprador" #. module: auction #: view:report.auction:0 msgid "My Auction" -msgstr "" +msgstr "Mi subasta" #. module: auction #: help:auction.lots,gross_margin:0 msgid "(Gross Revenue*100.0)/ Object Price" -msgstr "" +msgstr "(Ingresos brutos*100.0)/ Precio objeto" #. module: auction #: field:auction.bid,contact_tel:0 msgid "Contact Number" -msgstr "" +msgstr "Número de contacto" #. module: auction #: view:auction.lots:0 @@ -1064,7 +1065,7 @@ msgstr "Número factura" #: code:addons/auction/wizard/auction_lots_numerotate.py:0 #, python-format msgid "Active IDs not Found" -msgstr "" +msgstr "No se encontraron IDs activos" #. module: auction #: code:addons/auction/wizard/auction_aie_send.py:0 @@ -1081,7 +1082,7 @@ msgstr "Ingreso bruto" #. module: auction #: model:ir.actions.act_window,name:auction.open_board_auction msgid "Auction board" -msgstr "" +msgstr "Tablero subasta" #. module: auction #: field:aie.category,name:0 @@ -1136,7 +1137,7 @@ msgstr "Marcar lotes" #. module: auction #: model:ir.model,name:auction.model_auction_lots msgid "Auction Object" -msgstr "" +msgstr "Objeto subastado" #. module: auction #: field:auction.lots,obj_num:0 @@ -1176,12 +1177,12 @@ msgstr "Derechos de autor" #: view:auction.lots:0 #: view:report.auction:0 msgid "Group By..." -msgstr "" +msgstr "Agrupar por..." #. module: auction #: help:auction.dates,journal_id:0 msgid "Account journal for buyer" -msgstr "" +msgstr "Diario contable para comprador" #. module: auction #: field:auction.bid,bid_lines:0 @@ -1210,12 +1211,12 @@ msgstr "Vendedores" #. module: auction #: help:auction.lots,lot_est2:0 msgid "Maximum Estimate Price" -msgstr "" +msgstr "Precio máximo estimado" #. module: auction #: view:auction.lots:0 msgid "Notes" -msgstr "" +msgstr "Notas" #. module: auction #: view:auction.lots.auction.move:0 @@ -1230,7 +1231,7 @@ msgstr "Nº de artículos no vendidos:" #. module: auction #: view:auction.dates:0 msgid "Create Invoices" -msgstr "" +msgstr "Crear facturas" #. module: auction #: field:auction.bid,auction_id:0 @@ -1247,7 +1248,7 @@ msgstr ", ID" #. module: auction #: report:buyer.list:0 msgid "Adj.(" -msgstr "" +msgstr "Adj.(" #. module: auction #: model:ir.actions.report.xml,name:auction.lot_list_inv @@ -1257,7 +1258,7 @@ msgstr "Lista de lotes - Horizontal" #. module: auction #: view:auction.artists:0 msgid "Author/Artist" -msgstr "" +msgstr "Autor/Artista" #. module: auction #: field:auction.lots,ach_login:0 @@ -1283,12 +1284,12 @@ msgstr "Lugar" #. module: auction #: view:report.auction:0 msgid "Month -1" -msgstr "" +msgstr "Mes -1" #. module: auction #: help:auction.lots,is_ok:0 msgid "When buyer pay for bank statement', this field is marked" -msgstr "" +msgstr "Cuando el comprador paga por extracto bancario', se marca este campo" #. module: auction #: field:auction.lots,ach_emp:0 @@ -1303,12 +1304,12 @@ msgstr "Total ing. bruto" #. module: auction #: help:auction.lots,lot_est1:0 msgid "Minimum Estimate Price" -msgstr "" +msgstr "Precio mínimo estimado" #. module: auction #: view:auction.deposit:0 msgid "Deposit Date" -msgstr "" +msgstr "Fecha depósito" #. module: auction #: code:addons/auction/wizard/auction_lots_numerotate.py:0 @@ -1319,7 +1320,7 @@ msgstr "¡Este lote no existe!" #. module: auction #: selection:report.auction,month:0 msgid "July" -msgstr "" +msgstr "Julio" #. module: auction #: field:auction.bid_line,call:0 @@ -1340,7 +1341,7 @@ msgstr "Estimación mínima" #. module: auction #: model:ir.model,name:auction.model_auction_lots_sms_send msgid "Sms send " -msgstr "" +msgstr "Mandar sms " #. module: auction #: view:auction.lots.auction.move:0 @@ -1351,7 +1352,7 @@ msgstr "Cambiar fecha subasta" #. module: auction #: field:auction.artists,birth_death_dates:0 msgid "Lifespan" -msgstr "" +msgstr "Período de vida" #. module: auction #: view:auction.deposit:0 @@ -1362,19 +1363,19 @@ msgstr "Método de retirada" #. module: auction #: view:auction.dates:0 msgid "Buyer Commissions" -msgstr "" +msgstr "Comisiones comprador" #. module: auction #: model:ir.actions.act_window,name:auction.action_report_auction #: model:ir.ui.menu,name:auction.menu_report_auction msgid "Auction Analysis" -msgstr "" +msgstr "Análisis subastas" #. module: auction #: code:addons/auction/wizard/auction_pay_buy.py:0 #, python-format msgid "Payment aborted !" -msgstr "" +msgstr "¡ Pago abortado !" #. module: auction #: field:auction.lot.history,price:0 @@ -1389,7 +1390,7 @@ msgstr "Inicio de la subasta" #. module: auction #: help:auction.pay.buy,statement_id3:0 msgid "Third Bank Statement For Buyer" -msgstr "" +msgstr "Tercer extracto bancario para el comprador" #. module: auction #: view:report.auction:0 @@ -1406,7 +1407,7 @@ msgstr "Estimación máxima:" #. module: auction #: view:auction.lots:0 msgid "Statistical" -msgstr "" +msgstr "Estadística" #. module: auction #: model:ir.model,name:auction.model_auction_deposit @@ -1416,17 +1417,17 @@ msgstr "" #. module: auction #: model:ir.actions.act_window,name:auction.action_report_object_encoded_tree msgid "Object statistics" -msgstr "" +msgstr "Estadísticas de objeto" #. module: auction #: help:auction.lots,net_margin:0 msgid "(Net Revenue * 100)/ Object Price" -msgstr "" +msgstr "(Ingreso neto * 100)/ Precio del objeto" #. module: auction #: model:ir.model,name:auction.model_auction_lot_history msgid "Lot History" -msgstr "" +msgstr "Historial de lote" #. module: auction #: view:auction.lots.make.invoice:0 @@ -1451,7 +1452,7 @@ msgstr "Lote" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction @@ -1462,12 +1463,12 @@ msgstr "subasta.artistas" #. module: auction #: field:report.auction,avg_price:0 msgid "Avg Price." -msgstr "" +msgstr "Precio prom." #. module: auction #: help:auction.pay.buy,statement_id2:0 msgid "Second Bank Statement For Buyer" -msgstr "" +msgstr "Segundo extracto bancario para el comprador" #. module: auction #: field:auction.dates,journal_id:0 @@ -1494,7 +1495,7 @@ msgstr "Activa" #. module: auction #: view:auction.dates:0 msgid "Exposition Dates" -msgstr "" +msgstr "Fechas exposición" #. module: auction #: model:account.tax,name:auction.auction_tax1 @@ -1536,7 +1537,7 @@ msgstr "Objetos por día" #. module: auction #: help:auction.dates,expo2:0 msgid "Last exposition date for auction" -msgstr "" +msgstr "Última fecha de exposición para la subasta" #. module: auction #: code:addons/auction/auction.py:0 @@ -1561,11 +1562,13 @@ msgid "" "Two different buyers for the same invoice !\n" "Please correct this problem before invoicing" msgstr "" +"Dos compradores diferentes para la misma factura !\n" +"Por favor, corrija este problema antes de facturar" #. module: auction #: view:auction.dates:0 msgid "Invoice" -msgstr "" +msgstr "Factura" #. module: auction #: field:auction.lots,vnd_lim:0 @@ -1580,12 +1583,12 @@ msgstr "Transferencia" #. module: auction #: view:auction.pay.buy:0 msgid "Line3" -msgstr "" +msgstr "Línea3" #. module: auction #: view:auction.pay.buy:0 msgid "Line2" -msgstr "" +msgstr "Línea2" #. module: auction #: help:auction.lots,obj_ret:0 @@ -1620,12 +1623,12 @@ msgstr "Producto" #. module: auction #: report:buyer.list:0 msgid ")" -msgstr "" +msgstr ")" #. module: auction #: view:auction.lots:0 msgid "Seller Information" -msgstr "" +msgstr "Información vendedor" #. module: auction #: view:auction.deposit:0 @@ -1639,7 +1642,7 @@ msgstr "Objetos" #. module: auction #: view:auction.dates:0 msgid "Seller Invoices" -msgstr "" +msgstr "Facturas vendedor" #. module: auction #: report:auction.total.rml:0 @@ -1654,7 +1657,7 @@ msgstr "Permitir importe negativo" #. module: auction #: help:auction.pay.buy,amount2:0 msgid "Amount For Second Bank Statement" -msgstr "" +msgstr "Importe para el segundo extracto bancario" #. module: auction #: field:auction.lot.history,auction_id:0 @@ -1666,7 +1669,7 @@ msgstr "Fecha subasta" #. module: auction #: view:auction.lots.sms.send:0 msgid "SMS Text" -msgstr "" +msgstr "Texto SMS" #. module: auction #: field:auction.dates,auction1:0 @@ -1676,7 +1679,7 @@ msgstr "Primer día subasta" #. module: auction #: view:auction.lots.make.invoice.buyer:0 msgid "Create Invoices For Buyer" -msgstr "" +msgstr "Crear facturas para el comprador" #. module: auction #: view:auction.dates:0 @@ -1692,12 +1695,12 @@ msgstr "Artistas" #. module: auction #: view:auction.pay.buy:0 msgid "Pay Objects" -msgstr "" +msgstr "Pagar objetos" #. module: auction #: help:auction.dates,expo1:0 msgid "Beginning exposition date for auction" -msgstr "" +msgstr "Fecha inicio exposición para la subasta" #. module: auction #: model:ir.actions.act_window,name:auction.act_auction_lot_line_open @@ -1712,7 +1715,7 @@ msgstr "" #. module: auction #: model:ir.model,name:auction.model_auction_lots_enable msgid "Lots Enable" -msgstr "" +msgstr "Activar lotes" #. module: auction #: view:auction.lots:0 @@ -1745,7 +1748,7 @@ msgstr "Extracto" #: help:auction.lots,seller_price:0 #: help:auction.lots.make.invoice,amount:0 msgid "Seller Price" -msgstr "" +msgstr "Precio vendedor" #. module: auction #: model:account.tax,name:auction.auction_tax20 @@ -1766,7 +1769,7 @@ msgstr "Derechos de autor" #. module: auction #: model:ir.model,name:auction.model_auction_lots_buyer_map msgid "Map Buyer" -msgstr "" +msgstr "Mapa comprador" #. module: auction #: field:report.auction.object.date,name:0 @@ -1791,7 +1794,7 @@ msgstr "Ingreso neto" #: code:addons/auction/wizard/auction_pay_buy.py:0 #, python-format msgid "Error!" -msgstr "" +msgstr "¡Error!" #. module: auction #: report:auction.total.rml:0 @@ -1801,7 +1804,7 @@ msgstr "Nº de artículos:" #. module: auction #: model:account.tax,name:auction.tax_buyer_author msgid "Author rights (4%)" -msgstr "" +msgstr "Derechos de autor (4%)" #. module: auction #: field:report.object.encoded,estimation:0 @@ -1830,7 +1833,7 @@ msgstr "" #. module: auction #: view:auction.taken:0 msgid "OK" -msgstr "" +msgstr "Aceptar" #. module: auction #: model:ir.actions.report.xml,name:auction.buyer_form_id @@ -1846,7 +1849,7 @@ msgstr "Nombre comprador" #: view:report.auction:0 #: field:report.auction,day:0 msgid "Day" -msgstr "" +msgstr "Día" #. module: auction #: model:ir.actions.act_window,name:auction.action_auction_lots_make_invoice @@ -1867,7 +1870,7 @@ msgstr "Cerrado" #. module: auction #: view:auction.dates:0 msgid "Search Next Auction Dates" -msgstr "" +msgstr "Buscar fechas siguiente subasta" #. module: auction #: view:auction.catalog.flagey:0 @@ -1897,12 +1900,12 @@ msgstr "" #. module: auction #: help:auction.lots,obj_price:0 msgid "Object Price" -msgstr "" +msgstr "Precio objeto" #. module: auction #: view:auction.bid:0 msgid "Bids Lines" -msgstr "" +msgstr "Líneas pujas" #. module: auction #: view:auction.lots:0 @@ -1912,7 +1915,7 @@ msgstr "Catálogo" #. module: auction #: help:auction.lots,auction_id:0 msgid "Auction for object" -msgstr "" +msgstr "Subasta para objeto" #. module: auction #: field:auction.deposit.cost,account:0 @@ -1934,7 +1937,7 @@ msgstr "" #. module: auction #: model:ir.model,name:auction.model_auction_pay_buy msgid "Pay buy" -msgstr "" +msgstr "Pagar compra" #. module: auction #: model:ir.ui.menu,name:auction.auction_outils_menu @@ -1969,7 +1972,7 @@ msgstr "Artista / Nombre autor" #. module: auction #: selection:report.auction,month:0 msgid "December" -msgstr "" +msgstr "Diciembre" #. module: auction #: field:auction.lots,image:0 @@ -1980,12 +1983,12 @@ msgstr "Imagen" #: help:auction.lots,buyer_price:0 #: help:auction.lots.make.invoice.buyer,amount:0 msgid "Buyer Price" -msgstr "" +msgstr "Precio comprador" #. module: auction #: model:ir.model,name:auction.model_auction_lot_category msgid "Auction Lots Category" -msgstr "" +msgstr "Categoría lotes subasta" #. module: auction #: model:account.tax.code,name:auction.account_tax_code_id2 @@ -1995,7 +1998,7 @@ msgstr "IVA 20%" #. module: auction #: model:ir.model,name:auction.model_auction_payer_sel msgid "Auction payment for seller" -msgstr "" +msgstr "Pago subasta para vendedor" #. module: auction #: view:auction.lots:0 @@ -2026,7 +2029,7 @@ msgstr "........." #. module: auction #: view:report.auction:0 msgid "Auction Summary tree view" -msgstr "" +msgstr "Vista resumen de subasta en árbol" #. module: auction #: report:report.auction.buyer.result:0 @@ -2042,7 +2045,7 @@ msgstr "Fechas subasta" #. module: auction #: model:ir.ui.menu,name:auction.menu_board_auction_open msgid "Auction DashBoard" -msgstr "" +msgstr "Panel de mandos de subasta" #. module: auction #: view:report.auction:0 @@ -2056,7 +2059,7 @@ msgstr "Usuario" #. module: auction #: view:auction.pay.buy:0 msgid "Payment Lines" -msgstr "" +msgstr "Líneas de pago" #. module: auction #: code:addons/auction/auction.py:0 @@ -2067,12 +2070,12 @@ msgstr "¡Falta dirección!" #. module: auction #: help:auction.lots,net_revenue:0 msgid "Buyer Price - Seller Price - Indirect Cost" -msgstr "" +msgstr "Precio comprador - Precio vendedor - Coste indirecto" #. module: auction #: model:ir.actions.act_window,name:auction.act_auction_lot_open_bid msgid "Open Bids" -msgstr "" +msgstr "Pujas abiertas" #. module: auction #: field:auction.artists,pseudo:0 @@ -2129,7 +2132,7 @@ msgstr "Totales subasta con listas" #. module: auction #: view:auction.deposit:0 msgid "General Information" -msgstr "" +msgstr "Información general" #. module: auction #: view:auction.lots.auction.move:0 @@ -2149,7 +2152,7 @@ msgstr "Objeto codificado" #. module: auction #: view:auction.bid:0 msgid "Search Auction Bid" -msgstr "" +msgstr "Buscar puja subasta" #. module: auction #: report:bids.phones.details:0 @@ -2159,7 +2162,7 @@ msgstr "Est" #. module: auction #: view:auction.dates:0 msgid "Seller Commissions" -msgstr "" +msgstr "Comisiones vendedor" #. module: auction #: view:report.object.encoded:0 @@ -2169,7 +2172,7 @@ msgstr "Estadística objeto" #. module: auction #: help:auction.dates,journal_seller_id:0 msgid "Account journal for seller" -msgstr "" +msgstr "Diario contable para vendedor" #. module: auction #: field:auction.dates,auction2:0 @@ -2179,7 +2182,7 @@ msgstr "Último día de subasta" #. module: auction #: view:auction.deposit:0 msgid "Objects Description" -msgstr "" +msgstr "Descripción de objetos" #. module: auction #: code:addons/auction/wizard/auction_pay_buy.py:0 @@ -2197,7 +2200,7 @@ msgstr "Descripción" #. module: auction #: selection:report.auction,month:0 msgid "May" -msgstr "" +msgstr "Mayo" #. module: auction #: field:auction.lots,obj_price:0 @@ -2217,12 +2220,12 @@ msgstr "Contraseña" #. module: auction #: selection:report.auction,month:0 msgid "February" -msgstr "" +msgstr "Febrero" #. module: auction #: selection:report.auction,month:0 msgid "April" -msgstr "" +msgstr "Abril" #. module: auction #: view:auction.pay.buy:0 diff --git a/addons/auction/i18n/es_AR.po b/addons/auction/i18n/es_AR.po old mode 100644 new mode 100755 index 8947d0fce92..6c8c55fcff8 --- a/addons/auction/i18n/es_AR.po +++ b/addons/auction/i18n/es_AR.po @@ -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:37+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "Lote" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/es_EC.po b/addons/auction/i18n/es_EC.po old mode 100644 new mode 100755 index 18e07fab82b..a03504d67e6 --- a/addons/auction/i18n/es_EC.po +++ b/addons/auction/i18n/es_EC.po @@ -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:37+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1451,7 +1451,7 @@ msgstr "Lote" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/et.po b/addons/auction/i18n/et.po old mode 100644 new mode 100755 index 626a0d1b489..ce5dee2d53a --- a/addons/auction/i18n/et.po +++ b/addons/auction/i18n/et.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "Partii" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/fi.po b/addons/auction/i18n/fi.po old mode 100644 new mode 100755 index 95120d82095..09963892cf4 --- a/addons/auction/i18n/fi.po +++ b/addons/auction/i18n/fi.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1451,7 +1451,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/fr.po b/addons/auction/i18n/fr.po old mode 100644 new mode 100755 index 85cab263117..df6df8fc58a --- a/addons/auction/i18n/fr.po +++ b/addons/auction/i18n/fr.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1463,8 +1463,8 @@ msgstr "Lot" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" -msgstr "Sous-categorie aie" +msgid "children aie category" +msgstr "" #. module: auction #: model:ir.model,name:auction.model_auction_artists @@ -2800,3 +2800,6 @@ msgstr "Historique de la vente" #~ msgid "My Latest Objects" #~ msgstr "Mes Derniers Objets" + +#~ msgid "Childs aie category" +#~ msgstr "Sous-categorie aie" diff --git a/addons/auction/i18n/hi.po b/addons/auction/i18n/hi.po old mode 100644 new mode 100755 index 6b0e6074df0..6bda3bdb87f --- a/addons/auction/i18n/hi.po +++ b/addons/auction/i18n/hi.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1451,7 +1451,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/hr.po b/addons/auction/i18n/hr.po old mode 100644 new mode 100755 index 19e144800b7..d7e4bfa425e --- a/addons/auction/i18n/hr.po +++ b/addons/auction/i18n/hr.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "Lot" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/hu.po b/addons/auction/i18n/hu.po old mode 100644 new mode 100755 index 9f67c1054d8..2dd5dc150d1 --- a/addons/auction/i18n/hu.po +++ b/addons/auction/i18n/hu.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/id.po b/addons/auction/i18n/id.po old mode 100644 new mode 100755 index 2316fe3ffcc..9536405ded7 --- a/addons/auction/i18n/id.po +++ b/addons/auction/i18n/id.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/it.po b/addons/auction/i18n/it.po old mode 100644 new mode 100755 index 98c49d8d00b..9b9679534c1 --- a/addons/auction/i18n/it.po +++ b/addons/auction/i18n/it.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/ko.po b/addons/auction/i18n/ko.po old mode 100644 new mode 100755 index af038719d5e..b291af1984b --- a/addons/auction/i18n/ko.po +++ b/addons/auction/i18n/ko.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1451,7 +1451,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/lt.po b/addons/auction/i18n/lt.po old mode 100644 new mode 100755 index dd9a50c8505..4fdd44bebd2 --- a/addons/auction/i18n/lt.po +++ b/addons/auction/i18n/lt.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/nl.po b/addons/auction/i18n/nl.po old mode 100644 new mode 100755 index 3eb1e3a63c8..a57a1db3fb5 --- a/addons/auction/i18n/nl.po +++ b/addons/auction/i18n/nl.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/nl_BE.po b/addons/auction/i18n/nl_BE.po old mode 100644 new mode 100755 index 2bbec55a059..90fe294435b --- a/addons/auction/i18n/nl_BE.po +++ b/addons/auction/i18n/nl_BE.po @@ -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:37+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/pl.po b/addons/auction/i18n/pl.po old mode 100644 new mode 100755 index ced65283c18..935dadf5510 --- a/addons/auction/i18n/pl.po +++ b/addons/auction/i18n/pl.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/pt.po b/addons/auction/i18n/pt.po old mode 100644 new mode 100755 index ade7e1b1f66..63233d62152 --- a/addons/auction/i18n/pt.po +++ b/addons/auction/i18n/pt.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1452,7 +1452,7 @@ msgstr "Lote" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/pt_BR.po b/addons/auction/i18n/pt_BR.po old mode 100644 new mode 100755 index 6829c6e3e57..e3c543a9f53 --- a/addons/auction/i18n/pt_BR.po +++ b/addons/auction/i18n/pt_BR.po @@ -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:37+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/ro.po b/addons/auction/i18n/ro.po old mode 100644 new mode 100755 index a1996caab31..243b7bad4ab --- a/addons/auction/i18n/ro.po +++ b/addons/auction/i18n/ro.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "Lot" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/ru.po b/addons/auction/i18n/ru.po old mode 100644 new mode 100755 index 3bdc3f0bbdb..e7885dea7a2 --- a/addons/auction/i18n/ru.po +++ b/addons/auction/i18n/ru.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "Лот" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/sl.po b/addons/auction/i18n/sl.po old mode 100644 new mode 100755 index a1459c7aa6a..a63c4db0aab --- a/addons/auction/i18n/sl.po +++ b/addons/auction/i18n/sl.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/sq.po b/addons/auction/i18n/sq.po old mode 100644 new mode 100755 index 694e708093b..d3e9b7e8083 --- a/addons/auction/i18n/sq.po +++ b/addons/auction/i18n/sq.po @@ -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:35+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1451,7 +1451,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/sr.po b/addons/auction/i18n/sr.po old mode 100644 new mode 100755 index d0153cc8300..d40ed52b173 --- a/addons/auction/i18n/sr.po +++ b/addons/auction/i18n/sr.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1454,7 +1454,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/sr@latin.po b/addons/auction/i18n/sr@latin.po old mode 100644 new mode 100755 index 3a72a5ba49f..277908ff7ee --- a/addons/auction/i18n/sr@latin.po +++ b/addons/auction/i18n/sr@latin.po @@ -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:37+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1454,7 +1454,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/sv.po b/addons/auction/i18n/sv.po old mode 100644 new mode 100755 index 6d71af4e261..a0458a99d1a --- a/addons/auction/i18n/sv.po +++ b/addons/auction/i18n/sv.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/tlh.po b/addons/auction/i18n/tlh.po old mode 100644 new mode 100755 index aeddac9d2be..c9016eeff63 --- a/addons/auction/i18n/tlh.po +++ b/addons/auction/i18n/tlh.po @@ -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:36+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/tr.po b/addons/auction/i18n/tr.po old mode 100644 new mode 100755 index 620da9af390..f07c6534d31 --- a/addons/auction/i18n/tr.po +++ b/addons/auction/i18n/tr.po @@ -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:37+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/uk.po b/addons/auction/i18n/uk.po old mode 100644 new mode 100755 index 891737c3007..ad76cb7d132 --- a/addons/auction/i18n/uk.po +++ b/addons/auction/i18n/uk.po @@ -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:37+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/vi.po b/addons/auction/i18n/vi.po old mode 100644 new mode 100755 index 23a552be1e9..dba29659e88 --- a/addons/auction/i18n/vi.po +++ b/addons/auction/i18n/vi.po @@ -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:37+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1451,7 +1451,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/zh_CN.po b/addons/auction/i18n/zh_CN.po old mode 100644 new mode 100755 index d3980519fda..2fe5e5f895f --- a/addons/auction/i18n/zh_CN.po +++ b/addons/auction/i18n/zh_CN.po @@ -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:37+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "批号" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/i18n/zh_TW.po b/addons/auction/i18n/zh_TW.po old mode 100644 new mode 100755 index fe594967bae..cb052fdbceb --- a/addons/auction/i18n/zh_TW.po +++ b/addons/auction/i18n/zh_TW.po @@ -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:37+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: auction @@ -1450,7 +1450,7 @@ msgstr "" #. module: auction #: help:aie.category,child_ids:0 -msgid "Childs aie category" +msgid "children aie category" msgstr "" #. module: auction diff --git a/addons/auction/report/__init__.py b/addons/auction/report/__init__.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/ach_bordereau.xml b/addons/auction/report/ach_bordereau.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/ach_bordereau.xsl b/addons/auction/report/ach_bordereau.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/ach_bordereau_photo.xml b/addons/auction/report/ach_bordereau_photo.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/ach_bordereau_photo.xsl b/addons/auction/report/ach_bordereau_photo.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/artists.xml b/addons/auction/report/artists.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/artists.xsl b/addons/auction/report/artists.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/artists_lots.py b/addons/auction/report/artists_lots.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_artists.py b/addons/auction/report/auction_artists.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_artists.rml b/addons/auction/report/auction_artists.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_bids.py b/addons/auction/report/auction_bids.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_bids.rml b/addons/auction/report/auction_bids.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_buyer_result.py b/addons/auction/report/auction_buyer_result.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_buyer_result.rml b/addons/auction/report/auction_buyer_result.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_catelog.py b/addons/auction/report/auction_catelog.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_catelog.rml b/addons/auction/report/auction_catelog.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_invoice.py b/addons/auction/report/auction_invoice.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_objects.py b/addons/auction/report/auction_objects.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_objects.rml b/addons/auction/report/auction_objects.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_result.py b/addons/auction/report/auction_result.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_result.rml b/addons/auction/report/auction_result.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_total.rml b/addons/auction/report/auction_total.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_total_rml.py b/addons/auction/report/auction_total_rml.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/auction_total_rml.rml b/addons/auction/report/auction_total_rml.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/bids.xml b/addons/auction/report/bids.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/bids.xsl b/addons/auction/report/bids.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/bids_lots.py b/addons/auction/report/bids_lots.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/bids_lots.rml b/addons/auction/report/bids_lots.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/bids_phones_details.py b/addons/auction/report/bids_phones_details.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/bids_phones_details.rml b/addons/auction/report/bids_phones_details.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/buyer_form_report.py b/addons/auction/report/buyer_form_report.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/buyer_form_report.rml b/addons/auction/report/buyer_form_report.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/buyer_list.py b/addons/auction/report/buyer_list.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/buyer_list.rml b/addons/auction/report/buyer_list.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/buyer_list.xml b/addons/auction/report/buyer_list.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/buyer_list.xsl b/addons/auction/report/buyer_list.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/catalog.xml b/addons/auction/report/catalog.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/catalog.xsl b/addons/auction/report/catalog.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/catalog2.py b/addons/auction/report/catalog2.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/catelogwithpictures.py b/addons/auction/report/catelogwithpictures.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/catelogwithpictures.rml b/addons/auction/report/catelogwithpictures.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/content.xml b/addons/auction/report/content.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/corporate_defaults.xsl b/addons/auction/report/corporate_defaults.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/deposit.xml b/addons/auction/report/deposit.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/deposit.xsl b/addons/auction/report/deposit.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/deposit_seller.py b/addons/auction/report/deposit_seller.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/deposit_seller.rml b/addons/auction/report/deposit_seller.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/huissier.py b/addons/auction/report/huissier.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/huissier.xsl b/addons/auction/report/huissier.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_bids_phone.xml b/addons/auction/report/lots_bids_phone.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_bids_phone.xsl b/addons/auction/report/lots_bids_phone.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_bids_phone2.xml b/addons/auction/report/lots_bids_phone2.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_bids_phone2.xsl b/addons/auction/report/lots_bids_phone2.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_deposit.xml b/addons/auction/report/lots_deposit.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_deposit.xsl b/addons/auction/report/lots_deposit.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_list.py b/addons/auction/report/lots_list.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_list.rml b/addons/auction/report/lots_list.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_list.xml b/addons/auction/report/lots_list.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_list.xsl b/addons/auction/report/lots_list.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_list_inv.xml b/addons/auction/report/lots_list_inv.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_list_inv.xsl b/addons/auction/report/lots_list_inv.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_list_inventory.py b/addons/auction/report/lots_list_inventory.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_list_inventory.rml b/addons/auction/report/lots_list_inventory.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_list_landscape.py b/addons/auction/report/lots_list_landscape.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_list_landscape.rml b/addons/auction/report/lots_list_landscape.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_list_landscape.xml b/addons/auction/report/lots_list_landscape.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_list_landscape.xsl b/addons/auction/report/lots_list_landscape.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_with_vat.xml b/addons/auction/report/lots_with_vat.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/lots_with_vat.xsl b/addons/auction/report/lots_with_vat.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/photo_shadow.py b/addons/auction/report/photo_shadow.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/report_auction.py b/addons/auction/report/report_auction.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/report_auction_view.xml b/addons/auction/report/report_auction_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/report_lot_bar_code.py b/addons/auction/report/report_lot_bar_code.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/report_lot_bar_code.rml b/addons/auction/report/report_lot_bar_code.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/results.xml b/addons/auction/report/results.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/results.xsl b/addons/auction/report/results.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/results_buyer.xml b/addons/auction/report/results_buyer.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/results_buyer.xsl b/addons/auction/report/results_buyer.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/rml_template.xsl b/addons/auction/report/rml_template.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/seller_address.py b/addons/auction/report/seller_address.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/seller_form_report.py b/addons/auction/report/seller_form_report.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/seller_form_report.rml b/addons/auction/report/seller_form_report.rml old mode 100644 new mode 100755 diff --git a/addons/auction/report/seller_list.xml b/addons/auction/report/seller_list.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/seller_list.xsl b/addons/auction/report/seller_list.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/total.py b/addons/auction/report/total.py old mode 100644 new mode 100755 diff --git a/addons/auction/report/total.xsl b/addons/auction/report/total.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/report/vnd_bordereau.xml b/addons/auction/report/vnd_bordereau.xml old mode 100644 new mode 100755 diff --git a/addons/auction/report/vnd_bordereau.xsl b/addons/auction/report/vnd_bordereau.xsl old mode 100644 new mode 100755 diff --git a/addons/auction/security/auction_security.xml b/addons/auction/security/auction_security.xml old mode 100644 new mode 100755 diff --git a/addons/auction/security/ir.model.access.csv b/addons/auction/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/auction/test/auction.yml b/addons/auction/test/auction.yml old mode 100644 new mode 100755 diff --git a/addons/auction/test/auction_report.yml b/addons/auction/test/auction_report.yml old mode 100644 new mode 100755 diff --git a/addons/auction/test/auction_wizard.yml b/addons/auction/test/auction_wizard.yml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/__init__.py b/addons/auction/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_aie_send.py b/addons/auction/wizard/auction_aie_send.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_aie_send_result.py b/addons/auction/wizard/auction_aie_send_result.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_aie_send_result_view.xml b/addons/auction/wizard/auction_aie_send_result_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_aie_send_view.xml b/addons/auction/wizard/auction_aie_send_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_catalog_flagey_report.py b/addons/auction/wizard/auction_catalog_flagey_report.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_catalog_flagey_view.xml b/addons/auction/wizard/auction_catalog_flagey_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_able.py b/addons/auction/wizard/auction_lots_able.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_able_view.xml b/addons/auction/wizard/auction_lots_able_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_auction_move.py b/addons/auction/wizard/auction_lots_auction_move.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_auction_move_view.xml b/addons/auction/wizard/auction_lots_auction_move_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_buyer_map.py b/addons/auction/wizard/auction_lots_buyer_map.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_buyer_map_view.xml b/addons/auction/wizard/auction_lots_buyer_map_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_cancel.py b/addons/auction/wizard/auction_lots_cancel.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_cancel_view.xml b/addons/auction/wizard/auction_lots_cancel_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_enable.py b/addons/auction/wizard/auction_lots_enable.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_enable_view.xml b/addons/auction/wizard/auction_lots_enable_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_invoice.py b/addons/auction/wizard/auction_lots_invoice.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_invoice_view.xml b/addons/auction/wizard/auction_lots_invoice_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_make_invoice.py b/addons/auction/wizard/auction_lots_make_invoice.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_make_invoice_buyer.py b/addons/auction/wizard/auction_lots_make_invoice_buyer.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_make_invoice_buyer_view.xml b/addons/auction/wizard/auction_lots_make_invoice_buyer_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_make_invoice_view.xml b/addons/auction/wizard/auction_lots_make_invoice_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_numerotate.py b/addons/auction/wizard/auction_lots_numerotate.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_numerotate_view.xml b/addons/auction/wizard/auction_lots_numerotate_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_sms_send.py b/addons/auction/wizard/auction_lots_sms_send.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_lots_sms_send_view.xml b/addons/auction/wizard/auction_lots_sms_send_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_pay_buy.py b/addons/auction/wizard/auction_pay_buy.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_pay_buy_view.xml b/addons/auction/wizard/auction_pay_buy_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_pay_sel.py b/addons/auction/wizard/auction_pay_sel.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_pay_sel_view.xml b/addons/auction/wizard/auction_pay_sel_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_payer_sel.py b/addons/auction/wizard/auction_payer_sel.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_payer_sel_view.xml b/addons/auction/wizard/auction_payer_sel_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_taken.py b/addons/auction/wizard/auction_taken.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_taken_view.xml b/addons/auction/wizard/auction_taken_view.xml old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_transfer_unsold_object.py b/addons/auction/wizard/auction_transfer_unsold_object.py old mode 100644 new mode 100755 diff --git a/addons/auction/wizard/auction_transfer_unsold_object_view.xml b/addons/auction/wizard/auction_transfer_unsold_object_view.xml old mode 100644 new mode 100755 diff --git a/addons/audittrail/__init__.py b/addons/audittrail/__init__.py old mode 100644 new mode 100755 diff --git a/addons/audittrail/__openerp__.py b/addons/audittrail/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/audittrail/audittrail.py b/addons/audittrail/audittrail.py old mode 100644 new mode 100755 diff --git a/addons/audittrail/audittrail_demo.xml b/addons/audittrail/audittrail_demo.xml old mode 100644 new mode 100755 diff --git a/addons/audittrail/audittrail_view.xml b/addons/audittrail/audittrail_view.xml old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/ar.po b/addons/audittrail/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/audittrail.pot b/addons/audittrail/i18n/audittrail.pot old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/bg.po b/addons/audittrail/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/bs.po b/addons/audittrail/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/ca.po b/addons/audittrail/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/cs.po b/addons/audittrail/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/de.po b/addons/audittrail/i18n/de.po old mode 100644 new mode 100755 index 44fe5a30527..aba0421531e --- a/addons/audittrail/i18n/de.po +++ b/addons/audittrail/i18n/de.po @@ -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-27 09:26+0000\n" +"PO-Revision-Date: 2010-12-28 09:06+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \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:42+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/el.po b/addons/audittrail/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/es.po b/addons/audittrail/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/es_AR.po b/addons/audittrail/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/es_EC.po b/addons/audittrail/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/et.po b/addons/audittrail/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/fr.po b/addons/audittrail/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/hr.po b/addons/audittrail/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/hu.po b/addons/audittrail/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/id.po b/addons/audittrail/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/it.po b/addons/audittrail/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/ko.po b/addons/audittrail/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/lt.po b/addons/audittrail/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/mn.po b/addons/audittrail/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/nl.po b/addons/audittrail/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/nl_BE.po b/addons/audittrail/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/oc.po b/addons/audittrail/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/pl.po b/addons/audittrail/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/pt.po b/addons/audittrail/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/pt_BR.po b/addons/audittrail/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/ro.po b/addons/audittrail/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/ru.po b/addons/audittrail/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/sl.po b/addons/audittrail/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/sq.po b/addons/audittrail/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/sr@latin.po b/addons/audittrail/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/sv.po b/addons/audittrail/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/tlh.po b/addons/audittrail/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/tr.po b/addons/audittrail/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/uk.po b/addons/audittrail/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/vi.po b/addons/audittrail/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/zh_CN.po b/addons/audittrail/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/i18n/zh_TW.po b/addons/audittrail/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/audittrail/security/audittrail_security.xml b/addons/audittrail/security/audittrail_security.xml old mode 100644 new mode 100755 diff --git a/addons/audittrail/security/ir.model.access.csv b/addons/audittrail/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/audittrail/wizard/__init__.py b/addons/audittrail/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/audittrail/wizard/audittrail_view_log.py b/addons/audittrail/wizard/audittrail_view_log.py old mode 100644 new mode 100755 diff --git a/addons/audittrail/wizard/audittrail_view_log_view.xml b/addons/audittrail/wizard/audittrail_view_log_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/__init__.py b/addons/base_action_rule/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/__openerp__.py b/addons/base_action_rule/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/base_action_rule.py b/addons/base_action_rule/base_action_rule.py old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/base_action_rule_data.xml b/addons/base_action_rule/base_action_rule_data.xml old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/base_action_rule_view.xml b/addons/base_action_rule/base_action_rule_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/base_action_rule.pot b/addons/base_action_rule/i18n/base_action_rule.pot old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/bs.po b/addons/base_action_rule/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/de.po b/addons/base_action_rule/i18n/de.po old mode 100644 new mode 100755 index 34566d51596..4a63d9ac84c --- a/addons/base_action_rule/i18n/de.po +++ b/addons/base_action_rule/i18n/de.po @@ -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-27 09:26+0000\n" +"PO-Revision-Date: 2010-12-28 09:17+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \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:43+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/el.po b/addons/base_action_rule/i18n/el.po new file mode 100755 index 00000000000..f5e9694dbb3 --- /dev/null +++ b/addons/base_action_rule/i18n/el.po @@ -0,0 +1,498 @@ +# Greek translation for openobject-addons +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"PO-Revision-Date: 2010-12-28 18:21+0000\n" +"Last-Translator: Dimitris Andavoglou \n" +"Language-Team: Greek \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-29 04:58+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: base_action_rule +#: help:base.action.rule,act_mail_to_user:0 +msgid "" +"Check this if you want the rule to send an email to the responsible person." +msgstr "" +"Τσέκαε αυτό εάν θέλετε αυτός ο κανόνας να στέλνει email στον/στην υπεύθυνο." + +#. module: base_action_rule +#: field:base.action.rule,act_remind_partner:0 +msgid "Remind Partner" +msgstr "Υπενθύμιση Συνεργάτη" + +#. module: base_action_rule +#: field:base.action.rule,trg_partner_categ_id:0 +msgid "Partner Category" +msgstr "Κατηγορία Συνεργάτη" + +#. module: base_action_rule +#: field:base.action.rule,act_mail_to_watchers:0 +msgid "Mail to Watchers (CC)" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,trg_state_to:0 +msgid "Button Pressed" +msgstr "Το Κουμπί Πατήθηκε" + +#. module: base_action_rule +#: field:base.action.rule,model_id:0 +msgid "Object" +msgstr "Αντικείμενο" + +#. module: base_action_rule +#: field:base.action.rule,act_mail_to_email:0 +msgid "Mail to these Emails" +msgstr "Αποστολή σε αυτά τα Emails" + +#. module: base_action_rule +#: field:base.action.rule,act_state:0 +msgid "Set State to" +msgstr "Θέσε την κατάσταση σε" + +#. module: base_action_rule +#: field:base.action.rule,act_email_from:0 +msgid "Email From" +msgstr "Email Από" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Email Body" +msgstr "Σώμα Email" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Days" +msgstr "Ημέρες" + +#. module: base_action_rule +#: code:addons/base_action_rule/base_action_rule.py:0 +#, python-format +msgid "Error!" +msgstr "Σφάλμα!" + +#. module: base_action_rule +#: field:base.action.rule,act_reply_to:0 +msgid "Reply-To" +msgstr "Απάντηση-Σε" + +#. module: base_action_rule +#: help:base.action.rule,act_email_cc:0 +msgid "" +"These people will receive a copy of the future communication between partner " +"and users by email" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Minutes" +msgstr "Λεπτά" + +#. module: base_action_rule +#: field:base.action.rule,name:0 +msgid "Rule Name" +msgstr "Όνομα Κανόνα" + +#. module: base_action_rule +#: help:base.action.rule,act_remind_partner:0 +msgid "" +"Check this if you want the rule to send a reminder by email to the partner." +msgstr "" + +#. module: base_action_rule +#: model:ir.actions.act_window,help:base_action_rule.base_action_rule_act +msgid "" +"Create actions automatically triggered based on a user activity in the " +"system.E.g.: an opportunity created by a specific user can be automatically " +"maintained with a specific sales team, or an opportunity which still has " +"status pending after 14 days triggers an automatic reminder email." +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Conditions on Model Partner" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_type:0 +msgid "Deadline" +msgstr "Προσθεσμία" + +#. module: base_action_rule +#: field:base.action.rule,trg_partner_id:0 +msgid "Partner" +msgstr "Συνεργάτης" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "%(object_subject)s = Object subject" +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Email Reminders" +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Special Keywords to Be Used in The Body" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,trg_state_from:0 +msgid "State" +msgstr "Κατάσταση" + +#. module: base_action_rule +#: help:base.action.rule,act_mail_to_email:0 +msgid "Email-id of the persons whom mail is to be sent" +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +#: model:ir.module.module,shortdesc:base_action_rule.module_meta_information +msgid "Action Rule" +msgstr "Κανόνας Ενέργειας" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Fields to Change" +msgstr "Πεδία προς Αλλαγή" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_type:0 +msgid "Creation Date" +msgstr "Ημερομηνία Δημιουργίας" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_type:0 +msgid "Last Action Date" +msgstr "Τελευταία Ημερομηνία Ενέργειας" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Hours" +msgstr "Ώρες" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "%(object_id)s = Object ID" +msgstr "%(object_id)s = Object ID" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Delay After Trigger Date" +msgstr "Καθυστέρηση Μετά την Ημερομηνία Εναύσματος" + +#. module: base_action_rule +#: field:base.action.rule,act_remind_attach:0 +msgid "Remind with Attachment" +msgstr "Υπενθύμιση με Συννημένο" + +#. module: base_action_rule +#: constraint:ir.cron:0 +msgid "Invalid arguments" +msgstr "Μη έγκυρες παράμετροι" + +#. module: base_action_rule +#: field:base.action.rule,act_user_id:0 +msgid "Set Responsible to" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_type:0 +msgid "None" +msgstr "Κανένας" + +#. module: base_action_rule +#: help:base.action.rule,act_email_to:0 +msgid "" +"Use a python expression to specify the right field on which one than we will " +"use for the 'To' field of the header" +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "%(object_user_phone)s = Responsible phone" +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "" +"The rule uses the AND operator. The model must match all non-empty fields so " +"that the rule executes the action described in the 'Actions' tab." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,trg_date_range_type:0 +msgid "Delay type" +msgstr "Τύπος καθυστέρησης" + +#. module: base_action_rule +#: help:base.action.rule,regex_name:0 +msgid "" +"Regular expression for matching name of the resource\n" +"e.g.: 'urgent.*' will search for records having name starting with the " +"string 'urgent'\n" +"Note: This is case sensitive search." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,act_method:0 +msgid "Call Object Method" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,act_email_to:0 +msgid "Email To" +msgstr "Email Σε" + +#. module: base_action_rule +#: help:base.action.rule,act_mail_to_watchers:0 +msgid "" +"Check this if you want the rule to mark CC(mail to any other person defined " +"in actions)." +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "%(partner)s = Partner name" +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Note" +msgstr "Σημείωση" + +#. module: base_action_rule +#: help:base.action.rule,act_email_from:0 +msgid "" +"Use a python expression to specify the right field on which one than we will " +"use for the 'From' field of the header" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,trg_date_range:0 +msgid "Delay after trigger date" +msgstr "Καθυστέρηση μετά την ημερομηνίας εναύσματος" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Conditions" +msgstr "Συνθήκες" + +#. module: base_action_rule +#: help:base.action.rule,trg_date_range:0 +msgid "" +"Delay After Trigger Date,specifies you can put a negative number. If you " +"need a delay before the trigger date, like sending a reminder 15 minutes " +"before a meeting." +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,active:0 +msgid "Active" +msgstr "Ενεργό" + +#. module: base_action_rule +#: code:addons/base_action_rule/base_action_rule.py:0 +#, python-format +msgid "No E-Mail ID Found for your Company address!" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,act_remind_user:0 +msgid "Remind Responsible" +msgstr "" + +#. module: base_action_rule +#: model:ir.module.module,description:base_action_rule.module_meta_information +msgid "This module allows to implement action rules for any object." +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,sequence:0 +msgid "Gives the sequence order when displaying a list of rules." +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Months" +msgstr "Μήνες" + +#. module: base_action_rule +#: field:base.action.rule,filter_id:0 +msgid "Filter" +msgstr "Φίλτρο" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_type:0 +msgid "Date" +msgstr "Ημερομηνία" + +#. module: base_action_rule +#: help:base.action.rule,server_action_id:0 +msgid "" +"Describes the action name.\n" +"eg:on which object which action to be taken on basis of which condition" +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_ir_cron +msgid "ir.cron" +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "%(object_description)s = Object description" +msgstr "" + +#. module: base_action_rule +#: constraint:base.action.rule:0 +msgid "Error: The mail is not well formated" +msgstr "Σφάλμα:Το email δεν είναι σωστά διαμορφωμένο" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Email Actions" +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Email Information" +msgstr "" + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule +msgid "Action Rules" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,act_mail_body:0 +msgid "Content of mail" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,trg_user_id:0 +msgid "Responsible" +msgstr "Υπεύθυνος" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "%(partner_email)s = Partner Email" +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "%(object_date)s = Creation date" +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "%(object_user_email)s = Responsible Email" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,act_mail_body:0 +msgid "Mail body" +msgstr "Σώμα Mail" + +#. module: base_action_rule +#: help:base.action.rule,act_remind_user:0 +msgid "" +"Check this if you want the rule to send a reminder by email to the user." +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Server Action to be Triggered" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,act_mail_to_user:0 +msgid "Mail to Responsible" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,act_email_cc:0 +msgid "Add Watchers (Cc)" +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Conditions on Model Fields" +msgstr "" + +#. module: base_action_rule +#: model:ir.actions.act_window,name:base_action_rule.base_action_rule_act +#: model:ir.ui.menu,name:base_action_rule.menu_base_action_rule_form +msgid "Automated Actions" +msgstr "Αυτοματοποιημένες ενέργειες" + +#. module: base_action_rule +#: field:base.action.rule,server_action_id:0 +msgid "Server Action" +msgstr "Ενέργεια Διακομιστή" + +#. module: base_action_rule +#: field:base.action.rule,regex_name:0 +msgid "Regex on Resource Name" +msgstr "" + +#. module: base_action_rule +#: help:base.action.rule,act_remind_attach:0 +msgid "" +"Check this if you want that all documents attached to the object be attached " +"to the reminder email sent." +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Conditions on Timing" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,sequence:0 +msgid "Sequence" +msgstr "Ακολουθία" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Actions" +msgstr "Ενέργειες" + +#. module: base_action_rule +#: help:base.action.rule,active:0 +msgid "" +"If the active field is set to False, it will allow you to hide the rule " +"without removing it." +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "%(object_user)s = Responsible name" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,create_date:0 +msgid "Create Date" +msgstr "Ημερομηνία Δημιουργίας" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Conditions on States" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,trg_date_type:0 +msgid "Trigger Date" +msgstr "Ημερομηνία Εναύσματος" diff --git a/addons/base_action_rule/i18n/en_US.po b/addons/base_action_rule/i18n/en_US.po old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/es.po b/addons/base_action_rule/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/fr.po b/addons/base_action_rule/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/hu.po b/addons/base_action_rule/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/it.po b/addons/base_action_rule/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/lv.po b/addons/base_action_rule/i18n/lv.po old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/mn.po b/addons/base_action_rule/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/nl.po b/addons/base_action_rule/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/pt.po b/addons/base_action_rule/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/ru.po b/addons/base_action_rule/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/sr.po b/addons/base_action_rule/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/sr@latin.po b/addons/base_action_rule/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/sv.po b/addons/base_action_rule/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/i18n/zh_CN.po b/addons/base_action_rule/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/base_action_rule/security/ir.model.access.csv b/addons/base_action_rule/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/base_calendar/__init__.py b/addons/base_calendar/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_calendar/__openerp__.py b/addons/base_calendar/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/base_calendar/base_calendar.py b/addons/base_calendar/base_calendar.py old mode 100644 new mode 100755 diff --git a/addons/base_calendar/base_calendar_data.xml b/addons/base_calendar/base_calendar_data.xml old mode 100644 new mode 100755 diff --git a/addons/base_calendar/base_calendar_view.xml b/addons/base_calendar/base_calendar_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_calendar/i18n/base_calendar.pot b/addons/base_calendar/i18n/base_calendar.pot old mode 100644 new mode 100755 diff --git a/addons/base_calendar/i18n/bs.po b/addons/base_calendar/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/base_calendar/i18n/de.po b/addons/base_calendar/i18n/de.po old mode 100644 new mode 100755 index 1c312f301a3..1b8dcf12e83 --- a/addons/base_calendar/i18n/de.po +++ b/addons/base_calendar/i18n/de.po @@ -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-27 09:29+0000\n" +"PO-Revision-Date: 2010-12-28 07:56+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \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:43+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/el.po b/addons/base_calendar/i18n/el.po old mode 100644 new mode 100755 index ac030965910..d0c450a2d71 --- a/addons/base_calendar/i18n/el.po +++ b/addons/base_calendar/i18n/el.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-16 17:59+0000\n" +"PO-Revision-Date: 2010-12-28 18:15+0000\n" "Last-Translator: Dimitris Andavoglou \n" "Language-Team: Greek \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:56+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_calendar @@ -70,7 +70,7 @@ msgstr "Προσκαλούμενος Χρήστης" #. module: base_calendar #: view:base.calendar.set.exrule:0 msgid "Select range to Exclude" -msgstr "" +msgstr "Επιλογή εύρους για Εξαίρεση" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view @@ -189,7 +189,7 @@ msgstr "" #. module: base_calendar #: field:calendar.alarm,alarm_id:0 msgid "Basic Alarm" -msgstr "" +msgstr "Βασική Υπενθύμιση" #. module: base_calendar #: help:calendar.attendee,delegated_to:0 @@ -609,7 +609,7 @@ msgstr "Ημερήσια" #: code:addons/base_calendar/base_calendar.py:0 #, python-format msgid "Can not Duplicate" -msgstr "" +msgstr "Δεν μπορεί να Διπλοκαταχωρηθεί" #. module: base_calendar #: field:calendar.event,class:0 @@ -694,7 +694,7 @@ msgstr "Δεκέμβριος" #. module: base_calendar #: help:base_calendar.invite.attendee,send_mail:0 msgid "Check this if you want to send an Email to Invited Person" -msgstr "" +msgstr "Τσέκαρε αυτό εάν θέλετε να στείλετε Email στον Προσκεκλημένο" #. module: base_calendar #: view:calendar.event:0 @@ -778,7 +778,7 @@ msgstr "Επαφές" #. module: base_calendar #: model:ir.model,name:base_calendar.model_res_alarm msgid "Basic Alarm Information" -msgstr "" +msgstr "Βασικές Πληροφορίες Υπενθύμισης" #. module: base_calendar #: field:base.calendar.set.exrule,fr:0 @@ -849,12 +849,12 @@ msgstr "Γεγονότα" #: model:ir.actions.act_window,name:base_calendar.action_view_calendar_invite_attendee_wizard #: model:ir.model,name:base_calendar.model_base_calendar_invite_attendee msgid "Invite Attendees" -msgstr "" +msgstr "Πρόσληση Συμμετοχόντων" #. module: base_calendar #: help:calendar.attendee,email:0 msgid "Email of Invited Person" -msgstr "" +msgstr "Email του Προσκεκλημένου" #. module: base_calendar #: field:calendar.alarm,repeat:0 @@ -937,7 +937,7 @@ msgstr "Νοέμβριος" #. module: base_calendar #: help:calendar.attendee,member:0 msgid "Indicate the groups that the attendee belongs to" -msgstr "" +msgstr "Δηλώνει τις ομάδες που ο προσκεκλημένος ανήκει" #. module: base_calendar #: view:base_calendar.invite.attendee:0 @@ -976,7 +976,7 @@ msgstr "Οκτώβριος" #: view:calendar.attendee:0 #: view:calendar.event:0 msgid "Uncertain" -msgstr "" +msgstr "Αβέβαιο" #. module: base_calendar #: field:calendar.attendee,language:0 @@ -1170,7 +1170,7 @@ msgstr "Ακύρωση" #. module: base_calendar #: model:ir.model,name:base_calendar.model_res_users msgid "res.users" -msgstr "" +msgstr "res.users" #. module: base_calendar #: selection:base.calendar.set.exrule,week_list:0 @@ -1230,13 +1230,13 @@ msgstr "Υπεύθυνος" #: field:calendar.event,rrule_type:0 #: field:calendar.todo,rrule_type:0 msgid "Recurrency" -msgstr "" +msgstr "Επανάληψη" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_view_attendee_form #: model:ir.ui.menu,name:base_calendar.menu_attendee_invitations msgid "Event Invitations" -msgstr "" +msgstr "Προσκλήσεις Γεγονότος" #. module: base_calendar #: selection:base.calendar.set.exrule,week_list:0 @@ -1361,14 +1361,14 @@ msgstr "Αντικείμενα" #: view:calendar.attendee:0 #: selection:calendar.attendee,state:0 msgid "Delegated" -msgstr "" +msgstr "Ανατέθηκε" #. module: base_calendar #: field:base.calendar.set.exrule,sa:0 #: field:calendar.event,sa:0 #: field:calendar.todo,sa:0 msgid "Sat" -msgstr "" +msgstr "Σάβ" #. module: base_calendar #: model:ir.module.module,description:base_calendar.module_meta_information @@ -1383,47 +1383,47 @@ msgstr "" #. module: base_calendar #: selection:base.calendar.set.exrule,freq:0 msgid "Minutely" -msgstr "" +msgstr "Κάθε λεπτό" #. module: base_calendar #: help:calendar.attendee,sent_by:0 msgid "Specify the user that is acting on behalf of the calendar user" -msgstr "" +msgstr "Όρισε τον χρήστη που δρα εκ μέρους του χρήστη ημερολογίου" #. module: base_calendar #: view:calendar.event:0 #: field:calendar.event.edit.all,date_deadline:0 msgid "End Date" -msgstr "" +msgstr "Ημερομηνία Λήξης" #. module: base_calendar #: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 msgid "February" -msgstr "" +msgstr "Φεβρουάριος" #. module: base_calendar #: selection:calendar.event,freq:0 #: selection:calendar.todo,freq:0 msgid "Months" -msgstr "" +msgstr "Μήνες" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Resource" -msgstr "" +msgstr "Πόρος" #. module: base_calendar #: field:res.alarm,name:0 msgid "Name" -msgstr "" +msgstr "Όνομα" #. module: base_calendar #: field:calendar.event,exdate:0 #: field:calendar.todo,exdate:0 msgid "Exception Date/Times" -msgstr "" +msgstr "Εξαίρεση Ημερομηνία/Ώρες" #. module: base_calendar #: help:calendar.alarm,name:0 @@ -1431,6 +1431,8 @@ msgid "" "Contains the text to be used as the message subject for " "email or contains the text to be used for display" msgstr "" +"Περιλαμβάνει το κείμενο που θα χρησιμοποιηθεί σαν θέμα μυνήματος για email ή " +"περιλαμβάνει το κείμενο για προβολή" #. module: base_calendar #: field:calendar.event,alarm_id:0 @@ -1438,7 +1440,7 @@ msgstr "" #: field:calendar.todo,alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 msgid "Alarm" -msgstr "" +msgstr "Υπενθύμιση" #. module: base_calendar #: code:addons/base_calendar/wizard/base_calendar_set_exrule.py:0 @@ -1449,122 +1451,122 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,sent_by_uid:0 msgid "Sent By User" -msgstr "" +msgstr "Αποστάλθηκε από Χρήστη" #. module: base_calendar #: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 msgid "April" -msgstr "" +msgstr "Απρίλιος" #. module: base_calendar #: field:base.calendar.set.exrule,week_list:0 #: field:calendar.event,week_list:0 #: field:calendar.todo,week_list:0 msgid "Weekday" -msgstr "" +msgstr "Καθημερινή" #. module: base_calendar #: field:base.calendar.set.exrule,byday:0 #: field:calendar.event,byday:0 #: field:calendar.todo,byday:0 msgid "By day" -msgstr "" +msgstr "Κατά ημέρα" #. module: base_calendar #: field:calendar.alarm,model_id:0 msgid "Model" -msgstr "" +msgstr "Μοντέλο" #. module: base_calendar #: selection:calendar.alarm,action:0 msgid "Audio" -msgstr "" +msgstr "Ήχος" #. module: base_calendar #: field:calendar.event,id:0 #: field:calendar.todo,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "For information Purpose" -msgstr "" +msgstr "Για Λόγους πληροφόρησης" #. module: base_calendar #: view:base_calendar.invite.attendee:0 msgid "Invite" -msgstr "" +msgstr "Προσκαλέστε" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_attendee msgid "Attendee information" -msgstr "" +msgstr "Πληροφορίες Συμμετέχοντα" #. module: base_calendar #: field:calendar.alarm,res_id:0 msgid "Resource ID" -msgstr "" +msgstr "ID Πόρου" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Needs Action" -msgstr "" +msgstr "Απαιτεί ενέργεια" #. module: base_calendar #: field:calendar.attendee,sent_by:0 msgid "Sent By" -msgstr "" +msgstr "Στάλθηκε Από" #. module: base_calendar #: field:calendar.event,sequence:0 #: field:calendar.todo,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Ακολουθία" #. module: base_calendar #: help:calendar.event,alarm_id:0 #: help:calendar.todo,alarm_id:0 msgid "Set an alarm at this time, before the event occurs" -msgstr "" +msgstr "Βάλε υπενθύμιση στην συγκεκριμένη ώρα, πρίν συμβεί το γεγονός" #. module: base_calendar #: selection:base_calendar.invite.attendee,type:0 msgid "Internal User" -msgstr "" +msgstr "Εσωτερικός Χρήστης" #. module: base_calendar #: view:calendar.attendee:0 #: view:calendar.event:0 msgid "Accept" -msgstr "" +msgstr "Αποδοχή" #. module: base_calendar #: selection:base.calendar.set.exrule,week_list:0 #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 msgid "Saturday" -msgstr "" +msgstr "Σάββατο" #. module: base_calendar #: view:calendar.attendee:0 msgid "Invitation To" -msgstr "" +msgstr "Πρόσκληση Σε" #. module: base_calendar #: selection:base.calendar.set.exrule,byday:0 #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 msgid "Second" -msgstr "" +msgstr "Δευτερόλεπτο" #. module: base_calendar #: field:calendar.attendee,availability:0 #: field:res.users,availability:0 msgid "Free/Busy" -msgstr "" +msgstr "Ελεύθερο/Απασχολημένο" #. module: base_calendar #: field:calendar.alarm,duration:0 @@ -1575,7 +1577,7 @@ msgstr "" #: field:res.alarm,duration:0 #: field:res.alarm,trigger_duration:0 msgid "Duration" -msgstr "" +msgstr "Διάρκεια" #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_res_alarm_view @@ -1583,11 +1585,13 @@ msgid "" "Create specific calendar alarms that can be assigned to calendar events or " "meetings." msgstr "" +"Δημιουργεία συγκεκριμένων υπενθυμήσεων ημερολογίου που μπορούν να ανατεθούνε " +"σε γεγονότα ημερολογίου ή συναντήσεις." #. module: base_calendar #: field:calendar.alarm,trigger_date:0 msgid "Trigger Date" -msgstr "" +msgstr "Ημερομηνία Εναύσματος" #. module: base_calendar #: help:calendar.alarm,attach:0 @@ -1605,7 +1609,7 @@ msgstr "" #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 msgid "Fifth" -msgstr "" +msgstr "Πέμπτος" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Μη έγκυρο XML για προβολή Αρχιτεκτονικής" diff --git a/addons/base_calendar/i18n/en_US.po b/addons/base_calendar/i18n/en_US.po old mode 100644 new mode 100755 diff --git a/addons/base_calendar/i18n/es.po b/addons/base_calendar/i18n/es.po old mode 100644 new mode 100755 index 0e9263dbb68..f8252d39c91 --- a/addons/base_calendar/i18n/es.po +++ b/addons/base_calendar/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-21 13:46+0000\n" -"Last-Translator: Carlos-smile \n" +"PO-Revision-Date: 2010-12-28 12:44+0000\n" +"Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \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:56+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_calendar @@ -248,7 +248,7 @@ msgstr "Estado de la participación de los asistentes" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Room" -msgstr "" +msgstr "Sala" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 @@ -621,49 +621,49 @@ msgstr "Marcar como" #: view:calendar.attendee:0 #: field:calendar.attendee,partner_address_id:0 msgid "Contact" -msgstr "" +msgstr "Contacto" #. module: base_calendar #: help:calendar.event,rrule_type:0 #: help:calendar.todo,rrule_type:0 msgid "Let the event automatically repeat at that interval" -msgstr "" +msgstr "Permite que el evento se repita automáticamente en ese intervalo" #. module: base_calendar #: view:calendar.attendee:0 #: view:calendar.event:0 msgid "Delegate" -msgstr "" +msgstr "Delegar" #. module: base_calendar #: field:base_calendar.invite.attendee,partner_id:0 #: view:calendar.attendee:0 #: field:calendar.attendee,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Empresa" #. module: base_calendar #: view:base_calendar.invite.attendee:0 #: selection:base_calendar.invite.attendee,type:0 msgid "Partner Contacts" -msgstr "" +msgstr "Contactos de la empresa" #. module: base_calendar #: view:base.calendar.set.exrule:0 msgid "_Ok" -msgstr "" +msgstr "_Aceptar" #. module: base_calendar #: selection:base.calendar.set.exrule,byday:0 #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 msgid "First" -msgstr "" +msgstr "Primera" #. module: base_calendar #: view:calendar.event:0 msgid "Privacy" -msgstr "" +msgstr "Privacidad" #. module: base_calendar #: field:calendar.event,vtimezone:0 @@ -674,21 +674,21 @@ msgstr "Zona horaria" #. module: base_calendar #: view:calendar.event:0 msgid "Subject" -msgstr "" +msgstr "Asunto" #. module: base_calendar #: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 msgid "September" -msgstr "" +msgstr "Septiembre" #. module: base_calendar #: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 msgid "December" -msgstr "" +msgstr "Diciembre" #. module: base_calendar #: help:base_calendar.invite.attendee,send_mail:0 @@ -698,81 +698,81 @@ msgstr "Marque aquí si quiere enviar un correo a la persona invitada" #. module: base_calendar #: view:calendar.event:0 msgid "Availability" -msgstr "" +msgstr "Disponibilidad" #. module: base_calendar #: view:calendar.event.edit.all:0 msgid "_Save" -msgstr "" +msgstr "_Guardar" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Individual" -msgstr "" +msgstr "Individual" #. module: base_calendar #: field:calendar.alarm,user_id:0 msgid "Owner" -msgstr "" +msgstr "Dueño" #. module: base_calendar #: view:calendar.attendee:0 msgid "Delegation Info" -msgstr "" +msgstr "Información delegación" #. module: base_calendar #: view:calendar.event:0 #: field:calendar.event.edit.all,date:0 msgid "Start Date" -msgstr "" +msgstr "Fecha inicio" #. module: base_calendar #: field:calendar.attendee,cn:0 msgid "Common name" -msgstr "" +msgstr "Nombre común" #. module: base_calendar #: view:calendar.attendee:0 #: selection:calendar.attendee,state:0 msgid "Declined" -msgstr "" +msgstr "Rechazada" #. module: base_calendar #: view:calendar.attendee:0 msgid "My Role" -msgstr "" +msgstr "Mi rol" #. module: base_calendar #: view:calendar.event:0 msgid "My Events" -msgstr "" +msgstr "Mis eventos" #. module: base_calendar #: view:calendar.attendee:0 #: view:calendar.event:0 msgid "Decline" -msgstr "" +msgstr "Rechazar" #. module: base_calendar #: selection:calendar.event,freq:0 #: selection:calendar.todo,freq:0 msgid "Weeks" -msgstr "" +msgstr "Semanas" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Group" -msgstr "" +msgstr "Grupo" #. module: base_calendar #: view:calendar.event:0 msgid "Edit All" -msgstr "" +msgstr "Editar todo" #. module: base_calendar #: field:base_calendar.invite.attendee,contact_ids:0 msgid "Contacts" -msgstr "" +msgstr "Contactos" #. module: base_calendar #: model:ir.model,name:base_calendar.model_res_alarm @@ -784,7 +784,7 @@ msgstr "Información sobre la alarma básica" #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 msgid "Fri" -msgstr "" +msgstr "Vie" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:0 @@ -795,29 +795,29 @@ msgstr "La cuenta no puede ser negativa" #. module: base_calendar #: field:calendar.attendee,member:0 msgid "Member" -msgstr "" +msgstr "Miembro" #. module: base_calendar #: help:calendar.event,location:0 #: help:calendar.todo,location:0 msgid "Location of Event" -msgstr "" +msgstr "Ubicación del evento" #. module: base_calendar #: field:calendar.event,rrule:0 #: field:calendar.todo,rrule:0 msgid "Recurrent Rule" -msgstr "" +msgstr "Regla recurrente" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Draft" -msgstr "" +msgstr "Borrador" #. module: base_calendar #: field:calendar.alarm,attach:0 msgid "Attachment" -msgstr "" +msgstr "Adjunto" #. module: base_calendar #: view:calendar.attendee:0 @@ -828,7 +828,7 @@ msgstr "Invitación desde" #: view:calendar.event:0 #: field:calendar.event.edit.all,alarm_id:0 msgid "Reminder" -msgstr "" +msgstr "Recordatorio" #. module: base_calendar #: view:base.calendar.set.exrule:0 @@ -842,7 +842,7 @@ msgstr "" #: model:ir.actions.act_window,name:base_calendar.action_view_event #: model:ir.ui.menu,name:base_calendar.menu_events msgid "Events" -msgstr "" +msgstr "Eventos" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_view_calendar_invite_attendee_wizard @@ -859,7 +859,7 @@ msgstr "Email del invitado" #: field:calendar.alarm,repeat:0 #: field:res.alarm,repeat:0 msgid "Repeat" -msgstr "" +msgstr "Repetir" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -873,65 +873,65 @@ msgstr "" #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 msgid "August" -msgstr "" +msgstr "Agosto" #. module: base_calendar #: selection:base.calendar.set.exrule,week_list:0 #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 msgid "Monday" -msgstr "" +msgstr "Lunes" #. module: base_calendar #: selection:base.calendar.set.exrule,byday:0 #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 msgid "Third" -msgstr "" +msgstr "Tercero" #. module: base_calendar #: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 msgid "June" -msgstr "" +msgstr "Junio" #. module: base_calendar #: field:calendar.alarm,event_date:0 #: field:calendar.attendee,event_date:0 #: view:calendar.event:0 msgid "Event Date" -msgstr "" +msgstr "Fecha evento" #. module: base_calendar #: view:base.calendar.set.exrule:0 #: view:calendar.event:0 msgid "The" -msgstr "" +msgstr "El" #. module: base_calendar #: view:calendar.attendee:0 #: field:calendar.attendee,delegated_from:0 msgid "Delegated From" -msgstr "" +msgstr "Delegado desde" #. module: base_calendar #: field:calendar.attendee,user_id:0 msgid "User" -msgstr "" +msgstr "Usuario" #. module: base_calendar #: view:calendar.event:0 #: field:calendar.event,date:0 msgid "Date" -msgstr "" +msgstr "Fecha" #. module: base_calendar #: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 msgid "November" -msgstr "" +msgstr "Noviembre" #. module: base_calendar #: help:calendar.attendee,member:0 @@ -941,65 +941,65 @@ msgstr "Indicar los grupos a los que pertenece el asistente" #. module: base_calendar #: view:base_calendar.invite.attendee:0 msgid "Data" -msgstr "" +msgstr "Datos" #. module: base_calendar #: field:base.calendar.set.exrule,mo:0 #: field:calendar.event,mo:0 #: field:calendar.todo,mo:0 msgid "Mon" -msgstr "" +msgstr "Lun" #. module: base_calendar #: field:base.calendar.set.exrule,count:0 #: field:calendar.event,count:0 #: field:calendar.todo,count:0 msgid "Count" -msgstr "" +msgstr "Total" #. module: base_calendar #: selection:base.calendar.set.exrule,freq:0 #: selection:calendar.event,freq:0 #: selection:calendar.todo,freq:0 msgid "No Repeat" -msgstr "" +msgstr "No repetir" #. module: base_calendar #: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 msgid "October" -msgstr "" +msgstr "Octubre" #. module: base_calendar #: view:calendar.attendee:0 #: view:calendar.event:0 msgid "Uncertain" -msgstr "" +msgstr "Incierto" #. module: base_calendar #: field:calendar.attendee,language:0 msgid "Language" -msgstr "" +msgstr "Idioma" #. module: base_calendar #: field:calendar.alarm,trigger_occurs:0 #: field:res.alarm,trigger_occurs:0 msgid "Triggers" -msgstr "" +msgstr "Disparadores" #. module: base_calendar #: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 msgid "January" -msgstr "" +msgstr "Enero" #. module: base_calendar #: field:calendar.alarm,trigger_related:0 #: field:res.alarm,trigger_related:0 msgid "Related to" -msgstr "" +msgstr "Relacionado con" #. module: base_calendar #: field:base.calendar.set.exrule,interval:0 @@ -1008,14 +1008,14 @@ msgstr "" #: field:calendar.todo,interval:0 #: field:res.alarm,trigger_interval:0 msgid "Interval" -msgstr "" +msgstr "Intervalo" #. module: base_calendar #: selection:base.calendar.set.exrule,week_list:0 #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 msgid "Wednesday" -msgstr "" +msgstr "Miércoles" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:0 @@ -1027,7 +1027,7 @@ msgstr "El intervalo no puede ser negativo" #: field:calendar.alarm,name:0 #: view:calendar.event:0 msgid "Summary" -msgstr "" +msgstr "Resumen" #. module: base_calendar #: field:calendar.alarm,active:0 @@ -1035,17 +1035,17 @@ msgstr "" #: field:calendar.todo,active:0 #: field:res.alarm,active:0 msgid "Active" -msgstr "" +msgstr "Activo" #. module: base_calendar #: view:calendar.attendee:0 msgid "Invitation" -msgstr "" +msgstr "Invitación" #. module: base_calendar #: field:calendar.alarm,action:0 msgid "Action" -msgstr "" +msgstr "Acción" #. module: base_calendar #: help:base_calendar.invite.attendee,type:0 @@ -1059,6 +1059,8 @@ msgid "" "Duration' and 'Repeat' are both optional, but if one occurs, so MUST the " "other" msgstr "" +"Duración' y 'Repetir' son ambos opcionales, pero si uno está activo también " +"debe estarlo el otro" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_event_edit_all @@ -1083,14 +1085,14 @@ msgstr "Define la acción a invocar cuando salte la alarma" #. module: base_calendar #: view:calendar.event:0 msgid "Search Events" -msgstr "" +msgstr "Buscar eventos" #. module: base_calendar #: selection:base.calendar.set.exrule,freq:0 #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 msgid "Weekly" -msgstr "" +msgstr "Semanal" #. module: base_calendar #: help:calendar.alarm,active:0 @@ -1101,17 +1103,19 @@ msgid "" "If the active field is set to true, it will allow you to hide the event " "alarm information without removing it." msgstr "" +"Si el campo activo es verdadero, le permitirá ocultar la notificación de " +"aviso del evento sin eliminarlo." #. module: base_calendar #: field:calendar.event,recurrent_id:0 #: field:calendar.todo,recurrent_id:0 msgid "Recurrent ID date" -msgstr "" +msgstr "ID fecha recurrente" #. module: base_calendar #: sql_constraint:res.users:0 msgid "You can not have two users with the same login !" -msgstr "" +msgstr "¡No puede tener dos usuarios con el mismo identificador de usuario!" #. module: base_calendar #: field:calendar.alarm,state:0 @@ -1121,7 +1125,7 @@ msgstr "" #: field:calendar.event,state:0 #: field:calendar.todo,state:0 msgid "State" -msgstr "" +msgstr "Estado" #. module: base_calendar #: view:res.alarm:0 @@ -1131,55 +1135,55 @@ msgstr "Detalles del recordatorio" #. module: base_calendar #: view:calendar.attendee:0 msgid "To Review" -msgstr "" +msgstr "A revisar" #. module: base_calendar #: field:base.calendar.set.exrule,freq:0 #: field:calendar.event,freq:0 #: field:calendar.todo,freq:0 msgid "Frequency" -msgstr "" +msgstr "Frecuencia" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Done" -msgstr "" +msgstr "Hecho" #. module: base_calendar #: view:base_calendar.invite.attendee:0 #: field:base_calendar.invite.attendee,user_ids:0 msgid "Users" -msgstr "" +msgstr "Usuarios" #. module: base_calendar #: view:base.calendar.set.exrule:0 #: view:calendar.event:0 msgid "of" -msgstr "" +msgstr "de" #. module: base_calendar #: view:base_calendar.invite.attendee:0 #: view:calendar.event:0 #: view:calendar.event.edit.all:0 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #. module: base_calendar #: model:ir.model,name:base_calendar.model_res_users msgid "res.users" -msgstr "" +msgstr "res.usuarios" #. module: base_calendar #: selection:base.calendar.set.exrule,week_list:0 #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 msgid "Tuesday" -msgstr "" +msgstr "Martes" #. module: base_calendar #: selection:calendar.alarm,action:0 msgid "Procedure" -msgstr "" +msgstr "Procedimiento" #. module: base_calendar #: help:calendar.alarm,description:0 @@ -1192,7 +1196,7 @@ msgstr "" #. module: base_calendar #: view:calendar.event:0 msgid "Responsible User" -msgstr "" +msgstr "Usuario responsable" #. module: base_calendar #: selection:calendar.attendee,availability:0 @@ -1200,19 +1204,19 @@ msgstr "" #: selection:calendar.todo,show_as:0 #: selection:res.users,availability:0 msgid "Busy" -msgstr "" +msgstr "Ocupado" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_event msgid "Calendar Event" -msgstr "" +msgstr "Evento de calendario" #. module: base_calendar #: selection:calendar.attendee,state:0 #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 msgid "Tentative" -msgstr "" +msgstr "Provisional" #. module: base_calendar #: view:calendar.attendee:0 @@ -1220,39 +1224,39 @@ msgstr "" #: field:calendar.event,user_id:0 #: field:calendar.todo,user_id:0 msgid "Responsible" -msgstr "" +msgstr "Responsable" #. module: base_calendar #: view:calendar.event:0 #: field:calendar.event,rrule_type:0 #: field:calendar.todo,rrule_type:0 msgid "Recurrency" -msgstr "" +msgstr "Recurrencia" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_view_attendee_form #: model:ir.ui.menu,name:base_calendar.menu_attendee_invitations msgid "Event Invitations" -msgstr "" +msgstr "Invitaciones al evento" #. module: base_calendar #: selection:base.calendar.set.exrule,week_list:0 #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 msgid "Thursday" -msgstr "" +msgstr "Jueves" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 msgid "Custom" -msgstr "" +msgstr "Personalizado" #. module: base_calendar #: field:calendar.event,exrule:0 #: field:calendar.todo,exrule:0 msgid "Exception Rule" -msgstr "" +msgstr "Regla de excepción" #. module: base_calendar #: help:calendar.attendee,language:0 @@ -1263,7 +1267,7 @@ msgstr "" #. module: base_calendar #: view:calendar.event:0 msgid "Details" -msgstr "" +msgstr "Detalles" #. module: base_calendar #: help:calendar.event,exrule:0 @@ -1272,13 +1276,15 @@ msgid "" "Defines a rule or repeating pattern of time to exclude from the recurring " "rule." msgstr "" +"Define una regla o patrón de repetición de tiempo a excluir de la regla " +"recurrente." #. module: base_calendar #: field:base.calendar.set.exrule,month_list:0 #: field:calendar.event,month_list:0 #: field:calendar.todo,month_list:0 msgid "Month" -msgstr "" +msgstr "Mes" #. module: base_calendar #: selection:base_calendar.invite.attendee,type:0 @@ -1293,6 +1299,9 @@ msgid "" "e.g.: Every other month on the last Sunday of the month for 10 occurrences: " " FREQ=MONTHLY;INTERVAL=2;COUNT=10;BYDAY=-1SU" msgstr "" +"Define una regla o patrón repetitivo para eventos recurrentes.\n" +"Por ejemplo: Para 10 ocurrencias cada último domingo de cada dos meses : " +"FREQ=MONTHLY;INTERVAL=2;COUNT=10;BYDAY=-1SU" #. module: base_calendar #: field:calendar.attendee,dir:0 @@ -1307,20 +1316,20 @@ msgstr "" #: field:calendar.todo,description:0 #: field:calendar.todo,name:0 msgid "Description" -msgstr "" +msgstr "Descripción" #. module: base_calendar #: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 msgid "May" -msgstr "" +msgstr "Mayo" #. module: base_calendar #: field:base_calendar.invite.attendee,type:0 #: view:calendar.attendee:0 msgid "Type" -msgstr "" +msgstr "Tipo" #. module: base_calendar #: view:calendar.attendee:0 @@ -1331,41 +1340,41 @@ msgstr "Buscar invitaciones" #: selection:calendar.alarm,trigger_occurs:0 #: selection:res.alarm,trigger_occurs:0 msgid "After" -msgstr "" +msgstr "Después de" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Stop" -msgstr "" +msgstr "Parar" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_values msgid "ir.values" -msgstr "" +msgstr "ir.valores" #. module: base_calendar #: view:base_calendar.invite.attendee:0 #: view:calendar.event:0 msgid "Invite People" -msgstr "" +msgstr "Invitar personas" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model msgid "Objects" -msgstr "" +msgstr "Objetos" #. module: base_calendar #: view:calendar.attendee:0 #: selection:calendar.attendee,state:0 msgid "Delegated" -msgstr "" +msgstr "Delegada" #. module: base_calendar #: field:base.calendar.set.exrule,sa:0 #: field:calendar.event,sa:0 #: field:calendar.todo,sa:0 msgid "Sat" -msgstr "" +msgstr "Sáb" #. module: base_calendar #: model:ir.module.module,description:base_calendar.module_meta_information @@ -1380,7 +1389,7 @@ msgstr "" #. module: base_calendar #: selection:base.calendar.set.exrule,freq:0 msgid "Minutely" -msgstr "" +msgstr "Cada minuto" #. module: base_calendar #: help:calendar.attendee,sent_by:0 @@ -1391,36 +1400,36 @@ msgstr "" #: view:calendar.event:0 #: field:calendar.event.edit.all,date_deadline:0 msgid "End Date" -msgstr "" +msgstr "Fecha final" #. module: base_calendar #: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 msgid "February" -msgstr "" +msgstr "Febrero" #. module: base_calendar #: selection:calendar.event,freq:0 #: selection:calendar.todo,freq:0 msgid "Months" -msgstr "" +msgstr "Meses" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Resource" -msgstr "" +msgstr "Recurso" #. module: base_calendar #: field:res.alarm,name:0 msgid "Name" -msgstr "" +msgstr "Nombre" #. module: base_calendar #: field:calendar.event,exdate:0 #: field:calendar.todo,exdate:0 msgid "Exception Date/Times" -msgstr "" +msgstr "Fecha/horas excepción" #. module: base_calendar #: help:calendar.alarm,name:0 @@ -1428,6 +1437,8 @@ msgid "" "Contains the text to be used as the message subject for " "email or contains the text to be used for display" msgstr "" +"Contiene el texto a usar como asunto del mensaje para correos electrónicos, " +"o contiene el texto a mostrar" #. module: base_calendar #: field:calendar.event,alarm_id:0 @@ -1435,7 +1446,7 @@ msgstr "" #: field:calendar.todo,alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 msgid "Alarm" -msgstr "" +msgstr "Alarma" #. module: base_calendar #: code:addons/base_calendar/wizard/base_calendar_set_exrule.py:0 @@ -1454,37 +1465,37 @@ msgstr "Enviado por usuario" #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 msgid "April" -msgstr "" +msgstr "Abril" #. module: base_calendar #: field:base.calendar.set.exrule,week_list:0 #: field:calendar.event,week_list:0 #: field:calendar.todo,week_list:0 msgid "Weekday" -msgstr "" +msgstr "Día de la semana" #. module: base_calendar #: field:base.calendar.set.exrule,byday:0 #: field:calendar.event,byday:0 #: field:calendar.todo,byday:0 msgid "By day" -msgstr "" +msgstr "Por día" #. module: base_calendar #: field:calendar.alarm,model_id:0 msgid "Model" -msgstr "" +msgstr "Modelo" #. module: base_calendar #: selection:calendar.alarm,action:0 msgid "Audio" -msgstr "" +msgstr "Audio" #. module: base_calendar #: field:calendar.event,id:0 #: field:calendar.todo,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: base_calendar #: selection:calendar.attendee,role:0 @@ -1499,17 +1510,17 @@ msgstr "Invitar" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_attendee msgid "Attendee information" -msgstr "" +msgstr "Información asistentes" #. module: base_calendar #: field:calendar.alarm,res_id:0 msgid "Resource ID" -msgstr "" +msgstr "ID del recurso" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Needs Action" -msgstr "" +msgstr "Necesita acción" #. module: base_calendar #: field:calendar.attendee,sent_by:0 @@ -1520,49 +1531,49 @@ msgstr "Enviado por" #: field:calendar.event,sequence:0 #: field:calendar.todo,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Secuencia" #. module: base_calendar #: help:calendar.event,alarm_id:0 #: help:calendar.todo,alarm_id:0 msgid "Set an alarm at this time, before the event occurs" -msgstr "" +msgstr "Configure una alarma en este momento, antes de que ocurra el evento" #. module: base_calendar #: selection:base_calendar.invite.attendee,type:0 msgid "Internal User" -msgstr "" +msgstr "Usuario interno" #. module: base_calendar #: view:calendar.attendee:0 #: view:calendar.event:0 msgid "Accept" -msgstr "" +msgstr "Aceptar" #. module: base_calendar #: selection:base.calendar.set.exrule,week_list:0 #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 msgid "Saturday" -msgstr "" +msgstr "Sábado" #. module: base_calendar #: view:calendar.attendee:0 msgid "Invitation To" -msgstr "" +msgstr "Invitación a" #. module: base_calendar #: selection:base.calendar.set.exrule,byday:0 #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 msgid "Second" -msgstr "" +msgstr "Segundo" #. module: base_calendar #: field:calendar.attendee,availability:0 #: field:res.users,availability:0 msgid "Free/Busy" -msgstr "" +msgstr "Libre/Ocupado" #. module: base_calendar #: field:calendar.alarm,duration:0 @@ -1573,7 +1584,7 @@ msgstr "" #: field:res.alarm,duration:0 #: field:res.alarm,trigger_duration:0 msgid "Duration" -msgstr "" +msgstr "Duración" #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_res_alarm_view @@ -1585,7 +1596,7 @@ msgstr "" #. module: base_calendar #: field:calendar.alarm,trigger_date:0 msgid "Trigger Date" -msgstr "" +msgstr "Fecha activación" #. module: base_calendar #: help:calendar.alarm,attach:0 diff --git a/addons/base_calendar/i18n/fr.po b/addons/base_calendar/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/base_calendar/i18n/hr.po b/addons/base_calendar/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/base_calendar/i18n/it.po b/addons/base_calendar/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/base_calendar/i18n/mn.po b/addons/base_calendar/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/base_calendar/i18n/nl.po b/addons/base_calendar/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/base_calendar/i18n/pl.po b/addons/base_calendar/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/base_calendar/i18n/pt.po b/addons/base_calendar/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/base_calendar/i18n/pt_BR.po b/addons/base_calendar/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/base_calendar/i18n/sk.po b/addons/base_calendar/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/base_calendar/i18n/sr.po b/addons/base_calendar/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/base_calendar/i18n/sr@latin.po b/addons/base_calendar/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/base_calendar/i18n/sv.po b/addons/base_calendar/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/base_calendar/security/ir.model.access.csv b/addons/base_calendar/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/base_calendar/test/base_calendar_test.yml b/addons/base_calendar/test/base_calendar_test.yml old mode 100644 new mode 100755 diff --git a/addons/base_calendar/wizard/__init__.py b/addons/base_calendar/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_calendar/wizard/base_calendar_invite_attendee.py b/addons/base_calendar/wizard/base_calendar_invite_attendee.py old mode 100644 new mode 100755 diff --git a/addons/base_calendar/wizard/base_calendar_invite_attendee_view.xml b/addons/base_calendar/wizard/base_calendar_invite_attendee_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_calendar/wizard/base_calendar_set_exrule.py b/addons/base_calendar/wizard/base_calendar_set_exrule.py old mode 100644 new mode 100755 diff --git a/addons/base_calendar/wizard/base_calendar_set_exrule_view.xml b/addons/base_calendar/wizard/base_calendar_set_exrule_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_calendar/wizard/calendar_event_edit_all.py b/addons/base_calendar/wizard/calendar_event_edit_all.py old mode 100644 new mode 100755 diff --git a/addons/base_calendar/wizard/calendar_event_edit_all_view.xml b/addons/base_calendar/wizard/calendar_event_edit_all_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_contact/__init__.py b/addons/base_contact/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_contact/__openerp__.py b/addons/base_contact/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/base_contact/base_contact.py b/addons/base_contact/base_contact.py old mode 100644 new mode 100755 diff --git a/addons/base_contact/base_contact_demo.xml b/addons/base_contact/base_contact_demo.xml old mode 100644 new mode 100755 diff --git a/addons/base_contact/base_contact_installer.py b/addons/base_contact/base_contact_installer.py old mode 100644 new mode 100755 diff --git a/addons/base_contact/base_contact_installer_view.xml b/addons/base_contact/base_contact_installer_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_contact/base_contact_view.xml b/addons/base_contact/base_contact_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/ar.po b/addons/base_contact/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/base_contact.pot b/addons/base_contact/i18n/base_contact.pot old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/bg.po b/addons/base_contact/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/bs.po b/addons/base_contact/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/ca.po b/addons/base_contact/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/cs.po b/addons/base_contact/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/de.po b/addons/base_contact/i18n/de.po old mode 100644 new mode 100755 index ede248cbcbb..7fc2ba1024d --- a/addons/base_contact/i18n/de.po +++ b/addons/base_contact/i18n/de.po @@ -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-27 09:45+0000\n" +"PO-Revision-Date: 2010-12-28 08:44+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \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:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_contact diff --git a/addons/base_contact/i18n/el.po b/addons/base_contact/i18n/el.po old mode 100644 new mode 100755 index f75818be675..19af00aee40 --- a/addons/base_contact/i18n/el.po +++ b/addons/base_contact/i18n/el.po @@ -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-15 05:05+0000\n" +"PO-Revision-Date: 2010-12-28 17:16+0000\n" "Last-Translator: Dimitris Andavoglou \n" "Language-Team: nls@hellug.gr \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:13+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" @@ -47,7 +47,7 @@ msgstr "Ημερομηνία έναρξης εργασίας" #. module: base_contact #: view:base.contact.installer:0 msgid "Select the Option for Addresses Migration" -msgstr "" +msgstr "Επιλέξτε αυτήν την Επιλογή για Μετάπτωση Διευθύνσεων" #. module: base_contact #: help:res.partner.job,function:0 @@ -132,6 +132,8 @@ msgid "" "If the active field is set to False, it will allow you to " "hide the partner contact without removing it." msgstr "" +"Εάν το ενεργό πεδίο είναι Λάθος(False), σας επιτρέπει να αποκρύψετε την " +"επαφή συναργάτη χωρίς να την διαγράψετε." #. module: base_contact #: model:ir.module.module,description:base_contact.module_meta_information @@ -184,6 +186,8 @@ msgid "" "Order of importance of this job title in the list of job " "title of the linked partner" msgstr "" +"Σειρά σπουδαιότητας αυτού του τίτλου εργασίας στην λίστα τιτλων εργασιω΄ν " +"του συνδεδεμένου συνεργάτη" #. module: base_contact #: field:res.partner.job,extension:0 @@ -262,7 +266,7 @@ msgstr "Διευθύνσεις Συνεργάτη" #. module: base_contact #: view:base.contact.installer:0 msgid "Address's Migration to Contacts" -msgstr "" +msgstr "Μετάπτωση Διευθύνσεων σε Επαφές" #. module: base_contact #: field:res.partner.job,sequence_contact:0 @@ -326,7 +330,7 @@ msgstr "Αλλιώς οι λεπτομέρεις δεν θα είναι ορατ #. module: base_contact #: view:base.contact.installer:0 msgid "Configure" -msgstr "" +msgstr "Παραμετροποίηση" #. module: base_contact #: field:res.partner.contact,email:0 @@ -469,7 +473,7 @@ msgstr "Εθνικότητα" #. module: base_contact #: model:ir.actions.act_window,name:base_contact.act_res_partner_jobs msgid "Open Jobs" -msgstr "" +msgstr "Ανοιχτές Εργασίες" #. module: base_contact #: field:base.contact.installer,name:0 @@ -480,6 +484,7 @@ msgstr "Όνομα" #: view:base.contact.installer:0 msgid "You can migrate Partner's current addresses to the contact." msgstr "" +"Μπορείτε να μεταπτώσετε τις τρέχουσες διεύθυνσεις του Συνεργάτη στην επαφή." #. module: base_contact #: field:res.partner.contact,partner_id:0 diff --git a/addons/base_contact/i18n/es.po b/addons/base_contact/i18n/es.po old mode 100644 new mode 100755 index 644b0741a61..28e6b64c00b --- a/addons/base_contact/i18n/es.po +++ b/addons/base_contact/i18n/es.po @@ -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-27 22:35+0000\n" +"PO-Revision-Date: 2010-12-28 08:39+0000\n" "Last-Translator: Jordi Esteve (www.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: 2010-12-28 04:41+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_contact diff --git a/addons/base_contact/i18n/es_AR.po b/addons/base_contact/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/es_EC.po b/addons/base_contact/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/et.po b/addons/base_contact/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/fi.po b/addons/base_contact/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/fr.po b/addons/base_contact/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/hr.po b/addons/base_contact/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/hu.po b/addons/base_contact/i18n/hu.po old mode 100644 new mode 100755 index dc5152b00a5..0ed53e2584c --- a/addons/base_contact/i18n/hu.po +++ b/addons/base_contact/i18n/hu.po @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-05 07:27+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2010-12-28 20:32+0000\n" +"Last-Translator: NOVOTRADE SYSTEMHOUSE \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:13+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_contact #: field:res.partner.contact,title:0 msgid "Title" -msgstr "" +msgstr "Megnevezés" #. module: base_contact #: view:res.partner.address:0 msgid "# of Contacts" -msgstr "" +msgstr "# a kapcsolatoknak" #. module: base_contact #: field:res.partner.job,fax:0 msgid "Fax" -msgstr "" +msgstr "Fax" #. module: base_contact #: view:base.contact.installer:0 @@ -71,7 +71,7 @@ msgstr "" #. module: base_contact #: field:res.partner.contact,mobile:0 msgid "Mobile" -msgstr "" +msgstr "Mobil" #. module: base_contact #: view:res.partner.contact:0 @@ -82,12 +82,12 @@ msgstr "" #. module: base_contact #: model:process.node,note:base_contact.process_node_contacts0 msgid "People you work with." -msgstr "" +msgstr "Emberek akikkel dolgozol" #. module: base_contact #: model:process.transition,note:base_contact.process_transition_functiontoaddress0 msgid "Define functions and address." -msgstr "" +msgstr "Határozza meg a beosztást és címet" #. module: base_contact #: help:res.partner.job,date_stop:0 @@ -104,17 +104,17 @@ msgstr "" #: view:res.partner.contact:0 #: field:res.partner.job,name:0 msgid "Partner" -msgstr "" +msgstr "Partner" #. module: base_contact #: model:process.node,note:base_contact.process_node_function0 msgid "Jobs at a same partner address." -msgstr "" +msgstr "Feladatok ugyanahoz a partneri címhez" #. module: base_contact #: model:process.node,name:base_contact.process_node_partners0 msgid "Partners" -msgstr "" +msgstr "Partnerek" #. module: base_contact #: field:res.partner.job,state:0 @@ -156,7 +156,7 @@ msgstr "" #: model:ir.module.module,shortdesc:base_contact.module_meta_information #: model:process.process,name:base_contact.process_process_basecontactprocess0 msgid "Base Contact" -msgstr "" +msgstr "Alap kapcsolat" #. module: base_contact #: field:res.partner.job,date_stop:0 @@ -166,7 +166,7 @@ msgstr "" #. module: base_contact #: model:ir.actions.act_window,name:base_contact.action_res_partner_job msgid "Contact's Jobs" -msgstr "" +msgstr "Kapcsolattartó munkaköre" #. module: base_contact #: view:res.partner:0 @@ -188,7 +188,7 @@ msgstr "" #. module: base_contact #: help:res.partner.job,extension:0 msgid "Internal/External extension phone number" -msgstr "" +msgstr "Belső/Kimenő mellék a telefonszámhoz" #. module: base_contact #: help:res.partner.job,phone:0 @@ -199,7 +199,7 @@ msgstr "" #: view:res.partner.contact:0 #: field:res.partner.contact,job_ids:0 msgid "Functions and Addresses" -msgstr "" +msgstr "Beosztások és címek" #. module: base_contact #: model:ir.model,name:base_contact.model_res_partner_contact @@ -215,12 +215,12 @@ msgstr "" #. module: base_contact #: field:res.partner.job,sequence_partner:0 msgid "Partner Seq." -msgstr "" +msgstr "Partner sorrend" #. module: base_contact #: model:process.transition,name:base_contact.process_transition_functiontoaddress0 msgid "Function to address" -msgstr "" +msgstr "Címek" #. module: base_contact #: field:base.contact.installer,progress:0 @@ -247,7 +247,7 @@ msgstr "" #. module: base_contact #: selection:res.partner.job,state:0 msgid "Past" -msgstr "" +msgstr "múlt" #. module: base_contact #: model:ir.model,name:base_contact.model_res_partner_address @@ -289,7 +289,7 @@ msgstr "" #. module: base_contact #: model:process.node,note:base_contact.process_node_addresses0 msgid "Working and private addresses." -msgstr "" +msgstr "Munkahelyi és otthoni címek" #. module: base_contact #: help:res.partner.job,address_id:0 @@ -299,12 +299,12 @@ msgstr "" #. module: base_contact #: field:res.partner.job,function:0 msgid "Partner Function" -msgstr "" +msgstr "Partner beosztása" #. module: base_contact #: help:res.partner.job,other:0 msgid "Additional phone field" -msgstr "" +msgstr "Plusz telefon mező" #. module: base_contact #: field:res.partner.contact,website:0 @@ -325,7 +325,7 @@ msgstr "" #: field:res.partner.contact,email:0 #: field:res.partner.job,email:0 msgid "E-Mail" -msgstr "" +msgstr "E-mail" #. module: base_contact #: model:ir.model,name:base_contact.model_base_contact_installer @@ -335,12 +335,12 @@ msgstr "" #. module: base_contact #: view:res.partner.job:0 msgid "Contact Functions" -msgstr "" +msgstr "Kapcsolatartók" #. module: base_contact #: field:res.partner.job,phone:0 msgid "Phone" -msgstr "" +msgstr "Telefon" #. module: base_contact #: view:base.contact.installer:0 @@ -350,7 +350,7 @@ msgstr "" #. module: base_contact #: field:res.partner.contact,active:0 msgid "Active" -msgstr "" +msgstr "Aktív" #. module: base_contact #: field:res.partner.contact,function:0 @@ -365,27 +365,27 @@ msgstr "" #. module: base_contact #: view:res.partner.contact:0 msgid "Seq." -msgstr "" +msgstr "sorrend" #. module: base_contact #: field:res.partner.contact,lang_id:0 msgid "Language" -msgstr "" +msgstr "Nyelv" #. module: base_contact #: view:res.partner.contact:0 msgid "Extra Information" -msgstr "" +msgstr "Extra információ" #. module: base_contact #: model:process.node,note:base_contact.process_node_partners0 msgid "Companies you work with." -msgstr "" +msgstr "Cégek akikkel dolgozol" #. module: base_contact #: view:res.partner.contact:0 msgid "Partner Contact" -msgstr "" +msgstr "Partneri kapcsolat" #. module: base_contact #: view:res.partner.contact:0 @@ -410,7 +410,7 @@ msgstr "" #. module: base_contact #: selection:res.partner.job,state:0 msgid "Current" -msgstr "" +msgstr "Aktuális" #. module: base_contact #: field:res.partner.contact,first_name:0 @@ -420,7 +420,7 @@ msgstr "Keresztnév" #. module: base_contact #: model:ir.model,name:base_contact.model_res_partner_job msgid "Contact Partner Function" -msgstr "" +msgstr "Kapcsolattartó partner" #. module: base_contact #: field:res.partner.job,other:0 @@ -436,7 +436,7 @@ msgstr "" #: field:res.partner.address,job_id:0 #: field:res.partner.contact,job_id:0 msgid "Main Job" -msgstr "" +msgstr "Fő munkakör" #. module: base_contact #: model:process.transition,note:base_contact.process_transition_contacttofunction0 @@ -446,18 +446,18 @@ msgstr "" #. module: base_contact #: model:process.transition,name:base_contact.process_transition_contacttofunction0 msgid "Contact to function" -msgstr "" +msgstr "Kapcsolat a tisztviselőhöz" #. module: base_contact #: view:res.partner:0 #: field:res.partner.job,address_id:0 msgid "Address" -msgstr "" +msgstr "Cím" #. module: base_contact #: field:res.partner.contact,country_id:0 msgid "Nationality" -msgstr "" +msgstr "Nemzetiség" #. module: base_contact #: model:ir.actions.act_window,name:base_contact.act_res_partner_jobs @@ -477,7 +477,7 @@ msgstr "" #. module: base_contact #: field:res.partner.contact,partner_id:0 msgid "Main Employer" -msgstr "" +msgstr "Fő munkáltató" #. module: base_contact #: model:ir.actions.act_window,name:base_contact.action_base_contact_installer @@ -498,12 +498,12 @@ msgstr "" #. module: base_contact #: model:process.transition,name:base_contact.process_transition_partnertoaddress0 msgid "Partner to address" -msgstr "" +msgstr "Partner címe" #. module: base_contact #: field:res.partner.job,date_start:0 msgid "Date Start" -msgstr "" +msgstr "Indulási időpont" #. module: base_contact #: help:res.partner.job,sequence_contact:0 diff --git a/addons/base_contact/i18n/id.po b/addons/base_contact/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/it.po b/addons/base_contact/i18n/it.po old mode 100644 new mode 100755 index 3628e0bfd66..9fad16604a9 --- a/addons/base_contact/i18n/it.po +++ b/addons/base_contact/i18n/it.po @@ -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-12 09:22+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2010-12-28 12:25+0000\n" +"Last-Translator: Nicola Riolini - Micronaet \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:13+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_contact @@ -155,6 +155,25 @@ msgid "" "an other object.\n" " " msgstr "" +"\n" +" Questo modulo permette di gestire i vostri contatti interamente.\n" +"\n" +" Permette di definire\n" +" * contatti non relazionati necessariamente con un partner,\n" +" * contatti che lavorano per parecchi indirizzi (possibilità per " +"partner differenti),\n" +" * contatti con la possibilità di avere differenti funzioni per " +"ognuno degli indirizzi lavorativi\n" +"\n" +" Aggiunge inoltre un nuovo menù in:\n" +" Partner \\ Contatti\n" +" Partner \\ Funzioni\n" +"\n" +" Prestare attenzione che questo modulo converte l'attuale indirizzo in " +"\"indirizzo + contatti\". Ciò significa che alcuni campi dell'indirizzo " +"verranno persi (come il nome contatto), dato che questi si suppongono " +"definiti in un altro oggetto.\n" +" " #. module: base_contact #: model:ir.module.module,shortdesc:base_contact.module_meta_information diff --git a/addons/base_contact/i18n/ko.po b/addons/base_contact/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/lt.po b/addons/base_contact/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/lv.po b/addons/base_contact/i18n/lv.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/mn.po b/addons/base_contact/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/nl.po b/addons/base_contact/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/nl_BE.po b/addons/base_contact/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/oc.po b/addons/base_contact/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/pl.po b/addons/base_contact/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/pt.po b/addons/base_contact/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/pt_BR.po b/addons/base_contact/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/ro.po b/addons/base_contact/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/ru.po b/addons/base_contact/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/sk.po b/addons/base_contact/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/sl.po b/addons/base_contact/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/sq.po b/addons/base_contact/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/sr.po b/addons/base_contact/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/sr@latin.po b/addons/base_contact/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/sv.po b/addons/base_contact/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/tlh.po b/addons/base_contact/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/tr.po b/addons/base_contact/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/uk.po b/addons/base_contact/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/vi.po b/addons/base_contact/i18n/vi.po old mode 100644 new mode 100755 index 1e8dd3b3847..c107618c451 --- a/addons/base_contact/i18n/vi.po +++ b/addons/base_contact/i18n/vi.po @@ -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-28 04:32+0000\n" -"Last-Translator: Phong Nguyen \n" +"PO-Revision-Date: 2010-12-28 09:09+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Vietnamese \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:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_contact diff --git a/addons/base_contact/i18n/zh_CN.po b/addons/base_contact/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/i18n/zh_TW.po b/addons/base_contact/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/base_contact/process/base_contact_process.xml b/addons/base_contact/process/base_contact_process.xml old mode 100644 new mode 100755 diff --git a/addons/base_contact/security/base_contact_security.xml b/addons/base_contact/security/base_contact_security.xml old mode 100644 new mode 100755 diff --git a/addons/base_contact/security/ir.model.access.csv b/addons/base_contact/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/base_contact/test/base_contact00.yml b/addons/base_contact/test/base_contact00.yml old mode 100644 new mode 100755 diff --git a/addons/hr_holidays/migrations/1.5/post-00-change-requests-signs.py b/addons/base_crypt/__init__.py old mode 100644 new mode 100755 similarity index 74% rename from addons/hr_holidays/migrations/1.5/post-00-change-requests-signs.py rename to addons/base_crypt/__init__.py index 9e4a5a45cb1..a8b9a6b0740 --- a/addons/hr_holidays/migrations/1.5/post-00-change-requests-signs.py +++ b/addons/base_crypt/__init__.py @@ -1,8 +1,7 @@ -# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). +# Copyright (C) 2004-2009 Tiny SPRL (). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -18,8 +17,7 @@ # along with this program. If not, see . # ############################################################################## -__name__ = "Change signs of old holiday requests" -def migrate(cr, version): - cr.execute("DELETE FROM hr_holidays WHERE number_of_days < 0") - cr.execute("UPDATE hr_holidays SET number_of_days = -number_of_days, type ='remove'") +from service import security +import crypt + diff --git a/addons/base_crypt/__openerp__.py b/addons/base_crypt/__openerp__.py new file mode 100755 index 00000000000..d6c0bbd82e3 --- /dev/null +++ b/addons/base_crypt/__openerp__.py @@ -0,0 +1,43 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +{ + "name" : "Base - Password Encryption", + "version" : "1.1", + "author" : "FS3 & OpenERP SA", + "maintainer" : "OpenERP SA", + "website" : "http://www.openerp.com", + "category" : "Generic Modules/Base", + "description": """This module replaces the cleartext password in the database with a password hash, +preventing anyone from reading the original password. +For your existing user base, the removal of the cleartext passwords occurs the first time +a user logs into the database, after installing base_crypt. +After installing this module it won't be possible to recover a forgotten password for your +users, the only solution is for an admin to set a new password. + +Note: installing this module does not mean you can ignore basic security measures, +as the password is still transmitted unencrypted on the network (by the client), +unless you are using a secure protocol such as XML-RPCS. + """, + "depends" : ["base"], + "data" : [], + "active": False, + "installable": True, +} diff --git a/addons/base_crypt/crypt.py b/addons/base_crypt/crypt.py new file mode 100755 index 00000000000..259404dc95b --- /dev/null +++ b/addons/base_crypt/crypt.py @@ -0,0 +1,256 @@ +# Notice: +# ------ +# +# Implements encrypting functions. +# +# Copyright (c) 2008, F S 3 Consulting Inc. +# +# Maintainer: +# Alec Joseph Rivera (agifs3.ph) +# +# +# Warning: +# ------- +# +# This program as such is intended to be used by professional programmers +# who take the whole responsibility of assessing all potential consequences +# resulting from its eventual inadequacies and bugs. End users who are +# looking for a ready-to-use solution with commercial guarantees and +# support are strongly adviced to contract a Free Software Service Company. +# +# This program is Free Software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General +# Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the: +# +# Free Software Foundation, Inc. +# 59 Temple Place - Suite 330 +# Boston, MA 02111-1307 +# USA. + +from random import seed, sample +from string import letters, digits +from osv import fields,osv +import pooler +import tools +from tools.translate import _ +from service import security + +magic_md5 = '$1$' + +def gen_salt( length=8, symbols=letters + digits ): + seed() + return ''.join( sample( symbols, length ) ) + +# The encrypt_md5 is based on Mark Johnson's md5crypt.py, which in turn is +# based on FreeBSD src/lib/libcrypt/crypt.c (1.2) by Poul-Henning Kamp. +# Mark's port can be found in ActiveState ASPN Python Cookbook. Kudos to +# Poul and Mark. -agi +# +# Original license: +# +# * "THE BEER-WARE LICENSE" (Revision 42): +# * +# * wrote this file. As long as you retain this +# * notice you can do whatever you want with this stuff. If we meet some +# * day, and you think this stuff is worth it, you can buy me a beer in +# * return. +# * +# * Poul-Henning Kamp + +import md5 + +def encrypt_md5( raw_pw, salt, magic=magic_md5 ): + hash = md5.new( raw_pw + magic + salt ) + stretch = md5.new( raw_pw + salt + raw_pw).digest() + + for i in range( 0, len( raw_pw ) ): + hash.update( stretch[i % 16] ) + + i = len( raw_pw ) + + while i: + if i & 1: + hash.update('\x00') + else: + hash.update( raw_pw[0] ) + i >>= 1 + + saltedmd5 = hash.digest() + + for i in range( 1000 ): + hash = md5.new() + + if i & 1: + hash.update( raw_pw ) + else: + hash.update( saltedmd5 ) + + if i % 3: + hash.update( salt ) + if i % 7: + hash.update( raw_pw ) + if i & 1: + hash.update( saltedmd5 ) + else: + hash.update( raw_pw ) + + saltedmd5 = hash.digest() + + itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' + + rearranged = '' + for a, b, c in ((0, 6, 12), (1, 7, 13), (2, 8, 14), (3, 9, 15), (4, 10, 5)): + v = ord( saltedmd5[a] ) << 16 | ord( saltedmd5[b] ) << 8 | ord( saltedmd5[c] ) + + for i in range(4): + rearranged += itoa64[v & 0x3f] + v >>= 6 + + v = ord( saltedmd5[11] ) + + for i in range( 2 ): + rearranged += itoa64[v & 0x3f] + v >>= 6 + + return magic + salt + '$' + rearranged + +class users(osv.osv): + _name="res.users" + _inherit="res.users" + # agi - 022108 + # Add handlers for 'input_pw' field. + + def set_pw(self, cr, uid, id, name, value, args, context): + if not value: + raise osv.except_osv(_('Error'), _("Please specify the password !")) + + obj = pooler.get_pool(cr.dbname).get('res.users') + if not hasattr(obj, "_salt_cache"): + obj._salt_cache = {} + + salt = obj._salt_cache[id] = gen_salt() + encrypted = encrypt_md5(value, salt) + cr.execute('update res_users set password=%s where id=%s', + (encrypted.encode('utf-8'), int(id))) + cr.commit() + del value + + def get_pw( self, cr, uid, ids, name, args, context ): + cr.execute('select id, password from res_users where id in %s', (tuple(map(int, ids)),)) + stored_pws = cr.fetchall() + res = {} + + for id, stored_pw in stored_pws: + res[id] = stored_pw + + return res + + _columns = { + # The column size could be smaller as it is meant to store a hash, but + # an existing column cannot be downsized; thus we use the original + # column size. + 'password': fields.function(get_pw, fnct_inv=set_pw, type='char', + method=True, size=64, string='Password', invisible=True, + store=True), + } + + def login(self, db, login, password): + cr = pooler.get_db(db).cursor() + cr.execute('select password, id from res_users where login=%s', + (login.encode('utf-8'),)) + stored_pw = id = cr.fetchone() + + if stored_pw: + stored_pw = stored_pw[0] + id = id[1] + else: + # Return early if there is no such login. + return False + + stored_pw = self.maybe_encrypt(cr, stored_pw, id) + + # Calculate an encrypted password from the user-provided + # password. + obj = pooler.get_pool(db).get('res.users') + if not hasattr(obj, "_salt_cache"): + obj._salt_cache = {} + salt = obj._salt_cache[id] = stored_pw[len(magic_md5):11] + encrypted_pw = encrypt_md5(password, salt) + + # Check if the encrypted password matches against the one in the db. + cr.execute('select id from res_users where id=%s and password=%s and active', (int(id), encrypted_pw.encode('utf-8'))) + res = cr.fetchone() + cr.close() + + if res: + return res[0] + else: + return False + + def check(self, db, uid, passwd): + # Get a chance to hash all passwords in db before using the uid_cache. + obj = pooler.get_pool(db).get('res.users') + if not hasattr(obj, "_salt_cache"): + obj._salt_cache = {} + self._uid_cache.get(db, {}).clear() + + cached_pass = self._uid_cache.get(db, {}).get(uid) + if (cached_pass is not None) and cached_pass == passwd: + return True + + cr = pooler.get_db(db).cursor() + if uid not in obj._salt_cache: + cr.execute('select login from res_users where id=%s', (int(uid),)) + stored_login = cr.fetchone() + if stored_login: + stored_login = stored_login[0] + + if not self.login(db,stored_login,passwd): + return False + + salt = obj._salt_cache[uid] + cr.execute('select count(id) from res_users where id=%s and password=%s', + (int(uid), encrypt_md5(passwd, salt))) + res = cr.fetchone()[0] + cr.close() + if not bool(res): + raise Exception('AccessDenied') + + if res: + if self._uid_cache.has_key(db): + ulist = self._uid_cache[db] + ulist[uid] = passwd + else: + self._uid_cache[db] = {uid: passwd} + return bool(res) + + def maybe_encrypt(self, cr, pw, id): + # If the password 'pw' is not encrypted, then encrypt all passwords + # in the db. Returns the (possibly newly) encrypted password for 'id'. + + if pw[0:len(magic_md5)] != magic_md5: + cr.execute('select id, password from res_users') + res = cr.fetchall() + for i, p in res: + encrypted = p + if p[0:len(magic_md5)] != magic_md5: + encrypted = encrypt_md5(p, gen_salt()) + cr.execute('update res_users set password=%s where id=%s', + (encrypted.encode('utf-8'), int(i))) + if i == id: + encrypted_res = encrypted + cr.commit() + return encrypted_res + return pw + +users() +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_crypt/i18n/base_crypt.pot b/addons/base_crypt/i18n/base_crypt.pot new file mode 100755 index 00000000000..d62691cb699 --- /dev/null +++ b/addons/base_crypt/i18n/base_crypt.pot @@ -0,0 +1,37 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * base_crypt +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.6\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-11-26 09:12:09+0000\n" +"PO-Revision-Date: 2009-11-26 09:12:09+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base_crypt +#: model:ir.module.module,description:base_crypt.module_meta_information +msgid "Module for password encryption." +msgstr "" + +#. module: base_crypt +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_crypt +#: model:ir.module.module,shortdesc:base_crypt.module_meta_information +msgid "Base" +msgstr "" + +#. module: base_crypt +#: field:res.users,input_pw:0 +msgid "Password" +msgstr "" + diff --git a/addons/base_crypt/i18n/sv.po b/addons/base_crypt/i18n/sv.po new file mode 100755 index 00000000000..a20776a2100 --- /dev/null +++ b/addons/base_crypt/i18n/sv.po @@ -0,0 +1,40 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * base_crypt +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.14\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-11-26 09:12+0000\n" +"PO-Revision-Date: 2010-11-23 02:16+0000\n" +"Last-Translator: Olivier Dony (OpenERP) \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-15 05:38+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: base_crypt +#: model:ir.module.module,description:base_crypt.module_meta_information +msgid "Module for password encryption." +msgstr "" + +#. module: base_crypt +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_crypt +#: model:ir.module.module,shortdesc:base_crypt.module_meta_information +msgid "Base" +msgstr "" + +#. module: base_crypt +#: field:res.users,input_pw:0 +msgid "Password" +msgstr "" + +#~ msgid "Module for password encryption.KKKKKKKKKKKKKKKKKKK" +#~ msgstr "Module for password encryption.KKKKKKKKKKKKKKKKKKK" diff --git a/addons/base_iban/__init__.py b/addons/base_iban/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_iban/__openerp__.py b/addons/base_iban/__openerp__.py old mode 100644 new mode 100755 index c82109d9b54..9ed0b1171bb --- a/addons/base_iban/__openerp__.py +++ b/addons/base_iban/__openerp__.py @@ -23,7 +23,7 @@ 'version': '1.0', 'category': 'Generic Modules/Base', 'description': """ -This module installs the base for IBAN (International Bank Account Number) bank accounts and checks for its validity +This module installs the base for IBAN (International Bank Account Number) bank accounts and checks for its validity. """, 'author': 'OpenERP SA', diff --git a/addons/base_iban/base_iban.py b/addons/base_iban/base_iban.py old mode 100644 new mode 100755 diff --git a/addons/base_iban/base_iban_data.xml b/addons/base_iban/base_iban_data.xml old mode 100644 new mode 100755 diff --git a/addons/base_iban/base_iban_view.xml b/addons/base_iban/base_iban_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/ar.po b/addons/base_iban/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/base_iban.pot b/addons/base_iban/i18n/base_iban.pot old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/bg.po b/addons/base_iban/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/bs.po b/addons/base_iban/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/ca.po b/addons/base_iban/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/cs.po b/addons/base_iban/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/de.po b/addons/base_iban/i18n/de.po old mode 100644 new mode 100755 index fb302cd4cd4..79a6136da4e --- a/addons/base_iban/i18n/de.po +++ b/addons/base_iban/i18n/de.po @@ -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-27 09:47+0000\n" +"PO-Revision-Date: 2010-12-28 08:46+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \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:40+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/el.po b/addons/base_iban/i18n/el.po old mode 100644 new mode 100755 index 0d0126d9180..0d5a4bf6cd0 --- a/addons/base_iban/i18n/el.po +++ b/addons/base_iban/i18n/el.po @@ -3,13 +3,13 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2009-05-14 15:09+0000\n" -"Last-Translator: Panagiotis Kranidiotis \n" +"PO-Revision-Date: 2010-12-28 19:54+0000\n" +"Last-Translator: Dimitris Andavoglou \n" "Language-Team: nls@hellug.gr \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:02+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" @@ -18,7 +18,7 @@ msgstr "" #. module: base_iban #: model:ir.module.module,shortdesc:base_iban.module_meta_information msgid "Create IBAN bank accounts" -msgstr "" +msgstr "Δημιουργία λογαριασμών IBAN" #. module: base_iban #: code:addons/base_iban/base_iban.py:0 @@ -27,6 +27,7 @@ msgid "" "The IBAN does not seems to be correct. You should have entered something " "like this %s" msgstr "" +"Ο IBAN δεν φαίνεται να είναι σωστός. Θα πρέπει να είχατε εισάγει κάτι σαν %s" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_zip_field @@ -41,7 +42,7 @@ msgstr "Διεθνής Αριθμός Τραπεζικού Λογαριασμο #. module: base_iban #: model:ir.model,name:base_iban.model_res_partner_bank msgid "Bank Accounts" -msgstr "" +msgstr "Τραπεζικοί Λογαριασμοί" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_country_field @@ -62,6 +63,11 @@ msgid "" "\n" " " msgstr "" +"\n" +"Αυτό το άρθρωμα κάνει εγκατάσταση την βάση για το IBAN (International Bank " +"Account Number) λογαριασμού τράπεζας και ελέγχει για την ορθότητά του\n" +"\n" +" " #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_iban_field @@ -73,6 +79,7 @@ msgstr "iban" #, python-format msgid "The IBAN is invalid, It should begin with the country code" msgstr "" +"Ο IBAN δεν είναι έγκυρος, θα πρέπει να ξεκινά με τον κωδικό της χώρας" #. module: base_iban #: field:res.partner.bank,iban:0 diff --git a/addons/base_iban/i18n/es.po b/addons/base_iban/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/es_AR.po b/addons/base_iban/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/es_EC.po b/addons/base_iban/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/et.po b/addons/base_iban/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/eu.po b/addons/base_iban/i18n/eu.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/fi.po b/addons/base_iban/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/fr.po b/addons/base_iban/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/gl.po b/addons/base_iban/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/hr.po b/addons/base_iban/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/hu.po b/addons/base_iban/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/id.po b/addons/base_iban/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/it.po b/addons/base_iban/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/ko.po b/addons/base_iban/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/lt.po b/addons/base_iban/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/lv.po b/addons/base_iban/i18n/lv.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/mn.po b/addons/base_iban/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/nl.po b/addons/base_iban/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/nl_BE.po b/addons/base_iban/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/oc.po b/addons/base_iban/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/pl.po b/addons/base_iban/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/pt.po b/addons/base_iban/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/pt_BR.po b/addons/base_iban/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/ro.po b/addons/base_iban/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/ru.po b/addons/base_iban/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/sk.po b/addons/base_iban/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/sl.po b/addons/base_iban/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/sq.po b/addons/base_iban/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/sr.po b/addons/base_iban/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/sr@latin.po b/addons/base_iban/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/sv.po b/addons/base_iban/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/tlh.po b/addons/base_iban/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/tr.po b/addons/base_iban/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/uk.po b/addons/base_iban/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/vi.po b/addons/base_iban/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/zh_CN.po b/addons/base_iban/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/base_iban/i18n/zh_TW.po b/addons/base_iban/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/__init__.py b/addons/base_module_doc_rst/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/__openerp__.py b/addons/base_module_doc_rst/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/base_module_doc_rst_view.xml b/addons/base_module_doc_rst/base_module_doc_rst_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/base_module_doc_rst_wizard.xml b/addons/base_module_doc_rst/base_module_doc_rst_wizard.xml old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/ar.po b/addons/base_module_doc_rst/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/ar_AR.po b/addons/base_module_doc_rst/i18n/ar_AR.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/base_module_doc_rst.pot b/addons/base_module_doc_rst/i18n/base_module_doc_rst.pot old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/bg.po b/addons/base_module_doc_rst/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/bg_BG.po b/addons/base_module_doc_rst/i18n/bg_BG.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/bs.po b/addons/base_module_doc_rst/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/bs_BS.po b/addons/base_module_doc_rst/i18n/bs_BS.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/ca.po b/addons/base_module_doc_rst/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/ca_ES.po b/addons/base_module_doc_rst/i18n/ca_ES.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/cs.po b/addons/base_module_doc_rst/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/cs_CZ.po b/addons/base_module_doc_rst/i18n/cs_CZ.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/de.po b/addons/base_module_doc_rst/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/de_DE.po b/addons/base_module_doc_rst/i18n/de_DE.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/el.po b/addons/base_module_doc_rst/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/es.po b/addons/base_module_doc_rst/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/es_AR.po b/addons/base_module_doc_rst/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/es_ES.po b/addons/base_module_doc_rst/i18n/es_ES.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/et.po b/addons/base_module_doc_rst/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/et_EE.po b/addons/base_module_doc_rst/i18n/et_EE.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/fi.po b/addons/base_module_doc_rst/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/fr.po b/addons/base_module_doc_rst/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/fr_BE.po b/addons/base_module_doc_rst/i18n/fr_BE.po deleted file mode 100644 index 1a0e3c0f141..00000000000 --- a/addons/base_module_doc_rst/i18n/fr_BE.po +++ /dev/null @@ -1,57 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * base_module_doc_rst -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-01-28 00:45:34+0000\n" -"PO-Revision-Date: 2009-01-28 00:45:34+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: base_module_doc_rst -#: wizard_view:tech.guide.rst,init:0 -msgid "Technical Guide in rst format" -msgstr "Guide Technique au format rst" - -#. module: base_module_doc_rst -#: wizard_field:tech.guide.rst,init,name:0 -msgid "filename" -msgstr "Nom du Fichier" - -#. module: base_module_doc_rst -#: model:ir.actions.wizard,name:base_module_doc_rst.wiz_tech_guide_rst -msgid "Create RST Technical Guide" -msgstr "Crée le Guide Technical au format rst" - -#. module: base_module_doc_rst -#: wizard_view:tech.guide.rst,init:0 -msgid "Please choose a file where the Technical Guide will be written." -msgstr "Choisissez un fichier où le Guide Technique sera créé." - -#. module: base_module_doc_rst -#: wizard_field:tech.guide.rst,init,rst_file:0 -msgid "file" -msgstr "Fichier" - -#. module: base_module_doc_rst -#: wizard_button:tech.guide.rst,init,end:0 -msgid "Close" -msgstr "Fermer" - -#. module: base_module_doc_rst -#: model:ir.module.module,shortdesc:base_module_doc_rst.module_meta_information -msgid "Module Technical Guide in Restructured Text " -msgstr "" - -#. module: base_module_doc_rst -#: wizard_view:tech.guide.rst,init:0 -msgid "Create Technical Guide in rst format" -msgstr "Crée le Guide Technique au format rst" - diff --git a/addons/base_module_doc_rst/i18n/fr_FR.po b/addons/base_module_doc_rst/i18n/fr_FR.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/gl.po b/addons/base_module_doc_rst/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/hr.po b/addons/base_module_doc_rst/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/hr_HR.po b/addons/base_module_doc_rst/i18n/hr_HR.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/hu.po b/addons/base_module_doc_rst/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/hu_HU.po b/addons/base_module_doc_rst/i18n/hu_HU.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/it.po b/addons/base_module_doc_rst/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/it_IT.po b/addons/base_module_doc_rst/i18n/it_IT.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/ko.po b/addons/base_module_doc_rst/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/lt.po b/addons/base_module_doc_rst/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/lt_LT.po b/addons/base_module_doc_rst/i18n/lt_LT.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/nl.po b/addons/base_module_doc_rst/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/nl_BE.po b/addons/base_module_doc_rst/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/nl_NL.po b/addons/base_module_doc_rst/i18n/nl_NL.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/pl.po b/addons/base_module_doc_rst/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/pl_PL.po b/addons/base_module_doc_rst/i18n/pl_PL.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/pt.po b/addons/base_module_doc_rst/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/pt_BR.po b/addons/base_module_doc_rst/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/pt_PT.po b/addons/base_module_doc_rst/i18n/pt_PT.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/ro.po b/addons/base_module_doc_rst/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/ro_RO.po b/addons/base_module_doc_rst/i18n/ro_RO.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/ru.po b/addons/base_module_doc_rst/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/ru_RU.po b/addons/base_module_doc_rst/i18n/ru_RU.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/sk.po b/addons/base_module_doc_rst/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/sl.po b/addons/base_module_doc_rst/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/sl_SL.po b/addons/base_module_doc_rst/i18n/sl_SL.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/sr.po b/addons/base_module_doc_rst/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/sr@latin.po b/addons/base_module_doc_rst/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/sv.po b/addons/base_module_doc_rst/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/sv_SE.po b/addons/base_module_doc_rst/i18n/sv_SE.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/tlh.po b/addons/base_module_doc_rst/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/tlh_TLH.po b/addons/base_module_doc_rst/i18n/tlh_TLH.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/tr.po b/addons/base_module_doc_rst/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/tr_TR.po b/addons/base_module_doc_rst/i18n/tr_TR.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/uk.po b/addons/base_module_doc_rst/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/uk_UK.po b/addons/base_module_doc_rst/i18n/uk_UK.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/ur.po b/addons/base_module_doc_rst/i18n/ur.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/zh_CN.po b/addons/base_module_doc_rst/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/i18n/zh_TW.po b/addons/base_module_doc_rst/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/module_report.xml b/addons/base_module_doc_rst/module_report.xml old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/report/__init__.py b/addons/base_module_doc_rst/report/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/report/ir_module_reference_graph.rml b/addons/base_module_doc_rst/report/ir_module_reference_graph.rml old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/report/ir_module_reference_print_graph.py b/addons/base_module_doc_rst/report/ir_module_reference_print_graph.py old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/report/report_proximity_graph.py b/addons/base_module_doc_rst/report/report_proximity_graph.py old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/wizard/__init__.py b/addons/base_module_doc_rst/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/wizard/generate_relation_graph.py b/addons/base_module_doc_rst/wizard/generate_relation_graph.py old mode 100644 new mode 100755 diff --git a/addons/base_module_doc_rst/wizard/wizard_tech_guide_rst.py b/addons/base_module_doc_rst/wizard/wizard_tech_guide_rst.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/README.txt b/addons/base_module_quality/README.txt old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/__init__.py b/addons/base_module_quality/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/__openerp__.py b/addons/base_module_quality/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/base_module_quality.py b/addons/base_module_quality/base_module_quality.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/base_module_quality_view.xml b/addons/base_module_quality/base_module_quality_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/base_module_quality_wizard.xml b/addons/base_module_quality/base_module_quality_wizard.xml old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/document/quality.doc b/addons/base_module_quality/document/quality.doc old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/ab.po b/addons/base_module_quality/i18n/ab.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/ar.po b/addons/base_module_quality/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/base_module_quality.pot b/addons/base_module_quality/i18n/base_module_quality.pot old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/bg.po b/addons/base_module_quality/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/bs.po b/addons/base_module_quality/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/ca.po b/addons/base_module_quality/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/cs.po b/addons/base_module_quality/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/de.po b/addons/base_module_quality/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/el.po b/addons/base_module_quality/i18n/el.po old mode 100644 new mode 100755 index 0bc9f730d2f..d5772b06a07 --- a/addons/base_module_quality/i18n/el.po +++ b/addons/base_module_quality/i18n/el.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-08-03 03:39+0000\n" -"Last-Translator: mga (Open ERP) \n" +"PO-Revision-Date: 2010-12-28 20:06+0000\n" +"Last-Translator: Dimitris Andavoglou \n" "Language-Team: Greek \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:49+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_module_quality @@ -22,7 +22,7 @@ msgstr "" #: code:addons/base_module_quality/pep8_test/pep8_test.py:0 #, python-format msgid "Suggestion" -msgstr "" +msgstr "Πρόταση" #. module: base_module_quality #: code:addons/base_module_quality/base_module_quality.py:0 @@ -34,7 +34,7 @@ msgstr "" #: code:addons/base_module_quality/method_test/method_test.py:0 #, python-format msgid "Method Test" -msgstr "" +msgstr "Μεθοδολογία Τεστ" #. module: base_module_quality #: model:ir.module.module,shortdesc:base_module_quality.module_meta_information @@ -64,13 +64,13 @@ msgstr "Προσπεράστηκε" #: code:addons/base_module_quality/method_test/method_test.py:0 #, python-format msgid "Module has no objects" -msgstr "" +msgstr "Το Άρθρωμα δεν έχει αντικείμενα" #. module: base_module_quality #: code:addons/base_module_quality/speed_test/speed_test.py:0 #, python-format msgid "Speed Test" -msgstr "" +msgstr "Τεστ Ταχύτητας" #. module: base_module_quality #: code:addons/base_module_quality/terp_test/terp_test.py:0 @@ -87,13 +87,13 @@ msgstr "" #: code:addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format msgid "Object Name" -msgstr "" +msgstr "Όνομα Αντικειμένου" #. module: base_module_quality #: code:addons/base_module_quality/method_test/method_test.py:0 #, python-format msgid "Ok" -msgstr "" +msgstr "ΟΚ" #. module: base_module_quality #: code:addons/base_module_quality/terp_test/terp_test.py:0 @@ -107,7 +107,7 @@ msgstr "" #: code:addons/base_module_quality/wizard/quality_save_report.py:0 #, python-format msgid "No report to save!" -msgstr "" +msgstr "Καμία αναφορά για αποθήκευση!" #. module: base_module_quality #: code:addons/base_module_quality/object_test/object_test.py:0 @@ -128,7 +128,7 @@ msgstr "" #: code:addons/base_module_quality/pylint_test/pylint_test.py:0 #, python-format msgid "Result (/10)" -msgstr "" +msgstr "Αποτέλεσμα(/10)" #. module: base_module_quality #: code:addons/base_module_quality/terp_test/terp_test.py:0 @@ -140,7 +140,7 @@ msgstr "" #: code:addons/base_module_quality/object_test/object_test.py:0 #, python-format msgid "Object Test" -msgstr "" +msgstr "Τεστ Αντικειμένου" #. module: base_module_quality #: view:module.quality.detail:0 @@ -158,13 +158,13 @@ msgstr "Έλεγχος ποιότητας" #: code:addons/base_module_quality/speed_test/speed_test.py:0 #, python-format msgid "Not Efficient" -msgstr "" +msgstr "αναπαρκής" #. module: base_module_quality #: code:addons/base_module_quality/wizard/quality_save_report.py:0 #, python-format msgid "Warning" -msgstr "" +msgstr "Προειδοποίηση" #. module: base_module_quality #: code:addons/base_module_quality/unit_test/unit_test.py:0 @@ -204,7 +204,7 @@ msgstr "Συντελεστής" #: code:addons/base_module_quality/object_test/object_test.py:0 #, python-format msgid "Result of Security in %" -msgstr "" +msgstr "Αποτελέσματα Ασφάλειας σε %" #. module: base_module_quality #: help:module.quality.detail,ponderation:0 @@ -219,7 +219,7 @@ msgstr "" #: code:addons/base_module_quality/speed_test/speed_test.py:0 #, python-format msgid "No enough data" -msgstr "" +msgstr "Μη επαρκή δεδομένα" #. module: base_module_quality #: code:addons/base_module_quality/terp_test/terp_test.py:0 @@ -237,7 +237,7 @@ msgstr "" #: code:addons/base_module_quality/speed_test/speed_test.py:0 #, python-format msgid "No data" -msgstr "" +msgstr "Δεν υπάρχουν δεδομένα" #. module: base_module_quality #: model:ir.model,name:base_module_quality.model_module_quality_detail @@ -261,7 +261,7 @@ msgstr "" #: code:addons/base_module_quality/structure_test/structure_test.py:0 #, python-format msgid "Result in %" -msgstr "" +msgstr "Αποτέλεσμα σε %" #. module: base_module_quality #: wizard_view:quality_detail_save,init:0 @@ -273,7 +273,7 @@ msgstr "Τυπικές εγγραφές" #: code:addons/base_module_quality/pylint_test/pylint_test.py:0 #, python-format msgid "No python file found" -msgstr "" +msgstr "Δεν βρέθηκε αρχείο python" #. module: base_module_quality #: code:addons/base_module_quality/speed_test/speed_test.py:0 @@ -318,7 +318,7 @@ msgstr "" #: code:addons/base_module_quality/unit_test/unit_test.py:0 #, python-format msgid "Status" -msgstr "" +msgstr "Κατάσταση" #. module: base_module_quality #: view:module.quality.check:0 @@ -355,7 +355,7 @@ msgstr "" #: code:addons/base_module_quality/workflow_test/workflow_test.py:0 #, python-format msgid "Module Name" -msgstr "" +msgstr "Όνομα Αρθρώματος" #. module: base_module_quality #: code:addons/base_module_quality/unit_test/unit_test.py:0 @@ -385,7 +385,7 @@ msgstr "" #: code:addons/base_module_quality/method_test/method_test.py:0 #, python-format msgid "Exception" -msgstr "" +msgstr "Εξαίρεση" #. module: base_module_quality #: code:addons/base_module_quality/base_module_quality.py:0 @@ -532,25 +532,25 @@ msgstr "" #: code:addons/base_module_quality/object_test/object_test.py:0 #, python-format msgid "Field name" -msgstr "" +msgstr "Όνομα πεδίου" #. module: base_module_quality #: code:addons/base_module_quality/speed_test/speed_test.py:0 #, python-format msgid "1" -msgstr "" +msgstr "1" #. module: base_module_quality #: code:addons/base_module_quality/speed_test/speed_test.py:0 #, python-format msgid "Warning! Object has no demo data" -msgstr "" +msgstr "Προειδοποίηση! Το αντικείμενο δεν έχει πρόχειρα δεδομένα" #. module: base_module_quality #: code:addons/base_module_quality/terp_test/terp_test.py:0 #, python-format msgid "Tag Name" -msgstr "" +msgstr "όνομα ετικέτας" #. module: base_module_quality #: wizard_field:quality_detail_save,init,name:0 @@ -635,13 +635,13 @@ msgstr "Περίληψη" #: code:addons/base_module_quality/structure_test/structure_test.py:0 #, python-format msgid "File Name" -msgstr "" +msgstr "Όνομα Αρχείου" #. module: base_module_quality #: code:addons/base_module_quality/pep8_test/pep8_test.py:0 #, python-format msgid "Line number" -msgstr "" +msgstr "Αριθμός Γραμμής" #. module: base_module_quality #: code:addons/base_module_quality/structure_test/structure_test.py:0 diff --git a/addons/base_module_quality/i18n/es.po b/addons/base_module_quality/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/es_AR.po b/addons/base_module_quality/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/es_EC.po b/addons/base_module_quality/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/et.po b/addons/base_module_quality/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/fi.po b/addons/base_module_quality/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/fr.po b/addons/base_module_quality/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/gl.po b/addons/base_module_quality/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/hr.po b/addons/base_module_quality/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/hu.po b/addons/base_module_quality/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/id.po b/addons/base_module_quality/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/it.po b/addons/base_module_quality/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/iu.po b/addons/base_module_quality/i18n/iu.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/ko.po b/addons/base_module_quality/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/lt.po b/addons/base_module_quality/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/mn.po b/addons/base_module_quality/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/nl.po b/addons/base_module_quality/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/pl.po b/addons/base_module_quality/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/pt.po b/addons/base_module_quality/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/pt_BR.po b/addons/base_module_quality/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/ro.po b/addons/base_module_quality/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/ru.po b/addons/base_module_quality/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/sk.po b/addons/base_module_quality/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/sl.po b/addons/base_module_quality/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/sq.po b/addons/base_module_quality/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/sr.po b/addons/base_module_quality/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/sr@latin.po b/addons/base_module_quality/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/sv.po b/addons/base_module_quality/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/tr.po b/addons/base_module_quality/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/uk.po b/addons/base_module_quality/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/vi.po b/addons/base_module_quality/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/zh_CN.po b/addons/base_module_quality/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/i18n/zh_TW.po b/addons/base_module_quality/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/method_test/__init__.py b/addons/base_module_quality/method_test/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/method_test/method_test.py b/addons/base_module_quality/method_test/method_test.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/object_test/__init__.py b/addons/base_module_quality/object_test/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/object_test/object_test.py b/addons/base_module_quality/object_test/object_test.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/pep8_test/__init__.py b/addons/base_module_quality/pep8_test/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/pep8_test/pep8_test.py b/addons/base_module_quality/pep8_test/pep8_test.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/pylint_test/__init__.py b/addons/base_module_quality/pylint_test/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/pylint_test/pylint_test.py b/addons/base_module_quality/pylint_test/pylint_test.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/pylint_test/pylint_test_config.txt b/addons/base_module_quality/pylint_test/pylint_test_config.txt old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/security/ir.model.access.csv b/addons/base_module_quality/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/speed_test/__init__.py b/addons/base_module_quality/speed_test/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/speed_test/speed_test.py b/addons/base_module_quality/speed_test/speed_test.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/structure_test/__init__.py b/addons/base_module_quality/structure_test/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/structure_test/structure_test.py b/addons/base_module_quality/structure_test/structure_test.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/terp_test/__init__.py b/addons/base_module_quality/terp_test/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/terp_test/terp_test.py b/addons/base_module_quality/terp_test/terp_test.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/unit_test/__init__.py b/addons/base_module_quality/unit_test/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/unit_test/unit_test.py b/addons/base_module_quality/unit_test/unit_test.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/wizard/__init__.py b/addons/base_module_quality/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/wizard/module_quality_check.py b/addons/base_module_quality/wizard/module_quality_check.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/wizard/quality_save_report.py b/addons/base_module_quality/wizard/quality_save_report.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/workflow_test/__init__.py b/addons/base_module_quality/workflow_test/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_quality/workflow_test/workflow_test.py b/addons/base_module_quality/workflow_test/workflow_test.py old mode 100644 new mode 100755 diff --git a/addons/base_module_record/__init__.py b/addons/base_module_record/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_record/__openerp__.py b/addons/base_module_record/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_record/base_module_record.py b/addons/base_module_record/base_module_record.py old mode 100644 new mode 100755 diff --git a/addons/base_module_record/base_module_record_wizard.xml b/addons/base_module_record/base_module_record_wizard.xml old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/ar.po b/addons/base_module_record/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/base_module_record.pot b/addons/base_module_record/i18n/base_module_record.pot old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/bg.po b/addons/base_module_record/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/bs.po b/addons/base_module_record/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/ca.po b/addons/base_module_record/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/cs.po b/addons/base_module_record/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/de.po b/addons/base_module_record/i18n/de.po old mode 100644 new mode 100755 index 2de858f4c17..cb02a47eb88 --- a/addons/base_module_record/i18n/de.po +++ b/addons/base_module_record/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-30 17:15+0000\n" +"PO-Revision-Date: 2010-12-28 11:02+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \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:13+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_module_record @@ -297,6 +297,34 @@ msgid "" "module.\n" " " msgstr "" +"\n" +"Dieses Modul ermöglicht die einfache Erstellung eines neuen Moduls ohne " +"Quellcode zu schreiben.\n" +"Es werden alle Vorgänge zu ausgewählten Objekten während einer aktiven " +"Sitzung aufgezeichnet, um\n" +"dann ein Modul in Form eines .zip Archivs zu exportieren. Somit können Sie " +"sehr einfach Ihr eigenes \n" +"Modul mit Hilfe des OpenERP Clients erstellen.\n" +"\n" +"Aufgezeichnet werden neu erstellte und/oder geänderte Datensätze. Außerdem " +"werden \n" +"abhängige Daten sowie existierende Verbindungen aktualisiert (many2one " +"Widgets, many2many Widgets, ...). \n" +"Workflows und Demo/Update Daten werden ebenfalls im Rahmen dieses Moduls " +"unterstützt.\n" +"\n" +"Diese Funktion hilft Ihnen z.B. dabei wiederverwendbare Module zu erstellen " +"und auf diesem Wege individuelle\n" +"Konfigurationen zu erstellen und diese für Demos bzw. den realen Einsatz zu " +"nutzen. \n" +"\n" +"Wie sollte das Modul angewendet werden? Starten Sie den Assistenten über das " +"Menü: \n" +"Administration/Personalisierung/Export Personalisierung/Export " +"Personalisierung als Modul\n" +"Wählen Sie dann eine Datum/Zeit Einstellung für den Export der " +"aufgezeichneten Personalisierung.\n" +" " #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" diff --git a/addons/base_module_record/i18n/el.po b/addons/base_module_record/i18n/el.po old mode 100644 new mode 100755 index 92b950fc7ec..b0323fc05ab --- a/addons/base_module_record/i18n/el.po +++ b/addons/base_module_record/i18n/el.po @@ -6,13 +6,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-11-12 09:18+0000\n" +"PO-Revision-Date: 2010-12-28 18:32+0000\n" "Last-Translator: Dimitris Andavoglou \n" "Language-Team: nls@hellug.gr \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:13+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" @@ -247,7 +247,7 @@ msgstr "Πληροφορίες Αρθρώματος" #: wizard_field:base_module_record.module_record_data,init,info_yaml:0 #: wizard_field:base_module_record.module_record_objects,init,info_yaml:0 msgid "YAML" -msgstr "" +msgstr "YAML" #. module: base_module_record #: wizard_field:base_module_record.module_record_data,info,res_text:0 diff --git a/addons/base_module_record/i18n/es.po b/addons/base_module_record/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/es_AR.po b/addons/base_module_record/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/es_EC.po b/addons/base_module_record/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/et.po b/addons/base_module_record/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/fi.po b/addons/base_module_record/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/fr.po b/addons/base_module_record/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/gl.po b/addons/base_module_record/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/hr.po b/addons/base_module_record/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/hu.po b/addons/base_module_record/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/id.po b/addons/base_module_record/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/it.po b/addons/base_module_record/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/ko.po b/addons/base_module_record/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/lt.po b/addons/base_module_record/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/nl.po b/addons/base_module_record/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/nl_BE.po b/addons/base_module_record/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/pl.po b/addons/base_module_record/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/pt.po b/addons/base_module_record/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/pt_BR.po b/addons/base_module_record/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/ro.po b/addons/base_module_record/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/ru.po b/addons/base_module_record/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/sk.po b/addons/base_module_record/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/sl.po b/addons/base_module_record/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/sq.po b/addons/base_module_record/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/sr.po b/addons/base_module_record/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/sr@latin.po b/addons/base_module_record/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/sv.po b/addons/base_module_record/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/tlh.po b/addons/base_module_record/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/tr.po b/addons/base_module_record/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/uk.po b/addons/base_module_record/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/vi.po b/addons/base_module_record/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/zh_CN.po b/addons/base_module_record/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/i18n/zh_TW.po b/addons/base_module_record/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/base_module_record/security/ir.model.access.csv b/addons/base_module_record/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/base_module_record/wizard/__init__.py b/addons/base_module_record/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_module_record/wizard/base_module_record_data.py b/addons/base_module_record/wizard/base_module_record_data.py old mode 100644 new mode 100755 diff --git a/addons/base_module_record/wizard/base_module_record_objects.py b/addons/base_module_record/wizard/base_module_record_objects.py old mode 100644 new mode 100755 diff --git a/addons/base_module_record/wizard/base_module_save.py b/addons/base_module_record/wizard/base_module_save.py old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/__init__.py b/addons/base_report_creator/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/__openerp__.py b/addons/base_report_creator/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/base_report_creator.py b/addons/base_report_creator/base_report_creator.py old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/base_report_creator_demo.xml b/addons/base_report_creator/base_report_creator_demo.xml old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/base_report_creator_view.xml b/addons/base_report_creator/base_report_creator_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/base_report_creator_wizard.xml b/addons/base_report_creator/base_report_creator_wizard.xml old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/ar.po b/addons/base_report_creator/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/base_report_creator.pot b/addons/base_report_creator/i18n/base_report_creator.pot old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/bg.po b/addons/base_report_creator/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/bs.po b/addons/base_report_creator/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/ca.po b/addons/base_report_creator/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/cs.po b/addons/base_report_creator/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/de.po b/addons/base_report_creator/i18n/de.po old mode 100644 new mode 100755 index a252525b8f6..1c2543d6cbe --- a/addons/base_report_creator/i18n/de.po +++ b/addons/base_report_creator/i18n/de.po @@ -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-11-30 15:52+0000\n" +"PO-Revision-Date: 2010-12-28 11:09+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \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:40+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_report_creator @@ -145,6 +145,7 @@ msgstr "Summe" #: constraint:base_report_creator.report:0 msgid "You must have to give calendar view's color,start date and delay." msgstr "" +"Sie müssen zum Kalender die Farbe angegeben, Startdatum und Laufzeit." #. module: base_report_creator #: field:base_report_creator.report,model_ids:0 @@ -246,6 +247,8 @@ msgstr "UND" #: constraint:base_report_creator.report:0 msgid "You can not display field which are not stored in Database." msgstr "" +"Sie können kein Feld anzeigen, welches nicht in der Datenbank gespeichert " +"wird." #. module: base_report_creator #: field:base_report_creator.report.fields,calendar_mode:0 @@ -384,6 +387,7 @@ msgstr "Abbrechen" #: constraint:base_report_creator.report:0 msgid "You can apply aggregate function to the non calculated field." msgstr "" +"Sie können keine Summenfunktion bei nicht berechenbaren Feldern anwenden." #. module: base_report_creator #: field:base_report_creator.report,menu_id:0 @@ -416,6 +420,7 @@ msgid "" "If the active field is set to False, it will allow you to hide the report " "without removing it." msgstr "" +"Durch Deaktivierung der Option, kann die Auswertung ausgeblendet werden." #. module: base_report_creator #: selection:base_report_creator.report,view_graph_type:0 diff --git a/addons/base_report_creator/i18n/el.po b/addons/base_report_creator/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/es.po b/addons/base_report_creator/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/es_AR.po b/addons/base_report_creator/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/et.po b/addons/base_report_creator/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/fi.po b/addons/base_report_creator/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/fr.po b/addons/base_report_creator/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/hr.po b/addons/base_report_creator/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/hu.po b/addons/base_report_creator/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/id.po b/addons/base_report_creator/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/it.po b/addons/base_report_creator/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/ko.po b/addons/base_report_creator/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/lt.po b/addons/base_report_creator/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/nl.po b/addons/base_report_creator/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/nl_BE.po b/addons/base_report_creator/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/pl.po b/addons/base_report_creator/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/pt.po b/addons/base_report_creator/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/pt_BR.po b/addons/base_report_creator/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/ro.po b/addons/base_report_creator/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/ru.po b/addons/base_report_creator/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/sk.po b/addons/base_report_creator/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/sl.po b/addons/base_report_creator/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/sq.po b/addons/base_report_creator/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/sr.po b/addons/base_report_creator/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/sr@latin.po b/addons/base_report_creator/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/sv.po b/addons/base_report_creator/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/tlh.po b/addons/base_report_creator/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/tr.po b/addons/base_report_creator/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/uk.po b/addons/base_report_creator/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/vi.po b/addons/base_report_creator/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/zh_CN.po b/addons/base_report_creator/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/i18n/zh_TW.po b/addons/base_report_creator/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/security/ir.model.access.csv b/addons/base_report_creator/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/wizard/__init__.py b/addons/base_report_creator/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/wizard/report_menu_create.py b/addons/base_report_creator/wizard/report_menu_create.py old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/wizard/report_menu_create_view.xml b/addons/base_report_creator/wizard/report_menu_create_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_report_creator/wizard/wiz_set_filter_fields.py b/addons/base_report_creator/wizard/wiz_set_filter_fields.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/__init__.py b/addons/base_report_designer/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/__openerp__.py b/addons/base_report_designer/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/base_report_designer.py b/addons/base_report_designer/base_report_designer.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/base_report_designer_installer.xml b/addons/base_report_designer/base_report_designer_installer.xml old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/ar.po b/addons/base_report_designer/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/base_report_designer.pot b/addons/base_report_designer/i18n/base_report_designer.pot old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/bg.po b/addons/base_report_designer/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/bs.po b/addons/base_report_designer/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/ca.po b/addons/base_report_designer/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/cs.po b/addons/base_report_designer/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/de.po b/addons/base_report_designer/i18n/de.po old mode 100644 new mode 100755 index cd5090bb172..7b31724648d --- a/addons/base_report_designer/i18n/de.po +++ b/addons/base_report_designer/i18n/de.po @@ -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-11-30 18:19+0000\n" +"PO-Revision-Date: 2010-12-28 11:12+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \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:34+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_report_designer @@ -25,7 +25,7 @@ msgstr "" #. module: base_report_designer #: view:base_report_designer.installer:0 msgid "OpenERP Report Designer Configuration" -msgstr "" +msgstr "Konfiguration Report Designer" #. module: base_report_designer #: model:ir.module.module,shortdesc:base_report_designer.module_meta_information @@ -38,6 +38,8 @@ msgid "" "This plug-in allows you to create/modify OpenERP Reports into OpenOffice " "Writer." msgstr "" +"Dieses Plugin erlaubt es Berichte für OpenERP in Openoffice Writer zu " +"erstellen oder zu verändern" #. module: base_report_designer #: view:base.report.file.sxw:0 @@ -56,6 +58,14 @@ msgid "" "you can modify in OpenOffice.Once you have modified it you can\n" "upload the report using the same wizard.\n" msgstr "" +"\n" +"Dieses Modul wird mit dem OpenERP OpenOffice Plugin benutzt.\n" +"Sie müssen zunächst das Plugin installieren (http://www.openerp.com)\n" +"\n" +"Dieses Modul fügt einen Assistenten für den Import/Export von .swx \n" +"Dateien hinzu, die Sie dann in OpenOffice bearbeiten können. Nach dem \n" +"bearbeiten können Sie den Bericht auch mit diesem Assistenten wieder\n" +"hochladen.\n" #. module: base_report_designer #: view:base.report.file.sxw:0 diff --git a/addons/base_report_designer/i18n/el.po b/addons/base_report_designer/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/es.po b/addons/base_report_designer/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/es_AR.po b/addons/base_report_designer/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/es_EC.po b/addons/base_report_designer/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/et.po b/addons/base_report_designer/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/fi.po b/addons/base_report_designer/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/fr.po b/addons/base_report_designer/i18n/fr.po old mode 100644 new mode 100755 index 913d1cb228b..0cf581b1e14 --- a/addons/base_report_designer/i18n/fr.po +++ b/addons/base_report_designer/i18n/fr.po @@ -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 22:32+0000\n" +"PO-Revision-Date: 2010-12-28 08:27+0000\n" "Last-Translator: lolivier \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:42+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:54+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/gl.po b/addons/base_report_designer/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/hr.po b/addons/base_report_designer/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/hu.po b/addons/base_report_designer/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/id.po b/addons/base_report_designer/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/it.po b/addons/base_report_designer/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/ko.po b/addons/base_report_designer/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/lt.po b/addons/base_report_designer/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/mn.po b/addons/base_report_designer/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/nl.po b/addons/base_report_designer/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/nl_BE.po b/addons/base_report_designer/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/pl.po b/addons/base_report_designer/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/pt.po b/addons/base_report_designer/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/pt_BR.po b/addons/base_report_designer/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/ro.po b/addons/base_report_designer/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/ru.po b/addons/base_report_designer/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/sk.po b/addons/base_report_designer/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/sl.po b/addons/base_report_designer/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/sq.po b/addons/base_report_designer/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/sr.po b/addons/base_report_designer/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/sr@latin.po b/addons/base_report_designer/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/sv.po b/addons/base_report_designer/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/tlh.po b/addons/base_report_designer/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/tr.po b/addons/base_report_designer/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/uk.po b/addons/base_report_designer/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/vi.po b/addons/base_report_designer/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/zh_CN.po b/addons/base_report_designer/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/i18n/zh_TW.po b/addons/base_report_designer/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/installer.py b/addons/base_report_designer/installer.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/openerp_sxw2rml/__init__.py b/addons/base_report_designer/openerp_sxw2rml/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/openerp_sxw2rml/normalized_odt2rml.xsl b/addons/base_report_designer/openerp_sxw2rml/normalized_odt2rml.xsl old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/openerp_sxw2rml/normalized_oo2rml.xsl b/addons/base_report_designer/openerp_sxw2rml/normalized_oo2rml.xsl old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/openerp_sxw2rml/office.dtd b/addons/base_report_designer/openerp_sxw2rml/office.dtd old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/openerp_sxw2rml/openerp_sxw2rml.py b/addons/base_report_designer/openerp_sxw2rml/openerp_sxw2rml.py old mode 100644 new mode 100755 index c51602cd82d..77314929269 --- a/addons/base_report_designer/openerp_sxw2rml/openerp_sxw2rml.py +++ b/addons/base_report_designer/openerp_sxw2rml/openerp_sxw2rml.py @@ -26,7 +26,7 @@ OpenERP SXW2RML - The OpenERP's report engine OpenERP SXW2RML is part of the OpenERP Report Project. OpenERP Report is a module that allows you to render high quality PDF document -from an OpenOffice template (.sxw) and any relationnal database. +from an OpenOffice template (.sxw) and any relationl database. """ __version__ = '0.9' @@ -251,8 +251,8 @@ class DomApi(DomApiGeneral): parent = self.style_dict[style_name].getAttribute("style:parent-style-name").encode("utf-8") res = self.getStylePropertiesDict(parent) - childs = self.style_dict[style_name].childNodes - for c in childs: + children = self.style_dict[style_name].childNodes + for c in children: if c.nodeType == c.ELEMENT_NODE and c.nodeName.find("properties")>0 : for attr in c._attrs.keys(): res[attr] = c.getAttribute(attr).encode("utf-8") diff --git a/addons/base_report_designer/plugin/openerp_report_designer.zip b/addons/base_report_designer/plugin/openerp_report_designer.zip old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/README b/addons/base_report_designer/plugin/openerp_report_designer/README old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/package/Addons.xcu b/addons/base_report_designer/plugin/openerp_report_designer/bin/package/Addons.xcu old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/About.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/About.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/AddAttachment.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/AddAttachment.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Change.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Change.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ConvertBracesToField.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ConvertBracesToField.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ConvertFieldsToBraces.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ConvertFieldsToBraces.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ExportToRML.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ExportToRML.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Expression.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Expression.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Fields.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Fields.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/LoginTest.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/LoginTest.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ModifyExistingReport.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ModifyExistingReport.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/NewReport.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/NewReport.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Repeatln.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Repeatln.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/SendToServer.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/SendToServer.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ServerParameter.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ServerParameter.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Translation.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Translation.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/__init__.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/compile_all.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/compile_all.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/import b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/import old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/__init__.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/actions.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/actions.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/error.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/error.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/functions.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/functions.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/gui.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/gui.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/logreport.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/logreport.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/rpc.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/rpc.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/tiny_socket.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/tiny_socket.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/tools.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/tools.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/modify.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/modify.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/test/test.txt b/addons/base_report_designer/plugin/openerp_report_designer/test/test.txt old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer/test/test_fields.py b/addons/base_report_designer/plugin/openerp_report_designer/test/test_fields.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/security/base_report_security.xml b/addons/base_report_designer/security/base_report_security.xml old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/wizard/__init__.py b/addons/base_report_designer/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/wizard/base_report_design_view.xml b/addons/base_report_designer/wizard/base_report_design_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/wizard/base_report_designer_modify.py b/addons/base_report_designer/wizard/base_report_designer_modify.py old mode 100644 new mode 100755 diff --git a/addons/base_setup/__init__.py b/addons/base_setup/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_setup/__openerp__.py b/addons/base_setup/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/base_setup/base_setup_data.xml b/addons/base_setup/base_setup_data.xml old mode 100644 new mode 100755 diff --git a/addons/base_setup/base_setup_demo.xml b/addons/base_setup/base_setup_demo.xml old mode 100644 new mode 100755 diff --git a/addons/base_setup/base_setup_installer.xml b/addons/base_setup/base_setup_installer.xml old mode 100644 new mode 100755 diff --git a/addons/base_setup/base_setup_todo.xml b/addons/base_setup/base_setup_todo.xml old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/ar.po b/addons/base_setup/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/base_setup.pot b/addons/base_setup/i18n/base_setup.pot old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/bg.po b/addons/base_setup/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/bs.po b/addons/base_setup/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/ca.po b/addons/base_setup/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/cs.po b/addons/base_setup/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/de.po b/addons/base_setup/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/el.po b/addons/base_setup/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/es.po b/addons/base_setup/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/es_AR.po b/addons/base_setup/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/es_EC.po b/addons/base_setup/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/et.po b/addons/base_setup/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/fa.po b/addons/base_setup/i18n/fa.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/fi.po b/addons/base_setup/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/fr.po b/addons/base_setup/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/gl.po b/addons/base_setup/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/hr.po b/addons/base_setup/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/hu.po b/addons/base_setup/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/id.po b/addons/base_setup/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/it.po b/addons/base_setup/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/ko.po b/addons/base_setup/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/lt.po b/addons/base_setup/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/lv.po b/addons/base_setup/i18n/lv.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/mn.po b/addons/base_setup/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/nl.po b/addons/base_setup/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/nl_BE.po b/addons/base_setup/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/pl.po b/addons/base_setup/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/pt.po b/addons/base_setup/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/pt_BR.po b/addons/base_setup/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/ro.po b/addons/base_setup/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/ru.po b/addons/base_setup/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/sk.po b/addons/base_setup/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/sl.po b/addons/base_setup/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/sq.po b/addons/base_setup/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/sr.po b/addons/base_setup/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/sr@latin.po b/addons/base_setup/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/sv.po b/addons/base_setup/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/th.po b/addons/base_setup/i18n/th.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/tlh.po b/addons/base_setup/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/tr.po b/addons/base_setup/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/uk.po b/addons/base_setup/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/vi.po b/addons/base_setup/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/zh_CN.po b/addons/base_setup/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/i18n/zh_TW.po b/addons/base_setup/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/base_setup/installer.py b/addons/base_setup/installer.py old mode 100644 new mode 100755 diff --git a/addons/base_setup/security/ir.model.access.csv b/addons/base_setup/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/base_setup/todo.py b/addons/base_setup/todo.py old mode 100644 new mode 100755 diff --git a/addons/base_synchro/__init__.py b/addons/base_synchro/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_synchro/__openerp__.py b/addons/base_synchro/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/base_synchro/i18n/base_synchro.pot b/addons/base_synchro/i18n/base_synchro.pot old mode 100644 new mode 100755 diff --git a/addons/base_synchro/i18n/de.po b/addons/base_synchro/i18n/de.po old mode 100644 new mode 100755 index d5ddf158876..75dea07f52f --- a/addons/base_synchro/i18n/de.po +++ b/addons/base_synchro/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-30 17:47+0000\n" +"PO-Revision-Date: 2010-12-28 11:14+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \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:57+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_synchro @@ -170,7 +170,7 @@ msgstr "Synchronisierte Instanzen" #. module: base_synchro #: field:base.synchro.obj,active:0 msgid "Active" -msgstr "" +msgstr "Aktiv" #. module: base_synchro #: view:base.synchro.obj:0 diff --git a/addons/base_synchro/i18n/el.po b/addons/base_synchro/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/base_synchro/i18n/es.po b/addons/base_synchro/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/base_synchro/i18n/fr.po b/addons/base_synchro/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/base_synchro/i18n/it.po b/addons/base_synchro/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/base_synchro/i18n/nl.po b/addons/base_synchro/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/base_synchro/i18n/pt.po b/addons/base_synchro/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/base_synchro/i18n/pt_BR.po b/addons/base_synchro/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/base_synchro/i18n/ru.po b/addons/base_synchro/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/base_synchro/i18n/sr.po b/addons/base_synchro/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/base_synchro/i18n/sr@latin.po b/addons/base_synchro/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/base_synchro/i18n/sv.po b/addons/base_synchro/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/base_synchro/i18n/zh_CN.po b/addons/base_synchro/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/base_synchro/security/ir.model.access.csv b/addons/base_synchro/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/base_synchro/wizard/__init__.py b/addons/base_synchro/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_synchro/wizard/base_synchro.py b/addons/base_synchro/wizard/base_synchro.py old mode 100644 new mode 100755 diff --git a/addons/base_synchro/wizard/base_synchro_view.xml b/addons/base_synchro/wizard/base_synchro_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_tools/LICENSE b/addons/base_tools/LICENSE old mode 100644 new mode 100755 diff --git a/addons/base_tools/__init__.py b/addons/base_tools/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_tools/__openerp__.py b/addons/base_tools/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/base_tools/i18n/base_tools.pot b/addons/base_tools/i18n/base_tools.pot old mode 100644 new mode 100755 diff --git a/addons/base_tools/tools_view.xml b/addons/base_tools/tools_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_vat/__init__.py b/addons/base_vat/__init__.py old mode 100644 new mode 100755 diff --git a/addons/base_vat/__openerp__.py b/addons/base_vat/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/base_vat/base_vat.py b/addons/base_vat/base_vat.py old mode 100644 new mode 100755 diff --git a/addons/base_vat/base_vat_view.xml b/addons/base_vat/base_vat_view.xml old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/ab_AB.po b/addons/base_vat/i18n/ab_AB.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/ar.po b/addons/base_vat/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/base_vat.pot b/addons/base_vat/i18n/base_vat.pot old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/bg.po b/addons/base_vat/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/bs.po b/addons/base_vat/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/ca.po b/addons/base_vat/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/cs.po b/addons/base_vat/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/da.po b/addons/base_vat/i18n/da.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/de.po b/addons/base_vat/i18n/de.po old mode 100644 new mode 100755 index 295cf6abffa..b2db17365c9 --- a/addons/base_vat/i18n/de.po +++ b/addons/base_vat/i18n/de.po @@ -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-11-30 11:39+0000\n" +"PO-Revision-Date: 2010-12-28 11:16+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \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:14+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_vat @@ -40,6 +40,14 @@ msgid "" "countries.\n" " " msgstr "" +"\n" +" Aktivieren Sie die UST-ID für den Partner. Prüfen Sie die Gültigkeit.\n" +"\n" +" Dieses Modul verwendet die Logik, die unter http://sima-pc.com/nif.php " +"beschrieben wird,\n" +" zur Prüfung der Gültigkeit einer UST-ID, die Sie bei einem " +"Geschäftspartner aus der EU zuweisen.\n" +" " #. module: base_vat #: model:ir.module.module,shortdesc:base_vat.module_meta_information @@ -51,7 +59,7 @@ msgstr "" #. module: base_vat #: constraint:res.partner:0 msgid "Error ! You can not create recursive associated members." -msgstr "" +msgstr "Fehler! Sie können keine rekursiven Elemente anlegen" #. module: base_vat #: code:addons/base_vat/base_vat.py:0 diff --git a/addons/base_vat/i18n/el.po b/addons/base_vat/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/en_AU.po b/addons/base_vat/i18n/en_AU.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/es.po b/addons/base_vat/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/es_AR.po b/addons/base_vat/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/es_EC.po b/addons/base_vat/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/et.po b/addons/base_vat/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/eu.po b/addons/base_vat/i18n/eu.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/fi.po b/addons/base_vat/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/fr.po b/addons/base_vat/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/gl.po b/addons/base_vat/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/hr.po b/addons/base_vat/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/hu.po b/addons/base_vat/i18n/hu.po old mode 100644 new mode 100755 index 74857cfdf00..6dea494d2fb --- a/addons/base_vat/i18n/hu.po +++ b/addons/base_vat/i18n/hu.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2009-02-03 06:25+0000\n" -"Last-Translator: <>\n" +"PO-Revision-Date: 2010-12-28 20:34+0000\n" +"Last-Translator: NOVOTRADE SYSTEMHOUSE \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:14+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_vat @@ -64,7 +64,7 @@ msgstr "" #. module: base_vat #: model:ir.model,name:base_vat.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partner" #. module: base_vat #: field:res.partner,vat_subjected:0 diff --git a/addons/base_vat/i18n/id.po b/addons/base_vat/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/it.po b/addons/base_vat/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/ko.po b/addons/base_vat/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/lt.po b/addons/base_vat/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/mn.po b/addons/base_vat/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/nb.po b/addons/base_vat/i18n/nb.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/nl.po b/addons/base_vat/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/nl_BE.po b/addons/base_vat/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/oc.po b/addons/base_vat/i18n/oc.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/pl.po b/addons/base_vat/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/pt.po b/addons/base_vat/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/pt_BR.po b/addons/base_vat/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/ro.po b/addons/base_vat/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/ru.po b/addons/base_vat/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/sk.po b/addons/base_vat/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/sl.po b/addons/base_vat/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/sq.po b/addons/base_vat/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/sr.po b/addons/base_vat/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/sr@latin.po b/addons/base_vat/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/sv.po b/addons/base_vat/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/tlh.po b/addons/base_vat/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/tr.po b/addons/base_vat/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/uk.po b/addons/base_vat/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/vi.po b/addons/base_vat/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/zh_CN.po b/addons/base_vat/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/base_vat/i18n/zh_TW.po b/addons/base_vat/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/board/__init__.py b/addons/board/__init__.py old mode 100644 new mode 100755 diff --git a/addons/board/__openerp__.py b/addons/board/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/board/board.py b/addons/board/board.py old mode 100644 new mode 100755 diff --git a/addons/board/board_administration_view.xml b/addons/board/board_administration_view.xml old mode 100644 new mode 100755 diff --git a/addons/board/board_demo.xml b/addons/board/board_demo.xml old mode 100644 new mode 100755 diff --git a/addons/board/board_view.xml b/addons/board/board_view.xml old mode 100644 new mode 100755 diff --git a/addons/board/i18n/ar.po b/addons/board/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/bg.po b/addons/board/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/board.pot b/addons/board/i18n/board.pot old mode 100644 new mode 100755 diff --git a/addons/board/i18n/br.po b/addons/board/i18n/br.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/bs.po b/addons/board/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/ca.po b/addons/board/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/cs.po b/addons/board/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/de.po b/addons/board/i18n/de.po old mode 100644 new mode 100755 index 0de6b36d3e4..5d97f21a745 --- a/addons/board/i18n/de.po +++ b/addons/board/i18n/de.po @@ -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-11-30 15:59+0000\n" +"PO-Revision-Date: 2010-12-28 11:17+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \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:39+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: board @@ -229,7 +229,7 @@ msgstr "Obermenü" #. module: board #: view:res.log.report:0 msgid " Month-1 " -msgstr "" +msgstr " Monat -1 " #. module: board #: selection:res.log.report,month:0 diff --git a/addons/board/i18n/el.po b/addons/board/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/es.po b/addons/board/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/es_AR.po b/addons/board/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/es_EC.po b/addons/board/i18n/es_EC.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/et.po b/addons/board/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/fi.po b/addons/board/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/fr.po b/addons/board/i18n/fr.po old mode 100644 new mode 100755 index 6d59db8b08e..3b8fa7ace2c --- a/addons/board/i18n/fr.po +++ b/addons/board/i18n/fr.po @@ -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 22:43+0000\n" +"PO-Revision-Date: 2010-12-28 09:04+0000\n" "Last-Translator: lolivier \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:42+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: board diff --git a/addons/board/i18n/gl.po b/addons/board/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/hr.po b/addons/board/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/hu.po b/addons/board/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/id.po b/addons/board/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/it.po b/addons/board/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/ko.po b/addons/board/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/lt.po b/addons/board/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/mn.po b/addons/board/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/nl.po b/addons/board/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/nl_BE.po b/addons/board/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/pl.po b/addons/board/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/pt.po b/addons/board/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/pt_BR.po b/addons/board/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/ro.po b/addons/board/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/ru.po b/addons/board/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/sk.po b/addons/board/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/sl.po b/addons/board/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/sq.po b/addons/board/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/sr.po b/addons/board/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/sr@latin.po b/addons/board/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/sv.po b/addons/board/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/tlh.po b/addons/board/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/tr.po b/addons/board/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/uk.po b/addons/board/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/vi.po b/addons/board/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/zh_CN.po b/addons/board/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/board/i18n/zh_TW.po b/addons/board/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/board/security/board_security.xml b/addons/board/security/board_security.xml old mode 100644 new mode 100755 diff --git a/addons/board/security/ir.model.access.csv b/addons/board/security/ir.model.access.csv old mode 100644 new mode 100755 index 0110e1678ae..1b0abd337c7 --- a/addons/board/security/ir.model.access.csv +++ b/addons/board/security/ir.model.access.csv @@ -4,4 +4,5 @@ "access_board_note_type","board.note.type","model_board_note_type","base.group_user",1,1,1,1 "access_board_note","board.note","model_board_note","base.group_user",1,1,1,1 "access_board_board_sale_salesman","board.board.sale.salesman","model_board_board","base.group_sale_salesman",1,1,1,1 - +"access_res_log_report_system","res.log.report system","model_res_log_report",base.group_system,1,0,0,0 +"access_res_log_report_erp_manager","res.log.report erp_manager","model_res_log_report",base.group_erp_manager,1,0,0,0 diff --git a/addons/board/wizard/__init__.py b/addons/board/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/board/wizard/board_menu_create.py b/addons/board/wizard/board_menu_create.py old mode 100644 new mode 100755 diff --git a/addons/board/wizard/board_menu_create_view.xml b/addons/board/wizard/board_menu_create_view.xml old mode 100644 new mode 100755 diff --git a/addons/caldav/__init__.py b/addons/caldav/__init__.py old mode 100644 new mode 100755 diff --git a/addons/caldav/__openerp__.py b/addons/caldav/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/caldav/caldav.py b/addons/caldav/caldav.py old mode 100644 new mode 100755 diff --git a/addons/caldav/caldav_data.xml b/addons/caldav/caldav_data.xml old mode 100644 new mode 100755 diff --git a/addons/caldav/caldav_node.py b/addons/caldav/caldav_node.py old mode 100644 new mode 100755 diff --git a/addons/caldav/caldav_setup.xml b/addons/caldav/caldav_setup.xml old mode 100644 new mode 100755 diff --git a/addons/caldav/caldav_view.xml b/addons/caldav/caldav_view.xml old mode 100644 new mode 100755 diff --git a/addons/caldav/calendar.py b/addons/caldav/calendar.py old mode 100644 new mode 100755 diff --git a/addons/caldav/calendar_collection.py b/addons/caldav/calendar_collection.py old mode 100644 new mode 100755 diff --git a/addons/caldav/doc/Path discovery.rst b/addons/caldav/doc/Path discovery.rst old mode 100644 new mode 100755 diff --git a/addons/caldav/doc/iPhone.rst b/addons/caldav/doc/iPhone.rst old mode 100644 new mode 100755 diff --git a/addons/caldav/i18n/caldav.pot b/addons/caldav/i18n/caldav.pot old mode 100644 new mode 100755 diff --git a/addons/caldav/i18n/de.po b/addons/caldav/i18n/de.po old mode 100644 new mode 100755 index cf86f8cd445..42010ac6e99 --- a/addons/caldav/i18n/de.po +++ b/addons/caldav/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-30 17:53+0000\n" +"PO-Revision-Date: 2010-12-28 11:31+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \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:58+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: caldav @@ -57,7 +57,7 @@ msgstr "Teilnehmer" #. module: caldav #: sql_constraint:basic.calendar.fields:0 msgid "Can not map a field more than once" -msgstr "" +msgstr "Das Feld kann nur einmal zugewiesen werden." #. module: caldav #: selection:basic.calendar,type:0 @@ -224,6 +224,31 @@ msgid "" "created\n" " CALENDAR_NAME: Name of calendar to access\n" msgstr "" +"\n" +" Dieses Modul beinhaltet die Basisfunktionen für ein caldav " +"Kalendersystem: \n" +" - WebDav Server, für den Remote Zugriff auf einen Kalender\n" +" - Synchronisation von Kalendern durch CalDav Nutzung\n" +" - Individuelle Konfiguration der Attribute Termin und Aufgabe für alle " +"OpenERP Objekte\n" +" - Bereitstellung von ical Import/Export Funktionalität\n" +"\n" +" Für einen Zugriff auf Kalender durch CalDav fähige Anwendungen, " +"verwenden Sie folgende Adresse:\n" +" " +"http://HOSTNAME:PORT/webdav/DATABASE_NAME/calendars/users/USERNAME/c\n" +"\n" +" Für einen Remote Zugriff auf OpenERP Kalender via WebCal verwenden Sie " +"folgendes Adressmuster:\n" +" " +"http://HOSTNAME:PORT/webdav/DATABASE_NAME/Calendars/CALENDAR_NAME.ics\n" +"\n" +" wobei folgendes gilt:\n" +" HOSTNAME: Host auf dem der OpenERP Server (mit WebDav) läuft\n" +" PORT: Port auf dem der OpenERP Server läuft (Standard: 8069)\n" +" DATABASE_NAME: Name der Datenbank mit dem erstellten OpenERP " +"Kalender\n" +" CALENDAR_NAME: Name des Kalenders, der verbunden werden soll\n" #. module: caldav #: field:basic.calendar,create_date:0 @@ -269,12 +294,15 @@ msgstr "Kalender" msgid "" "Please install python-vobject from http://vobject.skyhouseconsulting.com/" msgstr "" +"Bitte installieren Sie python-vobject von " +"http://vobject.skyhouseconsulting.com/" #. module: caldav #: code:addons/caldav/wizard/calendar_event_import.py:0 #, python-format msgid "Invalid format of the ics, file can not be imported" msgstr "" +"Ungültiges Format der .ics Datei. Diese Datei kann nicht importiert werden." #. module: caldav #: field:basic.calendar.fields,field_id:0 diff --git a/addons/caldav/i18n/el.po b/addons/caldav/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/caldav/i18n/es.po b/addons/caldav/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/caldav/i18n/fr.po b/addons/caldav/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/caldav/i18n/it.po b/addons/caldav/i18n/it.po old mode 100644 new mode 100755 diff --git a/addons/caldav/i18n/nl.po b/addons/caldav/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/caldav/i18n/pl.po b/addons/caldav/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/caldav/i18n/pt.po b/addons/caldav/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/caldav/i18n/sr.po b/addons/caldav/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/caldav/i18n/sr@latin.po b/addons/caldav/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/caldav/i18n/sv.po b/addons/caldav/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/caldav/orm_utils.py b/addons/caldav/orm_utils.py old mode 100644 new mode 100755 diff --git a/addons/caldav/security/ir.model.access.csv b/addons/caldav/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/caldav/wizard/__init__.py b/addons/caldav/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/caldav/wizard/calendar_event_export.py b/addons/caldav/wizard/calendar_event_export.py old mode 100644 new mode 100755 diff --git a/addons/caldav/wizard/calendar_event_export_view.xml b/addons/caldav/wizard/calendar_event_export_view.xml old mode 100644 new mode 100755 diff --git a/addons/caldav/wizard/calendar_event_import.py b/addons/caldav/wizard/calendar_event_import.py old mode 100644 new mode 100755 diff --git a/addons/caldav/wizard/calendar_event_import_view.xml b/addons/caldav/wizard/calendar_event_import_view.xml old mode 100644 new mode 100755 diff --git a/addons/caldav/wizard/calendar_event_subscribe.py b/addons/caldav/wizard/calendar_event_subscribe.py old mode 100644 new mode 100755 diff --git a/addons/caldav/wizard/calendar_event_subscribe_view.xml b/addons/caldav/wizard/calendar_event_subscribe_view.xml old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/__init__.py b/addons/claim_from_delivery/__init__.py old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/__openerp__.py b/addons/claim_from_delivery/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/claim_delivery_view.xml b/addons/claim_from_delivery/claim_delivery_view.xml old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/i18n/claim_from_delivery.pot b/addons/claim_from_delivery/i18n/claim_from_delivery.pot old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/i18n/de.po b/addons/claim_from_delivery/i18n/de.po old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/i18n/en_US.po b/addons/claim_from_delivery/i18n/en_US.po old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/i18n/es.po b/addons/claim_from_delivery/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/i18n/fr.po b/addons/claim_from_delivery/i18n/fr.po old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/i18n/it.po b/addons/claim_from_delivery/i18n/it.po old mode 100644 new mode 100755 index 216cca22574..8218252b5a1 --- a/addons/claim_from_delivery/i18n/it.po +++ b/addons/claim_from_delivery/i18n/it.po @@ -8,29 +8,29 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-22 07:34+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2010-12-28 12:28+0000\n" +"Last-Translator: Nicola Riolini - Micronaet \n" "Language-Team: Italian \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:54+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: claim_from_delivery #: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery msgid "Claim" -msgstr "" +msgstr "Reclamo" #. module: claim_from_delivery #: model:ir.module.module,description:claim_from_delivery.module_meta_information msgid "Create Claim from delivery order:\n" -msgstr "" +msgstr "Crea il reclamo dall'ordine di consegna:\n" #. module: claim_from_delivery #: model:ir.module.module,shortdesc:claim_from_delivery.module_meta_information msgid "Claim from delivery" -msgstr "" +msgstr "Reclamo da consegna" #~ msgid "Picking List" #~ msgstr "Picking List" diff --git a/addons/claim_from_delivery/i18n/nl.po b/addons/claim_from_delivery/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/i18n/pt.po b/addons/claim_from_delivery/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/i18n/pt_BR.po b/addons/claim_from_delivery/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/i18n/ru.po b/addons/claim_from_delivery/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/i18n/sl.po b/addons/claim_from_delivery/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/i18n/sr.po b/addons/claim_from_delivery/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/i18n/sr@latin.po b/addons/claim_from_delivery/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/i18n/sv.po b/addons/claim_from_delivery/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/claim_from_delivery/i18n/tr.po b/addons/claim_from_delivery/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/crm/__init__.py b/addons/crm/__init__.py old mode 100644 new mode 100755 diff --git a/addons/crm/__openerp__.py b/addons/crm/__openerp__.py old mode 100644 new mode 100755 diff --git a/addons/crm/board_crm_statistical_view.xml b/addons/crm/board_crm_statistical_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/board_crm_view.xml b/addons/crm/board_crm_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm.py b/addons/crm/crm.py old mode 100644 new mode 100755 diff --git a/addons/crm/crm_action_rule.py b/addons/crm/crm_action_rule.py old mode 100644 new mode 100755 diff --git a/addons/crm/crm_action_rule_view.xml b/addons/crm/crm_action_rule_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_data.xml b/addons/crm/crm_data.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_demo.xml b/addons/crm/crm_demo.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_installer.py b/addons/crm/crm_installer.py old mode 100644 new mode 100755 diff --git a/addons/crm/crm_installer_view.xml b/addons/crm/crm_installer_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_lead.py b/addons/crm/crm_lead.py old mode 100644 new mode 100755 diff --git a/addons/crm/crm_lead_data.xml b/addons/crm/crm_lead_data.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_lead_demo.xml b/addons/crm/crm_lead_demo.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_lead_menu.xml b/addons/crm/crm_lead_menu.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_lead_view.xml b/addons/crm/crm_lead_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_meeting.py b/addons/crm/crm_meeting.py old mode 100644 new mode 100755 diff --git a/addons/crm/crm_meeting_data.xml b/addons/crm/crm_meeting_data.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_meeting_demo.xml b/addons/crm/crm_meeting_demo.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_meeting_menu.xml b/addons/crm/crm_meeting_menu.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_meeting_view.xml b/addons/crm/crm_meeting_view.xml old mode 100644 new mode 100755 index c27a50cf37b..2b3f610dabd --- a/addons/crm/crm_meeting_view.xml +++ b/addons/crm/crm_meeting_view.xml @@ -44,7 +44,7 @@ - + diff --git a/addons/crm/crm_operators.py b/addons/crm/crm_operators.py old mode 100644 new mode 100755 diff --git a/addons/crm/crm_opportunity.py b/addons/crm/crm_opportunity.py old mode 100644 new mode 100755 diff --git a/addons/crm/crm_opportunity_data.xml b/addons/crm/crm_opportunity_data.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_opportunity_demo.xml b/addons/crm/crm_opportunity_demo.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_opportunity_menu.xml b/addons/crm/crm_opportunity_menu.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_opportunity_view.xml b/addons/crm/crm_opportunity_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_phonecall.py b/addons/crm/crm_phonecall.py old mode 100644 new mode 100755 diff --git a/addons/crm/crm_phonecall_data.xml b/addons/crm/crm_phonecall_data.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_phonecall_demo.xml b/addons/crm/crm_phonecall_demo.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_phonecall_menu.xml b/addons/crm/crm_phonecall_menu.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_phonecall_view.xml b/addons/crm/crm_phonecall_view.xml old mode 100644 new mode 100755 index a03ccb28fad..6c66dc94848 --- a/addons/crm/crm_phonecall_view.xml +++ b/addons/crm/crm_phonecall_view.xml @@ -87,7 +87,8 @@ icon="terp-partner" name="%(action_crm_phonecall2partner)d" type="action" - attrs="{'invisible':[('partner_id','!=',False)]}" /> + attrs="{'invisible':[('partner_id','!=',False)]}" + groups="base.group_partner_manager"/> @@ -165,7 +166,8 @@ icon="terp-partner" name="%(action_crm_phonecall2partner)d" type="action" - attrs="{'invisible':[('partner_id','!=',False)]}" /> + attrs="{'invisible':[('partner_id','!=',False)]}" + groups="base.group_partner_manager" /> diff --git a/addons/crm/crm_report.xml b/addons/crm/crm_report.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_report_view.xml b/addons/crm/crm_report_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/crm_segmentation.py b/addons/crm/crm_segmentation.py old mode 100644 new mode 100755 diff --git a/addons/crm/crm_view.xml b/addons/crm/crm_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/ar.po b/addons/crm/i18n/ar.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/bg.po b/addons/crm/i18n/bg.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/bs.po b/addons/crm/i18n/bs.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/ca.po b/addons/crm/i18n/ca.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/crm.pot b/addons/crm/i18n/crm.pot old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/cs.po b/addons/crm/i18n/cs.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/de.po b/addons/crm/i18n/de.po old mode 100644 new mode 100755 index 5e733112b40..dbebd8232c3 --- a/addons/crm/i18n/de.po +++ b/addons/crm/i18n/de.po @@ -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-14 23:10+0000\n" +"PO-Revision-Date: 2010-12-28 11:39+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \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:10+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm @@ -383,7 +383,7 @@ msgstr "Ansprechpartner" #. module: crm #: view:crm.installer:0 msgid "Enhance your core CRM Application with additional functionalities." -msgstr "" +msgstr "Erweitern Sie die CRM Anwendung durch zusätzliche Funktionen." #. module: crm #: field:crm.case.stage,on_change:0 @@ -548,7 +548,7 @@ msgstr "Erstelle Verkaufschance" #. module: crm #: view:crm.installer:0 msgid "Configure" -msgstr "" +msgstr "Konfigurieren" #. module: crm #: code:addons/crm/crm.py:0 @@ -669,7 +669,7 @@ msgstr "" #. module: crm #: selection:crm.case.stage,type:0 msgid "Claim" -msgstr "" +msgstr "Reklamation" #. module: crm #: constraint:base.action.rule:0 @@ -754,7 +754,7 @@ msgstr "" #. module: crm #: field:crm.case.section,resource_calendar_id:0 msgid "Working Time" -msgstr "" +msgstr "Arbeitszeit" #. module: crm #: view:crm.segmentation.line:0 @@ -2829,7 +2829,7 @@ msgstr "Prozess fortsetzen" #. module: crm #: view:crm.installer:0 msgid "Configure Your CRM Application" -msgstr "" +msgstr "Konfigurieren Sie Ihre CRM Anwendung" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall2partner @@ -3642,6 +3642,10 @@ msgid "" "them to easily track how is positioned a specific opportunity in the sales " "cycle." msgstr "" +"Erstellen Sie spezifische Vertriebsstufen, deren Anwendung die Bearbeitung " +"von Vertriebschancen erleichtert. Hilfreich ist die Angabe der Stufe für die " +"Rückverfolgung von Verkaufsvorgängen sowie als zusätzliche Information zum " +"Bearbeitungsstatus." #. module: crm #: model:process.process,name:crm.process_process_contractprocess0 diff --git a/addons/crm/i18n/el.po b/addons/crm/i18n/el.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/es.po b/addons/crm/i18n/es.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/es_AR.po b/addons/crm/i18n/es_AR.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/et.po b/addons/crm/i18n/et.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/fi.po b/addons/crm/i18n/fi.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/fr.po b/addons/crm/i18n/fr.po old mode 100644 new mode 100755 index 62b1465ecea..c07888b824d --- a/addons/crm/i18n/fr.po +++ b/addons/crm/i18n/fr.po @@ -7,14 +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 13:20+0000\n" -"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " -"\n" +"PO-Revision-Date: 2010-12-28 22:50+0000\n" +"Last-Translator: lolivier \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:10+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm @@ -38,7 +37,7 @@ msgstr "Besoin de services" #. module: crm #: selection:crm.meeting,rrule_type:0 msgid "Monthly" -msgstr "Mensuel" +msgstr "Mensuelle" #. module: crm #: view:crm.opportunity2phonecall:0 @@ -48,7 +47,7 @@ msgstr "Planifier un appel" #. module: crm #: model:ir.model,name:crm.model_crm_case_stage msgid "Stage of case" -msgstr "Etape des cas" +msgstr "" #. module: crm #: view:crm.meeting:0 @@ -122,7 +121,7 @@ msgstr "Jour" #. module: crm #: sql_constraint:crm.case.section:0 msgid "The code of the sales team must be unique !" -msgstr "" +msgstr "Le code de l'équipe de vente doit être unique !" #. module: crm #: code:addons/crm/wizard/crm_lead_to_opportunity.py:0 @@ -329,6 +328,8 @@ msgid "" "Create specific phone call categories to better sort the type of calls " "tracked in the system." msgstr "" +"Créer une catégorie d'appels téléphoniques spécifique pour mieux trier le " +"suivi des types d'appels dans le système." #. module: crm #: model:ir.actions.act_window,name:crm.crm_lead_categ_action @@ -544,7 +545,7 @@ msgstr "Créer une opportunité" #. module: crm #: view:crm.installer:0 msgid "Configure" -msgstr "" +msgstr "Configurer" #. module: crm #: code:addons/crm/crm.py:0 @@ -670,7 +671,7 @@ msgstr "Réclamation" #. module: crm #: constraint:base.action.rule:0 msgid "Error: The mail is not well formated" -msgstr "" +msgstr "Erreur : email mal formé." #. module: crm #: view:crm.segmentation:0 @@ -751,7 +752,7 @@ msgstr "" #. module: crm #: field:crm.case.section,resource_calendar_id:0 msgid "Working Time" -msgstr "" +msgstr "Temps de travail" #. module: crm #: view:crm.segmentation.line:0 @@ -1197,6 +1198,8 @@ msgstr "_Annuler" #, python-format msgid "Closed/Cancelled Phone Call Could not convert into Opportunity" msgstr "" +"Les appels téléphoniques fermés ou annulés ne peuvent pas être convertis en " +"opportunités." #. module: crm #: view:crm.segmentation:0 @@ -2545,6 +2548,10 @@ msgid "" "your partners to better manage your interactions with them. The segmentation " "tool will assign categories to partners based on defined criteria." msgstr "" +"Créer des catégories de partenaires que vous serez alors en mesure " +"d'affecter à vos partenaires afin de mieux gérer les interactions avec eux. " +"L'outil de segmentation affecte des catégories aux partenaires en fonction " +"des critères définis" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor8 @@ -2787,7 +2794,7 @@ msgstr "Continuer le processus" #. module: crm #: view:crm.installer:0 msgid "Configure Your CRM Application" -msgstr "" +msgstr "Configurer l'application CRM" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall2partner @@ -3458,7 +3465,7 @@ msgstr "" #. module: crm #: constraint:res.partner:0 msgid "Error ! You can not create recursive associated members." -msgstr "" +msgstr "Erreur ! Vous ne pouvez pas créer de membres associés récursifs." #. module: crm #: field:crm.partner2opportunity,probability:0 @@ -3633,7 +3640,7 @@ msgstr "A besoin de consultation" #. module: crm #: constraint:crm.segmentation:0 msgid "Error ! You can not create recursive profiles." -msgstr "" +msgstr "Erreur ! Vous ne pouvez pas créer des profils récursifs." #. module: crm #: code:addons/crm/crm_lead.py:0 @@ -3657,6 +3664,7 @@ msgstr "Date de l'identifiant récurrent" #: sql_constraint:res.users:0 msgid "You can not have two users with the same login !" msgstr "" +"Vous ne pouvez pas avoir deux utilisateurs avec le même identifiant !" #. module: crm #: code:addons/crm/wizard/crm_merge_opportunities.py:0 diff --git a/addons/crm/i18n/gl.po b/addons/crm/i18n/gl.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/hr.po b/addons/crm/i18n/hr.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/hu.po b/addons/crm/i18n/hu.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/id.po b/addons/crm/i18n/id.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/it.po b/addons/crm/i18n/it.po old mode 100644 new mode 100755 index 86a19467964..64fb7ef84d3 --- a/addons/crm/i18n/it.po +++ b/addons/crm/i18n/it.po @@ -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-11-24 09:40+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2010-12-28 18:01+0000\n" +"Last-Translator: Nicola Riolini - Micronaet \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:11+0000\n" +"X-Launchpad-Export-Date: 2010-12-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm @@ -662,7 +662,7 @@ msgstr "" #. module: crm #: constraint:base.action.rule:0 msgid "Error: The mail is not well formated" -msgstr "" +msgstr "Errore: La mail non è formattata correttamente" #. module: crm #: view:crm.segmentation:0 @@ -1041,7 +1041,7 @@ msgstr "L'opportunità \"%s\" è stata chiusa." #. module: crm #: field:crm.lead,day_open:0 msgid "Days to Open" -msgstr "" +msgstr "Giorni per l'apertura" #. module: crm #: view:crm.meeting:0 @@ -1072,6 +1072,8 @@ msgstr "Cellulare" msgid "" "There are no other 'Open' or 'Pending' Opportunities for the partner '%s'." msgstr "" +"Non ci sono altre opportunità \"Aperte\" o \"In corso\" per il partner " +"\"%s\"." #. module: crm #: view:crm.lead:0 @@ -1196,7 +1198,7 @@ msgstr "Vinto" #. module: crm #: field:crm.lead.report,delay_expected:0 msgid "Overpassed Deadline" -msgstr "" +msgstr "Scadenza superata" #. module: crm #: model:crm.case.section,name:crm.section_sales_department @@ -1366,7 +1368,7 @@ msgstr "Analisi telefonate" #: field:crm.lead.report,opening_date:0 #: field:crm.phonecall.report,opening_date:0 msgid "Opening Date" -msgstr "" +msgstr "Data apertura" #. module: crm #: help:crm.phonecall,duration:0 @@ -1458,7 +1460,7 @@ msgstr "Lunedì" #. module: crm #: field:crm.lead,day_close:0 msgid "Days to Close" -msgstr "" +msgstr "Giorni per la chiusura" #. module: crm #: field:crm.add.note,attachment_ids:0 @@ -1511,7 +1513,7 @@ msgstr "Cerca" #. module: crm #: view:board.board:0 msgid "Opportunities by Categories" -msgstr "" +msgstr "Opportunità per categorie" #. module: crm #: field:crm.meeting,interval:0 @@ -1537,7 +1539,7 @@ msgstr "Codice" #. module: crm #: field:crm.case.section,child_ids:0 msgid "Child Teams" -msgstr "" +msgstr "Team figli" #. module: crm #: view:crm.lead:0 @@ -1627,7 +1629,7 @@ msgstr "Invita persone" #. module: crm #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive Sales team." -msgstr "" +msgstr "Errore! Non è possibile creare un team di vendita ricorsivo." #. module: crm #: view:crm.meeting:0 @@ -1757,7 +1759,7 @@ msgstr "Sabato" #. module: crm #: selection:crm.meeting,byday:0 msgid "Fifth" -msgstr "" +msgstr "Quinto" #. module: crm #: view:crm.phonecall2phonecall:0 @@ -1808,12 +1810,12 @@ msgstr "Dettagli invito" #. module: crm #: field:crm.case.section,parent_id:0 msgid "Parent Team" -msgstr "" +msgstr "Team padre" #. module: crm #: field:crm.lead,date_action:0 msgid "Next Action Date" -msgstr "" +msgstr "Data prossima azione" #. module: crm #: selection:crm.segmentation,state:0 @@ -1952,7 +1954,7 @@ msgstr "" #. module: crm #: view:board.board:0 msgid "Opportunities by Stage" -msgstr "" +msgstr "Opportunità per fase" #. module: crm #: model:process.transition,note:crm.process_transition_leadpartner0 @@ -2341,7 +2343,7 @@ msgstr "Attivo" #: code:addons/crm/crm_lead.py:0 #, python-format msgid "The stage of opportunity '%s' has been changed to '%s'." -msgstr "" +msgstr "La fare dell'opportunità \"%s\" è cambiata a \"%s\"." #. module: crm #: selection:crm.segmentation.line,operator:0 @@ -2356,7 +2358,7 @@ msgstr ">" #. module: crm #: view:crm.meeting:0 msgid "Uncertain" -msgstr "" +msgstr "Non sicuro" #. module: crm #: field:crm.send.mail,email_cc:0 @@ -2508,7 +2510,7 @@ msgstr "Martedì" #. module: crm #: field:crm.lead,city:0 msgid "City" -msgstr "" +msgstr "Città" #. module: crm #: selection:crm.meeting,show_as:0 @@ -2567,7 +2569,7 @@ msgstr "" #. module: crm #: field:crm.lead,job_id:0 msgid "Main Job" -msgstr "" +msgstr "Lavoro principale" #. module: crm #: field:base.action.rule,trg_max_history:0 @@ -2646,12 +2648,12 @@ msgstr "" #. module: crm #: field:crm.installer,thunderbird:0 msgid "Thunderbird" -msgstr "" +msgstr "Thunderbird" #. module: crm #: view:crm.lead.report:0 msgid "# of Emails" -msgstr "" +msgstr "# di email" #. module: crm #: view:crm.lead:0 @@ -2663,7 +2665,7 @@ msgstr "Ricerca iniziative" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,delay_open:0 msgid "Delay to open" -msgstr "" +msgstr "Ritardo di apertura" #. module: crm #: model:ir.model,name:crm.model_crm_lead @@ -2673,7 +2675,7 @@ msgstr "crm.lead" #. module: crm #: field:crm.meeting,week_list:0 msgid "Weekday" -msgstr "" +msgstr "Giorno della settimana" #. module: crm #: view:crm.lead:0 @@ -2708,7 +2710,7 @@ msgstr "" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall2partner msgid "Phonecall to Partner" -msgstr "" +msgstr "Telefonata al partner" #. module: crm #: field:crm.opportunity2phonecall,user_id:0 @@ -2752,7 +2754,7 @@ msgstr "Rispondi a" #: model:ir.actions.act_window,name:crm.open_board_crm #: model:ir.ui.menu,name:crm.menu_board_crm msgid "Sales Dashboard" -msgstr "" +msgstr "Dashboard vendite" #. module: crm #: code:addons/crm/wizard/crm_lead_to_partner.py:0 @@ -2770,7 +2772,7 @@ msgstr "Numero di Casi" #: help:crm.meeting,section_id:0 #: help:crm.phonecall,section_id:0 msgid "Sales team to which Case belongs to." -msgstr "" +msgstr "Team di vendita a cui il caso appartiene" #. module: crm #: selection:crm.meeting,week_list:0 @@ -2793,7 +2795,7 @@ msgstr "Invariato" #: model:ir.actions.act_window,name:crm.crm_segmentation_tree-act #: model:ir.ui.menu,name:crm.menu_crm_segmentation-act msgid "Partners Segmentation" -msgstr "" +msgstr "Segmentazione dei partner" #. module: crm #: field:crm.lead,fax:0 @@ -2839,7 +2841,7 @@ msgstr "" #. module: crm #: field:crm.case.categ,object_id:0 msgid "Object Name" -msgstr "" +msgstr "Nome Oggetto" #. module: crm #: help:crm.lead,email_from:0 @@ -2855,13 +2857,13 @@ msgstr "" #: view:crm.lead:0 #: model:ir.model,name:crm.model_crm_add_note msgid "Add Internal Note" -msgstr "" +msgstr "Aggiungi nota interna" #. module: crm #: code:addons/crm/crm_lead.py:0 #, python-format msgid "The stage of lead '%s' has been changed to '%s'." -msgstr "" +msgstr "La fase dell'iniziativa \"%s\" è cambiata in \"%s\"" #. module: crm #: selection:crm.meeting,byday:0 @@ -2873,12 +2875,12 @@ msgstr "" #: field:crm.meeting,message_ids:0 #: field:crm.phonecall,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Messaggi" #. module: crm #: help:crm.case.stage,on_change:0 msgid "Change Probability on next and previous stages." -msgstr "" +msgstr "Cambia la probabilità nella prossimo e nella precedente fase" #. module: crm #: code:addons/crm/crm.py:0 @@ -2891,7 +2893,7 @@ msgstr "Errore!" #. module: crm #: view:crm.meeting:0 msgid "Exclude range" -msgstr "" +msgstr "Intervallo di esclusione" #. module: crm #: selection:crm.add.note,state:0 @@ -2937,7 +2939,7 @@ msgstr " Mese " #. module: crm #: view:crm.lead:0 msgid "Links" -msgstr "" +msgstr "Collegamenti" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_phonecall @@ -2975,7 +2977,7 @@ msgstr "# Mail" #: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:0 #, python-format msgid "Warning" -msgstr "" +msgstr "Attenzione" #. module: crm #: field:crm.phonecall,name:0 @@ -3056,7 +3058,7 @@ msgstr "Giorno del mese" #. module: crm #: field:crm.lead2opportunity,probability:0 msgid "Success Rate (%)" -msgstr "" +msgstr "Tasso di successo (%)" #. module: crm #: model:crm.case.stage,name:crm.stage_lead1 @@ -3067,7 +3069,7 @@ msgstr "Nuovo" #. module: crm #: view:crm.meeting:0 msgid "Mail TO" -msgstr "" +msgstr "Mail A" #. module: crm #: view:crm.lead:0 @@ -3129,6 +3131,7 @@ msgid "" "Deadline Date is automatically computed from Start " "Date + Duration" msgstr "" +"La data di scadenza è calcolata automaticamente dalla data inizio + durata" #. module: crm #: field:crm.lead,state_id:0 @@ -3138,7 +3141,7 @@ msgstr "Stato fed." #. module: crm #: model:process.transition,note:crm.process_transition_leadopportunity0 msgid "Creating business opportunities from Leads" -msgstr "" +msgstr "Crea opportunità di business dall'iniziativa" #. module: crm #: help:crm.send.mail,html:0 @@ -3164,7 +3167,7 @@ msgstr "" #. module: crm #: field:base.action.rule,act_categ_id:0 msgid "Set Category to" -msgstr "" +msgstr "Imposta categoria a" #. module: crm #: view:crm.case.section:0 @@ -3206,7 +3209,7 @@ msgstr "" #. module: crm #: view:crm.case.stage:0 msgid "Stage Definition" -msgstr "" +msgstr "Definizione fase" #. module: crm #: selection:crm.meeting,byday:0 @@ -3223,7 +3226,7 @@ msgstr "Dicembre" #. module: crm #: field:crm.installer,config_logo:0 msgid "Image" -msgstr "" +msgstr "Immagine" #. module: crm #: view:base.action.rule:0 @@ -3327,12 +3330,12 @@ msgstr "Contatti" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor1 msgid "Interest in Computer" -msgstr "" +msgstr "Interessato ai Computer" #. module: crm #: view:crm.meeting:0 msgid "Invitation Detail" -msgstr "" +msgstr "Dettagli Invito" #. module: crm #: field:crm.segmentation,som_interval_default:0 @@ -3350,7 +3353,7 @@ msgstr "" #. module: crm #: constraint:res.partner:0 msgid "Error ! You can not create recursive associated members." -msgstr "" +msgstr "Errore! Non è possibile creare dei membri associati ricorsivi." #. module: crm #: field:crm.partner2opportunity,probability:0 @@ -3374,7 +3377,7 @@ msgstr "Bozza" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act_tree msgid "Cases by Sales Team" -msgstr "" +msgstr "Casi per Team di vendita" #. module: crm #: view:crm.meeting:0 @@ -3396,7 +3399,7 @@ msgstr "Riunione" #. module: crm #: model:ir.model,name:crm.model_crm_case_categ msgid "Category of Case" -msgstr "" +msgstr "Categoria del caso" #. module: crm #: view:crm.lead:0 @@ -3436,7 +3439,7 @@ msgstr "VIa (2)" #: model:ir.actions.act_window,name:crm.crm_meeting_categ_action #: model:ir.ui.menu,name:crm.menu_crm_case_meeting-act msgid "Meeting Categories" -msgstr "" +msgstr "Categorie Meeting" #. module: crm #: view:crm.lead2opportunity.partner:0 @@ -3472,7 +3475,7 @@ msgstr "Non è stata ritrovata email per il tuo indirizzo" #. module: crm #: view:crm.lead.report:0 msgid "Opportunities By Stage" -msgstr "" +msgstr "Opportunità per fase" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_categ_phone_create_partner diff --git a/addons/crm/i18n/ja.po b/addons/crm/i18n/ja.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/ko.po b/addons/crm/i18n/ko.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/lt.po b/addons/crm/i18n/lt.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/lv.po b/addons/crm/i18n/lv.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/mn.po b/addons/crm/i18n/mn.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/nl.po b/addons/crm/i18n/nl.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/nl_BE.po b/addons/crm/i18n/nl_BE.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/pl.po b/addons/crm/i18n/pl.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/pt.po b/addons/crm/i18n/pt.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/pt_BR.po b/addons/crm/i18n/pt_BR.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/ro.po b/addons/crm/i18n/ro.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/ru.po b/addons/crm/i18n/ru.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/sk.po b/addons/crm/i18n/sk.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/sl.po b/addons/crm/i18n/sl.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/sq.po b/addons/crm/i18n/sq.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/sr.po b/addons/crm/i18n/sr.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/sr@latin.po b/addons/crm/i18n/sr@latin.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/sv.po b/addons/crm/i18n/sv.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/tlh.po b/addons/crm/i18n/tlh.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/tr.po b/addons/crm/i18n/tr.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/uk.po b/addons/crm/i18n/uk.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/vi.po b/addons/crm/i18n/vi.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/zh_CN.po b/addons/crm/i18n/zh_CN.po old mode 100644 new mode 100755 diff --git a/addons/crm/i18n/zh_TW.po b/addons/crm/i18n/zh_TW.po old mode 100644 new mode 100755 diff --git a/addons/crm/process/crm_configuration_process.xml b/addons/crm/process/crm_configuration_process.xml old mode 100644 new mode 100755 diff --git a/addons/crm/report/__init__.py b/addons/crm/report/__init__.py old mode 100644 new mode 100755 diff --git a/addons/crm/report/crm_lead_report.py b/addons/crm/report/crm_lead_report.py old mode 100644 new mode 100755 diff --git a/addons/crm/report/crm_lead_report_view.xml b/addons/crm/report/crm_lead_report_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/report/crm_phonecall_report.py b/addons/crm/report/crm_phonecall_report.py old mode 100644 new mode 100755 diff --git a/addons/crm/report/crm_phonecall_report_view.xml b/addons/crm/report/crm_phonecall_report_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/report/report_businessopp.py b/addons/crm/report/report_businessopp.py old mode 100644 new mode 100755 diff --git a/addons/crm/res_partner.py b/addons/crm/res_partner.py old mode 100644 new mode 100755 diff --git a/addons/crm/res_partner_view.xml b/addons/crm/res_partner_view.xml old mode 100644 new mode 100755 index b0a2ba01e4e..5d80a72bfc5 --- a/addons/crm/res_partner_view.xml +++ b/addons/crm/res_partner_view.xml @@ -94,7 +94,8 @@ icon="terp-partner" name="%(action_crm_phonecall2partner)d" type="action" - attrs="{'invisible':[('partner_id','!=',False)]}" /> + attrs="{'invisible':[('partner_id','!=',False)]}" + groups="base.group_partner_manager" /> diff --git a/addons/crm/scripts/php/countrylist.php b/addons/crm/scripts/php/countrylist.php old mode 100644 new mode 100755 diff --git a/addons/crm/scripts/php/crmlead.php b/addons/crm/scripts/php/crmlead.php old mode 100644 new mode 100755 diff --git a/addons/crm/scripts/php/form.php b/addons/crm/scripts/php/form.php old mode 100644 new mode 100755 diff --git a/addons/crm/security/crm_security.xml b/addons/crm/security/crm_security.xml old mode 100644 new mode 100755 diff --git a/addons/crm/security/ir.model.access.csv b/addons/crm/security/ir.model.access.csv old mode 100644 new mode 100755 diff --git a/addons/crm/test/test_crm_lead.yml b/addons/crm/test/test_crm_lead.yml old mode 100644 new mode 100755 diff --git a/addons/crm/test/test_crm_meeting.yml b/addons/crm/test/test_crm_meeting.yml old mode 100644 new mode 100755 diff --git a/addons/crm/test/test_crm_opportunity.yml b/addons/crm/test/test_crm_opportunity.yml old mode 100644 new mode 100755 diff --git a/addons/crm/test/test_crm_phonecall.yml b/addons/crm/test/test_crm_phonecall.yml old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/__init__.py b/addons/crm/wizard/__init__.py old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_add_note.py b/addons/crm/wizard/crm_add_note.py old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_add_note_view.xml b/addons/crm/wizard/crm_add_note_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_lead_to_opportunity.py b/addons/crm/wizard/crm_lead_to_opportunity.py old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_lead_to_opportunity_view.xml b/addons/crm/wizard/crm_lead_to_opportunity_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_lead_to_partner.py b/addons/crm/wizard/crm_lead_to_partner.py old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_lead_to_partner_view.xml b/addons/crm/wizard/crm_lead_to_partner_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_merge_opportunities.py b/addons/crm/wizard/crm_merge_opportunities.py old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_merge_opportunities_view.xml b/addons/crm/wizard/crm_merge_opportunities_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_opportunity_to_phonecall.py b/addons/crm/wizard/crm_opportunity_to_phonecall.py old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_opportunity_to_phonecall_view.xml b/addons/crm/wizard/crm_opportunity_to_phonecall_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_partner_to_opportunity.py b/addons/crm/wizard/crm_partner_to_opportunity.py old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_partner_to_opportunity_view.xml b/addons/crm/wizard/crm_partner_to_opportunity_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_phonecall_to_meeting.py b/addons/crm/wizard/crm_phonecall_to_meeting.py old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_phonecall_to_meeting_view.xml b/addons/crm/wizard/crm_phonecall_to_meeting_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_phonecall_to_opportunity.py b/addons/crm/wizard/crm_phonecall_to_opportunity.py old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_phonecall_to_opportunity_view.xml b/addons/crm/wizard/crm_phonecall_to_opportunity_view.xml old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_phonecall_to_partner.py b/addons/crm/wizard/crm_phonecall_to_partner.py old mode 100644 new mode 100755 diff --git a/addons/crm/wizard/crm_phonecall_to_partner_view.xml b/addons/crm/wizard/crm_phonecall_to_partner_view.xml old mode 100644 new mode 100755 index 6da8a168b21..b9f7dad6c07 --- a/addons/crm/wizard/crm_phonecall_to_partner_view.xml +++ b/addons/crm/wizard/crm_phonecall_to_partner_view.xml @@ -14,7 +14,7 @@