diff --git a/addons/account/__openerp__.py b/addons/account/__openerp__.py index 95ecdc8c35a..1a222b2f83c 100644 --- a/addons/account/__openerp__.py +++ b/addons/account/__openerp__.py @@ -49,7 +49,7 @@ for a particular financial year and for preparation of vouchers there is a modul """, 'website': 'http://www.openerp.com', 'images' : ['images/accounts.jpeg','images/bank_statement.jpeg','images/cash_register.jpeg','images/chart_of_accounts.jpeg','images/customer_invoice.jpeg','images/journal_entries.jpeg'], - 'depends' : ['base_setup', 'product', 'analytic', 'process', 'board', 'edi'], + 'depends' : ['base_setup', 'product', 'analytic', 'process', 'board', 'edi', 'report'], 'data': [ 'security/account_security.xml', 'security/ir.model.access.csv', @@ -126,6 +126,24 @@ for a particular financial year and for preparation of vouchers there is a modul 'account_pre_install.yml', 'views/report_vat.xml', + 'views/report_invoice.xml', + 'views/report_trialbalance.xml', + 'views/report_centraljournal.xml', + 'views/report_overdue.xml', + 'views/report_generaljournal.xml', + 'views/report_journal.xml', + 'views/report_salepurchasejournal.xml', + 'views/report_partnerbalance.xml', + 'views/report_agedpartnerbalance.xml', + 'views/report_partnerledger.xml', + 'views/report_partnerledgerother.xml', + 'views/report_financial.xml', + 'views/report_generalledger.xml', + 'project/views/report_analyticbalance.xml', + 'project/views/report_analyticjournal.xml', + 'project/views/report_analyticcostledgerquantity.xml', + 'project/views/report_analyticcostledger.xml', + 'project/views/report_invertedanalyticbalance.xml', ], 'js': [ 'static/src/js/account_move_reconciliation.js', @@ -157,8 +175,6 @@ for a particular financial year and for preparation of vouchers there is a modul 'test/account_period_close.yml', 'test/account_use_model.yml', 'test/account_validate_account_move.yml', - #'test/account_bank_statement.yml', - #'test/account_cash_statement.yml', 'test/test_edi_invoice.yml', 'test/account_report.yml', 'test/account_fiscalyear_close.yml', #last test, as it will definitively close the demo fiscalyear @@ -166,4 +182,5 @@ for a particular financial year and for preparation of vouchers there is a modul 'installable': True, 'auto_install': False, } + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/account.py b/addons/account/account.py index 4d9baf36a17..3537c4f4c55 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -30,7 +30,7 @@ from openerp import SUPERUSER_ID from openerp import tools from openerp.osv import fields, osv, expression from openerp.tools.translate import _ -from openerp.tools.float_utils import float_round +from openerp.tools.float_utils import float_round as round import openerp.addons.decimal_precision as dp @@ -1937,15 +1937,15 @@ class account_tax(osv.osv): # 'base_code_id': fields.many2one('account.tax.code', 'Account Base Code', help="Use this code for the tax declaration."), 'tax_code_id': fields.many2one('account.tax.code', 'Account Tax Code', help="Use this code for the tax declaration."), - 'base_sign': fields.float('Base Code Sign', help="Usually 1 or -1."), - 'tax_sign': fields.float('Tax Code Sign', help="Usually 1 or -1."), + 'base_sign': fields.float('Base Code Sign', help="Usually 1 or -1.", digits_compute=get_precision_tax()), + 'tax_sign': fields.float('Tax Code Sign', help="Usually 1 or -1.", digits_compute=get_precision_tax()), # Same fields for refund invoices 'ref_base_code_id': fields.many2one('account.tax.code', 'Refund Base Code', help="Use this code for the tax declaration."), 'ref_tax_code_id': fields.many2one('account.tax.code', 'Refund Tax Code', help="Use this code for the tax declaration."), - 'ref_base_sign': fields.float('Refund Base Code Sign', help="Usually 1 or -1."), - 'ref_tax_sign': fields.float('Refund Tax Code Sign', help="Usually 1 or -1."), + 'ref_base_sign': fields.float('Refund Base Code Sign', help="Usually 1 or -1.", digits_compute=get_precision_tax()), + 'ref_tax_sign': fields.float('Refund Tax Code Sign', help="Usually 1 or -1.", digits_compute=get_precision_tax()), 'include_base_amount': fields.boolean('Included in base amount', help="Indicates if the amount of tax must be included in the base amount for the computation of the next taxes"), 'company_id': fields.many2one('res.company', 'Company', required=True), 'description': fields.char('Tax Code'), @@ -2143,7 +2143,7 @@ class account_tax(osv.osv): tax_compute_precision = precision if taxes and taxes[0].company_id.tax_calculation_rounding_method == 'round_globally': tax_compute_precision += 5 - totalin = totalex = float_round(price_unit * quantity, precision) + totalin = totalex = round(price_unit * quantity, precision) tin = [] tex = [] for tax in taxes: diff --git a/addons/account/account_invoice.py b/addons/account/account_invoice.py index 06e59232ac9..effc2b03f61 100644 --- a/addons/account/account_invoice.py +++ b/addons/account/account_invoice.py @@ -409,17 +409,9 @@ class account_invoice(osv.osv): ''' assert len(ids) == 1, 'This option should only be used for a single id at a time.' self.write(cr, uid, ids, {'sent': True}, context=context) - datas = { - 'ids': ids, - 'model': 'account.invoice', - 'form': self.read(cr, uid, ids[0], context=context) - } - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'account.invoice', - 'datas': datas, - 'nodestroy' : True - } + context2 = context.copy() + context2['active_ids'] = ids + return self.pool['report'].get_action(cr, uid, [], 'account.report_invoice', context=context2) def action_invoice_sent(self, cr, uid, ids, context=None): ''' diff --git a/addons/account/account_report.xml b/addons/account/account_report.xml index 4f9ad1b5c56..90d2c1637fb 100644 --- a/addons/account/account_report.xml +++ b/addons/account/account_report.xml @@ -1,45 +1,168 @@ - - - - - - - - - - - + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + parent="account.menu_finance_generic_reporting" + sequence="3" + /> diff --git a/addons/account/i18n/am.po b/addons/account/i18n/am.po index ff22c804921..ffebdeebc2d 100644 --- a/addons/account/i18n/am.po +++ b/addons/account/i18n/am.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:18+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ar.po b/addons/account/i18n/ar.po index bad4f42eb00..073da503b6b 100644 --- a/addons/account/i18n/ar.po +++ b/addons/account/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:19+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/bg.po b/addons/account/i18n/bg.po index 57568ecf831..b11c7d71a13 100644 --- a/addons/account/i18n/bg.po +++ b/addons/account/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:19+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/br.po b/addons/account/i18n/br.po index aac1c975b40..7c65ba8c79f 100644 --- a/addons/account/i18n/br.po +++ b/addons/account/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:19+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/bs.po b/addons/account/i18n/bs.po index 2984b94b7bf..073fc306416 100644 --- a/addons/account/i18n/bs.po +++ b/addons/account/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:19+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ca.po b/addons/account/i18n/ca.po index c131050ae5e..4f0a41f17fc 100644 --- a/addons/account/i18n/ca.po +++ b/addons/account/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/cs.po b/addons/account/i18n/cs.po index a08880980f7..bae766f64d3 100644 --- a/addons/account/i18n/cs.po +++ b/addons/account/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Language: Czech\n" #. module: account diff --git a/addons/account/i18n/da.po b/addons/account/i18n/da.po index 6b96f40069d..ae290a2f1e8 100644 --- a/addons/account/i18n/da.po +++ b/addons/account/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/de.po b/addons/account/i18n/de.po index 0795b05860b..f22c194e564 100644 --- a/addons/account/i18n/de.po +++ b/addons/account/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/el.po b/addons/account/i18n/el.po index 31fa41e6187..fe4a349ef77 100644 --- a/addons/account/i18n/el.po +++ b/addons/account/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:22+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/en_GB.po b/addons/account/i18n/en_GB.po index f7e734e98e1..35896f4e0e7 100644 --- a/addons/account/i18n/en_GB.po +++ b/addons/account/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:58+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/en_US.po b/addons/account/i18n/en_US.po index 4df9b3c392e..927dc1753f9 100644 --- a/addons/account/i18n/en_US.po +++ b/addons/account/i18n/en_US.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:57+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es.po b/addons/account/i18n/es.po index e3f1edc8455..fa26db5eb7f 100644 --- a/addons/account/i18n/es.po +++ b/addons/account/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:55+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_AR.po b/addons/account/i18n/es_AR.po index 00280f999c2..a5f39759562 100644 --- a/addons/account/i18n/es_AR.po +++ b/addons/account/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:58+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_CL.po b/addons/account/i18n/es_CL.po index c911b656d11..99e70b8bbbc 100644 --- a/addons/account/i18n/es_CL.po +++ b/addons/account/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:58+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_CR.po b/addons/account/i18n/es_CR.po index 2bea087c30d..941a1049d00 100644 --- a/addons/account/i18n/es_CR.po +++ b/addons/account/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:59+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: account diff --git a/addons/account/i18n/es_DO.po b/addons/account/i18n/es_DO.po index 00ab23f1b42..e12252360b0 100644 --- a/addons/account/i18n/es_DO.po +++ b/addons/account/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:58+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_EC.po b/addons/account/i18n/es_EC.po index 83c8d78ed8a..cfc452f7df0 100644 --- a/addons/account/i18n/es_EC.po +++ b/addons/account/i18n/es_EC.po @@ -17,8 +17,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:59+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_MX.po b/addons/account/i18n/es_MX.po index b883cbdbf35..227473e4f94 100644 --- a/addons/account/i18n/es_MX.po +++ b/addons/account/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:59+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_PE.po b/addons/account/i18n/es_PE.po index ef08788d814..f54ebe1ecc5 100644 --- a/addons/account/i18n/es_PE.po +++ b/addons/account/i18n/es_PE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:00+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_PY.po b/addons/account/i18n/es_PY.po index de691893f73..69faf84dc61 100644 --- a/addons/account/i18n/es_PY.po +++ b/addons/account/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:59+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_UY.po b/addons/account/i18n/es_UY.po index 22263c5679c..e2ee4c17ff2 100644 --- a/addons/account/i18n/es_UY.po +++ b/addons/account/i18n/es_UY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:59+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_VE.po b/addons/account/i18n/es_VE.po index f3844f1816a..9ea10232cfc 100644 --- a/addons/account/i18n/es_VE.po +++ b/addons/account/i18n/es_VE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:57+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/et.po b/addons/account/i18n/et.po index 126215127af..47f8dfc64ca 100644 --- a/addons/account/i18n/et.po +++ b/addons/account/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/eu.po b/addons/account/i18n/eu.po index 6a925e998f5..fe5b1f31a3c 100644 --- a/addons/account/i18n/eu.po +++ b/addons/account/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:19+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fa.po b/addons/account/i18n/fa.po index 39629ce4488..d8db747c40c 100644 --- a/addons/account/i18n/fa.po +++ b/addons/account/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:53+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:26+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fa_AF.po b/addons/account/i18n/fa_AF.po index 7e93724e89d..f7150d42947 100644 --- a/addons/account/i18n/fa_AF.po +++ b/addons/account/i18n/fa_AF.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:00+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fi.po b/addons/account/i18n/fi.po index d0bd1eeda2a..41760ed8836 100644 --- a/addons/account/i18n/fi.po +++ b/addons/account/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fr.po b/addons/account/i18n/fr.po index d98bf9e3523..5c8e43bb901 100644 --- a/addons/account/i18n/fr.po +++ b/addons/account/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: code:addons/account/wizard/account_move_bank_reconcile.py:49 diff --git a/addons/account/i18n/fr_BE.po b/addons/account/i18n/fr_BE.po index 04187166d41..196ecae2059 100644 --- a/addons/account/i18n/fr_BE.po +++ b/addons/account/i18n/fr_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:57+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fr_CA.po b/addons/account/i18n/fr_CA.po index 2146f06c4db..beb424e4462 100644 --- a/addons/account/i18n/fr_CA.po +++ b/addons/account/i18n/fr_CA.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:58+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -27,6 +27,8 @@ msgstr "" msgid "" "An account fiscal position could be defined only once time on same accounts." msgstr "" +"La position fiscale d'un compte peut être définie seulement une fois pour ce " +"compte" #. module: account #: help:account.tax.code,sequence:0 @@ -220,12 +222,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_select msgid "Move line reconcile select" -msgstr "" +msgstr "Sélection des écritures à réconcilier" #. module: account #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries are an input of the reconciliation." -msgstr "" +msgstr "Les écritures comptables sont une entrée de la réconciliation" #. module: account #: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports @@ -249,11 +251,15 @@ msgid "" "legal reports, and set the rules to close a fiscal year and generate opening " "entries." msgstr "" +"Le type de compte est utilisé comme indication pour l'utilisateur, ainsi que " +"pour créer des rapports comptables spécifiques à certains pays, et enfin " +"pour gérer les clotûres d'exercices fiscaux (et établir les écritures " +"correspondantes)" #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "" +msgstr "Prochain numéro de note de crédit" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -276,7 +282,7 @@ msgstr "" #. module: account #: view:account.analytic.chart:0 msgid "Select the Period for Analysis" -msgstr "" +msgstr "Sélectionnez la période à analyser" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree3 @@ -293,6 +299,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour ajouter une note de crédit.\n" +"

\n" +" Une note de crédit est un document qui crédite une facture\n" +" complètement ou partiellement.\n" +"

\n" +" Au lieu de créer manuellement une note de crédit client, " +"vous\n" +" pouvez le générer directement depuis la facture client\n" +" correspondante.\n" +"

\n" +" " #. module: account #: help:account.installer,charts:0 @@ -304,7 +322,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_unreconcile msgid "Account Unreconcile" -msgstr "" +msgstr "Annuler la réconcilliation" #. module: account #: field:account.config.settings,module_account_budget:0 @@ -323,11 +341,14 @@ msgid "" "leave the automatic formatting, it will be computed based on the financial " "reports hierarchy (auto-computed field 'level')." msgstr "" +"Vous pouvez déterminer ici le format que vous souhaitez voir affiché pour " +"l'enregistrement. Si vous laissez le formatage automatique, il va être " +"établi à partir de la hiérarchie des rapports (champ auto-généré 'niveau')" #. module: account #: field:account.config.settings,group_multi_currency:0 msgid "Allow multi currencies" -msgstr "" +msgstr "Autoriser les devises multiples" #. module: account #: code:addons/account/account_invoice.py:77 @@ -361,7 +382,7 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Vendeur" #. module: account #: view:account.bank.statement:0 @@ -383,7 +404,7 @@ msgstr "" #. module: account #: selection:account.journal,type:0 msgid "Purchase Refund" -msgstr "" +msgstr "Note de crédit fournisseur" #. module: account #: selection:account.journal,type:0 @@ -416,6 +437,14 @@ msgid "" "this box, you will be able to do invoicing & payments,\n" " but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" +"Ceci permet de gérer les notes de crédit d'une société ou d'un individu.\n" +" Il garde l'historique des dépréciations sur ces notes de " +"crédit, et crée une opération de compte pour ces lignes de dépréciation.\n" +" Il installe le module account_asset. Si vous ne cochez pas " +"cette case, vous serez en mesure d'effectuer la facturation et les " +"paiements,\n" +" mais pas la comptabilité (enregistrements dans Journal , " +"Plan Comptable, ...)" #. module: account #: help:account.bank.statement.line,name:0 @@ -441,6 +470,8 @@ msgstr "" #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" msgstr "" +"Modifier : Créer une note de crédit, la réconcilier et créer une nouvelle " +"facture" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -544,12 +575,12 @@ msgstr "" #: help:account.vat.declaration,chart_account_id:0 #: help:accounting.report,chart_account_id:0 msgid "Select Charts of Accounts" -msgstr "" +msgstr "Sélectionner le plan comptable" #. module: account #: model:ir.model,name:account.model_account_invoice_refund msgid "Invoice Refund" -msgstr "" +msgstr "Note de crédit" #. module: account #: report:account.overdue:0 @@ -559,7 +590,7 @@ msgstr "" #. module: account #: field:account.automatic.reconcile,unreconciled:0 msgid "Not reconciled transactions" -msgstr "" +msgstr "Transactions non réconciliées" #. module: account #: report:account.general.ledger:0 @@ -572,13 +603,13 @@ msgstr "" #: field:account.fiscal.position,tax_ids:0 #: field:account.fiscal.position.template,tax_ids:0 msgid "Tax Mapping" -msgstr "" +msgstr "Affectation des taxes" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close_state #: model:ir.ui.menu,name:account.menu_wizard_fy_close_state msgid "Close a Fiscal Year" -msgstr "" +msgstr "Fermer un exercice" #. module: account #: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 @@ -665,7 +696,7 @@ msgstr "" #: code:addons/account/account.py:3201 #, python-format msgid "SAJ" -msgstr "" +msgstr "JV" #. module: account #: code:addons/account/account.py:1591 @@ -714,6 +745,9 @@ msgid "" "lines for refunds. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Définissez le compte analytique qui sera utilisé par défaut sur les lignes " +"de notes de crédit. Laissez vide si vous ne voulez pas utiliser de compte " +"analytique sur les lignes de notes de crédit." #. module: account #: view:account.account:0 @@ -736,7 +770,7 @@ msgstr "" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "Créer note de crédit" #. module: account #: constraint:account.move.line:0 @@ -748,7 +782,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_report_general_ledger msgid "General Ledger Report" -msgstr "" +msgstr "Rapport de Grand Livre" #. module: account #: view:account.invoice:0 @@ -758,7 +792,7 @@ msgstr "" #. module: account #: view:account.use.model:0 msgid "Are you sure you want to create entries?" -msgstr "" +msgstr "Etes vous sûr de vouloir saisir des écritures ?" #. module: account #: code:addons/account/account_invoice.py:1361 @@ -778,6 +812,9 @@ msgid "" "Cannot %s invoice which is already reconciled, invoice should be " "unreconciled first. You can only refund this invoice." msgstr "" +"Vous ne pouvez pas %s la facture, qui est déjà réconciliée : la " +"réconciliation doit d'abord être annulée. Vous pouvez seulement créer une " +"note de crédit." #. module: account #: selection:account.financial.report,display_detail:0 @@ -793,7 +830,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_charts msgid "Charts" -msgstr "" +msgstr "Graphiques" #. module: account #: code:addons/account/project/wizard/project_account_analytic_line.py:47 @@ -805,7 +842,7 @@ msgstr "" #. module: account #: field:account.invoice.refund,filter_refund:0 msgid "Refund Method" -msgstr "" +msgstr "Méthode de notes de crédit" #. module: account #: model:ir.ui.menu,name:account.menu_account_report @@ -850,20 +887,20 @@ msgstr "" #. module: account #: view:account.invoice.report:0 msgid "Supplier Invoices And Refunds" -msgstr "" +msgstr "Factures et notes de crédit fournisseurs" #. module: account #: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." -msgstr "" +msgstr "Cette entrée a déjà fait l'objet d'une réconciliation." #. module: account #: view:account.move.line.unreconcile.select:0 #: view:account.unreconcile.reconcile:0 #: model:ir.model,name:account.model_account_move_line_unreconcile_select msgid "Unreconciliation" -msgstr "" +msgstr "Non réconcilié" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report @@ -932,6 +969,8 @@ msgid "" " opening/closing fiscal " "year process." msgstr "" +"Impossible d'annuler la réconciliation d'écritures qui ont été générées par " +"le processus d'ouverture/de fermeture d'exercice" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_new @@ -942,7 +981,7 @@ msgstr "" #: view:account.payment.term:0 #: field:account.payment.term.line,value:0 msgid "Computation" -msgstr "" +msgstr "Calcul" #. module: account #: field:account.journal.cashbox.line,pieces:0 @@ -959,12 +998,12 @@ msgstr "" #. module: account #: view:account.fiscalyear:0 msgid "Create 3 Months Periods" -msgstr "" +msgstr "Créer des périodes trimestrielles" #. module: account #: report:account.overdue:0 msgid "Due" -msgstr "" +msgstr "Payable" #. module: account #: field:account.config.settings,purchase_journal_id:0 @@ -980,7 +1019,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Approve" -msgstr "" +msgstr "Approbation" #. module: account #: view:account.invoice:0 @@ -992,7 +1031,7 @@ msgstr "" #. module: account #: help:account.invoice,supplier_invoice_number:0 msgid "The reference of this invoice as provided by the supplier." -msgstr "" +msgstr "La référence de la facture tel que fournie par le fournisseur" #. module: account #: selection:account.account,type:0 @@ -1006,7 +1045,7 @@ msgstr "" #: model:account.financial.report,name:account.account_financial_report_liability0 #: model:account.financial.report,name:account.account_financial_report_liabilitysum0 msgid "Liability" -msgstr "" +msgstr "Passif" #. module: account #: code:addons/account/account_invoice.py:899 @@ -1027,7 +1066,7 @@ msgstr "" #. module: account #: selection:account.journal,type:0 msgid "Sale Refund" -msgstr "" +msgstr "Note de crédit de vente" #. module: account #: model:process.node,note:account.process_node_accountingstatemententries0 @@ -1037,7 +1076,7 @@ msgstr "" #. module: account #: field:account.analytic.line,move_id:0 msgid "Move Line" -msgstr "" +msgstr "Ligne d'écriture" #. module: account #: help:account.move.line,tax_amount:0 @@ -1050,7 +1089,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Purchases" -msgstr "" +msgstr "Achats" #. module: account #: field:account.model,lines_id:0 @@ -1072,12 +1111,12 @@ msgstr "" #: report:account.partner.balance:0 #: field:account.period,code:0 msgid "Code" -msgstr "" +msgstr "Code" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "" +msgstr "Fonctionnalités" #. module: account #: code:addons/account/account.py:2346 @@ -1095,7 +1134,7 @@ msgstr "" #: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance #: model:ir.ui.menu,name:account.menu_account_partner_balance_report msgid "Partner Balance" -msgstr "" +msgstr "Balance des partenaires" #. module: account #: model:ir.actions.act_window,help:account.action_account_gain_loss @@ -1144,7 +1183,7 @@ msgstr "" #. module: account #: help:account.fiscalyear.close,fy_id:0 msgid "Select a Fiscal year to close" -msgstr "" +msgstr "Choisissez un exercice à fermer" #. module: account #: help:account.account.template,user_type:0 @@ -1156,7 +1195,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "" +msgstr "Note de crédit " #. module: account #: code:addons/account/account_analytic_line.py:90 @@ -1179,12 +1218,12 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_view_bank_statement_tree #: model:ir.ui.menu,name:account.journal_cash_move_lines msgid "Cash Registers" -msgstr "" +msgstr "Caisses enregistreuses" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "" +msgstr "Journal auxilaire - Compte clients" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1220,7 +1259,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "Notes de crédit" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 @@ -1243,7 +1282,7 @@ msgstr "" #: field:account.fiscal.position.tax,tax_dest_id:0 #: field:account.fiscal.position.tax.template,tax_dest_id:0 msgid "Replacement Tax" -msgstr "" +msgstr "Impôt de remplacement" #. module: account #: selection:account.move.line,centralisation:0 @@ -1254,7 +1293,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_tax_code_template_form #: model:ir.ui.menu,name:account.menu_action_account_tax_code_template_form msgid "Tax Code Templates" -msgstr "" +msgstr "Modèles de code de taxe" #. module: account #: constraint:account.move.line:0 @@ -1306,12 +1345,12 @@ msgstr "" #. module: account #: help:account.move.line,move_id:0 msgid "The move of this entry line." -msgstr "" +msgstr "L'écriture de cette ligne d'entrée." #. module: account #: field:account.move.line.reconcile,trans_nbr:0 msgid "# of Transaction" -msgstr "" +msgstr "# de transactions" #. module: account #: report:account.general.ledger:0 @@ -1319,7 +1358,7 @@ msgstr "" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Entry Label" -msgstr "" +msgstr "Libellé de l'écriture" #. module: account #: help:account.invoice,origin:0 @@ -1331,7 +1370,7 @@ msgstr "" #: view:account.analytic.line:0 #: view:account.journal:0 msgid "Others" -msgstr "" +msgstr "Autres" #. module: account #: view:account.subscription:0 @@ -1376,13 +1415,13 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_entries_report_all #: model:ir.ui.menu,name:account.menu_action_account_entries_report_all msgid "Entries Analysis" -msgstr "" +msgstr "Analyse des écritures" #. module: account #: field:account.account,level:0 #: field:account.financial.report,level:0 msgid "Level" -msgstr "" +msgstr "Niveau" #. module: account #: code:addons/account/wizard/account_change_currency.py:38 @@ -1402,7 +1441,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_tax_report #: model:ir.ui.menu,name:account.next_id_27 msgid "Taxes" -msgstr "" +msgstr "Taxes" #. module: account #: code:addons/account/wizard/account_financial_report.py:70 @@ -1414,12 +1453,12 @@ msgstr "" #: model:account.financial.report,name:account.account_financial_report_profitandloss0 #: model:ir.actions.act_window,name:account.action_account_report_pl msgid "Profit and Loss" -msgstr "" +msgstr "Résultats" #. module: account #: model:ir.model,name:account.model_account_account_template msgid "Templates for Accounts" -msgstr "" +msgstr "Modèles de comptes" #. module: account #: view:account.tax.code.template:0 @@ -1431,19 +1470,19 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_reconcile_select #: model:ir.actions.act_window,name:account.action_view_account_move_line_reconcile msgid "Reconcile Entries" -msgstr "" +msgstr "Écritures de réconcilliation" #. module: account #: model:ir.actions.report.xml,name:account.account_overdue #: view:res.company:0 msgid "Overdue Payments" -msgstr "" +msgstr "Paiement en souffrance" #. module: account #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Initial Balance" -msgstr "" +msgstr "Solde initial" #. module: account #: view:account.invoice:0 @@ -1469,12 +1508,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_entries_report msgid "Journal Items Analysis" -msgstr "" +msgstr "Analyse des écritures comptables du journal" #. module: account #: model:ir.ui.menu,name:account.next_id_22 msgid "Partners" -msgstr "" +msgstr "Partenaires" #. module: account #: help:account.bank.statement,state:0 @@ -1496,12 +1535,12 @@ msgstr "" #: model:process.node,name:account.process_node_bankstatement0 #: model:process.node,name:account.process_node_supplierbankstatement0 msgid "Bank Statement" -msgstr "" +msgstr "Relevé bancaire" #. module: account #: field:res.partner,property_account_receivable:0 msgid "Account Receivable" -msgstr "" +msgstr "Compte client" #. module: account #: code:addons/account/account.py:612 @@ -1519,7 +1558,7 @@ msgstr "" #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" -msgstr "" +msgstr "Compte dont le solde n'est pas 0" #. module: account #: code:addons/account/account.py:1483 @@ -1552,7 +1591,7 @@ msgstr "" #. module: account #: field:account.automatic.reconcile,max_amount:0 msgid "Maximum write-off amount" -msgstr "" +msgstr "Montant maximum des écarts de réconcilliation" #. module: account #. openerp-web @@ -1562,6 +1601,9 @@ msgid "" "There is nothing to reconcile. All invoices and payments\n" " have been reconciled, your partner balance is clean." msgstr "" +"Il n'y a rien à réconcillier. Toutes les factures et paiements\n" +" ont été réconcilliés, le solde de votre partenaire " +"est équilibré." #. module: account #: field:account.chart.template,code_digits:0 @@ -7290,6 +7332,8 @@ msgstr "" #: help:account.config.settings,company_footer:0 msgid "Bank accounts as printed in the footer of each printed document" msgstr "" +"Comptes en banque tel qu'imprimé dans le pied de page de chaque document " +"imprimé" #. module: account #: constraint:account.account:0 diff --git a/addons/account/i18n/gl.po b/addons/account/i18n/gl.po index 951c6ce9941..37c1d348467 100644 --- a/addons/account/i18n/gl.po +++ b/addons/account/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:22+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/gu.po b/addons/account/i18n/gu.po index 5ea8ec263c7..5e7f0a92d67 100644 --- a/addons/account/i18n/gu.po +++ b/addons/account/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:22+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/he.po b/addons/account/i18n/he.po index 430f62a5f88..5c8faffa9eb 100644 --- a/addons/account/i18n/he.po +++ b/addons/account/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:22+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/hi.po b/addons/account/i18n/hi.po index 81942795696..6e04e130868 100644 --- a/addons/account/i18n/hi.po +++ b/addons/account/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:22+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/hr.po b/addons/account/i18n/hr.po index e8283c46157..6febe616cdb 100644 --- a/addons/account/i18n/hr.po +++ b/addons/account/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:54+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/hu.po b/addons/account/i18n/hu.po index 68f2b44f7bc..1d337ba67ef 100644 --- a/addons/account/i18n/hu.po +++ b/addons/account/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/id.po b/addons/account/i18n/id.po index fcce1c39d0b..4f197c6d511 100644 --- a/addons/account/i18n/id.po +++ b/addons/account/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -34,8 +34,8 @@ msgid "" "Determine the display order in the report 'Accounting \\ Reporting \\ " "Generic Reporting \\ Taxes \\ Taxes Report'" msgstr "" -"Menentukan urutan tampilan dalam laporan 'Akunting\\Pelaporan\\Pelaporan " -"Generik\\Pajak\\Laporan Pjak'" +"Menentukan urutan tampilan dalam laporan 'Accounting \\ Reporting \\ Generic " +"Reporting \\ Taxes \\ Taxes Report'" #. module: account #: view:account.move.reconcile:0 @@ -63,7 +63,7 @@ msgstr "Sisa" #: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." -msgstr "Jurnal item \"%s\" tidak valid" +msgstr "Item \"%s\" dalam Jurnal tidak valid" #. module: account #: model:ir.model,name:account.model_report_aged_receivable @@ -81,7 +81,7 @@ msgstr "Impor dari tagihan atau pembayaran" #: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" -msgstr "" +msgstr "Akun Salah" #. module: account #: view:account.move:0 @@ -167,6 +167,9 @@ msgid "" "which is set after generating opening entries from 'Generate Opening " "Entries'." msgstr "" +"Anda harus menetapkan 'End of Year Entries Journal' untuk tahun fiskal ini, " +"yang akan ditetapkan setelah menghasilkan entri awal dari 'Generate Opening " +"Entries'" #. module: account #: field:account.fiscal.position.account,account_src_id:0 @@ -185,6 +188,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik untuk menambah periode fiskal\n" +"

\n" +" Satu periode akunting biasanya adalah satu bulan atau satu " +"kuartal. \n" +" Biasanya terkait dengan periode pajak.\n" +"

\n" +" " #. module: account #: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard @@ -199,7 +210,7 @@ msgstr "Nama Kolom" #. module: account #: help:account.config.settings,code_digits:0 msgid "No. of digits to use for account code" -msgstr "" +msgstr "Jumlah digit untuk kode akun" #. module: account #: help:account.analytic.journal,type:0 @@ -219,6 +230,9 @@ msgid "" "lines for invoices. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Set akun analitik yang akan digunakan sebagai default pada baris pajak " +"tagihan dalam invoice. Biarkan kosong jika anda tidak ingin menggunakan akun " +"analitik pada baris pajak tagihan sebagai default." #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_template_form @@ -234,7 +248,7 @@ msgstr "Pindahkan baris rekonsiliasi terpilih" #. module: account #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries are an input of the reconciliation." -msgstr "Catatan akuntansi adalah sebuah masukan dari rekonsiliasi" +msgstr "Entri akunting adalah input rekonsiliasi" #. module: account #: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports @@ -244,12 +258,12 @@ msgstr "Laporan menurut standar Belgia" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "Tervalidasi" #. module: account #: model:account.account.type,name:account.account_type_income_view1 msgid "Income View" -msgstr "" +msgstr "View Pendapatan" #. module: account #: help:account.account,user_type:0 @@ -265,7 +279,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "" +msgstr "Nomor catatan kredit berikutnya" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -274,6 +288,9 @@ msgid "" "sales, purchase, expense, contra, etc.\n" " This installs the module account_voucher." msgstr "" +"Ini mencakup seluruh kebutuhan dasar untuk entri voucher bank, kas, " +"penjualan, pembelian, biaya, kontra, dsb.\n" +" Menginstal modul account_voucher." #. module: account #: model:ir.actions.act_window,name:account.action_account_use_model_create_entry @@ -305,6 +322,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik untuk membentuk refund dana pelanggan.\n" +"

\n" +" Refund adalah dokumen yang meng-kredit tagihan seluruhnya " +"atau \n" +" sebagian.\n" +"

\n" +" Anda dapat menerbitkan refund langsung dari tagihan " +"pelanggan,\n" +" tidak harus diterbitkan secara manual.\n" +"

\n" +" " #. module: account #: help:account.installer,charts:0 @@ -323,7 +352,7 @@ msgstr "Pembatalan Rekonsiliasi Akun" #. module: account #: field:account.config.settings,module_account_budget:0 msgid "Budget management" -msgstr "" +msgstr "Manajemen anggaran" #. module: account #: view:product.template:0 @@ -344,13 +373,13 @@ msgstr "" #. module: account #: field:account.config.settings,group_multi_currency:0 msgid "Allow multi currencies" -msgstr "" +msgstr "Izinkan mata uang jamak" #. module: account #: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" -msgstr "" +msgstr "Anda harus mendefinisikan jurnal analitik tipe '%s'!" #. module: account #: selection:account.entries.report,month:0 @@ -365,12 +394,12 @@ msgstr "Juni" #: code:addons/account/wizard/account_automatic_reconcile.py:148 #, python-format msgid "You must select accounts to reconcile." -msgstr "" +msgstr "Anda harus memilih akun untuk di rekonsiliasi" #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "" +msgstr "Mengizinkan anda menggunakan akunting analitik" #. module: account #: view:account.invoice:0 @@ -378,18 +407,18 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Pramuniaga" #. module: account #: view:account.bank.statement:0 #: view:account.invoice:0 msgid "Responsible" -msgstr "Bertanggung Jawab" +msgstr "Tanggung-jawab" #. module: account #: model:ir.model,name:account.model_account_bank_accounts_wizard msgid "account.bank.accounts.wizard" -msgstr "tuntunan.akun.bank" +msgstr "account.bank.accounts.wizard" #. module: account #: field:account.move.line,date_created:0 @@ -433,18 +462,25 @@ msgid "" "this box, you will be able to do invoicing & payments,\n" " but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" +"Memungkinkan anda mengatur aktiva yang dimiliki oleh perusahaan atau " +"perseorangan.\n" +" Menyimpan depresiasi yang terjadi pada aktiva tersebut , dan " +"membuat akun bergerak untuk baris depresiasinya.\n" +" Menginstal modul account_asset. Jika anda tidak mencentang " +"kotak ini, anda bisa melakukan penagihan dan pembayaran, tetapi tidak bisa " +"melakukan pembukuan (Jurnal Items, Chart of Accounts, ...)" #. module: account #: help:account.bank.statement.line,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Pembuat Informasi Penerima" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "" +msgstr "Periode :" #. module: account #: field:account.account.template,chart_template_id:0 @@ -452,12 +488,13 @@ msgstr "" #: field:account.tax.template,chart_template_id:0 #: field:wizard.multi.charts.accounts,chart_template_id:0 msgid "Chart Template" -msgstr "Salinan Bagan Akun" +msgstr "Template Bagan" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" msgstr "" +"Perubahan: buat pengembalian, rekonsiliasi, dan membuat draft tagihan baru" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -471,11 +508,19 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" +"Jika anda memilih 'Round per line' : untuk setiap pajak, nilai pajak awal " +"akan dihitung dan dibulatkan untuk setiap baris PO/SO/Tagihan kemudian hasil " +"pembulatan ini dijumlahkan, hasilnya adalah total pajak. Jika anda memilih " +"'Round globally': untuk setiap pajak, jumlah pajak akan dihitung untuk " +"setiap baris PO/SO/tagihan, kemudian jumlahnya barulah di bulatkan. Jika " +"anda menjual dengan pajak, anda harusnya memilih 'Round per line' karena " +"tentunya anda menginginkan agar nilai pajak pada subtotal sama dengan jumlah " +"total pajak setiap baris." #. module: account #: model:ir.model,name:account.model_wizard_multi_charts_accounts msgid "wizard.multi.charts.accounts" -msgstr "tuntunan.multi.bagan.akun" +msgstr "wizard.multi.charts.accounts" #. module: account #: help:account.model.line,amount_currency:0 @@ -485,12 +530,12 @@ msgstr "Jumlah yang ditampilkan dalam mata uang pilihan lainnya" #. module: account #: view:account.journal:0 msgid "Available Coins" -msgstr "" +msgstr "Koin yang tersedia" #. module: account #: field:accounting.report,enable_filter:0 msgid "Enable Comparison" -msgstr "Perbandingan diperbolehkan" +msgstr "Izinkan Perbandingan" #. module: account #: view:account.analytic.line:0 @@ -538,7 +583,7 @@ msgstr "Induk target" #. module: account #: help:account.invoice.line,sequence:0 msgid "Gives the sequence of this line when displaying the invoice." -msgstr "" +msgstr "Memberikan urutan baris ini saat menampilkan tagihan" #. module: account #: field:account.bank.statement,account_id:0 @@ -582,7 +627,7 @@ msgstr "Bukan transaksi yang dapat direkonsiliasi" #: report:account.general.ledger:0 #: report:account.general.ledger_landscape:0 msgid "Counterpart" -msgstr "Lawan" +msgstr "Counterpart" #. module: account #: view:account.fiscal.position:0 @@ -612,7 +657,7 @@ msgstr "" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "" +msgstr "Presisi desimal pada entri jurnal" #. module: account #: selection:account.config.settings,period:0 @@ -638,6 +683,8 @@ msgid "" "Specified journal does not have any account move entries in draft state for " "this period." msgstr "" +"Jurnal dimaksud tidak memiliki entri akun bergerak pada kondisi draft untuk " +"periode ini." #. module: account #: view:account.fiscal.position:0 @@ -660,12 +707,12 @@ msgstr "Urutan Utama harus berbeda dari yang sekarang !" #: code:addons/account/wizard/account_change_currency.py:70 #, python-format msgid "Current currency is not configured properly." -msgstr "" +msgstr "Mata uang saat ini tidak terkonfigurasi dengan baik." #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "" +msgstr "Akun Profit" #. module: account #: code:addons/account/account_move_line.py:1156 @@ -678,7 +725,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_report_account_type_sales msgid "Report of the Sales by Account Type" -msgstr "" +msgstr "Laporan Penjualan Menurut Tipe Akun" #. module: account #: code:addons/account/account.py:3201 @@ -690,7 +737,7 @@ msgstr "SAJ" #: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." -msgstr "" +msgstr "Tidak dapat membuat gerakan dengan mata uang berbeda dari .." #. module: account #: model:email.template,report_name:account.email_template_edi_invoice @@ -698,6 +745,8 @@ msgid "" "Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " "and 'draft' or ''}" msgstr "" +"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " +"and 'draft' or ''}" #. module: account #: view:account.period:0 @@ -725,6 +774,8 @@ msgstr "Periode Jurnal" msgid "" "You cannot create more than one move per period on a centralized journal." msgstr "" +"Anda tidak dapat membuat lebih dari satu pergerakan per periode pada jurnal " +"tersentralisasi." #. module: account #: help:account.tax,account_analytic_paid_id:0 @@ -733,6 +784,9 @@ msgid "" "lines for refunds. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Set akun analitik yang akan digunakan sebagai default pada baris pajak " +"tagihan untuk pengembalian. Tinggalkan kosong jika sebagai default anda " +"tidak ingin menggunakan akun analitik pada baris pajak tagihan." #. module: account #: view:account.account:0 @@ -750,12 +804,12 @@ msgstr "Akun Piutang" #. module: account #: view:account.config.settings:0 msgid "Configure your company bank accounts" -msgstr "" +msgstr "Konfigurasi akun bank perusahaan anda." #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "Buat Pengembalian" #. module: account #: constraint:account.move.line:0 @@ -763,13 +817,13 @@ msgid "" "The date of your Journal Entry is not in the defined period! You should " "change the date or remove this constraint from the journal." msgstr "" -"Tanggal pada jurnal entri tidak sesuai dengan Period ! Anda harus merubah " -"atau menghilangkan tanggal ini pada jurnal." +"Tanggal pada jurnal entri tidak sesuai dengan Periode ! Anda harus merubah " +"tanggal atau menghilangkan batasan ini dari jurnal." #. module: account #: model:ir.model,name:account.model_account_report_general_ledger msgid "General Ledger Report" -msgstr "Laporan Buku Besar Umum" +msgstr "Laporan Buku Besar" #. module: account #: view:account.invoice:0 @@ -785,12 +839,12 @@ msgstr "Apakah anda yakin untuk membuat catatan baru?" #: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." -msgstr "" +msgstr "Tagihan dibayar parsial: %s%s dari %s%s (%s%s tersisa)." #. module: account #: view:account.invoice:0 msgid "Print Invoice" -msgstr "Print Faktur" +msgstr "Cetak Tagihan" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:111 @@ -799,11 +853,14 @@ msgid "" "Cannot %s invoice which is already reconciled, invoice should be " "unreconciled first. You can only refund this invoice." msgstr "" +"Tidak dapat %s tagihan yang sudah di rekonsiliasi, tagihan seharusnya di-" +"unreconciled terlebih dulu. Anda hanya dapat melakukan pengembalian atas " +"tagihan ini." #. module: account #: selection:account.financial.report,display_detail:0 msgid "Display children with hierarchy" -msgstr "Tampilkan anak dengan terstruktur" +msgstr "Tampilkan hirarki anak" #. module: account #: selection:account.payment.term.line,value:0 @@ -12139,3 +12196,6 @@ msgstr "" #~ msgid "" #~ "You selected an Unit of Measure which is not compatible with the product." #~ msgstr "Anda Memilih satuan yang tidak kompatibel dengan productnya" + +#~ msgid "Cancel Invoice" +#~ msgstr "Batalkan Tagihan" diff --git a/addons/account/i18n/is.po b/addons/account/i18n/is.po index 4a1f302e126..663bf9f558d 100644 --- a/addons/account/i18n/is.po +++ b/addons/account/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/it.po b/addons/account/i18n/it.po index 46759de6a93..afe88b8a337 100644 --- a/addons/account/i18n/it.po +++ b/addons/account/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ja.po b/addons/account/i18n/ja.po index 2c2b2a708ab..0ca6f0260f7 100644 --- a/addons/account/i18n/ja.po +++ b/addons/account/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -1529,6 +1529,8 @@ msgid "" "And after getting confirmation from the bank it will be in 'Confirmed' " "status." msgstr "" +"新しい明細書が作成されるとステータスは「ドラフト」になります。\n" +"また、銀行からの確認後は「確認済み」状態になります。" #. module: account #: field:account.invoice.report,state:0 @@ -3898,10 +3900,10 @@ msgstr "" "

\n" " クリックして顧客請求書を登録してください。\n" "

\n" -" OpenERPの電子請求は顧客入金の回収を容易にします。\n" -" 顧客は電子メールで請求書を受け取り、顧客のシステムがオンラインで支払うかインポートすることができます。\n" +" OpenERPの電子請求で顧客入金処理が簡単になります。\n" +" 顧客はEメールで請求書を受け取り、そのままオンラインで支払ったり、システムにインポートしたりすることができます。\n" "

\n" -" 顧客との議論は各請求書の下部に自動で表示されます。\n" +" 顧客とのコミュニケーション履歴は各請求書の下部に自動で表示されます。\n" "

\n" " " @@ -4969,7 +4971,7 @@ msgstr "それは貸方金額のデフォルトアカウントとして動作し #. module: account #: view:cash.box.out:0 msgid "Describe why you take money from the cash register:" -msgstr "" +msgstr "キャッシュレジスタから現金を取り出した理由を説明して下さい。" #. module: account #: selection:account.invoice,state:0 @@ -5833,7 +5835,7 @@ msgstr "ドラフト返金 " #. module: account #: view:cash.box.in:0 msgid "Fill in this form if you put money in the cash register:" -msgstr "" +msgstr "キャッシュレジスタに現金を入れる場合はこのフォームに記入して下さい。" #. module: account #: view:account.payment.term.line:0 diff --git a/addons/account/i18n/kab.po b/addons/account/i18n/kab.po index aa5e655b0dc..c03ebfd28b8 100644 --- a/addons/account/i18n/kab.po +++ b/addons/account/i18n/kab.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/kk.po b/addons/account/i18n/kk.po index 16e9b6d8078..0716145eaea 100644 --- a/addons/account/i18n/kk.po +++ b/addons/account/i18n/kk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ko.po b/addons/account/i18n/ko.po index 26aa70133de..9ea16c7b3ca 100644 --- a/addons/account/i18n/ko.po +++ b/addons/account/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -79,7 +79,7 @@ msgstr "청구서 또는 납부서로부터 가져오기" #: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" -msgstr "" +msgstr "비정상 계정" #. module: account #: view:account.move:0 @@ -193,7 +193,7 @@ msgstr "열 라벨" #. module: account #: help:account.config.settings,code_digits:0 msgid "No. of digits to use for account code" -msgstr "" +msgstr "계좌번호" #. module: account #: help:account.analytic.journal,type:0 diff --git a/addons/account/i18n/lo.po b/addons/account/i18n/lo.po index 4c3a30d49e3..96545396e7e 100644 --- a/addons/account/i18n/lo.po +++ b/addons/account/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lt.po b/addons/account/i18n/lt.po index f4aff61e5bf..ab07d012841 100644 --- a/addons/account/i18n/lt.po +++ b/addons/account/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:25+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lv.po b/addons/account/i18n/lv.po index 50649473e90..7b05ff5963a 100644 --- a/addons/account/i18n/lv.po +++ b/addons/account/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/mk.po b/addons/account/i18n/mk.po index a686771d669..551311c1a39 100644 --- a/addons/account/i18n/mk.po +++ b/addons/account/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:25+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/mn.po b/addons/account/i18n/mn.po index a5a78b5b737..e5900523890 100644 --- a/addons/account/i18n/mn.po +++ b/addons/account/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:25+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -3529,7 +3529,7 @@ msgstr "Нэхэмжлэлийн валют" #: field:accounting.report,account_report_id:0 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree msgid "Account Reports" -msgstr "Тайлагнах Дансд" +msgstr "Санхүүгийн тайлан" #. module: account #: field:account.payment.term,line_ids:0 @@ -6146,7 +6146,7 @@ msgstr "Хөрөнгийн харагдац" #. module: account #: model:ir.model,name:account.model_account_common_account_report msgid "Account Common Account Report" -msgstr "Дансны Ерөнхий Дансны Тайлан" +msgstr "Дансны ерөнхий тайлан" #. module: account #: view:account.analytic.account:0 @@ -6756,7 +6756,7 @@ msgstr "Захиалагчийн буцаалт" #. module: account #: field:account.account,foreign_balance:0 msgid "Foreign Balance" -msgstr "Гадаад бланс" +msgstr "Валютын баланс" #. module: account #: field:account.journal.period,name:0 @@ -7162,7 +7162,7 @@ msgstr "Тулгалт: Дараагийн харилцагч руу очих" #: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance #: model:ir.actions.report.xml,name:account.account_analytic_account_inverted_balance msgid "Inverted Analytic Balance" -msgstr "Урвуу шинжилгээний баланс" +msgstr "Урвуу аналитик баланс" #. module: account #: field:account.tax.template,applicable_type:0 @@ -7575,7 +7575,7 @@ msgstr "Санхүүгийн Тайлангийн Стиль" #. module: account #: selection:account.financial.report,sign:0 msgid "Preserve balance sign" -msgstr "Нөөц тайлангийн тэмдэг" +msgstr "Балансын тэмдэгийг хэвээр нь" #. module: account #: view:account.vat.declaration:0 @@ -8404,7 +8404,7 @@ msgstr "Хэсгийн Дугаар Алга !" #: view:account.financial.report:0 #: model:ir.ui.menu,name:account.menu_account_report_tree_hierarchy msgid "Account Reports Hierarchy" -msgstr "Дансны Тайлангийн Шатлал" +msgstr "Тайлангийн загварын шатлал" #. module: account #: help:account.account.template,chart_template_id:0 @@ -8864,7 +8864,7 @@ msgstr "" #. module: account #: report:account.analytic.account.inverted.balance:0 msgid "Inverted Analytic Balance -" -msgstr "Урвуу шинжилгээний баланс -" +msgstr "Урвуу аналитик баланс -" #. module: account #: help:account.move.reconcile,opening_reconciliation:0 @@ -9077,7 +9077,7 @@ msgstr "Орлогын толгой данс" #. module: account #: field:account.account,adjusted_balance:0 msgid "Adjusted Balance" -msgstr "Тохируулсан бланс" +msgstr "Тохируулсан баланс" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form @@ -10945,7 +10945,7 @@ msgstr "Дэлгэрэнгүй байхгүй" #: model:ir.actions.act_window,name:account.action_account_gain_loss #: model:ir.ui.menu,name:account.menu_unrealized_gains_losses msgid "Unrealized Gain or Loss" -msgstr "Тэгшитгэгдээгүй Ашиг эсвэл Алдагдал" +msgstr "Хэрэгжээгүй ашиг алдагдал" #. module: account #: view:account.move:0 diff --git a/addons/account/i18n/nb.po b/addons/account/i18n/nb.po index fdd8905a2c6..47526d57f9a 100644 --- a/addons/account/i18n/nb.po +++ b/addons/account/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:53+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:25+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po index e084b6f576e..84e10549b8d 100644 --- a/addons/account/i18n/nl.po +++ b/addons/account/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #, python-format #~ msgid "Integrity Error !" @@ -5037,7 +5037,7 @@ msgstr "Rek. type" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "Bank en Cheques" +msgstr "Bank en Giro." #. module: account #: field:account.account.template,note:0 @@ -9381,8 +9381,7 @@ msgstr "" " met betrekking tot de dagelijkse bedrijfsvoering.\n" "

\n" " een gemiddeld bedrijf gebruikt een dagboek per " -"betaalmethode(kasboek,\n" -" bankrekeningen, cheques), een inkoopboek, een verkoopboek\n" +"betaalmethode(kas, bank en giro), een inkoopboek, een verkoopboek\n" " en een memoriaal.\n" "

\n" " " diff --git a/addons/account/i18n/nl_BE.po b/addons/account/i18n/nl_BE.po index 2eb3f149cc4..e346cd03926 100644 --- a/addons/account/i18n/nl_BE.po +++ b/addons/account/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:58+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: nl\n" #. module: account diff --git a/addons/account/i18n/oc.po b/addons/account/i18n/oc.po index 9c6447fc405..dfeb0dab0be 100644 --- a/addons/account/i18n/oc.po +++ b/addons/account/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:53+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:26+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/pl.po b/addons/account/i18n/pl.po index b887f02be9a..ef779200db0 100644 --- a/addons/account/i18n/pl.po +++ b/addons/account/i18n/pl.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: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2012-12-22 12:46+0000\n" -"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \n" +"PO-Revision-Date: 2014-04-04 19:18+0000\n" +"Last-Translator: Dariusz Żbikowski \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: 2014-03-04 06:53+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-04-05 05:30+0000\n" +"X-Generator: Launchpad (build 16976)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -989,6 +989,8 @@ msgid "" " opening/closing fiscal " "year process." msgstr "" +"Nie możesz anulować uzgodnień pozycji dziennika jeśli zostały one " +"wygenerowane procesem zamykania/otwierania roku." #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_new diff --git a/addons/account/i18n/pt.po b/addons/account/i18n/pt.po index 2708c7b2cc4..b56fe88e316 100644 --- a/addons/account/i18n/pt.po +++ b/addons/account/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:53+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:26+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/pt_BR.po b/addons/account/i18n/pt_BR.po index 9530a4bc8b3..f4ed577320a 100644 --- a/addons/account/i18n/pt_BR.po +++ b/addons/account/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:57+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ro.po b/addons/account/i18n/ro.po index 6b52bafbc8f..a9f10f5590a 100644 --- a/addons/account/i18n/ro.po +++ b/addons/account/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:54+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ru.po b/addons/account/i18n/ru.po index 513f9693e2e..b8096c73b99 100644 --- a/addons/account/i18n/ru.po +++ b/addons/account/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:54+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/si.po b/addons/account/i18n/si.po index 29618698906..b6aa13912d3 100644 --- a/addons/account/i18n/si.po +++ b/addons/account/i18n/si.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:54+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sk.po b/addons/account/i18n/sk.po index 7d33302735a..8b9f1cc464a 100644 --- a/addons/account/i18n/sk.po +++ b/addons/account/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:55+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sl.po b/addons/account/i18n/sl.po index dc8c0792f15..26dfd81502b 100644 --- a/addons/account/i18n/sl.po +++ b/addons/account/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:55+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sq.po b/addons/account/i18n/sq.po index 30de66415bd..5476248eeb0 100644 --- a/addons/account/i18n/sq.po +++ b/addons/account/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:18+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sr.po b/addons/account/i18n/sr.po index 3e7e1319232..1a8f3719339 100644 --- a/addons/account/i18n/sr.po +++ b/addons/account/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:54+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sr@latin.po b/addons/account/i18n/sr@latin.po index 10d32523765..6a1c1de3a48 100644 --- a/addons/account/i18n/sr@latin.po +++ b/addons/account/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:00+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:36+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sv.po b/addons/account/i18n/sv.po index 96a4acbd724..e22e7ade348 100644 --- a/addons/account/i18n/sv.po +++ b/addons/account/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:55+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -26,6 +26,7 @@ msgstr "Systembetalning" msgid "" "An account fiscal position could be defined only once time on same accounts." msgstr "" +"Ett kontos skatteregion kan endast definieras en gång för varje konto." #. module: account #: help:account.tax.code,sequence:0 diff --git a/addons/account/i18n/ta.po b/addons/account/i18n/ta.po index 3e3f22a6abe..15b31c5afd8 100644 --- a/addons/account/i18n/ta.po +++ b/addons/account/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:55+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/te.po b/addons/account/i18n/te.po index 2e95b7d65f1..be991d67688 100644 --- a/addons/account/i18n/te.po +++ b/addons/account/i18n/te.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:56+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/th.po b/addons/account/i18n/th.po index 8052e223c6d..5bfc17b393d 100644 --- a/addons/account/i18n/th.po +++ b/addons/account/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:56+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/tlh.po b/addons/account/i18n/tlh.po index 5faaded0775..88d2582d6ed 100644 --- a/addons/account/i18n/tlh.po +++ b/addons/account/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:56+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/tr.po b/addons/account/i18n/tr.po index a6c6580a51c..4cfe8f74381 100644 --- a/addons/account/i18n/tr.po +++ b/addons/account/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:56+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -465,7 +465,7 @@ msgstr "" " Bu, account_asset modülünü sisteme kurar. Eğer bu kutuyu " "işaretlemezseniz, fatura kesip ödeme kabul etme gibi,\n" " işlemleri yapabilirsiniz ama gelişmiş muhasebe kayıtlarını " -"(Günlükleri, Hesap planları, ...) tutamazsınız." +"(Yevmiyeleri, Hesap planları, ...) tutamazsınız." #. module: account #: help:account.bank.statement.line,name:0 @@ -2310,7 +2310,7 @@ msgstr "Analitik hesap" #: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." -msgstr "Lütfen bu günlükte bir hesabın tanımlandığını doğrulayın." +msgstr "Lütfen bu yevmiyede bir hesabın tanımlandığını doğrulayın." #. module: account #: selection:account.entries.report,move_line_state:0 @@ -2445,7 +2445,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a sale journal." -msgstr "Bir satış günlüğüne bağlı Analitik Yevmiye Maddeleri." +msgstr "Bir satış yevmiyesine bağlı Analitik Yevmiye Maddeleri." #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -4691,7 +4691,7 @@ msgid "" "debit/credit accounts, of type 'situation' and with a centralized " "counterpart." msgstr "" -"Burada en iyi yöntem, her mali yılın açılış girişleri için ayrı günlükleri " +"Burada en iyi yöntem, her mali yılın açılış girişleri için ayrı yevmiyeleri " "kullanmaktır. Bu yevmiyeyi tanımlarken öntanımlı borç/alacak hesaplarını, " "hesap tipi olarak 'situation' ve bir merkezileştirmiş karşılık hesabıyla " "seçin." @@ -6073,7 +6073,7 @@ msgstr "Matrah Tutarına Dahil et" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "Tedarikçi Faturası Numarası" +msgstr "Tedarikçi Fatura Numarası" #. module: account #: help:account.payment.term.line,days:0 @@ -6573,7 +6573,7 @@ msgstr "" #: field:report.account.sales,period_id:0 #: field:report.account_type.sales,period_id:0 msgid "Force Period" -msgstr "Dönemi Zorla" +msgstr "Döneme Zorla" #. module: account #: model:ir.actions.act_window,help:account.action_account_form @@ -8014,7 +8014,7 @@ msgstr "Kasa Kalemlerini Kapatma" #: field:account.move.line,statement_id:0 #: model:process.process,name:account.process_process_statementprocess0 msgid "Statement" -msgstr "Hesap özeti" +msgstr "Hesap Özeti" #. module: account #: help:account.journal,default_debit_account_id:0 @@ -9672,7 +9672,7 @@ msgstr "Vergi Şablonu" #. module: account #: field:account.invoice.refund,period:0 msgid "Force period" -msgstr "Dönemi zorla" +msgstr "Döneme zorla" #. module: account #: model:ir.model,name:account.model_account_partner_balance @@ -10774,7 +10774,7 @@ msgstr "Uzlaştırma için Aç" #. module: account #: field:account.account,parent_left:0 msgid "Parent Left" -msgstr "Sol Ana" +msgstr "Sol Üst" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -10928,7 +10928,7 @@ msgstr "Ayrıntı yok" #: model:ir.actions.act_window,name:account.action_account_gain_loss #: model:ir.ui.menu,name:account.menu_unrealized_gains_losses msgid "Unrealized Gain or Loss" -msgstr "Gerçekleşmemiş Kazanç ya da Zarar" +msgstr "Gerçekleşmemiş Kazanç veya Zarar" #. module: account #: view:account.move:0 @@ -11091,7 +11091,7 @@ msgstr "" #. module: account #: field:account.analytic.balance,empty_acc:0 msgid "Empty Accounts ? " -msgstr "Hesaplar Boşaltınsın ? " +msgstr "Boş Hesaplar ? " #. module: account #: view:account.unreconcile.reconcile:0 @@ -11551,7 +11551,7 @@ msgstr "Elle Vergi Girilen Fatura" #: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." -msgstr "Tedarikçi ödeme koşulunda ödeme koşulu kalemi yok!" +msgstr "Tedarikçi ödeme koşulunda ödeme koşul kalemi yok." #. module: account #: field:account.account,parent_right:0 @@ -11675,7 +11675,7 @@ msgstr "Yevmiye Maddelerini Ara" #: help:account.tax.template,ref_tax_sign:0 #: help:account.tax.template,tax_sign:0 msgid "Usually 1 or -1." -msgstr "Genelde 1 veya -1" +msgstr "Genelde 1 veya -1." #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account_template @@ -11712,8 +11712,8 @@ msgid "" "The residual amount on a receivable or payable of a journal entry expressed " "in its currency (maybe different of the company currency)." msgstr "" -"Alacak ya da borç hesabına ait bir günlükte bakiye tutarı, kendi para birimi " -"ile belirtilir (şirket para biriminden farklı olabilir)." +"Alacak ya da borç hesabına ait bir yevmiyede bakiye tutarı, kendi para " +"birimi ile belirtilir (şirket para biriminden farklı olabilir)." #~ msgid "Description on invoices" #~ msgstr "Fatura Açıklaması" diff --git a/addons/account/i18n/ug.po b/addons/account/i18n/ug.po index ccb0714655e..6219840a987 100644 --- a/addons/account/i18n/ug.po +++ b/addons/account/i18n/ug.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:56+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/uk.po b/addons/account/i18n/uk.po index 763c7a833ff..16597bd76b3 100644 --- a/addons/account/i18n/uk.po +++ b/addons/account/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:56+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ur.po b/addons/account/i18n/ur.po index 2cc5849cf20..7ff5bc8775a 100644 --- a/addons/account/i18n/ur.po +++ b/addons/account/i18n/ur.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:56+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/vi.po b/addons/account/i18n/vi.po index 74a0fd0c4cb..c4d687b780e 100644 --- a/addons/account/i18n/vi.po +++ b/addons/account/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:57+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_CN.po b/addons/account/i18n/zh_CN.po index 583f78d2490..e2a085c1349 100644 --- a/addons/account/i18n/zh_CN.po +++ b/addons/account/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-07 06:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_HK.po b/addons/account/i18n/zh_HK.po index b3fbcee87f2..abef89fa277 100644 --- a/addons/account/i18n/zh_HK.po +++ b/addons/account/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:57+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_TW.po b/addons/account/i18n/zh_TW.po index 86d713e23b3..2965f29dc14 100644 --- a/addons/account/i18n/zh_TW.po +++ b/addons/account/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:58+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/installer.py b/addons/account/installer.py index 961b8f9e763..343e22a7632 100644 --- a/addons/account/installer.py +++ b/addons/account/installer.py @@ -47,7 +47,7 @@ class account_installer(osv.osv_memory): # try get the list on apps server try: - apps_server = self.pool.get('ir.config_parameter').get_param(cr, uid, 'apps.server', 'https://apps.openerp.com') + apps_server = self.pool.get('ir.module.module').get_apps_server(cr, uid, context=context) up = urlparse.urlparse(apps_server) url = '{0.scheme}://{0.netloc}/apps/charts?serie={1}'.format(up, serie) diff --git a/addons/account/project/project_report.xml b/addons/account/project/project_report.xml index 3ee449e01b5..de2e2feee5a 100644 --- a/addons/account/project/project_report.xml +++ b/addons/account/project/project_report.xml @@ -1,29 +1,54 @@ - + - + - + - - - + + diff --git a/addons/account/project/report/account_journal.py b/addons/account/project/report/account_journal.py deleted file mode 100644 index 50f98fd0ee0..00000000000 --- a/addons/account/project/report/account_journal.py +++ /dev/null @@ -1,49 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 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 . -# -############################################################################## - - -import time -from openerp.report import report_sxw - -# -# Use period and Journal for selection or resources -# -class journal_print(report_sxw.rml_parse): - def lines(self, journal_id, *args): - self.cr.execute('select id from account_analytic_line where journal_id=%s order by date,id', (journal_id,)) - ids = map(lambda x: x[0], self.cr.fetchall()) - res = self.pool.get('account.analytic.line').browse(self.cr, self.uid, ids) - return res - def _sum_lines(self, journal_id): - self.cr.execute('select sum(amount) from account_analytic_line where journal_id=%s', (journal_id,)) - return self.cr.fetchone()[0] or 0.0 - def __init__(self, cr, uid, name, context): - super(journal_print, self).__init__(cr, uid, name, context=context) - self.localcontext = { - 'time': time, - 'lines': self.lines, - 'sum_lines': self._sum_lines, - } -report_sxw.report_sxw('report.account.analytic.journal.print', 'account.analytic.journal', 'addons/account/project/report/analytic_journal.rml',parser=journal_print) - - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/account/project/report/analytic_balance.py b/addons/account/project/report/analytic_balance.py index 2aa9f2c549e..7c333b84c45 100644 --- a/addons/account/project/report/analytic_balance.py +++ b/addons/account/project/report/analytic_balance.py @@ -20,7 +20,7 @@ ############################################################################## import time - +from openerp.osv import osv from openerp.report import report_sxw @@ -56,7 +56,6 @@ class account_analytic_balance(report_sxw.rml_parse): self.get_children(data['child_ids']) return True - def _get_objects(self, empty_acc): if self.read_data: return self.read_data @@ -143,18 +142,16 @@ class account_analytic_balance(report_sxw.rml_parse): WHERE account_id IN %s AND date>=%s AND date<=%s",query_params) return self.cr.fetchone()[0] or 0.0 - - def _sum_balance(self, accounts, date1, date2): debit = self._sum_all(accounts, date1, date2, 'debit') or 0.0 credit = self._sum_all(accounts, date1, date2, 'credit') or 0.0 return (debit-credit) -report_sxw.report_sxw('report.account.analytic.account.balance', - 'account.analytic.account', 'addons/account/project/report/analytic_balance.rml', - parser=account_analytic_balance, header="internal") - +class report_analyticbalance(osv.AbstractModel): + _name = 'report.account.report_analyticbalance' + _inherit = 'report.abstract_report' + _template = 'account.report_analyticbalance' + _wrapped_report_class = account_analytic_balance # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/account/project/report/analytic_balance.rml b/addons/account/project/report/analytic_balance.rml deleted file mode 100644 index 1754988f7d6..00000000000 --- a/addons/account/project/report/analytic_balance.rml +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Code - - - Account Name - - - Debit - - - Credit - - - Balance - - - Quantity - - - - - - - - - Analytic Balance - [[ company.currency_id.name ]] - - - - - - - - - - Code - - - Account Name - - - Debit - - - Credit - - - Balance - - - Quantity - - - - - - - Total - - - - - - - - [[ formatLang(sum_all(get_objects(data['form']['empty_acc']),data['form']['date1'],data['form']['date2'],'debit')) ]] - - - [[ formatLang(sum_all(get_objects(data['form']['empty_acc']),data['form']['date1'],data['form']['date2'],'credit')) ]] - - - [[ formatLang(sum_balance(get_objects(data['form']['empty_acc']),data['form']['date1'],data['form']['date2']), currency_obj = company.currency_id)]] - - - [[ formatLang(sum_all(get_objects(data['form']['empty_acc']),data['form']['date1'],data['form']['date2'],'quantity')) ]] - - - -
- [[ repeatIn(get_objects(data['form']['empty_acc']),'o') ]] - - - - [[ o['code'] ]] - - - [[ o['complete_name'] ]] - - - [[ formatLang(move_sum(o['id'],data['form']['date1'],data['form']['date2'],'debit')) ]] - - - [[ formatLang(move_sum(o['id'],data['form']['date1'],data['form']['date2'],'credit')) ]] - - - [[ formatLang(move_sum_balance(o['id'],data['form']['date1'],data['form']['date2']), currency_obj = company.currency_id)]] - - - [[ formatLang(move_sum(o['id'],data['form']['date1'],data['form']['date2'],'quantity')) ]] - - - -
- [[ repeatIn(lines_g(o['id'],data['form']['date1'],data['form']['date2']),'move_g') ]] - - - - [[ move_g['code'] ]] - - - [[ move_g['name'] ]] - - - [[ formatLang(move_g['debit'])]] - - - [[ formatLang(move_g['credit']) ]] - - - [[ formatLang(move_g['balance'], currency_obj = company.currency_id) ]] - - - [[ formatLang(move_g['quantity']) ]] - - - - - - -
-
- - - - - - -
-
-
\ No newline at end of file diff --git a/addons/account/project/report/analytic_journal.py b/addons/account/project/report/analytic_journal.py index 1ca1ffb3ca4..c59efb057d7 100644 --- a/addons/account/project/report/analytic_journal.py +++ b/addons/account/project/report/analytic_journal.py @@ -20,9 +20,10 @@ ############################################################################## import time - +from openerp.osv import osv from openerp.report import report_sxw + # # Use period and Journal for selection or resources # @@ -57,8 +58,11 @@ class account_analytic_journal(report_sxw.rml_parse): res = self.cr.dictfetchone() return res['sum'] or 0 -report_sxw.report_sxw('report.account.analytic.journal', 'account.analytic.journal', 'addons/account/project/report/analytic_journal.rml',parser=account_analytic_journal,header="internal") +class report_analyticjournal(osv.AbstractModel): + _name = 'report.account.report_analyticjournal' + _inherit = 'report.abstract_report' + _template = 'account.report_analyticjournal' + _wrapped_report_class = account_analytic_journal # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/account/project/report/analytic_journal.rml b/addons/account/project/report/analytic_journal.rml deleted file mode 100644 index 719851252b5..00000000000 --- a/addons/account/project/report/analytic_journal.rml +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ repeatIn(objects,'o') ]] - - - - Analytic Journal - - - - - - - Period from - - - Period to - - - Currency - - - - - - - [[ formatLang(data['form']['date1'],date=True) ]] - - - [[ formatLang(data['form']['date2'],date=True) ]] - - - [[ company.currency_id.name ]] - - - - - - - - - - Date - - - Code - - - Move Name - - - Account n° - - - General - - - Analytic - - - - - - - - - - [[ o.code ]] - [[ o.name ]] - - - - - - - - - - - - - - - - - - [[ formatLang(sum_general(o.id,data['form']['date1'],data['form']['date2'])) ]] - - - [[ formatLang(sum_analytic(o.id,data['form']['date1'],data['form']['date2'])) ]] - - - - - - -
- [[ repeatIn(lines(o.id,data['form']['date1'],data['form']['date2']), 'move') ]] - - - - - - - - - - - - - - [[ move.name ]] KI - - - [[ move.account_id.code ]] [[ move.account_id.name ]] - - - [[ formatLang(move.debit-move.credit) ]] - - - - - - - - - - - -
- [[ repeatIn(lines_a(move.id,o.id,data['form']['date1'],data['form']['date2']),'move_a') ]] - - - - [[ (not move_a) and removeParentNode('blockTable') ]] [[ formatLang(move_a.date,date = True) ]] - - - [[ move_a.code ]] - - - [[ move_a.name ]] - - - [[ move_a.account_id.code ]] - [[ move_a.account_id.name ]] - - - - - - - - [[ formatLang( move_a.amount) ]] - - - - - - -
- - - - - - -
- - - -
- [[ repeatIn(lines_a(False,o.id,data['form']['date1'],data['form']['date2']),'move_a') ]] - - - - [[ (not move_a) and removeParentNode('blockTable') ]] [[ formatLang(move_a.date,date = True) ]] - - - [[ move_a.code ]] - - - [[ move_a.name ]] - - - [[ move_a.account_id.code ]] - [[ move_a.account_id.name ]] - - - - - - - - [[ formatLang( move_a.amount) ]] - - - - - - -
- - - -
-
diff --git a/addons/account/project/report/cost_ledger.py b/addons/account/project/report/cost_ledger.py index e594ab92a63..5eef375eaab 100644 --- a/addons/account/project/report/cost_ledger.py +++ b/addons/account/project/report/cost_ledger.py @@ -20,9 +20,10 @@ ############################################################################## import time - +from openerp.osv import osv from openerp.report import report_sxw + class account_analytic_cost_ledger(report_sxw.rml_parse): def __init__(self, cr, uid, name, context): super(account_analytic_cost_ledger, self).__init__(cr, uid, name, context=context) @@ -100,8 +101,11 @@ class account_analytic_cost_ledger(report_sxw.rml_parse): credit = self._sum_credit(accounts, date1, date2) return (debit-credit) -report_sxw.report_sxw('report.account.analytic.account.cost_ledger', 'account.analytic.account', 'addons/account/project/report/cost_ledger.rml',parser=account_analytic_cost_ledger, header="internal") +class report_analyticcostledger(osv.AbstractModel): + _name = 'report.account.report_analyticcostledger' + _inherit = 'report.abstract_report' + _template = 'account.report_analyticcostledger' + _wrapped_report_class = account_analytic_cost_ledger # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/account/project/report/cost_ledger.rml b/addons/account/project/report/cost_ledger.rml deleted file mode 100644 index 1099a8b8b4e..00000000000 --- a/addons/account/project/report/cost_ledger.rml +++ /dev/null @@ -1,305 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Date/Code - - - J.C. /Move name - - - Debit - - - Credit - - - Balance - - - - - - - - - - - - - Cost Ledger - - - - - - - - - - - - Period from - - - Period to - - - Printing date - - - - - - - [[ formatLang(data['form']['date1'],date = True) ]] - - - [[ formatLang(data['form']['date2'],date = True) ]] - - - [[ formatLang(time.strftime('%Y-%m-%d %H:%M:%S'),date_time = True) ]] - - - - - - - - - - Date/Code - - - J.C. /Move name - - - Debit - - - Credit - - - Balance - - - - - - - Total: - - - - - - - - [[ formatLang (sum_debit(objects,data['form']['date1'],data['form']['date2'])) ]] - - - [[ formatLang (sum_credit(objects,data['form']['date1'],data['form']['date2'])) ]] - - - [[ formatLang (sum_balance(objects,data['form']['date1'],data['form']['date2']), currency_obj = company.currency_id) ]] - - - -
- [[ repeatIn(objects,'account') ]] - - - - [[ account.code ]] - - - [[ account.complete_name ]] - - - [[ formatLang (account_sum_debit(account,data['form']['date1'],data['form']['date2'])) ]] - - - [[ formatLang (account_sum_credit(account,data['form']['date1'],data['form']['date2'])) ]] - - - [[ formatLang (account_sum_balance(account,data['form']['date1'],data['form']['date2']), currency_obj = company.currency_id) ]] - - - -
- [[ repeatIn(lines_g(account,data['form']['date1'],data['form']['date2']),'move_g') ]] - - - - [[ move_g['code'] ]] - - - [[ move_g['name'] ]] - - - [[ formatLang( move_g['debit']) ]] - - - [[ formatLang( move_g['credit']) ]] - - - [[ formatLang( move_g['balance'], currency_obj = company.currency_id) ]] - - - -
- [[ repeatIn(lines_a(move_g,account,data['form']['date1'],data['form']['date2']),'move_a') ]] - - - - [[ formatLang(move_a['date'],date = True) ]] - - - [[ move_a['cj'] ]] - - - [[ move_a['name'] ]] - - - [[ formatLang( move_a['debit'] )]] - - - [[ formatLang( move_a['credit']) ]] - - - [[ formatLang( move_a['balance'], currency_obj = company.currency_id)]] - - - - - - -
-
-
-
-
-
diff --git a/addons/account/project/report/inverted_analytic_balance.py b/addons/account/project/report/inverted_analytic_balance.py index bd86bcfe257..23129144555 100644 --- a/addons/account/project/report/inverted_analytic_balance.py +++ b/addons/account/project/report/inverted_analytic_balance.py @@ -20,7 +20,7 @@ ############################################################################## import time - +from openerp.osv import osv from openerp.report import report_sxw class account_inverted_analytic_balance(report_sxw.rml_parse): @@ -120,8 +120,11 @@ class account_inverted_analytic_balance(report_sxw.rml_parse): WHERE account_id IN %s AND date>=%s AND date<=%s", (tuple(ids),date1, date2,)) return self.cr.fetchone()[0] or 0.0 -report_sxw.report_sxw('report.account.analytic.account.inverted.balance', 'account.analytic.account', 'addons/account/project/report/inverted_analytic_balance.rml',parser=account_inverted_analytic_balance, header="internal") +class report_invertedanalyticbalance(osv.AbstractModel): + _name = 'report.account.report_invertedanalyticbalance' + _inherit = 'report.abstract_report' + _template = 'account.report_invertedanalyticbalance' + _wrapped_report_class = account_inverted_analytic_balance # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/account/project/report/inverted_analytic_balance.rml b/addons/account/project/report/inverted_analytic_balance.rml deleted file mode 100644 index 54b6878c407..00000000000 --- a/addons/account/project/report/inverted_analytic_balance.rml +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Code - - - Name - - - Debit - - - Credit - - - Balance - - - Quantity - - - - - - - - Inverted Analytic Balance - [[ company.currency_id.name ]] - - - - - - - - - - Code - - - Name - - - Debit - - - Credit - - - Balance - - - Quantity - - - - - - - - - - Total - - - - - - - - [[ formatLang(sum_debit(objects,data['form']['date1'],data['form']['date2'])) ]] - - - [[ formatLang(sum_credit(objects,data['form']['date1'],data['form']['date2']))]] - - - [[ formatLang(sum_balance(objects,data['form']['date1'],data['form']['date2']), currency_obj = company.currency_id)]] - - - [[ formatLang(sum_quantity(objects,data['form']['date1'],data['form']['date2'])) ]] - - - -
- [[ repeatIn(lines_g(objects,data['form']['date1'],data['form']['date2']),'move_g') ]] - - - - [[ (not move_g) and removeParentNode('blockTable') ]] [[ move_g['code'] ]] - - - [[ move_g['name'] ]] - - - [[ formatLang(move_g['debit'])]] - - - [[formatLang(move_g['credit'])]] - - - [[ formatLang(move_g['balance'], currency_obj = company.currency_id)]] - - - [[formatLang(move_g['quantity']) ]] - - - -
- [[ repeatIn(lines_a(objects,move_g['id'],data['form']['date1'],data['form']['date2']),'move_a') ]] - - - - [[ (not move_a) and removeParentNode('blockTable') ]] [[ move_a['code'] ]] - - - [[ move_a['complete_name'] ]] - - - [[ formatLang(move_a['debit']) ]] - - - [[ formatLang(move_a['credit']) ]] - - - [[ formatLang(move_a['balance'], currency_obj = company.currency_id)]] - - - [[ formatLang(move_a['quantity']) ]] - - - - - - -
-
-
-
-
\ No newline at end of file diff --git a/addons/account/project/report/quantity_cost_ledger.py b/addons/account/project/report/quantity_cost_ledger.py index b22558b900f..d3ed1cdc3a8 100644 --- a/addons/account/project/report/quantity_cost_ledger.py +++ b/addons/account/project/report/quantity_cost_ledger.py @@ -19,9 +19,10 @@ # ############################################################################## import time - +from openerp.osv import osv from openerp.report import report_sxw + class account_analytic_quantity_cost_ledger(report_sxw.rml_parse): def __init__(self, cr, uid, name, context): super(account_analytic_quantity_cost_ledger, self).__init__(cr, uid, name, context=context) @@ -116,9 +117,11 @@ class account_analytic_quantity_cost_ledger(report_sxw.rml_parse): AND journal_id IN %s",(tuple(ids), date1, date2, tuple(journal_ids))) return self.cr.fetchone()[0] or 0.0 -report_sxw.report_sxw('report.account.analytic.account.quantity_cost_ledger', - 'account.analytic.account', - 'addons/account/project/report/quantity_cost_ledger.rml', - parser=account_analytic_quantity_cost_ledger, header="internal") + +class report_analyticcostledgerquantity(osv.AbstractModel): + _name = 'report.account.report_analyticcostledgerquantity' + _inherit = 'report.abstract_report' + _template = 'account.report_analyticcostledgerquantity' + _wrapped_report_class = account_analytic_quantity_cost_ledger # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/project/report/quantity_cost_ledger.rml b/addons/account/project/report/quantity_cost_ledger.rml deleted file mode 100644 index 9f99f50ccc2..00000000000 --- a/addons/account/project/report/quantity_cost_ledger.rml +++ /dev/null @@ -1,281 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Code/Date - - - J.C./Move name - - - Quantity - - - Total - - - - - - - - - - - - - Cost Ledger - - - - - - - - - - - - Period from - - - Period to - - - Printing date - - - - - - - [[ formatLang(data['form']['date1'],date = True) ]] - - - [[ formatLang(data['form']['date2'],date = True) ]] - - - [[ formatLang(time.strftime('%Y-%m-%d %H:%M:%S'),date_time = True) ]] - - - - - - - - - - - - - Code/Date - - - J.C./Move name - - - Quantity - - - Total - - - - - - - Total: - - - - - - - - - - - - - [[ formatLang (sum_quantity(objects,data['form']['date1'],data['form']['date2'], data['form']['journal']) ) ]] - - - -
- [[ repeatIn(objects,'o') ]] - - - - [[ o.code ]] - - - [[ o.complete_name ]] - - - Max Qty: [[ formatLang (o.quantity_max )]] - - - [[ formatLang (account_sum_quantity(o.id,data['form']['date1'],data['form']['date2'], data['form']['journal']) )]] - - - -
- [[ repeatIn(lines_g(o.id,data['form']['date1'],data['form']['date2'],data['form']['journal']),'move_g') ]] - - - - [[ move_g['code'] ]] - - - [[ move_g['name'] ]] - - - [[ formatLang (move_g['quantity']) ]] - - - - - - - [[ repeatIn(lines_a(move_g['id'],o.id,data['form']['date1'],data['form']['date2'],data['form']['journal']),'move_a') ]] - [[ formatLang(move_a['date'],date = True) ]] - - - [[ move_a['cj'] ]] - - - [[ move_a['name'] ]] - - - [[ formatLang (move_a['quantity'] )]] - - - - - - -
-
-
-
-
\ No newline at end of file diff --git a/addons/account/project/views/report_analyticbalance.xml b/addons/account/project/views/report_analyticbalance.xml new file mode 100644 index 00000000000..09cd56fc83f --- /dev/null +++ b/addons/account/project/views/report_analyticbalance.xml @@ -0,0 +1,62 @@ + + + + + + diff --git a/addons/account/project/views/report_analyticcostledger.xml b/addons/account/project/views/report_analyticcostledger.xml new file mode 100644 index 00000000000..cda37d4158f --- /dev/null +++ b/addons/account/project/views/report_analyticcostledger.xml @@ -0,0 +1,90 @@ + + + + + + \ No newline at end of file diff --git a/addons/account/project/views/report_analyticcostledgerquantity.xml b/addons/account/project/views/report_analyticcostledgerquantity.xml new file mode 100644 index 00000000000..de49d4972e5 --- /dev/null +++ b/addons/account/project/views/report_analyticcostledgerquantity.xml @@ -0,0 +1,87 @@ + + + + + + \ No newline at end of file diff --git a/addons/account/project/views/report_analyticjournal.xml b/addons/account/project/views/report_analyticjournal.xml new file mode 100644 index 00000000000..1b3a4fda97c --- /dev/null +++ b/addons/account/project/views/report_analyticjournal.xml @@ -0,0 +1,90 @@ + + + + + + diff --git a/addons/account/project/views/report_invertedanalyticbalance.xml b/addons/account/project/views/report_invertedanalyticbalance.xml new file mode 100644 index 00000000000..e545ec8525b --- /dev/null +++ b/addons/account/project/views/report_invertedanalyticbalance.xml @@ -0,0 +1,91 @@ + + + + + + diff --git a/addons/account/project/wizard/account_analytic_balance_report.py b/addons/account/project/wizard/account_analytic_balance_report.py index 02b2eb6e95d..3a3c301cffc 100644 --- a/addons/account/project/wizard/account_analytic_balance_report.py +++ b/addons/account/project/wizard/account_analytic_balance_report.py @@ -18,10 +18,11 @@ # along with this program. If not, see . # ############################################################################## -import time +import time from openerp.osv import fields, osv + class account_analytic_balance(osv.osv_memory): _name = 'account.analytic.balance' _description = 'Account Analytic Balance' @@ -42,16 +43,13 @@ class account_analytic_balance(osv.osv_memory): context = {} data = self.read(cr, uid, ids)[0] datas = { - 'ids': context.get('active_ids',[]), - 'model': 'account.analytic.account', - 'form': data - } - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'account.analytic.account.balance', - 'datas': datas, - } + 'ids': context.get('active_ids', []), + 'model': 'account.analytic.account', + 'form': data + } + datas['form']['active_ids'] = context.get('active_ids', False) + + return self.pool['report'].get_action(cr, uid, ids, 'account.report_analyticbalance', data=datas, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - 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 index 814cbb8cacc..125dfda46fb 100644 --- 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 @@ -18,10 +18,11 @@ # along with this program. If not, see . # ############################################################################## -import time +import time from openerp.osv import fields, osv + class account_analytic_cost_ledger_journal_report(osv.osv_memory): _name = 'account.analytic.cost.ledger.journal.report' _description = 'Account Analytic Cost Ledger For Journal Report' @@ -42,14 +43,12 @@ class account_analytic_cost_ledger_journal_report(osv.osv_memory): context = {} data = self.read(cr, uid, ids)[0] datas = { - 'ids': context.get('active_ids',[]), - 'model': 'account.analytic.account', - 'form': data - } - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'account.analytic.account.quantity_cost_ledger', - 'datas': datas, - } + 'ids': context.get('active_ids', []), + 'model': 'account.analytic.account', + 'form': data + } + + datas['form']['active_ids'] = context.get('active_ids', False) + return self.pool['report'].get_action(cr, uid, ids, 'account.report_analyticcostledgerquantity', data=datas, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/project/wizard/account_analytic_cost_ledger_report.py b/addons/account/project/wizard/account_analytic_cost_ledger_report.py index ffd56352382..5f00c3c9ac5 100644 --- a/addons/account/project/wizard/account_analytic_cost_ledger_report.py +++ b/addons/account/project/wizard/account_analytic_cost_ledger_report.py @@ -20,9 +20,9 @@ ############################################################################## import time - from openerp.osv import osv, fields + class account_analytic_cost_ledger(osv.osv_memory): _name = 'account.analytic.cost.ledger' _description = 'Account Analytic Cost Ledger' @@ -42,14 +42,13 @@ class account_analytic_cost_ledger(osv.osv_memory): context = {} data = self.read(cr, uid, ids)[0] datas = { - 'ids': context.get('active_ids',[]), - 'model': 'account.analytic.account', - 'form': data - } - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'account.analytic.account.cost_ledger', - 'datas': datas, - } + 'ids': context.get('active_ids',[]), + 'model': 'account.analytic.account', + 'form': data + } + + datas['form']['active_ids'] = context.get('active_ids', False) + + return self.pool['report'].get_action(cr, uid, ids, 'account.report_analyticcostledger', data=datas, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/project/wizard/account_analytic_inverted_balance_report.py b/addons/account/project/wizard/account_analytic_inverted_balance_report.py index 9e54f4f848d..ad79c0b33f6 100644 --- a/addons/account/project/wizard/account_analytic_inverted_balance_report.py +++ b/addons/account/project/wizard/account_analytic_inverted_balance_report.py @@ -18,10 +18,11 @@ # along with this program. If not, see . # ############################################################################## -import time +import time from openerp.osv import fields, osv + class account_analytic_inverted_balance(osv.osv_memory): _name = 'account.analytic.inverted.balance' _description = 'Account Analytic Inverted Balance' @@ -41,14 +42,11 @@ class account_analytic_inverted_balance(osv.osv_memory): context = {} data = self.read(cr, uid, ids)[0] datas = { - 'ids': context.get('active_ids',[]), - 'model': 'account.analytic.account', - 'form': data - } - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'account.analytic.account.inverted.balance', - 'datas': datas, - } + 'ids': context.get('active_ids', []), + 'model': 'account.analytic.account', + 'form': data + } + datas['form']['active_ids'] = context.get('active_ids', False) + return self.pool['report'].get_action(cr, uid, ids, 'account.report_invertedanalyticbalance', data=datas, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/project/wizard/account_analytic_journal_report.py b/addons/account/project/wizard/account_analytic_journal_report.py index 61fe2cd318a..f2e406bc3a5 100644 --- a/addons/account/project/wizard/account_analytic_journal_report.py +++ b/addons/account/project/wizard/account_analytic_journal_report.py @@ -18,10 +18,11 @@ # along with this program. If not, see . # ############################################################################## -import time +import time from openerp.osv import fields, osv + class account_analytic_journal_report(osv.osv_memory): _name = 'account.analytic.journal.report' _description = 'Account Analytic Journal' @@ -49,16 +50,15 @@ class account_analytic_journal_report(osv.osv_memory): for analytic_record in record.analytic_account_journal_id: ids_list.append(analytic_record.id) datas = { - 'ids': ids_list, - 'model': 'account.analytic.journal', - 'form': data - } - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'account.analytic.journal', - 'datas': datas, - } - + 'ids': ids_list, + 'model': 'account.analytic.journal', + 'form': data + } + context2 = context.copy() + context2['active_model'] = 'account.analytic.journal' + context2['active_ids'] = ids_list + return self.pool['report'].get_action(cr, uid, ids, 'account.report_analyticjournal', data=datas, context=context2) + def default_get(self, cr, uid, fields, context=None): if context is None: context = {} diff --git a/addons/account/report/__init__.py b/addons/account/report/__init__.py index 544aa9e262e..ed8cc0aa8b3 100644 --- a/addons/account/report/__init__.py +++ b/addons/account/report/__init__.py @@ -26,12 +26,8 @@ import account_balance import account_partner_balance import account_general_ledger import account_partner_ledger -#import invoice -import account_print_invoice -#import overdue import account_print_overdue import account_aged_partner_balance -#import tax_report import report_vat import account_invoice_report import account_report diff --git a/addons/account/report/account_aged_partner_balance.py b/addons/account/report/account_aged_partner_balance.py index 3b000e40592..3fd83c19207 100644 --- a/addons/account/report/account_aged_partner_balance.py +++ b/addons/account/report/account_aged_partner_balance.py @@ -20,9 +20,11 @@ ############################################################################## import time +from openerp.osv import osv from openerp.report import report_sxw from common_report_header import common_report_header + class aged_trial_report(report_sxw.rml_parse, common_report_header): def __init__(self, cr, uid, name, context): @@ -375,8 +377,11 @@ class aged_trial_report(report_sxw.rml_parse, common_report_header): return self._translate('Receivable and Payable Accounts') return '' -report_sxw.report_sxw('report.account.aged_trial_balance', 'res.partner', - 'addons/account/report/account_aged_partner_balance.rml',parser=aged_trial_report, header="internal landscape") +class report_agedpartnerbalance(osv.AbstractModel): + _name = 'report.account.report_agedpartnerbalance' + _inherit = 'report.abstract_report' + _template = 'account.report_agedpartnerbalance' + _wrapped_report_class = aged_trial_report # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/report/account_aged_partner_balance.rml b/addons/account/report/account_aged_partner_balance.rml deleted file mode 100644 index 5b5404e9c86..00000000000 --- a/addons/account/report/account_aged_partner_balance.rml +++ /dev/null @@ -1,285 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Aged Trial Balance - - - - - - - Chart of Accounts - - - Fiscal Year - - - Start Date - - - Period Length(days) - - - Partner's - - - Analysis Direction - - - Target Moves - - - - - [[ get_account(data) or '' ]] - - - [[ get_fiscalyear(data) or '' ]] - - - [[ formatLang(data['form']['date_from'],date=True) ]] - - - [[ data['form']['period_length'] ]] - - - Receivable Accounts[[ data['form']['result_selection'] == 'customer' or removeParentNode('para') ]] - Payable Accounts[[ data['form']['result_selection'] == 'supplier' or removeParentNode('para') ]] - Receivable and Payable Accounts[[ data['form']['result_selection'] == 'customer_supplier' or removeParentNode('para') ]] - - - [[ data['form']['direction_selection'] ]] - - - [[ get_target_move(data) ]] - - - - - - - - - - Partners - - - Due[[ data['form']['direction_selection'] == 'future' and ' ' or removeParentNode('para') ]] - Not due[[ data['form']['direction_selection'] != 'future' and ' ' or removeParentNode('para') ]] - - - [[ data['form']['4']['name'] ]] - - - [[ data['form']['3']['name'] ]] - - - [[ data['form']['2']['name'] ]] - - - [[ data['form']['1']['name'] ]] - - - [[ data['form']['0']['name'] ]] - - - Total - - - - - - - [[ (get_lines(data['form']), 'partner') == False or removeParentNode('para') ]] - [[ (get_lines_with_out_partner(data['form']), 'not_partner') == False or removeParentNode('para') ]] - Account Total - - - [[ formatLang(get_direction('6'), currency_obj=company.currency_id) ]] - - - [[ formatLang(get_for_period('4'), currency_obj=company.currency_id) ]] - - - [[ formatLang(get_for_period('3'), currency_obj=company.currency_id) ]] - - - [[ formatLang(get_for_period('2'), currency_obj=company.currency_id) ]] - - - [[ formatLang(get_for_period('1'), currency_obj=company.currency_id) ]] - - - [[ formatLang(get_for_period('0'), currency_obj=company.currency_id) ]] - - - [[ formatLang(get_total('5'), currency_obj=company.currency_id) ]] - - - - - - [[ repeatIn(get_lines(data['form']), 'partner') ]] - [[ partner['name'] ]] - - - [[ formatLang(partner['direction'], currency_obj=company.currency_id) ]] - - - [[ formatLang(partner['4'], currency_obj=company.currency_id) ]] - - - [[ formatLang(partner['3'], currency_obj=company.currency_id) ]] - - - [[ formatLang(partner['2'], currency_obj=company.currency_id) ]] - - - [[ formatLang(partner['1'], currency_obj=company.currency_id) ]] - - - [[ formatLang(partner['0'], currency_obj=company.currency_id) ]] - - - [[ formatLang(partner['total'], currency_obj=company.currency_id) ]] - - - - - [[ repeatIn(get_lines_with_out_partner(data['form']), 'not_partner') ]] - [[ not_partner['name'] ]] - - - [[ formatLang(not_partner['direction'], currency_obj=company.currency_id) ]] - - - [[ formatLang(not_partner['4'], currency_obj=company.currency_id) ]] - - - [[ formatLang(not_partner['3'], currency_obj=company.currency_id) ]] - - - [[ formatLang(not_partner['2'], currency_obj=company.currency_id) ]] - - - [[ formatLang(not_partner['1'], currency_obj=company.currency_id) ]] - - - [[ formatLang(not_partner['0'], currency_obj=company.currency_id) ]] - - - [[ formatLang(not_partner['total'], currency_obj=company.currency_id) ]] - - - - - - - - - - diff --git a/addons/account/report/account_balance.py b/addons/account/report/account_balance.py index 2a445984b27..af2c37fc610 100644 --- a/addons/account/report/account_balance.py +++ b/addons/account/report/account_balance.py @@ -21,9 +21,11 @@ import time +from openerp.osv import osv from openerp.report import report_sxw from common_report_header import common_report_header + class account_balance(report_sxw.rml_parse, common_report_header): _name = 'report.account.account.balance' @@ -58,11 +60,6 @@ class account_balance(report_sxw.rml_parse, common_report_header): objects = self.pool.get('account.account').browse(self.cr, self.uid, new_ids) return super(account_balance, self).set_context(objects, data, new_ids, report_type=report_type) - #def _add_header(self, node, header=1): - # if header == 0: - # self.rml_header = "" - # return True - def _get_account(self, data): if data['model']=='account.account': return self.pool.get('account.account').browse(self.cr, self.uid, data['form']['id']).company_id.name @@ -131,6 +128,11 @@ class account_balance(report_sxw.rml_parse, common_report_header): _process_child(accounts,form['display_account'],parent) return self.result_acc -report_sxw.report_sxw('report.account.account.balance', 'account.account', 'addons/account/report/account_balance.rml', parser=account_balance, header="internal") + +class report_trialbalance(osv.AbstractModel): + _name = 'report.account.report_trialbalance' + _inherit = 'report.abstract_report' + _template = 'account.report_trialbalance' + _wrapped_report_class = account_balance # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/report/account_balance.rml b/addons/account/report/account_balance.rml deleted file mode 100644 index 08c05c65fa8..00000000000 --- a/addons/account/report/account_balance.rml +++ /dev/null @@ -1,313 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Trial Balance - - - - - - - - - - - - - Company[[ data['model']=='account.account' and ' ' or removeParentNode('para') ]] - Chart of Accounts[[ data['model']=='ir.ui.menu' and ' ' or removeParentNode('para') ]] - - - Fiscal Year - - - Display Account - - - Filter By [[ data['form']['filter']!='filter_no' and get_filter(data) ]] - - - Target Moves - - - - - [[ get_account(data) or '' ]] - - - [[ get_fiscalyear(data) or '' ]] - - - All[[ data['form']['display_account']=='all' and ' ' or removeParentNode('para') ]] - With movements[[ data['form']['display_account']=='movement' and ' ' or removeParentNode('para') ]] - With balance is not equal to 0[[ data['form']['display_account']=='not_zero' and ' ' or removeParentNode('para') ]] - - [[ data['form']['filter']=='filter_no' and get_filter(data) or removeParentNode('para') ]] - [[ data['form']['filter']=='filter_date' or removeParentNode('blockTable') ]] - - - Start Date - - - End Date - - - - - [[ formatLang(get_start_date(data),date=True) ]] - - - [[ formatLang(get_end_date(data),date=True) ]] - - - - [[ data['form']['filter']=='filter_period' or removeParentNode('blockTable') ]] - - - Start Period - - - End Period - - - - - [[ get_start_period(data) or removeParentNode('para') ]] - - - [[ get_end_period(data) or removeParentNode('para') ]] - - - - - - [[ get_target_move(data) ]] - - - - - - - - - - - - Code - Account - Debit - Credit - Balance - - - [[ repeatIn(lines(data['form']), 'a') ]][[ (a['type']<>'view' and setTag('para','para',{'fontName':"Helvetica"})) or removeParentNode('font') ]][[ a['code'] or removeParentNode('tr') ]] - [[ (a['type']<>'view' and setTag('para','para',{'fontName':"Helvetica"})) or removeParentNode('font') ]][[ '..'*(a['level']-1) ]][[ a['name'] ]] - [[ (a['type']<>'view' and setTag('para','para',{'fontName':"Helvetica"})) or removeParentNode('font') ]][[ a['type']=='view' and removeParentNode('font') ]][[ formatLang(a['debit']) ]][[ a['type']<>'view' and removeParentNode('font') ]] [[formatLang(a['debit']) ]] - [[ (a['type']<>'view' and setTag('para','para',{'fontName':"Helvetica"})) or removeParentNode('font')]][[ a['type']=='view' and removeParentNode('font') ]][[ formatLang(a['credit']) ]][[ a['type']<>'view' and removeParentNode('font') ]] [[ formatLang(a['credit']) ]] - [[ (a['type']<>'view' and setTag('para','para',{'fontName':"Helvetica"})) or removeParentNode('font') ]][[ a['type']=='view' and removeParentNode('font') ]][[ formatLang(a['balance'], currency_obj=company.currency_id) ]][[ a['type']<>'view' and removeParentNode('font') ]] [[ formatLang(a['balance'], currency_obj=company.currency_id) ]] - - - - - - - diff --git a/addons/account/report/account_central_journal.py b/addons/account/report/account_central_journal.py index 8dae208a7a5..28892d0730e 100644 --- a/addons/account/report/account_central_journal.py +++ b/addons/account/report/account_central_journal.py @@ -20,11 +20,14 @@ ############################################################################## import time +from openerp.osv import osv from openerp.report import report_sxw from common_report_header import common_report_header # # Use period and Journal for selection or resources # + + class journal_print(report_sxw.rml_parse, common_report_header): def __init__(self, cr, uid, name, context=None): @@ -103,6 +106,11 @@ class journal_print(report_sxw.rml_parse, common_report_header): return True return data['form']['amount_currency'] -report_sxw.report_sxw('report.account.central.journal', 'account.journal.period', 'addons/account/report/account_central_journal.rml', parser=journal_print, header='external') + +class report_agedpartnerbalance(osv.AbstractModel): + _name = 'report.account.report_centraljournal' + _inherit = 'report.abstract_report' + _template = 'account.report_centraljournal' + _wrapped_report_class = journal_print # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/report/account_central_journal.rml b/addons/account/report/account_central_journal.rml deleted file mode 100644 index 6d350b5fe8f..00000000000 --- a/addons/account/report/account_central_journal.rml +++ /dev/null @@ -1,338 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ repeatIn(objects, 'o') ]] - - - - - Centralized Journal - - - - - - Chart of Accounts - Fiscal Year - Journal - Filter By [[ data['form']['filter']!='filter_no' and get_filter(data) ]] - Target Moves - - - [[ get_account(data) or removeParentNode('para') ]] - [[ get_fiscalyear(data) or '' ]] - [[o.journal_id.name ]] - [[ data['form']['filter']=='filter_no' and get_filter(data) or removeParentNode('para') ]] - [[ data['form']['filter']=='filter_date' or removeParentNode('blockTable') ]] - - Start Date - End Date - - - [[ formatLang(get_start_date(data),date=True) ]] - [[ formatLang(get_end_date(data),date=True) ]] - - - [[ data['form']['filter']=='filter_period' or removeParentNode('blockTable') ]] - - Start Period - End Period - - - [[ get_start_period(data) or removeParentNode('para') ]] - [[ get_end_period(data) or removeParentNode('para') ]] - - - - [[ get_target_move(data) ]] - - - - - - [[ display_currency(data) == False or removeParentNode('blockTable') ]] - - A/C No. - Account Name - Debit - Credit - Balance - - - [[ display_currency(data) or removeParentNode('blockTable') ]] - - A/C No. - Account Name - Debit - Credit - Balance - Currency - - - [[ display_currency(data) == False or removeParentNode('blockTable') ]] - - Total: - - [[ formatLang( sum_debit(o.period_id.id, o.journal_id.id)) ]] - [[ formatLang( sum_credit(o.period_id.id, o.journal_id.id)) ]] - [[ formatLang( sum_credit(o.period_id.id, o.journal_id.id)-sum_debit(o.period_id.id, o.journal_id.id), currency_obj=company.currency_id ) ]] - - - [[ display_currency(data) or removeParentNode('blockTable') ]] - - Total: - - [[ formatLang( sum_debit(o.period_id.id, o.journal_id.id)) ]] - [[ formatLang( sum_credit(o.period_id.id, o.journal_id.id)) ]] - [[ formatLang( sum_credit(o.period_id.id, o.journal_id.id)-sum_debit(o.period_id.id, o.journal_id.id), currency_obj=company.currency_id ) ]] - - - -
- [[ repeatIn(lines(o.period_id.id,o.journal_id.id),'line') ]] - [[ display_currency(data) == False or removeParentNode('blockTable') ]] - - [[ line['code'] ]] - [[ line['name'] ]] - [[ formatLang(line['debit']) ]] - [[ formatLang(line['credit'])]] - [[ formatLang(line['credit']-line['debit'], currency_obj=company.currency_id ) ]] - - - [[ display_currency(data) or removeParentNode('blockTable') ]] - - [[ line['code'] ]] - [[ line['name'] ]] - [[ formatLang(line['debit']) ]] - [[ formatLang(line['credit'])]] - [[ formatLang(line['credit']-line['debit'], currency_obj=company.currency_id ) ]] - [[ (line['currency_id']==None or line['amount_currency']==None) and removeParentNode('font') ]] [[ formatLang(line['amount_currency'] ) ]] [[ line['currency_code'] or '' ]] - - -
- -
-
diff --git a/addons/account/report/account_entries_report.py b/addons/account/report/account_entries_report.py index 6060d97c182..df2d92c9f12 100644 --- a/addons/account/report/account_entries_report.py +++ b/addons/account/report/account_entries_report.py @@ -94,7 +94,7 @@ class account_entries_report(osv.osv): return super(account_entries_report, self).search(cr, uid, args=args, offset=offset, limit=limit, order=order, context=context, count=count) - def read_group(self, cr, uid, domain, fields, groupby, offset=0, limit=None, context=None, orderby=False): + def read_group(self, cr, uid, domain, fields, groupby, offset=0, limit=None, context=None, orderby=False,lazy=True): if context is None: context = {} fiscalyear_obj = self.pool.get('account.fiscalyear') @@ -108,7 +108,7 @@ class account_entries_report(osv.osv): domain.append(['period_id','in',ids]) else: domain = domain - return super(account_entries_report, self).read_group(cr, uid, domain, fields, groupby, offset, limit, context, orderby) + return super(account_entries_report, self).read_group(cr, uid, domain, fields, groupby, offset, limit, context, orderby,lazy) def init(self, cr): tools.drop_view_if_exists(cr, 'account_entries_report') diff --git a/addons/account/report/account_financial_report.py b/addons/account/report/account_financial_report.py index 2b1f5af4d68..064f02c5fbf 100644 --- a/addons/account/report/account_financial_report.py +++ b/addons/account/report/account_financial_report.py @@ -23,6 +23,8 @@ import time from openerp.report import report_sxw from common_report_header import common_report_header from openerp.tools.translate import _ +from openerp.osv import osv + class report_account_common(report_sxw.rml_parse, common_report_header): @@ -105,8 +107,11 @@ class report_account_common(report_sxw.rml_parse, common_report_header): lines.append(vals) return lines -report_sxw.report_sxw('report.account.financial.report', 'account.financial.report', - 'addons/account/report/account_financial_report.rml', parser=report_account_common, header='internal') +class report_financial(osv.AbstractModel): + _name = 'report.account.report_financial' + _inherit = 'report.abstract_report' + _template = 'account.report_financial' + _wrapped_report_class = report_account_common # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/report/account_financial_report.rml b/addons/account/report/account_financial_report.rml deleted file mode 100644 index 7949077e43f..00000000000 --- a/addons/account/report/account_financial_report.rml +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ data['form']['account_report_id'][1] ]] - - - - - - - - - - Chart of Accounts - Fiscal Year - Filter By [[ get_filter(data)!='No Filters' and get_filter(data) ]] - Target Moves - - - [[ get_account(data) or removeParentNode('para') ]] - [[ get_fiscalyear(data) or '' ]] - [[ get_filter(data)=='No Filters' and get_filter(data) or removeParentNode('para') ]] - [[ get_filter(data)=='Date' or removeParentNode('blockTable') ]] - - Start Date - End Date - - - [[ formatLang(get_start_date(data),date=True) ]] - [[ formatLang(get_end_date(data),date=True) ]] - - - [[ get_filter(data)=='Periods' or removeParentNode('blockTable') ]] - - Start Period - End Period - - - [[ get_start_period(data) or removeParentNode('para') ]] - [[ get_end_period(data) or removeParentNode('para') ]] - - - - - [[ get_target_move(data) ]] - - - - - - - - - - - - - [[ data['form']['debit_credit'] == 1 or removeParentNode('blockTable') ]] - - - Name - - - Debit - - - Credit - - - Balance - - - - [[ repeatIn(get_lines(data), 'a') ]] - [[ (a.get('level') <> 0) or removeParentNode('tr') ]] - [[ setTag('tr','tr',{'style': 'Table'+str(min(3,'level' in a and a.get('level') or 1))}) ]] - [[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_name'}) ]][[ a.get('name') ]] - [[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('debit',0.0), currency_obj = company.currency_id) ]] - [[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('credit',0.0), currency_obj = company.currency_id) ]] - [[ (a.get('account_type') =='view' and a.get('level') <> 1) or removeParentNode('td') ]] - [[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance'), currency_obj = company.currency_id) ]] - [[ (a.get('account_type') <>'view' or a.get('level') == 1) or removeParentNode('td') ]] - [[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance'), currency_obj = company.currency_id) ]] - - - - - - [[ (not data['form']['enable_filter'] and not data['form']['debit_credit']) or removeParentNode('blockTable') ]] - - - Name - - - Balance - - - - [[ repeatIn(get_lines(data), 'a') ]] - [[ (a.get('level') <> 0) or removeParentNode('tr') ]] - [[ setTag('tr','tr',{'style': 'Table'+str(min(3,'level' in a and a.get('level') or 1))}) ]] - [[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_name'}) ]][[ a.get('name') ]] - [[ (a.get('account_type') =='view' and a.get('level') <> 1) or removeParentNode('td') ]] - [[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance'), currency_obj = company.currency_id) ]] - [[ (a.get('account_type') <>'view' or a.get('level') == 1) or removeParentNode('td') ]] - [[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance'), currency_obj = company.currency_id) ]] - - - - - - - - - [[ (data['form']['enable_filter'] == 1 and not data['form']['debit_credit']) or removeParentNode('blockTable') ]] - - - Name - - - Balance - - - [[ data['form']['label_filter'] ]] - - - - [[ repeatIn(get_lines(data), 'a') ]] - [[ (a.get('level') <> 0) or removeParentNode('tr') ]] - [[ setTag('tr','tr',{'style': 'Table'+str(min(3,'level' in a and a.get('level') or 1))}) ]] - [[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_name'}) ]][[ a.get('name') ]] - [[ (a.get('account_type') =='view' and a.get('level') <> 1) or removeParentNode('td') ]] - [[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance'), currency_obj = company.currency_id) ]] - [[ (a.get('account_type') <>'view' or a.get('level') == 1) or removeParentNode('td') ]] - [[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance'), currency_obj = company.currency_id) ]] - [[ (a.get('account_type') =='view' and a.get('level') <> 1) or removeParentNode('td') ]] - [[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance_cmp'), currency_obj = company.currency_id) ]] - [[ (a.get('account_type') <>'view' or a.get('level') == 1) or removeParentNode('td') ]] - [[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance_cmp'), currency_obj = company.currency_id) ]] - - - - - - - diff --git a/addons/account/report/account_general_journal.py b/addons/account/report/account_general_journal.py index 4f63411478c..ada615e31fa 100644 --- a/addons/account/report/account_general_journal.py +++ b/addons/account/report/account_general_journal.py @@ -20,8 +20,10 @@ ############################################################################## import time -from common_report_header import common_report_header +from openerp.osv import osv from openerp.report import report_sxw +from common_report_header import common_report_header + class journal_print(report_sxw.rml_parse, common_report_header): @@ -156,6 +158,11 @@ class journal_print(report_sxw.rml_parse, common_report_header): (tuple(move_state), period_id, tuple(journals))) return self.cr.fetchone()[0] or 0.0 -report_sxw.report_sxw('report.account.general.journal', 'account.journal.period', 'addons/account/report/general_journal.rml', parser=journal_print, header='internal') + +class report_generaljournal(osv.AbstractModel): + _name = 'report.account.report_generaljournal' + _inherit = 'report.abstract_report' + _template = 'account.report_generaljournal' + _wrapped_report_class = journal_print # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/report/account_general_journal.rml b/addons/account/report/account_general_journal.rml deleted file mode 100644 index dce30e59918..00000000000 --- a/addons/account/report/account_general_journal.rml +++ /dev/null @@ -1,387 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ repeatIn( periods(objects), 'o') ]] - - - - - - - - - - General Journal - - - - - - - - - - - Company[[ data['model']=='account.journal.period' and ' ' or removeParentNode('para') ]] - Chart of Accounts[[ data['model']=='ir.ui.menu' and ' ' or removeParentNode('para') ]] - Fiscal Year - Journals - Filter By [[ data['form']['filter']!='filter_no' and get_filter(data) ]] - Target Moves - - - [[ get_account(data) or removeParentNode('para') ]] - [[ get_fiscalyear(data) or '' ]] - [[', '.join([ lt or '' for lt in get_journal(data) ]) ]] - [[ data['form']['filter']=='filter_no' and get_filter(data) or removeParentNode('para') ]] - [[ data['form']['filter']=='filter_date' or removeParentNode('blockTable') ]] - - Start Date - End Date - - - [[ formatLang(get_start_date(data),date=True)]] - [[ formatLang(get_end_date(data),date=True) ]] - - - [[ data['form']['filter']=='filter_period' or removeParentNode('blockTable') ]] - - Start Period - End Period - - - [[ get_start_period(data) or removeParentNode('para') ]] - [[ get_end_period(data) or removeParentNode('para') ]] - - - - [[ get_target_move(data) ]] - - - - - - - [[ display_currency(data)==False or removeParentNode('blockTable') ]] - - Code - Journal Name - Debit - Credit - Balance - - - Total: - - [[ formatLang(sum_debit()) ]] - [[ formatLang( sum_credit()) ]] - [[ formatLang( sum_debit()- sum_credit(), currency_obj=company.currency_id) ]] - - - [[ display_currency(data) or removeParentNode('blockTable') ]] - - Code - Journal Name - Debit - Credit - Balance - Currency - - - Total: - - [[ formatLang(sum_debit()) ]] - [[ formatLang( sum_credit()) ]] - [[ formatLang( sum_credit()- sum_debit(), currency_obj=company.currency_id) ]] - - - -
- [[ display_currency(data) or removeParentNode('blockTable') ]] - - - [[ o.name ]] : - - - - - - - [[ formatLang(sum_debit_period(o.id)) ]] - - - [[ formatLang(sum_credit_period(o.id)) ]] - - - [[ formatLang(sum_credit_period(o.id)-sum_debit_period(o.id), currency_obj=company.currency_id) ]] - - - - - - - - - - [[ display_currency(data)==False or removeParentNode('blockTable') ]] - - - [[ o.name ]] : - - - - - - - [[ formatLang(sum_debit_period(o.id)) ]] - - - [[ formatLang(sum_credit_period(o.id)) ]] - - - [[ formatLang(sum_credit_period(o.id)-sum_debit_period(o.id), currency_obj=company.currency_id) ]] - - - -
- [[ repeatIn(lines(o.id),'line')]] - [[ display_currency(data) == False or removeParentNode('blockTable') ]] - - - [[ line['code'] ]] - - - [[ line['name'] ]] - - - [[ formatLang(line['debit'] )]] - - - [[ formatLang(line['credit']) ]] - - - [[ formatLang(line['credit']-line['debit'], currency_obj=company.currency_id ) ]] - - - -
-
- [[ repeatIn(lines(o.id),'line')]] - [[ display_currency(data) or removeParentNode('blockTable') ]] - - [[ line['code'] ]] - [[ line['name'] ]] - [[ formatLang(line['debit'] )]] - [[ formatLang(line['credit']) ]] - [[ formatLang(line['credit']-line['debit'], currency_obj=company.currency_id ) ]] - [[ (line['currency_id']==None or line['amount_currency']==None) and removeParentNode('font') ]] [[ formatLang(line['amount_currency'] ) ]] [[ line['currency_code'] or '' ]] - - -
- - - -
- - - -
-
diff --git a/addons/account/report/account_general_ledger.py b/addons/account/report/account_general_ledger.py index 4f712ad58cc..ffccbec300d 100644 --- a/addons/account/report/account_general_ledger.py +++ b/addons/account/report/account_general_ledger.py @@ -28,9 +28,11 @@ ############################################################################## import time +from openerp.osv import osv from openerp.report import report_sxw from common_report_header import common_report_header + class general_ledger(report_sxw.rml_parse, common_report_header): _name = 'report.account.general.ledger' @@ -304,7 +306,11 @@ class general_ledger(report_sxw.rml_parse, common_report_header): return self._translate('Journal & Partner') return self._translate('Date') -report_sxw.report_sxw('report.account.general.ledger', 'account.account', 'addons/account/report/account_general_ledger.rml', parser=general_ledger, header='internal') -report_sxw.report_sxw('report.account.general.ledger_landscape', 'account.account', 'addons/account/report/account_general_ledger_landscape.rml', parser=general_ledger, header='internal landscape') + +class report_generalledger(osv.AbstractModel): + _name = 'report.account.report_generalledger' + _inherit = 'report.abstract_report' + _template = 'account.report_generalledger' + _wrapped_report_class = general_ledger # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/report/account_general_ledger.rml b/addons/account/report/account_general_ledger.rml deleted file mode 100644 index 6897e15078d..00000000000 --- a/addons/account/report/account_general_ledger.rml +++ /dev/null @@ -1,619 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ data['form']['amount_currency'] == False or removeParentNode('blockTable') ]] - - - Date - - - JRNL - - - Partner - - - Ref - - - Move - - - Entry Label - - - Counterpart - - - Debit - - - Credit - - - Balance - - - - [[data['form']['amount_currency'] == True or removeParentNode('blockTable')]] - - - Date - - - JRNL - - - Partner - - - Ref - - - Move - - - Entry Label - - - Counterpart - - - Debit - - - Credit - - - Balance - - - Currency - - - - - [[ repeatIn(objects, 'a') ]] - General Ledger - - - - - - - Chart of Accounts - - - Fiscal Year - - - Journals - - - Filter By [[ data['form']['filter']!='filter_no' and get_filter(data) ]] - - - Target Moves - - - - - - - [[ get_account(data) or '' ]] - - - [[ get_fiscalyear(data) or '' ]] - - - [[', '.join([ lt or '' for lt in get_journal(data) ]) ]] - - - [[ data['form']['filter']=='filter_no' and get_filter(data) or removeParentNode('para') ]] - [[ data['form']['filter']=='filter_date' or removeParentNode('blockTable') ]] - - - Start Date - - - End Date - - - - [[ data['form']['filter']=='filter_date' or removeParentNode('blockTable') ]] - - - [[ formatLang(get_start_date(data),date=True) ]] - - - [[ formatLang(get_end_date(data),date=True) ]] - - - - [[ data['form']['filter']=='filter_period' or removeParentNode('blockTable') ]] - - - Start Period - - - End Period - - - - [[ data['form']['filter']=='filter_period' or removeParentNode('blockTable') ]] - - - [[ get_start_period(data) or removeParentNode('para') ]] - - - [[ get_end_period(data) or removeParentNode('para') ]] - - - - - - - - - [[ get_target_move(data) ]] - - - - - - - [[data['form']['amount_currency'] == True or removeParentNode('blockTable')]] - - - Date - - - JRNL - - - Partner - - - Ref - - - Move - - - Entry Label - - - Counterpart - - - Debit - - - Credit - - - Balance - - - Currency - - - -
- [[ repeatIn(get_children_accounts(a), 'o') ]] - [[data['form']['amount_currency'] == True or removeParentNode('blockTable')]] - - - [[ '..'*(o.level-1) ]][[ o.code ]] [[ o.name ]] - - - [[ formatLang(sum_debit_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'),currency_obj=company.currency_id) ]] - - - [[ o.currency_id and formatLang(sum_currency_amount_account(o), digits=get_digits(dp='Account'),currency_obj=o.currency_id) or '' ]] - - - -
- [[ repeatIn(lines(o), 'line') ]] - [[data['form']['amount_currency'] == True or removeParentNode('blockTable')]] - - - [[ formatLang(line['ldate'],date=True) ]] - - - [[ line['lcode'] ]] - - - [[ strip_name(line['partner_name'],10) ]] - - - [[ line['lref'] and strip_name(line['lref'],9) ]] - - - [[ strip_name(line['move'],9) ]] - - - [[ strip_name(line['lname'],10) ]] - - - [[ strip_name(line['line_corresp'].replace(', ',','),10) ]] - - - [[ formatLang(line['debit'], digits=get_digits(dp='Account')) ]] - - - [[ formatLang(line['credit'], digits=get_digits(dp='Account')) ]] - - - [[ formatLang(line['progress'], digits=get_digits(dp='Account'),currency_obj=company.currency_id) ]] - - - [[ (line.has_key('currency_id') and line['currency_id']==None or line['amount_currency']==None) and removeParentNode('font') ]] [[ formatLang(line['amount_currency'])]] [[ line['currency_code'] or '']] - - - -
-
- [[ data['form']['amount_currency'] == False or removeParentNode('blockTable') ]] - - - Date - - - JRNL - - - Partner - - - Ref - - - Move - - - Entry Label - - - Counterpart - - - Debit - - - Credit - - - Balance - - - -
- [[ repeatIn(get_children_accounts(a), 'o') ]] - [[ data['form']['amount_currency'] == False or removeParentNode('blockTable') ]] - - - [[ '..'*(o.level-1) ]][[ o.code ]] [[ o.name ]] - - - [[ formatLang(sum_debit_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'),currency_obj=company.currency_id) ]] - - - -
- [[ repeatIn(lines(o), 'line') ]] - [[ data['form']['amount_currency'] == False or removeParentNode('blockTable') ]] - - - [[ formatLang(line['ldate'],date=True) ]] - - - [[ line['lcode'] ]] - - - [[ strip_name(line['partner_name'],20) ]] - - - [[ line['lref'] and strip_name(line['lref'],9) ]] - - - [[ strip_name(line['move'],9) ]] - - - [[ strip_name(line['lname'],18) ]] - - - [[ strip_name(line['line_corresp'].replace(', ',','),20) ]] - - - [[ formatLang(line['debit'], digits=get_digits(dp='Account')) ]] - - - [[ formatLang(line['credit'], digits=get_digits(dp='Account')) ]] - - - [[ formatLang(line['progress'], digits=get_digits(dp='Account'),currency_obj=company.currency_id) ]] - - - -
-
-
-
-
diff --git a/addons/account/report/account_general_ledger_landscape.rml b/addons/account/report/account_general_ledger_landscape.rml deleted file mode 100644 index c5d24343148..00000000000 --- a/addons/account/report/account_general_ledger_landscape.rml +++ /dev/null @@ -1,658 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[data['form']['amount_currency'] == True or removeParentNode('blockTable')]] - - - Date - - - Period - - - JRNL - - - Partner - - - Ref - - - Move - - - Entry Label - - - Counterpart - - - Debit - - - Credit - - - Balance - - - Currency - - - - [[ data['form']['amount_currency'] == False or removeParentNode('blockTable') ]] - - - Date - - - Period - - - JRNL - - - Partner - - - Ref - - - Move - - - Entry Label - - - Counterpart - - - Debit - - - Credit - - - Balance - - - - - [[ repeatIn(objects, 'a') ]] - General Ledger - - - - - - - Company[[ data['model']=='account.account' and ' ' or removeParentNode('para') ]] - Chart of Accounts[[ data['model']=='ir.ui.menu' and ' ' or removeParentNode('para') ]] - - Fiscal Year - - - Journals - - - Display Account - - - Filter By [[ data['form']['filter']!='filter_no' and get_filter(data) ]] - - - Entries Sorted By - - - Target Moves - - - - - - - [[ get_account(data) or removeParentNode('para') ]] - - - [[ get_fiscalyear(data) or '' ]] - - - [[', '.join([ lt or '' for lt in get_journal(data) ]) ]] - - - All[[ data['form']['display_account']=='all' and ' ' or removeParentNode('para') ]] - With movements[[ data['form']['display_account']=='movement' and ' ' or removeParentNode('para') ]] - With balance is not equal to 0[[ data['form']['display_account']=='not_zero' and ' ' or removeParentNode('para') ]] - - - [[ data['form']['filter']=='filter_no' and get_filter(data) or removeParentNode('para') ]] - [[ data['form']['filter']=='filter_date' or removeParentNode('blockTable') ]] - - - Start Date - - - End Date - - - - [[ data['form']['filter']=='filter_date' or removeParentNode('blockTable') ]] - - - [[ formatLang(get_start_date(data),date=True) ]] - - - [[ formatLang(get_end_date(data),date=True) ]] - - - - [[ data['form']['filter']=='filter_period' or removeParentNode('blockTable') ]] - - - Start Period - - - End Period - - - - [[ data['form']['filter']=='filter_period' or removeParentNode('blockTable') ]] - - - [[ get_start_period(data) or removeParentNode('para') ]] - - - [[ get_end_period(data) or removeParentNode('para') ]] - - - - - - [[ get_sortby(data) ]] - - - [[ get_target_move(data) ]] - - - - - - - [[data['form']['amount_currency'] == True or removeParentNode('blockTable')]] - - - Date - - - Period - - - JRNL - - - Partner - - - Ref - - - Move - - - Entry Label - - - Counterpart - - - Debit - - - Credit - - - Balance - - - Currency - - - -
- [[ repeatIn(get_children_accounts(a), 'o') ]] - [[data['form']['amount_currency'] == True or removeParentNode('blockTable')]] - - - [[ '..'*(o.level-1) ]][[ o.code ]] [[ o.name ]] - - - [[ formatLang(sum_debit_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'), currency_obj= company.currency_id) ]] - - - [[ o.currency_id and formatLang(sum_currency_amount_account(o), digits=get_digits(dp='Account'),currency_obj=o.currency_id) or '' ]] - - - -
- [[ repeatIn(lines(o), 'line') ]] - [[data['form']['amount_currency'] == True or removeParentNode('blockTable')]] - - - [[ formatLang(line['ldate'],date=True) ]] - - - [[ line['period_code'] ]] - - - [[ line['lcode'] ]] - - - [[ strip_name(line['partner_name'],20) ]] - - - [[ line['lref'] and strip_name(line['lref'],17) ]] - - - [[ line['move'] ]] - - - [[ strip_name(line['lname'],22) ]] - - - [[ strip_name(line['line_corresp'],18) ]] - - - [[ formatLang(line['debit'], digits=get_digits(dp='Account')) ]] - - - [[ formatLang(line['credit'], digits=get_digits(dp='Account')) ]] - - - [[ formatLang(line['progress'], digits=get_digits(dp='Account'), currency_obj=company.currency_id) ]] - - - [[ (line.has_key('currency_id') and line['currency_id']==None or line['amount_currency']==None) and removeParentNode('font') ]] [[ formatLang(line['amount_currency'])]] [[ line['currency_code'] or '']] - - - -
-
- [[ data['form']['amount_currency'] == False or removeParentNode('blockTable') ]] - - - Date - - - Period - - - JRNL - - - Partner - - - Ref - - - Move - - - Entry Label - - - Counterpart - - - Debit - - - Credit - - - Balance - - - -
- [[ repeatIn(get_children_accounts(a), 'o') ]] - [[ data['form']['amount_currency'] == False or removeParentNode('blockTable') ]] - - - [[ '..'*(o.level-1) ]][[ o.code ]] [[ o.name ]] - - - [[ formatLang(sum_debit_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'), currency_obj=company.currency_id) ]] - - - -
- [[ repeatIn(lines(o), 'line') ]] - [[ data['form']['amount_currency'] == False or removeParentNode('blockTable') ]] - - - [[ formatLang(line['ldate'],date=True) ]] - - - [[ line['period_code'] ]] - - - [[ line['lcode'] ]] - - - [[ strip_name(line['partner_name'],24) ]] - - - [[ strip_name(line['lref'],21) ]] - - - [[ line['move'] ]] - - - [[ strip_name(line['lname'],28) ]] - - - [[ strip_name(line['line_corresp'],23) ]] - - - [[ formatLang(line['debit'], digits=get_digits(dp='Account')) ]] - - - [[ formatLang(line['credit'], digits=get_digits(dp='Account')) ]] - - - [[ formatLang(line['progress'], digits=get_digits(dp='Account'),currency_obj=company.currency_id) ]] - - - -
-
-
-
-
diff --git a/addons/account/report/account_invoice_report_view.xml b/addons/account/report/account_invoice_report_view.xml index 24723d7fb12..eebc95ae0e2 100644 --- a/addons/account/report/account_invoice_report_view.xml +++ b/addons/account/report/account_invoice_report_view.xml @@ -25,7 +25,7 @@ - + diff --git a/addons/account/report/account_journal.py b/addons/account/report/account_journal.py index 97e19be4b0c..13dfd538f4a 100644 --- a/addons/account/report/account_journal.py +++ b/addons/account/report/account_journal.py @@ -20,8 +20,10 @@ ############################################################################## import time -from common_report_header import common_report_header +from openerp.osv import osv from openerp.report import report_sxw +from common_report_header import common_report_header + class journal_print(report_sxw.rml_parse, common_report_header): @@ -196,7 +198,18 @@ class journal_print(report_sxw.rml_parse, common_report_header): return self._translate('Reference Number') return self._translate('Date') -report_sxw.report_sxw('report.account.journal.period.print', 'account.journal.period', 'addons/account/report/account_journal.rml', parser=journal_print, header='external') -report_sxw.report_sxw('report.account.journal.period.print.sale.purchase', 'account.journal.period', 'addons/account/report/account_journal_sale_purchase.rml', parser=journal_print, header='external') + +class report_journal(osv.AbstractModel): + _name = 'report.account.report_journal' + _inherit = 'report.abstract_report' + _template = 'account.report_journal' + _wrapped_report_class = journal_print + + +class report_salepurchasejournal(osv.AbstractModel): + _name = 'report.account.report_salepurchasejournal' + _inherit = 'report.abstract_report' + _template = 'account.report_salepurchasejournal' + _wrapped_report_class = journal_print # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/report/account_journal.rml b/addons/account/report/account_journal.rml deleted file mode 100644 index 6d606ed1937..00000000000 --- a/addons/account/report/account_journal.rml +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ repeatIn(objects, 'o') ]] - - - - Journal - - - - - - - - Company[[ data['model']=='account.journal.period'and ' ' or removeParentNode('para') ]] - Chart of Accounts[[ data['model']=='ir.ui.menu' and ' ' or removeParentNode('para') ]] - Fiscal Year - Journal - Period - Entries Sorted By - Target Moves - - - [[ get_account(data) or '' ]] - [[ get_fiscalyear(data) or '' ]] - [[ o.journal_id.name ]] - [[ o.period_id.name ]] - - Date[[ data['form'].get('sort_selection', 'date') == 'date' and ' ' or removeParentNode('para') ]] - Reference Number[[ data['form'].get('sort_selection', 'date') == 'ref' and ' ' or removeParentNode('para') ]] - - - - - - - - - - [[ set_last_move_id(False)]] -
- [[ display_currency(data) == False or removeParentNode('section') ]] - - - Move - Date - Account - Partner - Label - Debit - Credit - - -
- [[ repeatIn(lines(o.period_id.id, o.journal_id.id), 'line') ]] - - - [[ not check_last_move_id(line.move_id.id) and removeParentNode('blockTable') ]] - - - - - [[ line.move_id.name <> '/' and line.move_id.name or ('*'+str(line.move_id.id)) ]] - [[ formatLang(line.date,date=True) ]] - [[ line.account_id.code ]] - [[ line.partner_id and strip_name(line.partner_id.name,23) ]] - [[ strip_name(line.name,35) ]] - [[ formatLang(line.debit, currency_obj=company.currency_id) ]] - [[ formatLang(line.credit, currency_obj=company.currency_id) ]] - - - [[ set_last_move_id(line.move_id.id) ]] -
- - - - - - - Total: - [[ formatLang(sum_debit(o.period_id.id, o.journal_id.id), currency_obj=company.currency_id) ]] - [[ formatLang(sum_credit(o.period_id.id, o.journal_id.id), currency_obj=company.currency_id) ]] - - -
- -
- [[ display_currency(data) or removeParentNode('section') ]] - - - Move - Date - Account - Partner - Label - Debit - Credit - Currency - - -
- [[ repeatIn(lines(o.period_id.id, o.journal_id.id), 'line') ]] - - - [[ not check_last_move_id(line.move_id.id) and removeParentNode('blockTable') ]] - - - - - [[ line.move_id.name <> '/' and line.move_id.name or ('*'+str(line.move_id.id)) ]] - [[ formatLang(line.date,date=True) ]] - [[ line.account_id.code ]] - [[ line.partner_id and strip_name(line.partner_id.name,17) ]] - [[ strip_name(line.name,28) ]] - [[ formatLang(line.debit, currency_obj=company.currency_id) ]] - [[ formatLang(line.credit, currency_obj=company.currency_id) ]] - [[ line.currency_id and formatLang(line.amount_currency, currency_obj=line.currency_id) or '' ]] - - - [[ set_last_move_id(line.move_id.id) ]] -
- - - - - - - Total: - [[ formatLang(sum_debit(o.period_id.id, o.journal_id.id), currency_obj=company.currency_id) ]] - [[ formatLang(sum_credit(o.period_id.id, o.journal_id.id), currency_obj=company.currency_id) ]] - - - - -
-
-
diff --git a/addons/account/report/account_journal_sale_purchase.rml b/addons/account/report/account_journal_sale_purchase.rml deleted file mode 100644 index 3ee0b484c9a..00000000000 --- a/addons/account/report/account_journal_sale_purchase.rml +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ repeatIn(objects, 'o') ]] - - - - Journal - - - - - - - - [[ data['model']=='account.journal.period'and 'Company' or removeParentNode('para') ]] - [[ data['model']=='ir.ui.menu' and 'Chart of Accounts' or removeParentNode('para') ]] - Fiscal Year - Journal - Period - Entries Sorted By - Target Moves - - - [[ get_account(data) or '' ]] - [[ get_fiscalyear(data) or '' ]] - [[ o.journal_id.name ]] - [[ o.period_id.name ]] - [[ get_sortby(data) ]] - [[ get_target_move(data) ]] - - - - - - - - - [[ set_last_move_id(False) ]] -
- [[ display_currency(data) == False or removeParentNode('section') ]] - - - Move - Date - Account - Partner - Label - Tax - - Debit - Credit - - -
- [[ repeatIn(lines(o.period_id.id, o.journal_id.id), 'line') ]] - - - [[ not check_last_move_id(line.move_id.id) and removeParentNode('blockTable') ]] - - - - - [[ line.move_id.name <> '/' and line.move_id.name or ('*'+str(line.move_id.id)) ]] - [[ formatLang(line.date,date=True) ]] - [[ line.account_id.code ]] - [[ line.partner_id and strip_name(line.partner_id.name,15) ]] - [[ strip_name(line.name,25) ]] - [[ line.tax_code_id and line.tax_code_id.code and (line.tax_code_id.code + ':') ]] - [[ line.tax_amount and formatLang(line.tax_amount, currency_obj=company.currency_id) ]] - [[ formatLang(line.debit, currency_obj=company.currency_id) ]] - [[ formatLang(line.credit, currency_obj=company.currency_id) ]] - - - [[ set_last_move_id(line.move_id.id) ]] -
- - - - - - - - - Total: - [[ formatLang(sum_debit(o.period_id.id, o.journal_id.id), currency_obj=company.currency_id) ]] - [[ formatLang(sum_credit(o.period_id.id, o.journal_id.id), currency_obj=company.currency_id) ]] - - -
- -
- [[ display_currency(data) or removeParentNode('section') ]] - - - Move - Date - Account - Partner - Label - Tax - - Debit - Credit - Currency - - -
- [[ repeatIn(lines(o.period_id.id, o.journal_id.id), 'line') ]] - - - [[ not check_last_move_id(line.move_id.id) and removeParentNode('blockTable') ]] - - - - - [[ line.move_id.name <> '/' and line.move_id.name or ('*'+str(line.move_id.id)) ]] - [[ formatLang(line.date,date=True) ]] - [[ line.account_id.code ]] - [[ line.partner_id and strip_name(line.partner_id.name,12) ]] - [[ strip_name(line.name,16) ]] - [[ line.tax_code_id and line.tax_code_id.code and (line.tax_code_id.code + ':') ]] - [[ line.tax_amount and formatLang(line.tax_amount, currency_obj=company.currency_id) ]] - [[ formatLang(line.debit, currency_obj=company.currency_id) ]] - [[ formatLang(line.credit, currency_obj=company.currency_id) ]] - [[ line.currency_id and formatLang(line.amount_currency, currency_obj=line.currency_id) or '' ]] - - - [[ set_last_move_id(line.move_id.id) ]] -
- - - - - - - - - Total: - [[ formatLang(sum_debit(o.period_id.id, o.journal_id.id), currency_obj=company.currency_id) ]] - [[ formatLang(sum_credit(o.period_id.id, o.journal_id.id), currency_obj=company.currency_id) ]] - - - - -
- - - - - - - -
- - - - - - Tax Declaration - - - - - [[ repeatIn(tax_codes(o.period_id.id,o.journal_id.id), 't') ]][[ t.code + ': ' ]] - [[ formatLang(sum_vat( o.period_id.id, o.journal_id.id, t.id)) ]] - - [[ t.name ]] - - -
-
-
diff --git a/addons/account/report/account_partner_balance.py b/addons/account/report/account_partner_balance.py index 53edbbe9685..ecd287551e5 100644 --- a/addons/account/report/account_partner_balance.py +++ b/addons/account/report/account_partner_balance.py @@ -20,11 +20,12 @@ ############################################################################## import time - +from openerp.osv import osv from openerp.tools.translate import _ from openerp.report import report_sxw from common_report_header import common_report_header + class partner_balance(report_sxw.rml_parse, common_report_header): def __init__(self, cr, uid, name, context=None): @@ -301,6 +302,11 @@ class partner_balance(report_sxw.rml_parse, common_report_header): return _('Receivable and Payable Accounts') return '' -report_sxw.report_sxw('report.account.partner.balance', 'res.partner', 'account/report/account_partner_balance.rml',parser=partner_balance, header="internal") + +class report_partnerbalance(osv.AbstractModel): + _name = 'report.account.report_partnerbalance' + _inherit = 'report.abstract_report' + _template = 'account.report_partnerbalance' + _wrapped_report_class = partner_balance # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/report/account_partner_balance.rml b/addons/account/report/account_partner_balance.rml deleted file mode 100644 index a99a7f062ec..00000000000 --- a/addons/account/report/account_partner_balance.rml +++ /dev/null @@ -1,257 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Partner Balance - - - - - - - - - Chart of Accounts - Fiscal Year - Journals - Filter By [[ data['form']['filter']!='filter_no' and get_filter(data) ]] - Partner's - Target Moves - - - [[ get_account(data) or removeParentNode('para') ]] - [[ get_fiscalyear(data) or '' ]] - [[', '.join([ lt or '' for lt in get_journal(data) ]) ]] - - [[ data['form']['filter']=='filter_no' and get_filter(data) or removeParentNode('para') ]] - [[ data['form']['filter']=='filter_date' or removeParentNode('blockTable') ]] - - Start Date - End Date - - - [[ formatLang(get_start_date(data),date=True) ]] - [[ formatLang(get_end_date(data),date=True) ]] - - - [[ data['form']['filter']=='filter_period' or removeParentNode('blockTable') ]] - - Start Period - End Period - - - [[ get_start_period(data) or removeParentNode('para') ]] - [[ get_end_period(data) or removeParentNode('para') ]] - - - - [[ get_partners() ]] - [[ get_target_move(data) ]] - - - - - - - - - - Code - (Account/Partner) Name - Debit - Credit - Balance - In dispute - - - Total: - - [[ formatLang(sum_debit()) ]] - [[ formatLang(sum_credit()) ]] - [[ formatLang((sum_debit()-sum_credit()), currency_obj=company.currency_id) ]] - [[ formatLang(sum_litige(), currency_obj=company.currency_id) ]] - - - [[ repeatIn(lines(), 'a') ]][[ (a['type']==3 and setTag('para','para',{'fontName':'Helvetica-Bold'})) or removeParentNode('font') ]][[ a['ref'] ]] [[ a['type']==3 and a['code'] ]] - [[ (a['type']==3 and setTag('para','para',{'fontName':'Helvetica-Bold'})) or removeParentNode('font') ]][[ a['name'] ]] - [[ (a['type']==3 and setTag('para','para',{'fontName':'Helvetica-Bold'})) or removeParentNode('font') ]][[ formatLang(a['debit']) ]] - [[ (a['type']==3 and setTag('para','para',{'fontName':'Helvetica-Bold'})) or removeParentNode('font') ]][[ formatLang(a['credit']) ]] - [[ (a['type']==3 and setTag('para','para',{'fontName':'Helvetica-Bold'})) or removeParentNode('font') ]][[ formatLang(a['balance'], currency_obj=company.currency_id) ]] - [[ (a['type']==3 and setTag('para','para',{'fontName':'Helvetica-Bold'})) or removeParentNode('font') ]][[ formatLang(a['enlitige'] or 0.0, currency_obj=company.currency_id) ]] - - - - diff --git a/addons/account/report/account_partner_ledger.py b/addons/account/report/account_partner_ledger.py index d21323e02fc..f02ac96b6fc 100644 --- a/addons/account/report/account_partner_ledger.py +++ b/addons/account/report/account_partner_ledger.py @@ -20,10 +20,11 @@ ############################################################################## import time -import re +from openerp.osv import osv +from openerp.tools.translate import _ from openerp.report import report_sxw from common_report_header import common_report_header -from openerp.tools.translate import _ + class third_party_ledger(report_sxw.rml_parse, common_report_header): @@ -297,12 +298,18 @@ class third_party_ledger(report_sxw.rml_parse, common_report_header): return True return False -report_sxw.report_sxw('report.account.third_party_ledger', 'res.partner', - 'addons/account/report/account_partner_ledger.rml',parser=third_party_ledger, - header='internal') -report_sxw.report_sxw('report.account.third_party_ledger_other', 'res.partner', - 'addons/account/report/account_partner_ledger_other.rml',parser=third_party_ledger, - header='internal') +class report_partnerledger(osv.AbstractModel): + _name = 'report.account.report_partnerledger' + _inherit = 'report.abstract_report' + _template = 'account.report_partnerledger' + _wrapped_report_class = third_party_ledger + + +class report_partnerledgerother(osv.AbstractModel): + _name = 'report.account.report_partnerledgerother' + _inherit = 'report.abstract_report' + _template = 'account.report_partnerledgerother' + _wrapped_report_class = third_party_ledger # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/report/account_partner_ledger.rml b/addons/account/report/account_partner_ledger.rml deleted file mode 100644 index 48ed6d4afe3..00000000000 --- a/addons/account/report/account_partner_ledger.rml +++ /dev/null @@ -1,658 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Date - - - JRNL - - - Ref - - - Account - - - Entry Label - - - Debit - - - Credit - - - Balance - - - - - - - Date - - - JRNL - - - Ref - - - Account - - - Entry Label - - - Debit - - - Credit - - - Balance - - - Currency - - - - - [[ repeatIn(objects, 'p') ]] - [[ setLang(p.lang) ]] - - - - Partner Ledger - - - - - - - Chart of Accounts - - - Fiscal Year - - - Journals - - - Filters By [[ data['form']['filter'] not in ('filter_no','unreconciled') and get_filter(data) ]] - - - Partner's - - - Target Moves - - - - - - - [[ get_account(data) or '' ]] - - - [[ get_fiscalyear(data) or '' ]] - - - [[', '.join([ lt or '' for lt in get_journal(data) ]) ]] - - - [[ data['form']['filter'] in ('filter_no','unreconciled') and get_filter(data) or removeParentNode('para') ]] - [[ data['form']['filter']=='filter_date' or removeParentNode('blockTable') ]] - - - Start Date - - - End Date - - - - [[ data['form']['filter']=='filter_date' or removeParentNode('blockTable') ]] - - - [[ formatLang(get_start_date(data),date=True) ]] - - - [[ formatLang(get_end_date(data),date=True) ]] - - - - [[ data['form']['filter']=='filter_period' or removeParentNode('blockTable') ]] - - - Start Period - - - End Period - - - - [[ data['form']['filter']=='filter_period' or removeParentNode('blockTable') ]] - - - [[ get_start_period(data) or removeParentNode('para') ]] - - - [[ get_end_period(data) or removeParentNode('para') ]] - - - - - - - - - Receivable Accounts[[ data['form'].get('result_selection', 'customer') == 'customer' or removeParentNode('para') ]] - Payable Accounts[[ data['form'].get('result_selection', 'customer') == 'supplier' or removeParentNode('para') ]] - Receivable and Payable Accounts[[ data['form'].get('result_selection', 'customer') == 'customer_supplier' or removeParentNode('para') ]] - - - [[ get_target_move(data) ]] - - - - - - -
- - [[ display_currency(data) == False or removeParentNode('section') ]] - - - - - Date - - - JRNL - - - Ref - - - Account - - - Entry Label - - - Debit - - - Credit - - - Balance - - - - - - - [[ p.ref ]] - [[ p.name ]] - - - [[ formatLang((sum_debit_partner(p))) ]] - - - [[ formatLang((sum_credit_partner(p))) ]] - - - [[ formatLang((sum_debit_partner(p) - sum_credit_partner(p)), currency_obj=company.currency_id) ]] - - - -
- - [[data['form']['initial_balance']==True or removeParentNode('section') ]] - - - - - Initial Balance - - - [[ formatLang(get_intial_balance(p)[0][0])]] - - - [[ formatLang(get_intial_balance(p)[0][1]) ]] - - - [[ formatLang(get_intial_balance(p)[0][2], currency_obj=company.currency_id) ]] - - - -
-
- [[ repeatIn(lines(p), 'line') ]] - - - - [[ formatLang(line['date'],date=True) ]] - - - [[ line['code'] ]] - - - [[ line['move_name'] ]] - - - [[ line['a_code'] ]] - - - [[ line['ref'] and strip_name(line['ref'],10) ]] - [[ strip_name(line['name'],15) ]] - - - [[ formatLang((line['debit'])) ]] - - - [[ formatLang((line['credit'])) ]] - - - [[ formatLang((line['progress']), currency_obj=company.currency_id) ]] - - - -
-
-
- - [[ display_currency(data) == True or removeParentNode('section') ]] - - - - - Date - - - JRNL - - - Ref - - - Account - - - Entry Label - - - Debit - - - Credit - - - Balance - - - Currency - - - - - - - [[ p.ref ]] - [[ p.name ]] - - - [[ formatLang((sum_debit_partner(p))) ]] - - - [[ formatLang((sum_credit_partner(p))) ]] - - - [[ formatLang((sum_debit_partner(p) - sum_credit_partner(p)), currency_obj=company.currency_id) ]] - - - - - - - - -
- [[ data['form']['initial_balance']==True or removeParentNode('section') ]] - - - - Initial Balance - - - [[ formatLang(get_intial_balance(p)[0][0])]] - - - [[ formatLang(get_intial_balance(p)[0][1]) ]] - - - [[ formatLang(get_intial_balance(p)[0][2], currency_obj=company.currency_id) ]] - - - - - - - - -
-
- [[ repeatIn(lines(p), 'line') ]] - - - - [[ formatLang(line['date'],date=True) ]] - - - [[ line['code'] ]] - - - [[ line['move_name'] ]] - - - [[ line['a_code'] ]] - - - [[ strip_name(line['ref'],8) ]] - [[ strip_name(line['name'],7) ]] - - - [[ formatLang((line['debit'])) ]] - - - [[ formatLang((line['credit'])) ]] - - - [[ formatLang((line['progress']), currency_obj=company.currency_id) ]] - - - - [[ (line['currency_id']==None or line['amount_currency']==None) and removeParentNode('font') ]] [[ formatLang(line['amount_currency'] ) ]] [[ line['currency_code'] or '' ]] - - - - -
-
-
-
-
diff --git a/addons/account/report/account_partner_ledger_other.rml b/addons/account/report/account_partner_ledger_other.rml deleted file mode 100644 index b878ab44e47..00000000000 --- a/addons/account/report/account_partner_ledger_other.rml +++ /dev/null @@ -1,665 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ display_currency(data) == False or removeParentNode('blockTable') ]] - - - Date - - - JRNL - - - Ref - - - Account - - - Entry Label - - - Debit - - - Credit - - - Balance - - - - - [[ display_currency(data) == True or removeParentNode('blockTable') ]] - - - Date - - - JRNL - - - Ref - - - Account - - - Entry Label - - - Debit - - - Credit - - - Balance - - - Currency - - - - - - - - - Partner Ledger - - - - - - - Chart of Accounts - - - Fiscal Year - - - Journals - - - Filters By [[ data['form']['filter'] not in ('filter_no','unreconciled') and get_filter(data) ]] - - - Partner's - - - Target Moves - - - - - - - [[ get_account(data) or '' ]] - - - [[ get_fiscalyear(data) or '' ]] - - - [[', '.join([ lt or '' for lt in get_journal(data) ]) ]] - - - [[ data['form']['filter'] in ('filter_no','unreconciled') and get_filter(data) or removeParentNode('para') ]] - [[ data['form']['filter']=='filter_date' or removeParentNode('blockTable') ]] - - - Start Date - - - End Date - - - - [[ data['form']['filter']=='filter_date' or removeParentNode('blockTable') ]] - - - [[ formatLang(get_start_date(data),date=True) ]] - - - [[ formatLang(get_end_date(data),date=True) ]] - - - - [[ data['form']['filter']=='filter_period' or removeParentNode('blockTable') ]] - - - Start Period - - - End Period - - - - [[ data['form']['filter']=='filter_period' or removeParentNode('blockTable') ]] - - - [[ get_start_period(data) or removeParentNode('para') ]] - - - [[ get_end_period(data) or removeParentNode('para') ]] - - - - - - - - - [[ get_partners() ]] - - - [[ get_target_move(data) ]] - - - - - - - - [[ display_currency(data) == False or removeParentNode('blockTable') ]] - - - Date - - - JRNL - - - Ref - - - Account - - - Entry Label - - - Debit - - - Credit - - - Balance - - - -
- [[ repeatIn(objects, 'p') ]] - [[ setLang(p.lang) ]] - - [[ display_currency(data) == False or removeParentNode('section') ]] - - - - - - [[ p.ref ]] - [[ p.name ]] - - - [[ formatLang((sum_debit_partner(p))) ]] - - - [[ formatLang((sum_credit_partner(p))) ]] - - - [[ formatLang((sum_debit_partner(p) - sum_credit_partner(p)), currency_obj=company.currency_id) ]] - - - -
- - [[data['form']['initial_balance']==True or removeParentNode('section') ]] - - - - - Initial Balance - - - [[ formatLang(get_intial_balance(p)[0][0])]] - - - [[ formatLang(get_intial_balance(p)[0][1]) ]] - - - [[ formatLang(get_intial_balance(p)[0][2], currency_obj=company.currency_id) ]] - - - -
-
- [[ repeatIn(lines(p), 'line') ]] - - - - [[ formatLang(line['date'],date=True) ]] - - - [[ line['code'] ]] - - - [[ line['move_name'] ]] - - - [[ line['a_code'] ]] - - - [[ line['ref'] and strip_name(line['ref'],10) ]] - [[ strip_name(line['name'],15) ]] - - - [[ formatLang((line['debit'])) ]] - - - [[ formatLang((line['credit'])) ]] - - - [[ formatLang((line['progress']), currency_obj=company.currency_id) ]] - - - -
-
- - [[ display_currency(data) == True or removeParentNode('blockTable') ]] - - - Date - - - JRNL - - - Ref - - - Account - - - Entry Label - - - Debit - - - Credit - - - Balance - - - Currency - - - -
- [[ repeatIn(objects, 'p') ]] - [[ setLang(p.lang) ]] - - [[ display_currency(data) == True or removeParentNode('section') ]] - - - - - - [[ p.ref ]] - [[ p.name ]] - - - [[ formatLang((sum_debit_partner(p))) ]] - - - [[ formatLang((sum_credit_partner(p))) ]] - - - [[ formatLang((sum_debit_partner(p) - sum_credit_partner(p)), currency_obj=company.currency_id) ]] - - - - - - - - -
- [[ data['form']['initial_balance']==True or removeParentNode('section') ]] - - - - Initial Balance - - - [[ formatLang(get_intial_balance(p)[0][0])]] - - - [[ formatLang(get_intial_balance(p)[0][1]) ]] - - - [[ formatLang(get_intial_balance(p)[0][2], currency_obj=company.currency_id) ]] - - - - - - - - -
-
- [[ repeatIn(lines(p), 'line') ]] - - - - [[ formatLang(line['date'],date=True) ]] - - - [[ line['code'] ]] - - - [[ line['move_name'] ]] - - - [[ line['a_code'] ]] - - - [[ strip_name(line['ref'],8) ]] - [[ strip_name(line['name'],7) ]] - - - [[ formatLang((line['debit'])) ]] - - - [[ formatLang((line['credit'])) ]] - - - [[ formatLang((line['progress']), currency_obj=company.currency_id) ]] - - - - [[ (line['currency_id']==None or line['amount_currency']==None) and removeParentNode('font') ]] [[ formatLang(line['amount_currency'] ) ]] [[ line['currency_code'] or '' ]] - - - - -
-
-
-
-
diff --git a/addons/account/report/account_print_invoice.rml b/addons/account/report/account_print_invoice.rml deleted file mode 100644 index 6914adfaf20..00000000000 --- a/addons/account/report/account_print_invoice.rml +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ repeatIn(objects,'o') ]] - [[ setLang(o.partner_id.lang) ]] - - - - Description - Taxes - Quantity - Unit Price - Disc.(%) - Price - - - - - - - - - - - - [[ (o.partner_id and o.partner_id.title and o.partner_id.title.name) or '' ]] [[ (o.partner_id and o.partner_id.name) or '' ]] - [[ display_address(o.partner_id) ]] - - - - Tel. : [[ (o.partner_id.phone) or removeParentNode('para') ]] - Fax : [[ (o.partner_id.fax) or removeParentNode('para') ]] - TIN : [[ (o.partner_id.vat) or removeParentNode('para') ]] - - - - Invoice [[ ((o.type == 'out_invoice' and (o.state == 'open' or o.state == 'paid')) or removeParentNode('para')) and '' ]] [[ o.number ]] - PRO-FORMA [[ ((o.type == 'out_invoice' and o.state == 'proforma2') or removeParentNode('para')) and '' ]] - Draft Invoice [[ ((o.type == 'out_invoice' and o.state == 'draft') or removeParentNode('para')) and '' ]] - Cancelled Invoice [[ ((o.type == 'out_invoice' and o.state == 'cancel') or removeParentNode('para')) and '' ]] [[ o.number ]] - Refund [[ (o.type=='out_refund' or removeParentNode('para')) and '' ]] [[ o.number ]] - Supplier Refund [[ (o.type=='in_refund' or removeParentNode('para')) and '' ]] [[ o.number ]] - Supplier Invoice [[ (o.type=='in_invoice' or removeParentNode('para')) and '' ]] [[ o.number ]] - - - - - - - Description - - - Invoice Date - - - Source - - - Customer Code - - - - - - - [[ o.name or ' ' ]] - - - [[ formatLang(o.date_invoice,date=True) ]] - - - [[ o.origin or '' ]] - - - [[ (o.partner_id.ref) or ' ' ]] - - - - - - - - - - Description - - - Taxes - - - Quantity - - - Unit Price - - - Disc.(%) - - - Price - - - -
- [[ repeatIn(o.invoice_line,'l') ]] - - - - [[ format(l.name) ]] - - - [[ ', '.join([ lt.name or '' for lt in l.invoice_line_tax_id ]) ]] - - - [[ formatLang(l.quantity)]] [[ (l.uos_id and l.uos_id.name) or '' ]] - - - [[ formatLang(l.price_unit) ]] - - - [[ formatLang(l.discount, dp='Account') ]] - - - [[ formatLang(l.price_subtotal, dp='Account', currency_obj=o.currency_id) ]] - - - -
- - - - - - - - - Net Total: - - - [[ formatLang(o.amount_untaxed, digits=get_digits(dp='Account'), currency_obj=o.currency_id) ]] - - - - - - - - - - Taxes: - - - [[ formatLang(o.amount_tax, dp='Account', currency_obj=o.currency_id) ]] - - - - - - - - - - Total: - - - [[ formatLang(o.amount_total, digits=get_digits(dp='Account'), currency_obj=o.currency_id) ]] - - - - - - - - - - Tax [[ o.tax_line==[] and removeParentNode('blockTable') ]] - - - Base - - - Amount - - - - - - - - -
- [[ repeatIn(o.tax_line,'t') ]] - - - - [[ t.name ]] - - - [[ formatLang(t.base, dp='Account', currency_obj=o.currency_id) ]] - - - [[ (t.tax_code_id and t.tax_code_id.notprintable) and removeParentNode('blockTable') or '' ]] [[ formatLang(t.amount, digits=get_digits(dp='Account'), currency_obj=o.currency_id) ]] - - - - - - - - -
- - - - [[ (o.comment and format(o.comment )) or removeParentNode('para') ]] - - - - [[ (o.payment_term and o.payment_term.note and format(o.payment_term and o.payment_term.note)) or removeParentNode('para') ]] - - - - - - - Fiscal Position Remark : - - - [[ (o.fiscal_position and o.fiscal_position.note and format(o.fiscal_position.note)) or removeParentNode('blockTable') ]] - - - - - - -
-
-
diff --git a/addons/account/report/account_print_overdue.py b/addons/account/report/account_print_overdue.py index e135f41309d..26192d39949 100644 --- a/addons/account/report/account_print_overdue.py +++ b/addons/account/report/account_print_overdue.py @@ -22,15 +22,36 @@ import time from openerp.report import report_sxw +from openerp.osv import osv + class Overdue(report_sxw.rml_parse): def __init__(self, cr, uid, name, context): super(Overdue, self).__init__(cr, uid, name, context=context) - self.localcontext.update( { + ids = context.get('active_ids') + partner_obj = self.pool['res.partner'] + docs = partner_obj.browse(cr, uid, ids, context) + + due = {} + paid = {} + mat = {} + + for partner in docs: + due[partner.id] = reduce(lambda x, y: x + ((y['account_id']['type'] == 'receivable' and y['debit'] or 0) or (y['account_id']['type'] == 'payable' and y['credit'] * -1 or 0)), self._lines_get(partner), 0) + paid[partner.id] = reduce(lambda x, y: x + ((y['account_id']['type'] == 'receivable' and y['credit'] or 0) or (y['account_id']['type'] == 'payable' and y['debit'] * -1 or 0)), self._lines_get(partner), 0) + mat[partner.id] = reduce(lambda x, y: x + (y['debit'] - y['credit']), filter(lambda x: x['date_maturity'] < time.strftime('%Y-%m-%d'), self._lines_get(partner)), 0) + + addresses = self.pool['res.partner']._address_display(cr, uid, ids, None, None) + self.localcontext.update({ + 'docs': docs, 'time': time, 'getLines': self._lines_get, 'tel_get': self._tel_get, 'message': self._message, + 'due': due, + 'paid': paid, + 'mat': mat, + 'addresses': addresses }) self.context = context @@ -41,7 +62,7 @@ class Overdue(report_sxw.rml_parse): addresses = res_partner.address_get(self.cr, self.uid, [partner.id], ['invoice']) adr_id = addresses and addresses['invoice'] or False if adr_id: - adr=res_partner_address.read(self.cr, self.uid, [adr_id])[0] + adr=res_partner.read(self.cr, self.uid, [adr_id])[0] return adr['phone'] else: return partner.phone or False @@ -62,5 +83,10 @@ class Overdue(report_sxw.rml_parse): return message.split('\n') -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: +class report_overdue(osv.AbstractModel): + _name = 'report.account.report_overdue' + _inherit = 'report.abstract_report' + _template = 'account.report_overdue' + _wrapped_report_class = Overdue +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/report/account_print_overdue.rml b/addons/account/report/account_print_overdue.rml deleted file mode 100644 index 9d1898572ba..00000000000 --- a/addons/account/report/account_print_overdue.rml +++ /dev/null @@ -1,290 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Date - - - Description - - - Ref - - - Maturity date - - - Due - - - Paid - - - Maturity - - - Li. - - - - - [[ repeatIn(objects,'o') ]] - [[ setLang(o.lang) ]] - - - - - - [[ o.title.name or '' ]] [[ o.name ]] - [[ display_address(o) ]] - - - - VAT: [[ o.vat or removeParentNode('para') ]] - - - - - - - - - - Document: Customer account statement - Date: [[ formatLang(time.strftime('%Y-%m-%d'),date=True) ]] - Customer Ref: [[ o.ref or ' ']] - - - - - - -
- [[ not getLines(o) and removeParentNode('section')]] -
- [[repeatIn(message(o, company), 'message_line') ]] - [[ message_line ]] - - - -
- - - - Date - - - Description - - - Ref - - - Maturity date - - - Due - - - Paid - - - Maturity - - - Li. - - - -
[[repeatIn(getLines(o), 'line') ]] - - - - [[ formatLang(line['date'],date=True) ]] - - - [[ line['name'] ]] - - - [[ line['ref'] ]] - - - [[ line['date_maturity'] and formatLang(line['date_maturity'],date=True) or '' ]] - - - [[ (line['account_id']['type'] == 'receivable' and formatLang(line['debit']) or 0) or (line['account_id']['type'] == 'payable' and formatLang(line['credit'] * -1) or ' ') ]] - - - [[ (line['account_id']['type'] == 'receivable' and formatLang(line['credit']) or 0) or (line['account_id']['type'] == 'payable' and formatLang(line['debit'] * -1) or 0) ]] - - - [[ (time.strftime('%Y-%m-%d') > line['date_maturity']) and formatLang(line['debit'] - line['credit'], currency_obj = company.currency_id) ]] - - - [[ line['blocked'] and 'X' or '' ]] - - - -
- - - - - - - - - Sub-Total : - - - [[ formatLang((reduce(lambda x, y: x + ((y['account_id']['type'] == 'receivable' and y['debit'] or 0) or (y['account_id']['type'] == 'payable' and y['credit'] * -1 or 0)), getLines(o), 0))) ]] - - - [[ formatLang((reduce(lambda x, y: x + ((y['account_id']['type'] == 'receivable' and y['credit'] or 0) or (y['account_id']['type'] == 'payable' and y['debit'] * -1 or 0)), getLines(o), 0))) ]] - - - [[ formatLang((reduce(lambda x, y: x + (y['debit'] - y['credit']), filter(lambda x: x['date_maturity'] < time.strftime('%Y-%m-%d'), getLines(o)), 0)), currency_obj=company.currency_id) ]] - - - - - - - - - - - - - - - - - Balance : - - - [[ formatLang((reduce(lambda x, y: x +(y['debit'] - y['credit']), getLines(o), 0)), currency_obj = company.currency_id) ]] - - - - - - - - - - - - - - - Total amount due: [[ formatLang((reduce(lambda x, y: x + (y['debit'] - y['credit']), getLines(o), 0)), currency_obj=company.currency_id) ]] -
- - - -
- [[ getLines(o) and removeParentNode('section')]]There is nothing due with this customer. -
- - - - - - -
-
-
diff --git a/addons/account/report/report_vat.py b/addons/account/report/report_vat.py index 236e2ffaac2..be2b6244f7d 100644 --- a/addons/account/report/report_vat.py +++ b/addons/account/report/report_vat.py @@ -19,25 +19,16 @@ # ############################################################################## -from openerp.addons.web import http -from openerp.addons.web.http import request +import time +from openerp.osv import osv +from openerp.report import report_sxw from common_report_header import common_report_header -try: - import cStringIO as StringIO -except ImportError: - import StringIO -import xlwt -class tax_report(http.Controller, common_report_header): - - @http.route(['/report/account.report_vat'], type='http', auth='user', website=True, multilang=True) - def report_account_tax(self, **data): - report_obj = request.registry['report'] - self.cr, self.uid, self.pool = request.cr, request.uid, request.registry - - data = report_obj.eval_params(data) +class tax_report(report_sxw.rml_parse, common_report_header): + def set_context(self, objects, data, ids, report_type=None): + new_ids = ids res = {} self.period_ids = [] period_obj = self.pool.get('account.period') @@ -47,16 +38,28 @@ class tax_report(http.Controller, common_report_header): if data['form'].get('period_from', False) and data['form'].get('period_to', False): self.period_ids = period_obj.build_ctx_periods(self.cr, self.uid, data['form']['period_from'], data['form']['period_to']) + periods_l = period_obj.read(self.cr, self.uid, self.period_ids, ['name']) + for period in periods_l: + if res['periods'] == '': + res['periods'] = period['name'] + else: + res['periods'] += ", "+ period['name'] + return super(tax_report, self).set_context(objects, data, new_ids, report_type=report_type) - docargs = { - 'fiscalyear': self._get_fiscalyear(data), - 'account': self._get_account(data), - 'based_on': self._get_basedon(data), - 'period_from': self.get_start_period(data), - 'period_to': self.get_end_period(data), - 'taxlines': self._get_lines(self._get_basedon(data), company_id=data['form']['company_id']), - } - return request.registry['report'].render(self.cr, self.uid, [], 'account.report_vat', docargs) + def __init__(self, cr, uid, name, context=None): + super(tax_report, self).__init__(cr, uid, name, context=context) + self.localcontext.update({ + 'time': time, + 'get_codes': self._get_codes, + 'get_general': self._get_general, + 'get_currency': self._get_currency, + 'get_lines': self._get_lines, + 'get_fiscalyear': self._get_fiscalyear, + 'get_account': self._get_account, + 'get_start_period': self.get_start_period, + 'get_end_period': self.get_end_period, + 'get_basedon': self._get_basedon, + }) def _get_basedon(self, form): return form['form']['based_on'] @@ -191,6 +194,7 @@ class tax_report(http.Controller, common_report_header): return self.pool.get('res.company').browse(self.cr, self.uid, form['company_id'], context=context).currency_id.name def sort_result(self, accounts, context=None): + # On boucle sur notre rapport result_accounts = [] ind=0 old_level=0 @@ -229,43 +233,11 @@ class tax_report(http.Controller, common_report_header): return result_accounts - @http.route(['/report/account.report_vat_xls'], type='http', auth='user', website=True, multilang=True) - def report_account_tax_xls(self, **data): - report_obj = request.registry['report'] - self.cr, self.uid, self.pool = request.cr, request.uid, request.registry - data = report_obj.eval_params(data) - - res = {} - self.period_ids = [] - period_obj = self.pool.get('account.period') - self.display_detail = data['form']['display_detail'] - res['periods'] = '' - res['fiscalyear'] = data['form'].get('fiscalyear_id', False) - - if data['form'].get('period_from', False) and data['form'].get('period_to', False): - self.period_ids = period_obj.build_ctx_periods(self.cr, self.uid, data['form']['period_from'], data['form']['period_to']) - - content = '' - lines = self._get_lines(self._get_basedon(data), company_id=data['form']['company_id']) - - if lines: - xls = StringIO.StringIO() - xls_workbook = xlwt.Workbook() - vat_sheet = xls_workbook.add_sheet('report_vat') - - for x in range(0, len(lines)): - for y in range(0, len(lines[0])): - vat_sheet.write(x, y, lines[x].values()[y]) - - xls_workbook.save(xls) - xls.seek(0) - content = xls.read() - - response = request.make_response(content, headers=[ - ('Content-Type', 'application/vnd.ms-excel'), - ('Content-Disposition', 'attachment; filename=report_vat.xls;') - ]) - return response +class report_vat(osv.AbstractModel): + _name = 'report.account.report_vat' + _inherit = 'report.abstract_report' + _template = 'account.report_vat' + _wrapped_report_class = tax_report # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/static/src/js/account_move_reconciliation.js b/addons/account/static/src/js/account_move_reconciliation.js index cbc0abc4f4d..1040e9d9b5c 100644 --- a/addons/account/static/src/js/account_move_reconciliation.js +++ b/addons/account/static/src/js/account_move_reconciliation.js @@ -86,10 +86,10 @@ openerp.account = function (instance) { var self = this; var ids = this.get_selected_ids(); if (ids.length === 0) { - instance.web.dialog($("
").text(_t("You must choose at least one record.")), { + new instance.web.Dialog(this, { title: _t("Warning"), - modal: true - }); + size: 'medium', + }, $("
").text(_t("You must choose at least one record."))).open(); return false; } diff --git a/addons/account/test/account_report.yml b/addons/account/test/account_report.yml index 7a2d09486e4..9173c37b61e 100644 --- a/addons/account/test/account_report.yml +++ b/addons/account/test/account_report.yml @@ -16,10 +16,9 @@ import os import openerp.report from openerp import tools - data, format = openerp.report.render_report(cr, uid, [ref('account.account_invoice_customer0')], 'account.invoice', {}, {}) + data, format = openerp.report.render_report(cr, uid, [ref('account.account_invoice_customer0')], 'account.report_invoice', {}, {}) if tools.config['test_report_directory']: file(os.path.join(tools.config['test_report_directory'], 'account-invoice.'+format), 'wb+').write(data) - - In order to test the PDF reports defined on a partner, we will print the Overdue Report - @@ -27,7 +26,7 @@ import os import openerp.report from openerp import tools - data, format = openerp.report.render_report(cr, uid, [ref('base.res_partner_1'),ref('base.res_partner_2'),ref('base.res_partner_12')], 'account.overdue', {}, {}) + data, format = openerp.report.render_report(cr, uid, [ref('base.res_partner_1'),ref('base.res_partner_2'),ref('base.res_partner_12')], 'account.report_overdue', {}, {}) if tools.config['test_report_directory']: file(os.path.join(tools.config['test_report_directory'], 'account-report_overdue.'+format), 'wb+').write(data) - @@ -86,8 +85,8 @@ Print the General Ledger Report in Landscape Mode - !python {model: account.account}: | - ctx={} - data_dict = {'chart_account_id':ref('account.chart0'),'landscape':True} + ctx={'landscape': True} + data_dict = {'chart_account_id':ref('account.chart0')} from openerp.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') - diff --git a/addons/account/views/report_agedpartnerbalance.xml b/addons/account/views/report_agedpartnerbalance.xml new file mode 100644 index 00000000000..019f32a35de --- /dev/null +++ b/addons/account/views/report_agedpartnerbalance.xml @@ -0,0 +1,133 @@ + + + + + + diff --git a/addons/account/views/report_centraljournal.xml b/addons/account/views/report_centraljournal.xml new file mode 100644 index 00000000000..e939fa98fc3 --- /dev/null +++ b/addons/account/views/report_centraljournal.xml @@ -0,0 +1,93 @@ + + + + + + diff --git a/addons/account/views/report_financial.xml b/addons/account/views/report_financial.xml new file mode 100644 index 00000000000..69802331a5b --- /dev/null +++ b/addons/account/views/report_financial.xml @@ -0,0 +1,128 @@ + + + + + + diff --git a/addons/account/views/report_generaljournal.xml b/addons/account/views/report_generaljournal.xml new file mode 100644 index 00000000000..062c9ec2554 --- /dev/null +++ b/addons/account/views/report_generaljournal.xml @@ -0,0 +1,98 @@ + + + + + + diff --git a/addons/account/views/report_generalledger.xml b/addons/account/views/report_generalledger.xml new file mode 100644 index 00000000000..d873571dee3 --- /dev/null +++ b/addons/account/views/report_generalledger.xml @@ -0,0 +1,133 @@ + + + + + + + diff --git a/addons/account/views/report_invoice.xml b/addons/account/views/report_invoice.xml new file mode 100644 index 00000000000..6757095a7d4 --- /dev/null +++ b/addons/account/views/report_invoice.xml @@ -0,0 +1,153 @@ + + + + + + + + diff --git a/addons/account/views/report_journal.xml b/addons/account/views/report_journal.xml new file mode 100644 index 00000000000..0771b5f5fe9 --- /dev/null +++ b/addons/account/views/report_journal.xml @@ -0,0 +1,88 @@ + + + + + + diff --git a/addons/account/views/report_overdue.xml b/addons/account/views/report_overdue.xml new file mode 100644 index 00000000000..bc522aa8b9d --- /dev/null +++ b/addons/account/views/report_overdue.xml @@ -0,0 +1,118 @@ + + + + + + + + diff --git a/addons/account/views/report_partnerbalance.xml b/addons/account/views/report_partnerbalance.xml new file mode 100644 index 00000000000..11948905fe9 --- /dev/null +++ b/addons/account/views/report_partnerbalance.xml @@ -0,0 +1,125 @@ + + + + + + diff --git a/addons/account/views/report_partnerledger.xml b/addons/account/views/report_partnerledger.xml new file mode 100644 index 00000000000..333fab7aa5c --- /dev/null +++ b/addons/account/views/report_partnerledger.xml @@ -0,0 +1,131 @@ + + + + + + diff --git a/addons/account/views/report_partnerledgerother.xml b/addons/account/views/report_partnerledgerother.xml new file mode 100644 index 00000000000..b8f3d525f51 --- /dev/null +++ b/addons/account/views/report_partnerledgerother.xml @@ -0,0 +1,131 @@ + + + + + + diff --git a/addons/account/views/report_salepurchasejournal.xml b/addons/account/views/report_salepurchasejournal.xml new file mode 100644 index 00000000000..f1d8724f285 --- /dev/null +++ b/addons/account/views/report_salepurchasejournal.xml @@ -0,0 +1,107 @@ + + + + + + diff --git a/addons/account/views/report_trialbalance.xml b/addons/account/views/report_trialbalance.xml new file mode 100644 index 00000000000..6a27b957971 --- /dev/null +++ b/addons/account/views/report_trialbalance.xml @@ -0,0 +1,94 @@ + + + + + + diff --git a/addons/account/views/report_vat.xml b/addons/account/views/report_vat.xml index 03664045ef4..f88d45e5c44 100644 --- a/addons/account/views/report_vat.xml +++ b/addons/account/views/report_vat.xml @@ -39,7 +39,7 @@ - + diff --git a/addons/account/wizard/account_financial_report.py b/addons/account/wizard/account_financial_report.py index 48bdfd33081..6c1b57fa428 100644 --- a/addons/account/wizard/account_financial_report.py +++ b/addons/account/wizard/account_financial_report.py @@ -21,6 +21,7 @@ from openerp.osv import fields, osv + class accounting_report(osv.osv_memory): _name = "accounting.report" _inherit = "account.common.report" @@ -83,16 +84,11 @@ class accounting_report(osv.osv_memory): if isinstance(data['form'][field], tuple): data['form'][field] = data['form'][field][0] comparison_context = self._build_comparison_context(cr, uid, ids, data, context=context) - res['datas']['form']['comparison_context'] = comparison_context + res['data']['form']['comparison_context'] = comparison_context return res def _print_report(self, cr, uid, ids, data, context=None): data['form'].update(self.read(cr, uid, ids, ['date_from_cmp', 'debit_credit', 'date_to_cmp', 'fiscalyear_id_cmp', 'period_from_cmp', 'period_to_cmp', 'filter_cmp', 'account_report_id', 'enable_filter', 'label_filter','target_move'], context=context)[0]) - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'account.financial.report', - 'datas': data, - } - + return self.pool['report'].get_action(cr, uid, ids, 'account.report_financial', data=data, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/wizard/account_report_account_balance.py b/addons/account/wizard/account_report_account_balance.py index fd3c966e306..3b9d3c21777 100644 --- a/addons/account/wizard/account_report_account_balance.py +++ b/addons/account/wizard/account_report_account_balance.py @@ -36,7 +36,6 @@ class account_balance_report(osv.osv_memory): def _print_report(self, cr, uid, ids, data, context=None): data = self.pre_print_report(cr, uid, ids, data, context=context) - return {'type': 'ir.actions.report.xml', 'report_name': 'account.account.balance', 'datas': data} - + return self.pool['report'].get_action(cr, uid, ids, 'account.report_trialbalance', data=data, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/wizard/account_report_aged_partner_balance.py b/addons/account/wizard/account_report_aged_partner_balance.py index c483487b78f..c918a1119fd 100644 --- a/addons/account/wizard/account_report_aged_partner_balance.py +++ b/addons/account/wizard/account_report_aged_partner_balance.py @@ -25,6 +25,7 @@ from dateutil.relativedelta import relativedelta from openerp.osv import fields, osv from openerp.tools.translate import _ + class account_aged_trial_balance(osv.osv_memory): _inherit = 'account.common.partner.report' _name = 'account.aged.trial.balance' @@ -80,11 +81,6 @@ class account_aged_trial_balance(osv.osv_memory): 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', - 'datas': data - } - + return self.pool['report'].get_action(cr, uid, ids, 'account.report_agedpartnerbalance', data=data, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/wizard/account_report_aged_partner_balance_view.xml b/addons/account/wizard/account_report_aged_partner_balance_view.xml index be1d710c09d..09ae525c595 100644 --- a/addons/account/wizard/account_report_aged_partner_balance_view.xml +++ b/addons/account/wizard/account_report_aged_partner_balance_view.xml @@ -19,6 +19,7 @@ +
diff --git a/addons/account/wizard/account_report_central_journal.py b/addons/account/wizard/account_report_central_journal.py index a6bc111fa35..9f22d49afac 100644 --- a/addons/account/wizard/account_report_central_journal.py +++ b/addons/account/wizard/account_report_central_journal.py @@ -32,13 +32,6 @@ class account_central_journal(osv.osv_memory): def _print_report(self, cr, uid, ids, data, context=None): data = self.pre_print_report(cr, uid, ids, data, context=context) - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'account.central.journal', - 'datas': data, - } - - -#vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + return self.pool['report'].get_action(cr, uid, ids, 'account.report_centraljournal', data=data, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/wizard/account_report_general_journal.py b/addons/account/wizard/account_report_general_journal.py index e5e516b1f38..3d9d55b19c1 100644 --- a/addons/account/wizard/account_report_general_journal.py +++ b/addons/account/wizard/account_report_general_journal.py @@ -32,9 +32,6 @@ class account_general_journal(osv.osv_memory): def _print_report(self, cr, uid, ids, data, context=None): data = self.pre_print_report(cr, uid, ids, data, context=context) - return {'type': 'ir.actions.report.xml', 'report_name': 'account.general.journal', 'datas': data} - - -#vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + return self.pool['report'].get_action(cr, uid, ids, 'account.report_generaljournal', data=data, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/wizard/account_report_general_ledger.py b/addons/account/wizard/account_report_general_ledger.py index fae60df63fb..c75477da40a 100644 --- a/addons/account/wizard/account_report_general_ledger.py +++ b/addons/account/wizard/account_report_general_ledger.py @@ -21,6 +21,7 @@ from openerp.osv import fields, osv + class account_report_general_ledger(osv.osv_memory): _inherit = "account.common.account.report" _name = "account.report.general.ledger" @@ -54,9 +55,10 @@ class account_report_general_ledger(osv.osv_memory): data['form'].update(self.read(cr, uid, ids, ['landscape', 'initial_balance', 'amount_currency', 'sortby'])[0]) if not data['form']['fiscalyear_id']:# GTK client problem onchange does not consider in save record data['form'].update({'initial_balance': False}) - if data['form']['landscape']: - return { 'type': 'ir.actions.report.xml', 'report_name': 'account.general.ledger_landscape', 'datas': data} - return { 'type': 'ir.actions.report.xml', 'report_name': 'account.general.ledger', 'datas': data} + if data['form']['landscape'] is False: + data['form'].pop('landscape') + + return self.pool['report'].get_action(cr, uid, ids, 'account.report_generalledger', data=data, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/wizard/account_report_partner_balance.py b/addons/account/wizard/account_report_partner_balance.py index fbe18f27d69..d4b5fb27d14 100644 --- a/addons/account/wizard/account_report_partner_balance.py +++ b/addons/account/wizard/account_report_partner_balance.py @@ -21,6 +21,7 @@ from openerp.osv import fields, osv + class account_partner_balance(osv.osv_memory): """ This wizard will provide the partner balance report by periods, between any two dates. @@ -35,7 +36,6 @@ class account_partner_balance(osv.osv_memory): } _defaults = { -# 'initial_balance': True, 'display_partner': 'non-zero_balance', } @@ -44,11 +44,6 @@ class account_partner_balance(osv.osv_memory): context = {} data = self.pre_print_report(cr, uid, ids, data, context=context) data['form'].update(self.read(cr, uid, ids, ['display_partner'])[0]) - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'account.partner.balance', - 'datas': data, - } - + return self.pool['report'].get_action(cr, uid, ids, 'account.report_partnerbalance', data=data, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/wizard/account_report_partner_ledger.py b/addons/account/wizard/account_report_partner_ledger.py index fdabe49ff17..eb743e32e4f 100644 --- a/addons/account/wizard/account_report_partner_ledger.py +++ b/addons/account/wizard/account_report_partner_ledger.py @@ -21,6 +21,7 @@ from openerp.osv import fields, osv + class account_partner_ledger(osv.osv_memory): """ This wizard will provide the partner Ledger report by periods, between any two dates. @@ -37,6 +38,7 @@ class account_partner_ledger(osv.osv_memory): 'amount_currency': fields.boolean("With Currency", help="It adds the currency column on report if the currency differs from the company currency."), 'journal_ids': fields.many2many('account.journal', 'account_partner_ledger_journal_rel', 'account_id', 'journal_id', 'Journals', required=True), } + _defaults = { 'initial_balance': False, 'page_split': False, @@ -45,8 +47,8 @@ class account_partner_ledger(osv.osv_memory): def onchange_filter(self, cr, uid, ids, filter='filter_no', fiscalyear_id=False, context=None): res = super(account_partner_ledger, self).onchange_filter(cr, uid, ids, filter=filter, fiscalyear_id=fiscalyear_id, context=context) if filter in ['filter_no', 'unreconciled']: - if filter == 'unreconciled': - res['value'].update({'fiscalyear_id': False}) + if filter == 'unreconciled': + res['value'].update({'fiscalyear_id': False}) res['value'].update({'initial_balance': False, 'period_from': False, 'period_to': False, 'date_from': False ,'date_to': False}) return res @@ -55,17 +57,8 @@ class account_partner_ledger(osv.osv_memory): context = {} data = self.pre_print_report(cr, uid, ids, data, context=context) data['form'].update(self.read(cr, uid, ids, ['initial_balance', 'filter', 'page_split', 'amount_currency'])[0]) - if data['form']['page_split']: - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'account.third_party_ledger', - 'datas': data, - } - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'account.third_party_ledger_other', - 'datas': data, - } - + if data['form'].get('page_split') is True: + return self.pool['report'].get_action(cr, uid, ids, 'account.report_partnerledgerother', data=data, context=context) + return self.pool['report'].get_action(cr, uid, ids, 'account.report_partnerledger', data=data, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/wizard/account_report_print_journal.py b/addons/account/wizard/account_report_print_journal.py index 3ad45268248..3aafc63acf4 100644 --- a/addons/account/wizard/account_report_print_journal.py +++ b/addons/account/wizard/account_report_print_journal.py @@ -22,6 +22,7 @@ from openerp.osv import fields, osv from lxml import etree + class account_print_journal(osv.osv_memory): _inherit = "account.common.journal.report" _name = 'account.print.journal' @@ -60,19 +61,14 @@ class account_print_journal(osv.osv_memory): res['arch'] = etree.tostring(doc) return res - def _print_report(self, cr, uid, ids, data, context=None): if context is None: context = {} data = self.pre_print_report(cr, uid, ids, data, context=context) data['form'].update(self.read(cr, uid, ids, ['sort_selection'], context=context)[0]) if context.get('sale_purchase_only'): - report_name = 'account.journal.period.print.sale.purchase' + return self.pool['report'].get_action(cr, uid, ids, 'account.report_salepurchasejournal', data=data, context=context) else: - report_name = 'account.journal.period.print' - return {'type': 'ir.actions.report.xml', 'report_name': report_name, 'datas': data} - - -#vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + return self.pool['report'].get_action(cr, uid, ids, 'account.report_journal', data=data, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account/wizard/account_validate_account_move.py b/addons/account/wizard/account_validate_account_move.py index 297f3445606..7a7a74be04b 100644 --- a/addons/account/wizard/account_validate_account_move.py +++ b/addons/account/wizard/account_validate_account_move.py @@ -34,7 +34,7 @@ class validate_account_move(osv.osv_memory): if context is None: context = {} data = self.read(cr, uid, ids[0], context=context) - ids_move = obj_move.search(cr, uid, [('state','=','draft'),('journal_id','in',tuple(data['journal_ids'])),('period_id','in',tuple(data['period_ids']))]) + ids_move = obj_move.search(cr, uid, [('state','=','draft'),('journal_id','in',tuple(data['journal_ids'])),('period_id','in',tuple(data['period_ids']))], order='date') if not ids_move: raise osv.except_osv(_('Warning!'), _('Specified journals do not have any account move entries in draft state for the specified periods.')) obj_move.button_validate(cr, uid, ids_move, context=context) diff --git a/addons/account/wizard/account_vat.py b/addons/account/wizard/account_vat.py index 6fbfcc9ddf5..5cc5c678df1 100644 --- a/addons/account/wizard/account_vat.py +++ b/addons/account/wizard/account_vat.py @@ -21,6 +21,7 @@ from openerp.osv import fields, osv + class account_vat_declaration(osv.osv_memory): _name = 'account.vat.declaration' _description = 'Account Vat Declaration' @@ -60,6 +61,6 @@ class account_vat_declaration(osv.osv_memory): taxcode = taxcode_obj.browse(cr, uid, [taxcode_id], context=context)[0] datas['form']['company_id'] = taxcode.company_id.id - return self.pool['report'].get_action(cr, uid, ids, 'account.report_vat', datas=datas, context=context) + return self.pool['report'].get_action(cr, uid, ids, 'account.report_vat', data=datas, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_accountant/i18n/ar.po b/addons/account_accountant/i18n/ar.po index 5127725f6c9..661d17a3f37 100644 --- a/addons/account_accountant/i18n/ar.po +++ b/addons/account_accountant/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/az.po b/addons/account_accountant/i18n/az.po index ae307557f86..9d8de9963fb 100644 --- a/addons/account_accountant/i18n/az.po +++ b/addons/account_accountant/i18n/az.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bg.po b/addons/account_accountant/i18n/bg.po index ed733ddf391..89e8d469a6d 100644 --- a/addons/account_accountant/i18n/bg.po +++ b/addons/account_accountant/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bn.po b/addons/account_accountant/i18n/bn.po index e647bd08c0f..9e86cef78b1 100644 --- a/addons/account_accountant/i18n/bn.po +++ b/addons/account_accountant/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bs.po b/addons/account_accountant/i18n/bs.po index 5faa8f3a4dd..91aef36cb31 100644 --- a/addons/account_accountant/i18n/bs.po +++ b/addons/account_accountant/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ca.po b/addons/account_accountant/i18n/ca.po index 099aeff9235..dd2b2092c0b 100644 --- a/addons/account_accountant/i18n/ca.po +++ b/addons/account_accountant/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/cs.po b/addons/account_accountant/i18n/cs.po index b95b701dd29..317e9d8ef67 100644 --- a/addons/account_accountant/i18n/cs.po +++ b/addons/account_accountant/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/da.po b/addons/account_accountant/i18n/da.po index 472f63b1c04..a34fe1cf935 100644 --- a/addons/account_accountant/i18n/da.po +++ b/addons/account_accountant/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/de.po b/addons/account_accountant/i18n/de.po index 76d047d1495..8c303628482 100644 --- a/addons/account_accountant/i18n/de.po +++ b/addons/account_accountant/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/el.po b/addons/account_accountant/i18n/el.po index 550b91aaab4..6f64e2b6213 100644 --- a/addons/account_accountant/i18n/el.po +++ b/addons/account_accountant/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/en_GB.po b/addons/account_accountant/i18n/en_GB.po index 1e15691a7ac..5d21aff06a6 100644 --- a/addons/account_accountant/i18n/en_GB.po +++ b/addons/account_accountant/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es.po b/addons/account_accountant/i18n/es.po index 825a536087d..deb770663c4 100644 --- a/addons/account_accountant/i18n/es.po +++ b/addons/account_accountant/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_AR.po b/addons/account_accountant/i18n/es_AR.po index 062af6b2951..e88c765a080 100644 --- a/addons/account_accountant/i18n/es_AR.po +++ b/addons/account_accountant/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_CO.po b/addons/account_accountant/i18n/es_CO.po index 1acaa88b804..eaea34a01a7 100644 --- a/addons/account_accountant/i18n/es_CO.po +++ b/addons/account_accountant/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_CR.po b/addons/account_accountant/i18n/es_CR.po index a43a9f20ace..3e8a032775f 100644 --- a/addons/account_accountant/i18n/es_CR.po +++ b/addons/account_accountant/i18n/es_CR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/es_DO.po b/addons/account_accountant/i18n/es_DO.po index 48edcbfabfa..54ceef16905 100644 --- a/addons/account_accountant/i18n/es_DO.po +++ b/addons/account_accountant/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_EC.po b/addons/account_accountant/i18n/es_EC.po index dff5fe45e94..942cb3c7e1f 100644 --- a/addons/account_accountant/i18n/es_EC.po +++ b/addons/account_accountant/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_MX.po b/addons/account_accountant/i18n/es_MX.po index 395f22aab60..883bfef59fa 100644 --- a/addons/account_accountant/i18n/es_MX.po +++ b/addons/account_accountant/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_PE.po b/addons/account_accountant/i18n/es_PE.po index 111419693f5..77fd5a98688 100644 --- a/addons/account_accountant/i18n/es_PE.po +++ b/addons/account_accountant/i18n/es_PE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_PY.po b/addons/account_accountant/i18n/es_PY.po index 284631b2acf..d78fe364305 100644 --- a/addons/account_accountant/i18n/es_PY.po +++ b/addons/account_accountant/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/et.po b/addons/account_accountant/i18n/et.po index f6b07dd724d..b858330b9ed 100644 --- a/addons/account_accountant/i18n/et.po +++ b/addons/account_accountant/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fa.po b/addons/account_accountant/i18n/fa.po index d71555e6385..53f838a15f8 100644 --- a/addons/account_accountant/i18n/fa.po +++ b/addons/account_accountant/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fi.po b/addons/account_accountant/i18n/fi.po index 2dc6ded5c84..43c586f1f44 100644 --- a/addons/account_accountant/i18n/fi.po +++ b/addons/account_accountant/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fr.po b/addons/account_accountant/i18n/fr.po index 507b9d26b24..af44a6f0a33 100644 --- a/addons/account_accountant/i18n/fr.po +++ b/addons/account_accountant/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/gl.po b/addons/account_accountant/i18n/gl.po index a9067220f27..e754737a799 100644 --- a/addons/account_accountant/i18n/gl.po +++ b/addons/account_accountant/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/he.po b/addons/account_accountant/i18n/he.po index 39f9d2f42af..33431e99cae 100644 --- a/addons/account_accountant/i18n/he.po +++ b/addons/account_accountant/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hi.po b/addons/account_accountant/i18n/hi.po index 95a88545227..c4258eb92fe 100644 --- a/addons/account_accountant/i18n/hi.po +++ b/addons/account_accountant/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hr.po b/addons/account_accountant/i18n/hr.po index 4ee81736ba0..0c5f9105af6 100644 --- a/addons/account_accountant/i18n/hr.po +++ b/addons/account_accountant/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hu.po b/addons/account_accountant/i18n/hu.po index 5118dd36d1e..42728b421cd 100644 --- a/addons/account_accountant/i18n/hu.po +++ b/addons/account_accountant/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/id.po b/addons/account_accountant/i18n/id.po index ff3816aed18..ebdfeea3697 100644 --- a/addons/account_accountant/i18n/id.po +++ b/addons/account_accountant/i18n/id.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "Buka Menu Akunting" #~ msgid "Accountant" #~ msgstr "Akuntan" diff --git a/addons/account_accountant/i18n/it.po b/addons/account_accountant/i18n/it.po index 83c8e660b10..f6a6ac8bef0 100644 --- a/addons/account_accountant/i18n/it.po +++ b/addons/account_accountant/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ja.po b/addons/account_accountant/i18n/ja.po index 004a58f8659..3642bce5d5e 100644 --- a/addons/account_accountant/i18n/ja.po +++ b/addons/account_accountant/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ko.po b/addons/account_accountant/i18n/ko.po index 0fde3e635a7..bbd284d0c97 100644 --- a/addons/account_accountant/i18n/ko.po +++ b/addons/account_accountant/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lo.po b/addons/account_accountant/i18n/lo.po index ee26bc159f0..792a7b2ee29 100644 --- a/addons/account_accountant/i18n/lo.po +++ b/addons/account_accountant/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lt.po b/addons/account_accountant/i18n/lt.po index b49e82b13e3..177351c08b1 100644 --- a/addons/account_accountant/i18n/lt.po +++ b/addons/account_accountant/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lv.po b/addons/account_accountant/i18n/lv.po index 287b1a27868..cca07723ab4 100644 --- a/addons/account_accountant/i18n/lv.po +++ b/addons/account_accountant/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/mk.po b/addons/account_accountant/i18n/mk.po index e014e982650..efc111e53d4 100644 --- a/addons/account_accountant/i18n/mk.po +++ b/addons/account_accountant/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/mn.po b/addons/account_accountant/i18n/mn.po index eb7e79361d2..388ae8bf5b2 100644 --- a/addons/account_accountant/i18n/mn.po +++ b/addons/account_accountant/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nb.po b/addons/account_accountant/i18n/nb.po index e7a78d2a61d..dde51f07fa7 100644 --- a/addons/account_accountant/i18n/nb.po +++ b/addons/account_accountant/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nl.po b/addons/account_accountant/i18n/nl.po index 2c67a11aad9..024ffa85798 100644 --- a/addons/account_accountant/i18n/nl.po +++ b/addons/account_accountant/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nl_BE.po b/addons/account_accountant/i18n/nl_BE.po index 2ed3f3ef4a8..3004fe0ffc9 100644 --- a/addons/account_accountant/i18n/nl_BE.po +++ b/addons/account_accountant/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/oc.po b/addons/account_accountant/i18n/oc.po index 2805a96a96f..5c8bbebf731 100644 --- a/addons/account_accountant/i18n/oc.po +++ b/addons/account_accountant/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pl.po b/addons/account_accountant/i18n/pl.po index 849390f9d55..b4efbcfdb4b 100644 --- a/addons/account_accountant/i18n/pl.po +++ b/addons/account_accountant/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pt.po b/addons/account_accountant/i18n/pt.po index 8b447ac5dc5..0910ceced11 100644 --- a/addons/account_accountant/i18n/pt.po +++ b/addons/account_accountant/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pt_BR.po b/addons/account_accountant/i18n/pt_BR.po index 7458ca7a30d..ab4a67a88a7 100644 --- a/addons/account_accountant/i18n/pt_BR.po +++ b/addons/account_accountant/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ro.po b/addons/account_accountant/i18n/ro.po index 62e0b420299..84279fe0208 100644 --- a/addons/account_accountant/i18n/ro.po +++ b/addons/account_accountant/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ru.po b/addons/account_accountant/i18n/ru.po index a59311d3f1a..9954c4deb9c 100644 --- a/addons/account_accountant/i18n/ru.po +++ b/addons/account_accountant/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sk.po b/addons/account_accountant/i18n/sk.po index fe48fa3abdd..db29d7182ce 100644 --- a/addons/account_accountant/i18n/sk.po +++ b/addons/account_accountant/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sl.po b/addons/account_accountant/i18n/sl.po index d1c082811f2..13942e1be23 100644 --- a/addons/account_accountant/i18n/sl.po +++ b/addons/account_accountant/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sq.po b/addons/account_accountant/i18n/sq.po index 509516a16f7..c1671c1af70 100644 --- a/addons/account_accountant/i18n/sq.po +++ b/addons/account_accountant/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sr.po b/addons/account_accountant/i18n/sr.po index bd47d5fac90..45f8f404615 100644 --- a/addons/account_accountant/i18n/sr.po +++ b/addons/account_accountant/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sr@latin.po b/addons/account_accountant/i18n/sr@latin.po index f3b2f455afd..da0ebf52058 100644 --- a/addons/account_accountant/i18n/sr@latin.po +++ b/addons/account_accountant/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sv.po b/addons/account_accountant/i18n/sv.po index 844015c8aac..de4d850ed34 100644 --- a/addons/account_accountant/i18n/sv.po +++ b/addons/account_accountant/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ta.po b/addons/account_accountant/i18n/ta.po index 9e65c745cfa..3534e6b7298 100644 --- a/addons/account_accountant/i18n/ta.po +++ b/addons/account_accountant/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/th.po b/addons/account_accountant/i18n/th.po index 92e969afdc2..47eb607fb81 100644 --- a/addons/account_accountant/i18n/th.po +++ b/addons/account_accountant/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/tr.po b/addons/account_accountant/i18n/tr.po index d722ec7aad5..75353064d39 100644 --- a/addons/account_accountant/i18n/tr.po +++ b/addons/account_accountant/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/uk.po b/addons/account_accountant/i18n/uk.po index 79f7460c8be..2dbee76344a 100644 --- a/addons/account_accountant/i18n/uk.po +++ b/addons/account_accountant/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/vi.po b/addons/account_accountant/i18n/vi.po index 39b6ddb1dcb..270b54cdabb 100644 --- a/addons/account_accountant/i18n/vi.po +++ b/addons/account_accountant/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/zh_CN.po b/addons/account_accountant/i18n/zh_CN.po index f78a07798d0..6d531add270 100644 --- a/addons/account_accountant/i18n/zh_CN.po +++ b/addons/account_accountant/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/zh_TW.po b/addons/account_accountant/i18n/zh_TW.po index 33eee298a23..3a364877822 100644 --- a/addons/account_accountant/i18n/zh_TW.po +++ b/addons/account_accountant/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_analytic_analysis/account_analytic_analysis.py b/addons/account_analytic_analysis/account_analytic_analysis.py index ec5e2c56e6c..99890a5f239 100644 --- a/addons/account_analytic_analysis/account_analytic_analysis.py +++ b/addons/account_analytic_analysis/account_analytic_analysis.py @@ -543,33 +543,40 @@ class account_analytic_account(osv.osv): 'nodestroy': True, } - def on_change_template(self, cr, uid, ids, template_id, context=None): + def on_change_template(self, cr, uid, ids, template_id, date_start=False, fix_price_invoices=False, invoice_on_timesheets=False, recurring_invoices=False, context=None): if not template_id: return {} obj_analytic_line = self.pool.get('account.analytic.invoice.line') - res = super(account_analytic_account, self).on_change_template(cr, uid, ids, template_id, context=context) + res = super(account_analytic_account, self).on_change_template(cr, uid, ids, template_id, date_start=date_start, context=context) template = self.browse(cr, uid, template_id, context=context) - invoice_line_ids = [] - for x in template.recurring_invoice_line_ids: - invoice_line_ids.append((0, 0, { - 'product_id': x.product_id.id, - 'uom_id': x.uom_id.id, - 'name': x.name, - 'quantity': x.quantity, - 'price_unit': x.price_unit, - 'analytic_account_id': x.analytic_account_id and x.analytic_account_id.id or False, - })) - res['value']['fix_price_invoices'] = template.fix_price_invoices - res['value']['invoice_on_timesheets'] = template.invoice_on_timesheets - res['value']['hours_qtt_est'] = template.hours_qtt_est - res['value']['amount_max'] = template.amount_max - res['value']['to_invoice'] = template.to_invoice.id - res['value']['pricelist_id'] = template.pricelist_id.id - res['value']['recurring_invoices'] = template.recurring_invoices - res['value']['recurring_interval'] = template.recurring_interval - res['value']['recurring_rule_type'] = template.recurring_rule_type - res['value']['recurring_invoice_line_ids'] = invoice_line_ids + + if not fix_price_invoices: + res['value']['fix_price_invoices'] = template.fix_price_invoices + res['value']['amount_max'] = template.amount_max + if not invoice_on_timesheets: + res['value']['invoice_on_timesheets'] = template.invoice_on_timesheets + res['value']['hours_qtt_est'] = template.hours_qtt_est + + if template.to_invoice.id: + res['value']['to_invoice'] = template.to_invoice.id + if template.pricelist_id.id: + res['value']['pricelist_id'] = template.pricelist_id.id + if not recurring_invoices: + invoice_line_ids = [] + for x in template.recurring_invoice_line_ids: + invoice_line_ids.append((0, 0, { + 'product_id': x.product_id.id, + 'uom_id': x.uom_id.id, + 'name': x.name, + 'quantity': x.quantity, + 'price_unit': x.price_unit, + 'analytic_account_id': x.analytic_account_id and x.analytic_account_id.id or False, + })) + res['value']['recurring_invoices'] = template.recurring_invoices + res['value']['recurring_interval'] = template.recurring_interval + res['value']['recurring_rule_type'] = template.recurring_rule_type + res['value']['recurring_invoice_line_ids'] = invoice_line_ids return res def onchange_recurring_invoices(self, cr, uid, ids, recurring_invoices, date_start=False, context=None): diff --git a/addons/account_analytic_analysis/account_analytic_analysis_view.xml b/addons/account_analytic_analysis/account_analytic_analysis_view.xml index f5b89db7089..d99be3db355 100644 --- a/addons/account_analytic_analysis/account_analytic_analysis_view.xml +++ b/addons/account_analytic_analysis/account_analytic_analysis_view.xml @@ -38,6 +38,9 @@ {'required': [('type','=','contract'),'|','|',('fix_price_invoices','=',True), ('invoice_on_timesheets', '=', True), ('recurring_invoices', '=', True)]} + + on_change_template(template_id, date_start, fix_price_invoices, invoice_on_timesheets, recurring_invoices) + diff --git a/addons/account_analytic_analysis/i18n/ar.po b/addons/account_analytic_analysis/i18n/ar.po index ebb693638f8..a5d6b0a4b8e 100644 --- a/addons/account_analytic_analysis/i18n/ar.po +++ b/addons/account_analytic_analysis/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/bg.po b/addons/account_analytic_analysis/i18n/bg.po index 7fa5f56520a..9b081894431 100644 --- a/addons/account_analytic_analysis/i18n/bg.po +++ b/addons/account_analytic_analysis/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/bs.po b/addons/account_analytic_analysis/i18n/bs.po index 7ffacbe8468..78625116052 100644 --- a/addons/account_analytic_analysis/i18n/bs.po +++ b/addons/account_analytic_analysis/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ca.po b/addons/account_analytic_analysis/i18n/ca.po index 02800dd0dd8..fde8305661e 100644 --- a/addons/account_analytic_analysis/i18n/ca.po +++ b/addons/account_analytic_analysis/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/cs.po b/addons/account_analytic_analysis/i18n/cs.po index cce925503a6..8ee9bde7f08 100644 --- a/addons/account_analytic_analysis/i18n/cs.po +++ b/addons/account_analytic_analysis/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/da.po b/addons/account_analytic_analysis/i18n/da.po index a4d30e19dc0..1d49dd82472 100644 --- a/addons/account_analytic_analysis/i18n/da.po +++ b/addons/account_analytic_analysis/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/de.po b/addons/account_analytic_analysis/i18n/de.po index 49eb86ba978..d1b8869bc2c 100644 --- a/addons/account_analytic_analysis/i18n/de.po +++ b/addons/account_analytic_analysis/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/el.po b/addons/account_analytic_analysis/i18n/el.po index f5d191140ad..d4a5eef3932 100644 --- a/addons/account_analytic_analysis/i18n/el.po +++ b/addons/account_analytic_analysis/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/en_GB.po b/addons/account_analytic_analysis/i18n/en_GB.po index 9a967c8b831..824b9d6abc0 100644 --- a/addons/account_analytic_analysis/i18n/en_GB.po +++ b/addons/account_analytic_analysis/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es.po b/addons/account_analytic_analysis/i18n/es.po index 7fde00d986e..da9ce2bcb61 100644 --- a/addons/account_analytic_analysis/i18n/es.po +++ b/addons/account_analytic_analysis/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_AR.po b/addons/account_analytic_analysis/i18n/es_AR.po index 35a4ed38395..4515e084355 100644 --- a/addons/account_analytic_analysis/i18n/es_AR.po +++ b/addons/account_analytic_analysis/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_CR.po b/addons/account_analytic_analysis/i18n/es_CR.po index 8aca204ad26..f61fb01c500 100644 --- a/addons/account_analytic_analysis/i18n/es_CR.po +++ b/addons/account_analytic_analysis/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/es_EC.po b/addons/account_analytic_analysis/i18n/es_EC.po index 52e9f5f439d..661042c9b25 100644 --- a/addons/account_analytic_analysis/i18n/es_EC.po +++ b/addons/account_analytic_analysis/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_MX.po b/addons/account_analytic_analysis/i18n/es_MX.po index 9016d7a8f38..83cfe2c17e5 100644 --- a/addons/account_analytic_analysis/i18n/es_MX.po +++ b/addons/account_analytic_analysis/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_PY.po b/addons/account_analytic_analysis/i18n/es_PY.po index bc1c60d865b..b4a67eb1086 100644 --- a/addons/account_analytic_analysis/i18n/es_PY.po +++ b/addons/account_analytic_analysis/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/et.po b/addons/account_analytic_analysis/i18n/et.po index 41ddd899550..37ed7ae4f81 100644 --- a/addons/account_analytic_analysis/i18n/et.po +++ b/addons/account_analytic_analysis/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/fa.po b/addons/account_analytic_analysis/i18n/fa.po index f68bae52efe..0fb1cfea1bf 100644 --- a/addons/account_analytic_analysis/i18n/fa.po +++ b/addons/account_analytic_analysis/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/fi.po b/addons/account_analytic_analysis/i18n/fi.po index 97c7fbcf77d..3b8df9e19f0 100644 --- a/addons/account_analytic_analysis/i18n/fi.po +++ b/addons/account_analytic_analysis/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/fr.po b/addons/account_analytic_analysis/i18n/fr.po index 2b6617907a5..a6e3b8472d2 100644 --- a/addons/account_analytic_analysis/i18n/fr.po +++ b/addons/account_analytic_analysis/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -532,6 +532,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Vous trouverez ici les feuilles de temps et les achats que " +"vous avez effectué pour\n" +" des contrats que vous pouvez refacturer à un client. Pour\n" +" enregistrer de nouvelles activités à facturer, utiliser " +"plutôt le menu de \n" +" des feuilles de temps à la place.\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_non_invoiced:0 diff --git a/addons/account_analytic_analysis/i18n/gl.po b/addons/account_analytic_analysis/i18n/gl.po index d596fd3d4cf..8c54eea6210 100644 --- a/addons/account_analytic_analysis/i18n/gl.po +++ b/addons/account_analytic_analysis/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/gu.po b/addons/account_analytic_analysis/i18n/gu.po index cc4d8cf95ea..0b42d5a0c91 100644 --- a/addons/account_analytic_analysis/i18n/gu.po +++ b/addons/account_analytic_analysis/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/hr.po b/addons/account_analytic_analysis/i18n/hr.po index 01a78648717..239e82a9c7e 100644 --- a/addons/account_analytic_analysis/i18n/hr.po +++ b/addons/account_analytic_analysis/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/hu.po b/addons/account_analytic_analysis/i18n/hu.po index fb81e90cceb..25da50672dc 100644 --- a/addons/account_analytic_analysis/i18n/hu.po +++ b/addons/account_analytic_analysis/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/id.po b/addons/account_analytic_analysis/i18n/id.po index 87de2578d89..210fc00cbe5 100644 --- a/addons/account_analytic_analysis/i18n/id.po +++ b/addons/account_analytic_analysis/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/it.po b/addons/account_analytic_analysis/i18n/it.po index 4f236c0a883..d0e3b440bc9 100644 --- a/addons/account_analytic_analysis/i18n/it.po +++ b/addons/account_analytic_analysis/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ja.po b/addons/account_analytic_analysis/i18n/ja.po index be9699dd2c5..ca1a649c5cd 100644 --- a/addons/account_analytic_analysis/i18n/ja.po +++ b/addons/account_analytic_analysis/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ko.po b/addons/account_analytic_analysis/i18n/ko.po index fb5cc4a0bcf..b7eeb9b7fc7 100644 --- a/addons/account_analytic_analysis/i18n/ko.po +++ b/addons/account_analytic_analysis/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/lt.po b/addons/account_analytic_analysis/i18n/lt.po index 3fd70102121..072839df359 100644 --- a/addons/account_analytic_analysis/i18n/lt.po +++ b/addons/account_analytic_analysis/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/lv.po b/addons/account_analytic_analysis/i18n/lv.po index f627dfdca8e..0dfa0ef1bde 100644 --- a/addons/account_analytic_analysis/i18n/lv.po +++ b/addons/account_analytic_analysis/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/mk.po b/addons/account_analytic_analysis/i18n/mk.po index 8a0c0f847e0..0bf1ad573e2 100644 --- a/addons/account_analytic_analysis/i18n/mk.po +++ b/addons/account_analytic_analysis/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/mn.po b/addons/account_analytic_analysis/i18n/mn.po index b838c5a82e7..5850c42abac 100644 --- a/addons/account_analytic_analysis/i18n/mn.po +++ b/addons/account_analytic_analysis/i18n/mn.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/nb.po b/addons/account_analytic_analysis/i18n/nb.po index ef5d903d692..bc135d4112d 100644 --- a/addons/account_analytic_analysis/i18n/nb.po +++ b/addons/account_analytic_analysis/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/nl.po b/addons/account_analytic_analysis/i18n/nl.po index d1c4fb39462..67370aa5f1a 100644 --- a/addons/account_analytic_analysis/i18n/nl.po +++ b/addons/account_analytic_analysis/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/nl_BE.po b/addons/account_analytic_analysis/i18n/nl_BE.po index 9a0548ef00b..06ff8a9dd3f 100644 --- a/addons/account_analytic_analysis/i18n/nl_BE.po +++ b/addons/account_analytic_analysis/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/oc.po b/addons/account_analytic_analysis/i18n/oc.po index e786cb3500f..13c25f7aa8f 100644 --- a/addons/account_analytic_analysis/i18n/oc.po +++ b/addons/account_analytic_analysis/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/pl.po b/addons/account_analytic_analysis/i18n/pl.po index 43cdfa9f19e..53fcde5ae54 100644 --- a/addons/account_analytic_analysis/i18n/pl.po +++ b/addons/account_analytic_analysis/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/pt.po b/addons/account_analytic_analysis/i18n/pt.po index 735d9eba734..88a9471648b 100644 --- a/addons/account_analytic_analysis/i18n/pt.po +++ b/addons/account_analytic_analysis/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/pt_BR.po b/addons/account_analytic_analysis/i18n/pt_BR.po index 3c8236c97ac..8fc6646b910 100644 --- a/addons/account_analytic_analysis/i18n/pt_BR.po +++ b/addons/account_analytic_analysis/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -219,7 +219,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,real_margin_rate:0 msgid "Real Margin Rate (%)" -msgstr "Taxa Real de Margem" +msgstr "Taxa Real de Margem (%)" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours:0 diff --git a/addons/account_analytic_analysis/i18n/ro.po b/addons/account_analytic_analysis/i18n/ro.po index a2a6f3b62c3..3431837f40f 100644 --- a/addons/account_analytic_analysis/i18n/ro.po +++ b/addons/account_analytic_analysis/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ru.po b/addons/account_analytic_analysis/i18n/ru.po index a1ee3701419..d6548cf45ed 100644 --- a/addons/account_analytic_analysis/i18n/ru.po +++ b/addons/account_analytic_analysis/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sk.po b/addons/account_analytic_analysis/i18n/sk.po index 3aeabee3a05..9d6306f29c5 100644 --- a/addons/account_analytic_analysis/i18n/sk.po +++ b/addons/account_analytic_analysis/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sl.po b/addons/account_analytic_analysis/i18n/sl.po index f68e6f9853f..d81f3f627a7 100644 --- a/addons/account_analytic_analysis/i18n/sl.po +++ b/addons/account_analytic_analysis/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sq.po b/addons/account_analytic_analysis/i18n/sq.po index 6e1f9e0dcad..ed71893769a 100644 --- a/addons/account_analytic_analysis/i18n/sq.po +++ b/addons/account_analytic_analysis/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sr.po b/addons/account_analytic_analysis/i18n/sr.po index 98ae580b3c5..fa276c0e920 100644 --- a/addons/account_analytic_analysis/i18n/sr.po +++ b/addons/account_analytic_analysis/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sr@latin.po b/addons/account_analytic_analysis/i18n/sr@latin.po index 90d78f7b899..bd81cc76791 100644 --- a/addons/account_analytic_analysis/i18n/sr@latin.po +++ b/addons/account_analytic_analysis/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sv.po b/addons/account_analytic_analysis/i18n/sv.po index b223eba06b5..74f1fd8af68 100644 --- a/addons/account_analytic_analysis/i18n/sv.po +++ b/addons/account_analytic_analysis/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/tlh.po b/addons/account_analytic_analysis/i18n/tlh.po index 3e9f0a262a2..0a9650155ca 100644 --- a/addons/account_analytic_analysis/i18n/tlh.po +++ b/addons/account_analytic_analysis/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/tr.po b/addons/account_analytic_analysis/i18n/tr.po index f3b908be10c..cdbcc57e69c 100644 --- a/addons/account_analytic_analysis/i18n/tr.po +++ b/addons/account_analytic_analysis/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -180,7 +180,7 @@ msgstr "Hesap Temsilcisi" #: help:account.analytic.account,remaining_hours_to_invoice:0 msgid "Computed using the formula: Maximum Time - Total Invoiced Time" msgstr "" -"Hesaplamada kullanılan formül:Maksimum Zaman - Toplam faturalandırılan Zaman" +"Hesaplamada kullanılan formül:Maksimum Zaman - Toplam faturalanan Zaman" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -295,7 +295,7 @@ msgstr "Ay" #: model:ir.actions.act_window,name:account_analytic_analysis.action_hr_tree_invoiced_all #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_hr_tree_invoiced_all msgid "Time & Materials to Invoice" -msgstr "Faturalanacak Zaman & Malzemeler" +msgstr "Faturalanacak Zaman&Malzemeler" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -307,12 +307,12 @@ msgstr "Sözleşmeler" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Start Date" -msgstr "Başlangıç Tarihi" +msgstr "Başlanma Tarihi" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Invoiced" -msgstr "Faturalandı" +msgstr "Faturalanan" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/uk.po b/addons/account_analytic_analysis/i18n/uk.po index accae5c0ce4..790a36d6274 100644 --- a/addons/account_analytic_analysis/i18n/uk.po +++ b/addons/account_analytic_analysis/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/vi.po b/addons/account_analytic_analysis/i18n/vi.po index d1f065a970e..83c4f126ae2 100644 --- a/addons/account_analytic_analysis/i18n/vi.po +++ b/addons/account_analytic_analysis/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/zh_CN.po b/addons/account_analytic_analysis/i18n/zh_CN.po index 941eec32945..1b0ae83e1ca 100644 --- a/addons/account_analytic_analysis/i18n/zh_CN.po +++ b/addons/account_analytic_analysis/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/zh_TW.po b/addons/account_analytic_analysis/i18n/zh_TW.po index 88f2be8261f..65b37110de5 100644 --- a/addons/account_analytic_analysis/i18n/zh_TW.po +++ b/addons/account_analytic_analysis/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:08+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_default/i18n/ar.po b/addons/account_analytic_default/i18n/ar.po index fc7329a82a7..b6df4e33663 100644 --- a/addons/account_analytic_default/i18n/ar.po +++ b/addons/account_analytic_default/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/bg.po b/addons/account_analytic_default/i18n/bg.po index 1355d0a7242..7e68b7e48a3 100644 --- a/addons/account_analytic_default/i18n/bg.po +++ b/addons/account_analytic_default/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/bs.po b/addons/account_analytic_default/i18n/bs.po index 57439d07461..fb529553885 100644 --- a/addons/account_analytic_default/i18n/bs.po +++ b/addons/account_analytic_default/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ca.po b/addons/account_analytic_default/i18n/ca.po index 970e8d04521..6819563c4ab 100644 --- a/addons/account_analytic_default/i18n/ca.po +++ b/addons/account_analytic_default/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/cs.po b/addons/account_analytic_default/i18n/cs.po index 91a0b1848c2..7a843c00c2a 100644 --- a/addons/account_analytic_default/i18n/cs.po +++ b/addons/account_analytic_default/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/da.po b/addons/account_analytic_default/i18n/da.po index 21f5f4c3214..f3d8d546f0e 100644 --- a/addons/account_analytic_default/i18n/da.po +++ b/addons/account_analytic_default/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/de.po b/addons/account_analytic_default/i18n/de.po index 95d260b8d28..3dd834caa81 100644 --- a/addons/account_analytic_default/i18n/de.po +++ b/addons/account_analytic_default/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/el.po b/addons/account_analytic_default/i18n/el.po index 0907db78d7a..497803e70a8 100644 --- a/addons/account_analytic_default/i18n/el.po +++ b/addons/account_analytic_default/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/en_GB.po b/addons/account_analytic_default/i18n/en_GB.po index a36a69c37dd..e3b7123d08c 100644 --- a/addons/account_analytic_default/i18n/en_GB.po +++ b/addons/account_analytic_default/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es.po b/addons/account_analytic_default/i18n/es.po index 2ba5cf409ea..985c9177cfe 100644 --- a/addons/account_analytic_default/i18n/es.po +++ b/addons/account_analytic_default/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_AR.po b/addons/account_analytic_default/i18n/es_AR.po index 6e9316db80f..6ab19408378 100644 --- a/addons/account_analytic_default/i18n/es_AR.po +++ b/addons/account_analytic_default/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_CR.po b/addons/account_analytic_default/i18n/es_CR.po index 1002a20f6c6..7ae5c968f75 100644 --- a/addons/account_analytic_default/i18n/es_CR.po +++ b/addons/account_analytic_default/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/es_EC.po b/addons/account_analytic_default/i18n/es_EC.po index 92e48b30999..f6dd7680e20 100644 --- a/addons/account_analytic_default/i18n/es_EC.po +++ b/addons/account_analytic_default/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_MX.po b/addons/account_analytic_default/i18n/es_MX.po index 7d17d092495..a551bb5929e 100644 --- a/addons/account_analytic_default/i18n/es_MX.po +++ b/addons/account_analytic_default/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_PY.po b/addons/account_analytic_default/i18n/es_PY.po index f60bb008635..e5194bead25 100644 --- a/addons/account_analytic_default/i18n/es_PY.po +++ b/addons/account_analytic_default/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/et.po b/addons/account_analytic_default/i18n/et.po index 1086f737c40..2e4b45b12f4 100644 --- a/addons/account_analytic_default/i18n/et.po +++ b/addons/account_analytic_default/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fa.po b/addons/account_analytic_default/i18n/fa.po index a7e40b79008..eb325ebfc4c 100644 --- a/addons/account_analytic_default/i18n/fa.po +++ b/addons/account_analytic_default/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fi.po b/addons/account_analytic_default/i18n/fi.po index 047b2b572d2..75444505005 100644 --- a/addons/account_analytic_default/i18n/fi.po +++ b/addons/account_analytic_default/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fr.po b/addons/account_analytic_default/i18n/fr.po index 76244b966cb..53d4e1d4b52 100644 --- a/addons/account_analytic_default/i18n/fr.po +++ b/addons/account_analytic_default/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/gl.po b/addons/account_analytic_default/i18n/gl.po index 5b60a1a24af..cfb3c3809c6 100644 --- a/addons/account_analytic_default/i18n/gl.po +++ b/addons/account_analytic_default/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/gu.po b/addons/account_analytic_default/i18n/gu.po index 586d95ad457..17e03db3991 100644 --- a/addons/account_analytic_default/i18n/gu.po +++ b/addons/account_analytic_default/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/hr.po b/addons/account_analytic_default/i18n/hr.po index 3392bc6bd72..5c19e9faf7f 100644 --- a/addons/account_analytic_default/i18n/hr.po +++ b/addons/account_analytic_default/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/hu.po b/addons/account_analytic_default/i18n/hu.po index 8d1cfb73fb7..0d3b782b19b 100644 --- a/addons/account_analytic_default/i18n/hu.po +++ b/addons/account_analytic_default/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/id.po b/addons/account_analytic_default/i18n/id.po index ab77dc13885..8bea5293e46 100644 --- a/addons/account_analytic_default/i18n/id.po +++ b/addons/account_analytic_default/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/it.po b/addons/account_analytic_default/i18n/it.po index 09ab27d6b5d..e527d47f2b3 100644 --- a/addons/account_analytic_default/i18n/it.po +++ b/addons/account_analytic_default/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ja.po b/addons/account_analytic_default/i18n/ja.po index 26f136978f9..520eb0df3e8 100644 --- a/addons/account_analytic_default/i18n/ja.po +++ b/addons/account_analytic_default/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ko.po b/addons/account_analytic_default/i18n/ko.po index fcda0656e09..b42cd498e41 100644 --- a/addons/account_analytic_default/i18n/ko.po +++ b/addons/account_analytic_default/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/lt.po b/addons/account_analytic_default/i18n/lt.po index 335220a99a7..7e5da85bb6d 100644 --- a/addons/account_analytic_default/i18n/lt.po +++ b/addons/account_analytic_default/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/lv.po b/addons/account_analytic_default/i18n/lv.po index b07503f6219..3558e7cb844 100644 --- a/addons/account_analytic_default/i18n/lv.po +++ b/addons/account_analytic_default/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/mk.po b/addons/account_analytic_default/i18n/mk.po index 58c780ce127..b38b31db67c 100644 --- a/addons/account_analytic_default/i18n/mk.po +++ b/addons/account_analytic_default/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/mn.po b/addons/account_analytic_default/i18n/mn.po index 089bca6bf0b..c442e566950 100644 --- a/addons/account_analytic_default/i18n/mn.po +++ b/addons/account_analytic_default/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nb.po b/addons/account_analytic_default/i18n/nb.po index f2697d21884..d8923b67b90 100644 --- a/addons/account_analytic_default/i18n/nb.po +++ b/addons/account_analytic_default/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nl.po b/addons/account_analytic_default/i18n/nl.po index 07a892fe73e..db9bab551fb 100644 --- a/addons/account_analytic_default/i18n/nl.po +++ b/addons/account_analytic_default/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nl_BE.po b/addons/account_analytic_default/i18n/nl_BE.po index 39794384980..6b65b92671b 100644 --- a/addons/account_analytic_default/i18n/nl_BE.po +++ b/addons/account_analytic_default/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/oc.po b/addons/account_analytic_default/i18n/oc.po index c3f3c69eb1a..6d7c4d9e9fd 100644 --- a/addons/account_analytic_default/i18n/oc.po +++ b/addons/account_analytic_default/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pl.po b/addons/account_analytic_default/i18n/pl.po index 9187171f90c..b0b99efc032 100644 --- a/addons/account_analytic_default/i18n/pl.po +++ b/addons/account_analytic_default/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pt.po b/addons/account_analytic_default/i18n/pt.po index 234ae31791b..aa05c43d803 100644 --- a/addons/account_analytic_default/i18n/pt.po +++ b/addons/account_analytic_default/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pt_BR.po b/addons/account_analytic_default/i18n/pt_BR.po index faa67c5b706..68a47235e2c 100644 --- a/addons/account_analytic_default/i18n/pt_BR.po +++ b/addons/account_analytic_default/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ro.po b/addons/account_analytic_default/i18n/ro.po index c313e16aadc..eb18f15f898 100644 --- a/addons/account_analytic_default/i18n/ro.po +++ b/addons/account_analytic_default/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ru.po b/addons/account_analytic_default/i18n/ru.po index e673aa25830..3ecdc5af696 100644 --- a/addons/account_analytic_default/i18n/ru.po +++ b/addons/account_analytic_default/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sk.po b/addons/account_analytic_default/i18n/sk.po index c45d41f35e0..2d01c60412b 100644 --- a/addons/account_analytic_default/i18n/sk.po +++ b/addons/account_analytic_default/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sl.po b/addons/account_analytic_default/i18n/sl.po index 9480ec84077..5b631567b84 100644 --- a/addons/account_analytic_default/i18n/sl.po +++ b/addons/account_analytic_default/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sq.po b/addons/account_analytic_default/i18n/sq.po index c80d415a32f..db288f4d5df 100644 --- a/addons/account_analytic_default/i18n/sq.po +++ b/addons/account_analytic_default/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sr.po b/addons/account_analytic_default/i18n/sr.po index 0a6d97c4a7d..52130f7c98f 100644 --- a/addons/account_analytic_default/i18n/sr.po +++ b/addons/account_analytic_default/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sr@latin.po b/addons/account_analytic_default/i18n/sr@latin.po index f07b6285a8e..c3c243249b3 100644 --- a/addons/account_analytic_default/i18n/sr@latin.po +++ b/addons/account_analytic_default/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sv.po b/addons/account_analytic_default/i18n/sv.po index 040d4e00013..9d6a56d9a9c 100644 --- a/addons/account_analytic_default/i18n/sv.po +++ b/addons/account_analytic_default/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/tlh.po b/addons/account_analytic_default/i18n/tlh.po index 5e8673f7b0f..af64664b24e 100644 --- a/addons/account_analytic_default/i18n/tlh.po +++ b/addons/account_analytic_default/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/tr.po b/addons/account_analytic_default/i18n/tr.po index d64717561a9..226a9522acd 100644 --- a/addons/account_analytic_default/i18n/tr.po +++ b/addons/account_analytic_default/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/uk.po b/addons/account_analytic_default/i18n/uk.po index 0e4cb41064f..a10daf016c6 100644 --- a/addons/account_analytic_default/i18n/uk.po +++ b/addons/account_analytic_default/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/vi.po b/addons/account_analytic_default/i18n/vi.po index e1bca21264a..6bb68267668 100644 --- a/addons/account_analytic_default/i18n/vi.po +++ b/addons/account_analytic_default/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/zh_CN.po b/addons/account_analytic_default/i18n/zh_CN.po index 9cc56869ebd..5082ac648a7 100644 --- a/addons/account_analytic_default/i18n/zh_CN.po +++ b/addons/account_analytic_default/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/zh_TW.po b/addons/account_analytic_default/i18n/zh_TW.po index 0dbd4aa23ac..cee4f87f4c8 100644 --- a/addons/account_analytic_default/i18n/zh_TW.po +++ b/addons/account_analytic_default/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:13+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_plans/__openerp__.py b/addons/account_analytic_plans/__openerp__.py index af5b5654b99..7ca7c00e6c0 100644 --- a/addons/account_analytic_plans/__openerp__.py +++ b/addons/account_analytic_plans/__openerp__.py @@ -19,7 +19,6 @@ # ############################################################################## - { 'name': 'Multiple Analytic Plans', 'version': '1.0', @@ -74,6 +73,7 @@ The analytic plan validates the minimum and maximum percentage at the time of cr 'account_analytic_plans_report.xml', 'wizard/analytic_plan_create_model_view.xml', 'wizard/account_crossovered_analytic_view.xml', + 'views/report_crossoveredanalyticplans.xml', ], 'demo': [], 'test': ['test/acount_analytic_plans_report.yml'], diff --git a/addons/account_analytic_plans/account_analytic_plans_report.xml b/addons/account_analytic_plans/account_analytic_plans_report.xml index 05d4c5b445c..608a22d1d96 100644 --- a/addons/account_analytic_plans/account_analytic_plans_report.xml +++ b/addons/account_analytic_plans/account_analytic_plans_report.xml @@ -1,16 +1,15 @@ - - + report_type="qweb-pdf" + name="account_analytic_plans.report_crossoveredanalyticplans" + file="account_analytic_plans.report_crossoveredanalyticplans" + menu="False" + /> diff --git a/addons/account_analytic_plans/i18n/ar.po b/addons/account_analytic_plans/i18n/ar.po index f832d292aaf..8bda4236501 100644 --- a/addons/account_analytic_plans/i18n/ar.po +++ b/addons/account_analytic_plans/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/bg.po b/addons/account_analytic_plans/i18n/bg.po index 5e84fbf1d15..eab9b3b2b15 100644 --- a/addons/account_analytic_plans/i18n/bg.po +++ b/addons/account_analytic_plans/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/bs.po b/addons/account_analytic_plans/i18n/bs.po index 9d0b86dbbe7..fae7b5c636f 100644 --- a/addons/account_analytic_plans/i18n/bs.po +++ b/addons/account_analytic_plans/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ca.po b/addons/account_analytic_plans/i18n/ca.po index 3ce47b6fe25..c665a53c270 100644 --- a/addons/account_analytic_plans/i18n/ca.po +++ b/addons/account_analytic_plans/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/cs.po b/addons/account_analytic_plans/i18n/cs.po index a2cc0776ebe..4c6f7e5ba4b 100644 --- a/addons/account_analytic_plans/i18n/cs.po +++ b/addons/account_analytic_plans/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/da.po b/addons/account_analytic_plans/i18n/da.po index d9d514da5e4..516037e4714 100644 --- a/addons/account_analytic_plans/i18n/da.po +++ b/addons/account_analytic_plans/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/de.po b/addons/account_analytic_plans/i18n/de.po index d890ba9ad6b..cec4161b98e 100644 --- a/addons/account_analytic_plans/i18n/de.po +++ b/addons/account_analytic_plans/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/el.po b/addons/account_analytic_plans/i18n/el.po index 034c2314b39..2e2becc8b89 100644 --- a/addons/account_analytic_plans/i18n/el.po +++ b/addons/account_analytic_plans/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/en_GB.po b/addons/account_analytic_plans/i18n/en_GB.po index 26653f29f38..3f5b16e07d9 100644 --- a/addons/account_analytic_plans/i18n/en_GB.po +++ b/addons/account_analytic_plans/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es.po b/addons/account_analytic_plans/i18n/es.po index 041882012b6..4ae451ef1ad 100644 --- a/addons/account_analytic_plans/i18n/es.po +++ b/addons/account_analytic_plans/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_AR.po b/addons/account_analytic_plans/i18n/es_AR.po index f7570568af8..cbf37ab6ca6 100644 --- a/addons/account_analytic_plans/i18n/es_AR.po +++ b/addons/account_analytic_plans/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_CR.po b/addons/account_analytic_plans/i18n/es_CR.po index c1575550982..ea37bea1b74 100644 --- a/addons/account_analytic_plans/i18n/es_CR.po +++ b/addons/account_analytic_plans/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/es_EC.po b/addons/account_analytic_plans/i18n/es_EC.po index 09bb9c25f28..cbbe372a76f 100644 --- a/addons/account_analytic_plans/i18n/es_EC.po +++ b/addons/account_analytic_plans/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_MX.po b/addons/account_analytic_plans/i18n/es_MX.po index d2161db7599..32afddaf690 100644 --- a/addons/account_analytic_plans/i18n/es_MX.po +++ b/addons/account_analytic_plans/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_PY.po b/addons/account_analytic_plans/i18n/es_PY.po index cd97265f006..dd013840a63 100644 --- a/addons/account_analytic_plans/i18n/es_PY.po +++ b/addons/account_analytic_plans/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/et.po b/addons/account_analytic_plans/i18n/et.po index 11e2f13b14e..1b7e0827b42 100644 --- a/addons/account_analytic_plans/i18n/et.po +++ b/addons/account_analytic_plans/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #~ msgid "Printing date:" #~ msgstr "Trükkimise kuupäev:" diff --git a/addons/account_analytic_plans/i18n/fa.po b/addons/account_analytic_plans/i18n/fa.po index 9c8f51e6c93..a219f5fcb1a 100644 --- a/addons/account_analytic_plans/i18n/fa.po +++ b/addons/account_analytic_plans/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/fi.po b/addons/account_analytic_plans/i18n/fi.po index 21fcb85718a..aa727546080 100644 --- a/addons/account_analytic_plans/i18n/fi.po +++ b/addons/account_analytic_plans/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/fr.po b/addons/account_analytic_plans/i18n/fr.po index a63ba5ce651..6235ea66640 100644 --- a/addons/account_analytic_plans/i18n/fr.po +++ b/addons/account_analytic_plans/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/gl.po b/addons/account_analytic_plans/i18n/gl.po index da5ded950a4..ec2f93aa9b1 100644 --- a/addons/account_analytic_plans/i18n/gl.po +++ b/addons/account_analytic_plans/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/gu.po b/addons/account_analytic_plans/i18n/gu.po index 0e565733ace..b35c66ebefb 100644 --- a/addons/account_analytic_plans/i18n/gu.po +++ b/addons/account_analytic_plans/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/hr.po b/addons/account_analytic_plans/i18n/hr.po index 1f04a6a3f03..3b8c4e81104 100644 --- a/addons/account_analytic_plans/i18n/hr.po +++ b/addons/account_analytic_plans/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/hu.po b/addons/account_analytic_plans/i18n/hu.po index 41b2f9b72d9..0f1a3613936 100644 --- a/addons/account_analytic_plans/i18n/hu.po +++ b/addons/account_analytic_plans/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/id.po b/addons/account_analytic_plans/i18n/id.po index cb75d7f7e29..9e462474638 100644 --- a/addons/account_analytic_plans/i18n/id.po +++ b/addons/account_analytic_plans/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/it.po b/addons/account_analytic_plans/i18n/it.po index 57f47b37cc6..f0ae6a81a01 100644 --- a/addons/account_analytic_plans/i18n/it.po +++ b/addons/account_analytic_plans/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ja.po b/addons/account_analytic_plans/i18n/ja.po index 7ce5e7833a7..92d6d2b5219 100644 --- a/addons/account_analytic_plans/i18n/ja.po +++ b/addons/account_analytic_plans/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ko.po b/addons/account_analytic_plans/i18n/ko.po index 573850776bd..0721ffb4f52 100644 --- a/addons/account_analytic_plans/i18n/ko.po +++ b/addons/account_analytic_plans/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/lt.po b/addons/account_analytic_plans/i18n/lt.po index c9a0c6c31ab..40574e3669c 100644 --- a/addons/account_analytic_plans/i18n/lt.po +++ b/addons/account_analytic_plans/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/lv.po b/addons/account_analytic_plans/i18n/lv.po index f8cc01b367d..f529f572cc1 100644 --- a/addons/account_analytic_plans/i18n/lv.po +++ b/addons/account_analytic_plans/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/mk.po b/addons/account_analytic_plans/i18n/mk.po index 438aea12dc7..0d350e52dff 100644 --- a/addons/account_analytic_plans/i18n/mk.po +++ b/addons/account_analytic_plans/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/mn.po b/addons/account_analytic_plans/i18n/mn.po index 3b1567204f4..de847923068 100644 --- a/addons/account_analytic_plans/i18n/mn.po +++ b/addons/account_analytic_plans/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/nb.po b/addons/account_analytic_plans/i18n/nb.po index 67c35b6b8bd..2ed6a4b002d 100644 --- a/addons/account_analytic_plans/i18n/nb.po +++ b/addons/account_analytic_plans/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/nl.po b/addons/account_analytic_plans/i18n/nl.po index 10393b9dfb6..41de8766372 100644 --- a/addons/account_analytic_plans/i18n/nl.po +++ b/addons/account_analytic_plans/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/nl_BE.po b/addons/account_analytic_plans/i18n/nl_BE.po index 43549ce71cc..6ef1fd0388c 100644 --- a/addons/account_analytic_plans/i18n/nl_BE.po +++ b/addons/account_analytic_plans/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/oc.po b/addons/account_analytic_plans/i18n/oc.po index 973f57cd9b6..c9790dd8c8c 100644 --- a/addons/account_analytic_plans/i18n/oc.po +++ b/addons/account_analytic_plans/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pl.po b/addons/account_analytic_plans/i18n/pl.po index 2e1a213903f..94098d09658 100644 --- a/addons/account_analytic_plans/i18n/pl.po +++ b/addons/account_analytic_plans/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pt.po b/addons/account_analytic_plans/i18n/pt.po index 5b1101d304b..30467aabf4b 100644 --- a/addons/account_analytic_plans/i18n/pt.po +++ b/addons/account_analytic_plans/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pt_BR.po b/addons/account_analytic_plans/i18n/pt_BR.po index 8e694f6175b..f6b8f748ddc 100644 --- a/addons/account_analytic_plans/i18n/pt_BR.po +++ b/addons/account_analytic_plans/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ro.po b/addons/account_analytic_plans/i18n/ro.po index bea9e77b23a..0efe3eaa957 100644 --- a/addons/account_analytic_plans/i18n/ro.po +++ b/addons/account_analytic_plans/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ru.po b/addons/account_analytic_plans/i18n/ru.po index 1ff7926abaf..a2185a47753 100644 --- a/addons/account_analytic_plans/i18n/ru.po +++ b/addons/account_analytic_plans/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sl.po b/addons/account_analytic_plans/i18n/sl.po index 19087f8525a..e32fb68e902 100644 --- a/addons/account_analytic_plans/i18n/sl.po +++ b/addons/account_analytic_plans/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sq.po b/addons/account_analytic_plans/i18n/sq.po index 2bfd2e7e01c..cef85be4ebf 100644 --- a/addons/account_analytic_plans/i18n/sq.po +++ b/addons/account_analytic_plans/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:44+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sr.po b/addons/account_analytic_plans/i18n/sr.po index 432a2d79a57..2beff4cd82d 100644 --- a/addons/account_analytic_plans/i18n/sr.po +++ b/addons/account_analytic_plans/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sr@latin.po b/addons/account_analytic_plans/i18n/sr@latin.po index 0ef5603b3da..8c1bde7105d 100644 --- a/addons/account_analytic_plans/i18n/sr@latin.po +++ b/addons/account_analytic_plans/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sv.po b/addons/account_analytic_plans/i18n/sv.po index 3d602d54400..c1b0acb4858 100644 --- a/addons/account_analytic_plans/i18n/sv.po +++ b/addons/account_analytic_plans/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/tlh.po b/addons/account_analytic_plans/i18n/tlh.po index 0742173ef79..862e238aca8 100644 --- a/addons/account_analytic_plans/i18n/tlh.po +++ b/addons/account_analytic_plans/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/tr.po b/addons/account_analytic_plans/i18n/tr.po index 0d5123edab6..0eccaea6757 100644 --- a/addons/account_analytic_plans/i18n/tr.po +++ b/addons/account_analytic_plans/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -94,7 +94,7 @@ msgstr "Plan No" #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_plan_instance_action msgid "Analytic Distribution's Models" -msgstr "Analitik dağıtımın modelleri" +msgstr "Analitik Dağıtımın Modelleri" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -104,7 +104,7 @@ msgstr "Hesap Adı" #. module: account_analytic_plans #: view:account.analytic.plan.instance.line:0 msgid "Analytic Distribution Line" -msgstr "Analitik dağılım kalemi" +msgstr "Analitik Dağılım Kalemi" #. module: account_analytic_plans #: field:account.analytic.plan.instance,code:0 @@ -147,7 +147,7 @@ msgstr "ya da" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_line msgid "Analytic Line" -msgstr "Analitik kalem" +msgstr "Analitik Kalem" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -257,7 +257,7 @@ msgstr "Analitik Plan Kalemleri" #. module: account_analytic_plans #: field:account.analytic.plan.line,min_required:0 msgid "Minimum Allowed (%)" -msgstr "İzin verilen en az (%)" +msgstr "İzin Verilen en az (%)" #. module: account_analytic_plans #: field:account.analytic.plan.instance,plan_id:0 @@ -380,7 +380,7 @@ msgstr "Hiç analitik plan tanımlanmamış." #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_bank_statement msgid "Bank Statement" -msgstr "Banka ekstresi" +msgstr "Banka Ekstresi" #. module: account_analytic_plans #: field:account.analytic.plan.instance.line,analytic_account_id:0 @@ -428,7 +428,7 @@ msgstr "Vazgeç" #. module: account_analytic_plans #: field:account.crossovered.analytic,date1:0 msgid "Start Date" -msgstr "Başlangıç Tarihi" +msgstr "Başlanma Tarihi" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 diff --git a/addons/account_analytic_plans/i18n/uk.po b/addons/account_analytic_plans/i18n/uk.po index 89c0edb4a1d..94b333e350a 100644 --- a/addons/account_analytic_plans/i18n/uk.po +++ b/addons/account_analytic_plans/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/vi.po b/addons/account_analytic_plans/i18n/vi.po index be62706a849..133635d549b 100644 --- a/addons/account_analytic_plans/i18n/vi.po +++ b/addons/account_analytic_plans/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/zh_CN.po b/addons/account_analytic_plans/i18n/zh_CN.po index 3ea655a6a63..f4e924171c0 100644 --- a/addons/account_analytic_plans/i18n/zh_CN.po +++ b/addons/account_analytic_plans/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/zh_TW.po b/addons/account_analytic_plans/i18n/zh_TW.po index 827816dcc91..e97b57b1e91 100644 --- a/addons/account_analytic_plans/i18n/zh_TW.po +++ b/addons/account_analytic_plans/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/report/crossovered_analytic.py b/addons/account_analytic_plans/report/crossovered_analytic.py index b1a8f965d6b..ef7589fda8e 100644 --- a/addons/account_analytic_plans/report/crossovered_analytic.py +++ b/addons/account_analytic_plans/report/crossovered_analytic.py @@ -20,9 +20,10 @@ ############################################################################## import time - +from openerp.osv import osv from openerp.report import report_sxw + class crossovered_analytic(report_sxw.rml_parse): def __init__(self, cr, uid, name, context): super(crossovered_analytic, self).__init__(cr, uid, name, context = context) @@ -173,7 +174,11 @@ class crossovered_analytic(report_sxw.rml_parse): final.append(item) return final -report_sxw.report_sxw('report.account.analytic.account.crossovered.analytic', 'account.analytic.account', 'addons/account_analytic_plans/report/crossovered_analytic.rml',parser = crossovered_analytic, header='internal') + +class report_crossoveredanalyticplans(osv.AbstractModel): + _name = 'report.account_analytic_plans.report_crossoveredanalyticplans' + _inherit = 'report.abstract_report' + _template = 'account_analytic_plans.report_crossoveredanalyticplans' + _wrapped_report_class = crossovered_analytic # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/account_analytic_plans/report/crossovered_analytic.rml b/addons/account_analytic_plans/report/crossovered_analytic.rml deleted file mode 100644 index 48e7c13b0a1..00000000000 --- a/addons/account_analytic_plans/report/crossovered_analytic.rml +++ /dev/null @@ -1,304 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Account Name - - - Code - - - Quantity - - - Amount - - - Perc(%) - - - - - - - - Crossovered Analytic - - - - - - - From Date - - - To Date - - - Company - - - Currency - - - Printing date - - - - - - - [[ formatLang(data['form']['date1'],date=True) ]] - - - [[ formatLang(data['form']['date2'],date=True) ]] - - - [[ company.name ]] - - - [[ company.currency_id.name ]] - - - [[ formatLang(time.strftime('%Y-%m-%d'),date=True) ]] at [[ time.strftime('%H:%M:%S') ]] - - - - - - - Analytic Account Reference: - - - - - - - Account Name - - - Code - - - Quantity - - - Amount - - - Perc(%) - - - -
- [[ repeatIn(ref_lines(data['form']),'a') ]] - - - - [[ a['ref_name'] ]] - - - [[ a['ref_code'] ]] - - - [[ a['ref_qty'] and formatLang(a['ref_qty']) ]] - - - [[ a['ref_amt'] and formatLang(a['ref_amt'], currency_obj=company.currency_id) ]] - - - 100.00% - - - -
- - - - Analytic Account : - - - - - - - Account Name - - - Code - - - Quantity - - - Amount - - - Percentage - - - -
- [[ repeatIn(lines(data['form']),'a') ]] - - - - [[ a['acc_name'] ]] - - - [[ a['code'] ]] - - - [[formatLang(a['qty']) ]] - - - [[ formatLang(a['amt'], currency_obj=company.currency_id) ]] - - - [[ formatLang(a['perc']) ]]% - - - - - - -
-
-
-
diff --git a/addons/account_analytic_plans/test/acount_analytic_plans_report.yml b/addons/account_analytic_plans/test/acount_analytic_plans_report.yml index 6aa67a3052a..cae58583793 100644 --- a/addons/account_analytic_plans/test/acount_analytic_plans_report.yml +++ b/addons/account_analytic_plans/test/acount_analytic_plans_report.yml @@ -6,6 +6,6 @@ import openerp.report from openerp import tools data_dict = {'model': 'account.analytic.account', 'form': {'date1':time.strftime("%Y-01-01"),'date2':time.strftime('%Y-%m-%d'),'journal_ids':[6,0,(ref('account.cose_journal_sale'))],'ref':ref('account.analytic_root'),'empty_line':True,'id':ref('account.analytic_root'),'context':{}}} - data, format = openerp.report.render_report(cr, uid, [ref('account.analytic_root')], 'account.analytic.account.crossovered.analytic', data_dict, {}) + data, format = openerp.report.render_report(cr, uid, [ref('account.analytic_root')], 'account_analytic_plans.report_crossoveredanalyticplans', data_dict, {}) if tools.config['test_report_directory']: file(os.path.join(tools.config['test_report_directory'], 'account_analytic_plans-crossovered_analyitic.'+format), 'wb+').write(data) diff --git a/addons/account_analytic_plans/views/report_crossoveredanalyticplans.xml b/addons/account_analytic_plans/views/report_crossoveredanalyticplans.xml new file mode 100644 index 00000000000..b4470ea2913 --- /dev/null +++ b/addons/account_analytic_plans/views/report_crossoveredanalyticplans.xml @@ -0,0 +1,66 @@ + + + + + + diff --git a/addons/account_analytic_plans/wizard/account_crossovered_analytic.py b/addons/account_analytic_plans/wizard/account_crossovered_analytic.py index d3581d6c457..ccac123c681 100644 --- a/addons/account_analytic_plans/wizard/account_crossovered_analytic.py +++ b/addons/account_analytic_plans/wizard/account_crossovered_analytic.py @@ -65,11 +65,6 @@ class account_crossovered_analytic(osv.osv_memory): 'model': 'account.analytic.account', 'form': data } - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'account.analytic.account.crossovered.analytic', - 'datas': datas, - } - + return self.pool['report'].get_action(cr, uid, ids, 'account_analytic_plans.report_crossoveredanalyticplans', data=datas, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_anglo_saxon/i18n/ar.po b/addons/account_anglo_saxon/i18n/ar.po index fa2d8e16c99..d974fa2d7c4 100644 --- a/addons/account_anglo_saxon/i18n/ar.po +++ b/addons/account_anglo_saxon/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/bg.po b/addons/account_anglo_saxon/i18n/bg.po index fbf3cac391d..4b75aa64506 100644 --- a/addons/account_anglo_saxon/i18n/bg.po +++ b/addons/account_anglo_saxon/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/bs.po b/addons/account_anglo_saxon/i18n/bs.po index c863ba45529..abb998b5a6d 100644 --- a/addons/account_anglo_saxon/i18n/bs.po +++ b/addons/account_anglo_saxon/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ca.po b/addons/account_anglo_saxon/i18n/ca.po index 75feae3fd03..e548b065cb0 100644 --- a/addons/account_anglo_saxon/i18n/ca.po +++ b/addons/account_anglo_saxon/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/cs.po b/addons/account_anglo_saxon/i18n/cs.po index fa9a7d93b06..7ce34943dc5 100644 --- a/addons/account_anglo_saxon/i18n/cs.po +++ b/addons/account_anglo_saxon/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/da.po b/addons/account_anglo_saxon/i18n/da.po index 0d139f99a0c..99345743cc7 100644 --- a/addons/account_anglo_saxon/i18n/da.po +++ b/addons/account_anglo_saxon/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/de.po b/addons/account_anglo_saxon/i18n/de.po index 94ed3d31640..45dfbb42eb0 100644 --- a/addons/account_anglo_saxon/i18n/de.po +++ b/addons/account_anglo_saxon/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/el.po b/addons/account_anglo_saxon/i18n/el.po index aaacd798dc4..bc95b428d12 100644 --- a/addons/account_anglo_saxon/i18n/el.po +++ b/addons/account_anglo_saxon/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/en_GB.po b/addons/account_anglo_saxon/i18n/en_GB.po index 98560656b53..1f07376b929 100644 --- a/addons/account_anglo_saxon/i18n/en_GB.po +++ b/addons/account_anglo_saxon/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es.po b/addons/account_anglo_saxon/i18n/es.po index 1a43024c87f..471a1b1a120 100644 --- a/addons/account_anglo_saxon/i18n/es.po +++ b/addons/account_anglo_saxon/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_CR.po b/addons/account_anglo_saxon/i18n/es_CR.po index 18a486048cf..a0b483db4bb 100644 --- a/addons/account_anglo_saxon/i18n/es_CR.po +++ b/addons/account_anglo_saxon/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/es_EC.po b/addons/account_anglo_saxon/i18n/es_EC.po index 6ebd7decb16..9eb25bbb910 100644 --- a/addons/account_anglo_saxon/i18n/es_EC.po +++ b/addons/account_anglo_saxon/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_MX.po b/addons/account_anglo_saxon/i18n/es_MX.po index 9cd4035eb46..f824d696e5b 100644 --- a/addons/account_anglo_saxon/i18n/es_MX.po +++ b/addons/account_anglo_saxon/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_PY.po b/addons/account_anglo_saxon/i18n/es_PY.po index 6db99c852a0..9ac75e21b04 100644 --- a/addons/account_anglo_saxon/i18n/es_PY.po +++ b/addons/account_anglo_saxon/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/et.po b/addons/account_anglo_saxon/i18n/et.po index 61f7047d6bf..3f683708a48 100644 --- a/addons/account_anglo_saxon/i18n/et.po +++ b/addons/account_anglo_saxon/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fa.po b/addons/account_anglo_saxon/i18n/fa.po index cae78b29c85..3dfd7bddba4 100644 --- a/addons/account_anglo_saxon/i18n/fa.po +++ b/addons/account_anglo_saxon/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fi.po b/addons/account_anglo_saxon/i18n/fi.po index a8d23ebb5bd..2c6a4285616 100644 --- a/addons/account_anglo_saxon/i18n/fi.po +++ b/addons/account_anglo_saxon/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fr.po b/addons/account_anglo_saxon/i18n/fr.po index fd08d00d99d..8f7e5706dad 100644 --- a/addons/account_anglo_saxon/i18n/fr.po +++ b/addons/account_anglo_saxon/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/gl.po b/addons/account_anglo_saxon/i18n/gl.po index e24df800329..ea37f8a6b08 100644 --- a/addons/account_anglo_saxon/i18n/gl.po +++ b/addons/account_anglo_saxon/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/gu.po b/addons/account_anglo_saxon/i18n/gu.po index 913f58a8a1a..c67eca002b5 100644 --- a/addons/account_anglo_saxon/i18n/gu.po +++ b/addons/account_anglo_saxon/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hi.po b/addons/account_anglo_saxon/i18n/hi.po index 51088855881..140a10c35cf 100644 --- a/addons/account_anglo_saxon/i18n/hi.po +++ b/addons/account_anglo_saxon/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hr.po b/addons/account_anglo_saxon/i18n/hr.po index 5dc2338bea0..59877219ede 100644 --- a/addons/account_anglo_saxon/i18n/hr.po +++ b/addons/account_anglo_saxon/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hu.po b/addons/account_anglo_saxon/i18n/hu.po index 7600995cb52..9330007458e 100644 --- a/addons/account_anglo_saxon/i18n/hu.po +++ b/addons/account_anglo_saxon/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/id.po b/addons/account_anglo_saxon/i18n/id.po index 38df08b2123..7610b148efb 100644 --- a/addons/account_anglo_saxon/i18n/id.po +++ b/addons/account_anglo_saxon/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/it.po b/addons/account_anglo_saxon/i18n/it.po index 4c4172cdbf5..7a11e2be5a6 100644 --- a/addons/account_anglo_saxon/i18n/it.po +++ b/addons/account_anglo_saxon/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ja.po b/addons/account_anglo_saxon/i18n/ja.po index 2195db6e73b..12071387354 100644 --- a/addons/account_anglo_saxon/i18n/ja.po +++ b/addons/account_anglo_saxon/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/lv.po b/addons/account_anglo_saxon/i18n/lv.po index 069265d4e39..8d070199132 100644 --- a/addons/account_anglo_saxon/i18n/lv.po +++ b/addons/account_anglo_saxon/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/mk.po b/addons/account_anglo_saxon/i18n/mk.po index 1d7dec6eb65..d5fd2bad294 100644 --- a/addons/account_anglo_saxon/i18n/mk.po +++ b/addons/account_anglo_saxon/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/mn.po b/addons/account_anglo_saxon/i18n/mn.po index 3b9f6bf2dbd..c2f79730e6c 100644 --- a/addons/account_anglo_saxon/i18n/mn.po +++ b/addons/account_anglo_saxon/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nb.po b/addons/account_anglo_saxon/i18n/nb.po index 6d2aa9ecafb..ef7d6f72ba7 100644 --- a/addons/account_anglo_saxon/i18n/nb.po +++ b/addons/account_anglo_saxon/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nl.po b/addons/account_anglo_saxon/i18n/nl.po index 15d7d42aeff..79c5ad9dcf7 100644 --- a/addons/account_anglo_saxon/i18n/nl.po +++ b/addons/account_anglo_saxon/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nl_BE.po b/addons/account_anglo_saxon/i18n/nl_BE.po index add12ef6fff..0f047134aba 100644 --- a/addons/account_anglo_saxon/i18n/nl_BE.po +++ b/addons/account_anglo_saxon/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/oc.po b/addons/account_anglo_saxon/i18n/oc.po index 279b9586145..0a84a801c0d 100644 --- a/addons/account_anglo_saxon/i18n/oc.po +++ b/addons/account_anglo_saxon/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/pl.po b/addons/account_anglo_saxon/i18n/pl.po index d9264989346..4f987ae5e3a 100644 --- a/addons/account_anglo_saxon/i18n/pl.po +++ b/addons/account_anglo_saxon/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/pt.po b/addons/account_anglo_saxon/i18n/pt.po index 3baee491f04..76acf7db357 100644 --- a/addons/account_anglo_saxon/i18n/pt.po +++ b/addons/account_anglo_saxon/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/pt_BR.po b/addons/account_anglo_saxon/i18n/pt_BR.po index 2426de51e82..2d8603416ba 100644 --- a/addons/account_anglo_saxon/i18n/pt_BR.po +++ b/addons/account_anglo_saxon/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ro.po b/addons/account_anglo_saxon/i18n/ro.po index 1365f0afb48..5c546f5b097 100644 --- a/addons/account_anglo_saxon/i18n/ro.po +++ b/addons/account_anglo_saxon/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ru.po b/addons/account_anglo_saxon/i18n/ru.po index b24389b1f3d..8ffc217e41b 100644 --- a/addons/account_anglo_saxon/i18n/ru.po +++ b/addons/account_anglo_saxon/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sl.po b/addons/account_anglo_saxon/i18n/sl.po index 83f327795ea..675754889d7 100644 --- a/addons/account_anglo_saxon/i18n/sl.po +++ b/addons/account_anglo_saxon/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sq.po b/addons/account_anglo_saxon/i18n/sq.po index 0bd713a2051..cddf9c787c2 100644 --- a/addons/account_anglo_saxon/i18n/sq.po +++ b/addons/account_anglo_saxon/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sr@latin.po b/addons/account_anglo_saxon/i18n/sr@latin.po index cb85dc068f3..2add7e165eb 100644 --- a/addons/account_anglo_saxon/i18n/sr@latin.po +++ b/addons/account_anglo_saxon/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sv.po b/addons/account_anglo_saxon/i18n/sv.po index 5b8b6176270..7fbfd71c6e2 100644 --- a/addons/account_anglo_saxon/i18n/sv.po +++ b/addons/account_anglo_saxon/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ta.po b/addons/account_anglo_saxon/i18n/ta.po index ebde0c737e9..08e98cc530f 100644 --- a/addons/account_anglo_saxon/i18n/ta.po +++ b/addons/account_anglo_saxon/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/tr.po b/addons/account_anglo_saxon/i18n/tr.po index 8cc8ce0be94..756de133bdd 100644 --- a/addons/account_anglo_saxon/i18n/tr.po +++ b/addons/account_anglo_saxon/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/zh_CN.po b/addons/account_anglo_saxon/i18n/zh_CN.po index 18d1ca1a48a..815963a4ea5 100644 --- a/addons/account_anglo_saxon/i18n/zh_CN.po +++ b/addons/account_anglo_saxon/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/zh_TW.po b/addons/account_anglo_saxon/i18n/zh_TW.po index 824a2e81e14..7de2884bce0 100644 --- a/addons/account_anglo_saxon/i18n/zh_TW.po +++ b/addons/account_anglo_saxon/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:28+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_asset/account_asset.py b/addons/account_asset/account_asset.py index f4e5d17a8e0..7041c3aafbf 100644 --- a/addons/account_asset/account_asset.py +++ b/addons/account_asset/account_asset.py @@ -328,7 +328,7 @@ class account_asset_asset(osv.osv): default = {} if context is None: context = {} - default.update({'depreciation_line_ids': [], 'state': 'draft'}) + default.update({'depreciation_line_ids': [], 'account_move_line_ids': [], 'history_ids': [], 'state': 'draft'}) return super(account_asset_asset, self).copy(cr, uid, id, default, context=context) def _compute_entries(self, cr, uid, ids, period_id, context=None): diff --git a/addons/account_asset/i18n/ar.po b/addons/account_asset/i18n/ar.po index fa7c19b1892..f2b87bf72f9 100644 --- a/addons/account_asset/i18n/ar.po +++ b/addons/account_asset/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/bs.po b/addons/account_asset/i18n/bs.po index aaddcbfe7c8..9794276df84 100644 --- a/addons/account_asset/i18n/bs.po +++ b/addons/account_asset/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ca.po b/addons/account_asset/i18n/ca.po index 171870eccfc..b18ff1fa3bb 100755 --- a/addons/account_asset/i18n/ca.po +++ b/addons/account_asset/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/cs.po b/addons/account_asset/i18n/cs.po index 45fbed9776b..6a0aaf1ebb2 100644 --- a/addons/account_asset/i18n/cs.po +++ b/addons/account_asset/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Language: Czech\n" #. module: account_asset diff --git a/addons/account_asset/i18n/da.po b/addons/account_asset/i18n/da.po index 494857e21ea..4343d654245 100644 --- a/addons/account_asset/i18n/da.po +++ b/addons/account_asset/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/de.po b/addons/account_asset/i18n/de.po index 86c1c65d80e..c9706272840 100755 --- a/addons/account_asset/i18n/de.po +++ b/addons/account_asset/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/en_GB.po b/addons/account_asset/i18n/en_GB.po index 3d517c1eca2..91c1afc2bf6 100644 --- a/addons/account_asset/i18n/en_GB.po +++ b/addons/account_asset/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es.po b/addons/account_asset/i18n/es.po index ea35e78dfba..68a44e8c106 100755 --- a/addons/account_asset/i18n/es.po +++ b/addons/account_asset/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_AR.po b/addons/account_asset/i18n/es_AR.po index eef6200d99d..c8b07ebf11b 100644 --- a/addons/account_asset/i18n/es_AR.po +++ b/addons/account_asset/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_CR.po b/addons/account_asset/i18n/es_CR.po index 86529640f29..929b211b730 100755 --- a/addons/account_asset/i18n/es_CR.po +++ b/addons/account_asset/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: account_asset diff --git a/addons/account_asset/i18n/es_EC.po b/addons/account_asset/i18n/es_EC.po index 39dd439f469..4f3689dbfd2 100644 --- a/addons/account_asset/i18n/es_EC.po +++ b/addons/account_asset/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_MX.po b/addons/account_asset/i18n/es_MX.po index 5fa951869c4..652d8eea1f9 100644 --- a/addons/account_asset/i18n/es_MX.po +++ b/addons/account_asset/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/et.po b/addons/account_asset/i18n/et.po index fdc915714b1..9025d7af57a 100644 --- a/addons/account_asset/i18n/et.po +++ b/addons/account_asset/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/fi.po b/addons/account_asset/i18n/fi.po index 9a91de2c66f..2ceda138314 100644 --- a/addons/account_asset/i18n/fi.po +++ b/addons/account_asset/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/fr.po b/addons/account_asset/i18n/fr.po index 2668995a936..4b31af34b2c 100755 --- a/addons/account_asset/i18n/fr.po +++ b/addons/account_asset/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/gu.po b/addons/account_asset/i18n/gu.po index cce8d048a51..f200ee82fd9 100644 --- a/addons/account_asset/i18n/gu.po +++ b/addons/account_asset/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/hr.po b/addons/account_asset/i18n/hr.po index 0f71e0b6413..b4f03064a5c 100644 --- a/addons/account_asset/i18n/hr.po +++ b/addons/account_asset/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/hu.po b/addons/account_asset/i18n/hu.po index dae92ac9646..8533bd40bc6 100644 --- a/addons/account_asset/i18n/hu.po +++ b/addons/account_asset/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/id.po b/addons/account_asset/i18n/id.po index 5c9d595d8d7..fc1e5d5bc67 100644 --- a/addons/account_asset/i18n/id.po +++ b/addons/account_asset/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -27,27 +27,27 @@ msgstr "" #: field:account.asset.history,method_end:0 #: field:asset.modify,method_end:0 msgid "Ending date" -msgstr "" +msgstr "Tanggal akhir" #. module: account_asset #: field:account.asset.asset,value_residual:0 msgid "Residual Value" -msgstr "" +msgstr "Nilai residual" #. module: account_asset #: field:account.asset.category,account_expense_depreciation_id:0 msgid "Depr. Expense Account" -msgstr "" +msgstr "Depr Akun Biaya" #. module: account_asset #: view:asset.asset.report:0 msgid "Group By..." -msgstr "" +msgstr "Dikelompokan berdasarkan ..." #. module: account_asset #: field:asset.asset.report,gross_value:0 msgid "Gross Amount" -msgstr "" +msgstr "Jumlah Kotor" #. module: account_asset #: view:account.asset.asset:0 @@ -58,7 +58,7 @@ msgstr "" #: field:asset.asset.report,asset_id:0 #: model:ir.model,name:account_asset.model_account_asset_asset msgid "Asset" -msgstr "" +msgstr "Aktiva" #. module: account_asset #: help:account.asset.asset,prorata:0 @@ -67,12 +67,14 @@ msgid "" "Indicates that the first depreciation entry for this asset have to be done " "from the purchase date instead of the first January" msgstr "" +"Mengindikasikan bahwa entri depresiasi pertama untuk aset ini harus " +"dilakukan dari tanggal pembelian, bukan dari tanggal satu Januari." #. module: account_asset #: selection:account.asset.asset,method:0 #: selection:account.asset.category,method:0 msgid "Linear" -msgstr "" +msgstr "Linier" #. module: account_asset #: field:account.asset.asset,company_id:0 @@ -85,19 +87,19 @@ msgstr "Perusahaan" #. module: account_asset #: view:asset.modify:0 msgid "Modify" -msgstr "" +msgstr "Ubah" #. module: account_asset #: selection:account.asset.asset,state:0 #: view:asset.asset.report:0 #: selection:asset.asset.report,state:0 msgid "Running" -msgstr "" +msgstr "Sedang berjalan" #. module: account_asset #: view:account.asset.asset:0 msgid "Set to Draft" -msgstr "" +msgstr "Atur menjadi draft" #. module: account_asset #: view:asset.asset.report:0 @@ -105,24 +107,24 @@ msgstr "" #: model:ir.model,name:account_asset.model_asset_asset_report #: model:ir.ui.menu,name:account_asset.menu_action_asset_asset_report msgid "Assets Analysis" -msgstr "" +msgstr "Analisa Aset" #. module: account_asset #: field:asset.modify,name:0 msgid "Reason" -msgstr "" +msgstr "Alasan" #. module: account_asset #: field:account.asset.asset,method_progress_factor:0 #: field:account.asset.category,method_progress_factor:0 msgid "Degressive Factor" -msgstr "" +msgstr "Faktor Penurunan Nilai" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_list_normal msgid "Asset Categories" -msgstr "" +msgstr "Kategori Aset" #. module: account_asset #: view:account.asset.asset:0 @@ -130,40 +132,40 @@ msgstr "" #: field:account.move.line,entry_ids:0 #: model:ir.actions.act_window,name:account_asset.act_entries_open msgid "Entries" -msgstr "" +msgstr "Entri" #. module: account_asset #: view:account.asset.asset:0 #: field:account.asset.asset,depreciation_line_ids:0 msgid "Depreciation Lines" -msgstr "" +msgstr "Baris Depresiasi" #. module: account_asset #: help:account.asset.asset,salvage_value:0 msgid "It is the amount you plan to have that you cannot depreciate." -msgstr "" +msgstr "Adalah besaran yang anda rencanakan yang tidak dapat di depresiasi." #. module: account_asset #: help:account.asset.asset,method_period:0 msgid "The amount of time between two depreciations, in months" -msgstr "" +msgstr "Waktu antara dua depresiasi, dalam bulan" #. module: account_asset #: field:account.asset.depreciation.line,depreciation_date:0 #: view:asset.asset.report:0 #: field:asset.asset.report,depreciation_date:0 msgid "Depreciation Date" -msgstr "" +msgstr "Tanggal Depresiasi" #. module: account_asset #: constraint:account.asset.asset:0 msgid "Error ! You cannot create recursive assets." -msgstr "" +msgstr "Salah ! Anda tidak dapat membuat aset rekursif" #. module: account_asset #: field:asset.asset.report,posted_value:0 msgid "Posted Amount" -msgstr "" +msgstr "Jumlah terposting" #. module: account_asset #: view:account.asset.asset:0 @@ -173,12 +175,12 @@ msgstr "" #: model:ir.ui.menu,name:account_asset.menu_finance_assets #: model:ir.ui.menu,name:account_asset.menu_finance_config_assets msgid "Assets" -msgstr "" +msgstr "Aset" #. module: account_asset #: field:account.asset.category,account_depreciation_id:0 msgid "Depreciation Account" -msgstr "" +msgstr "Akun Depresiasi" #. module: account_asset #: view:account.asset.asset:0 @@ -187,28 +189,28 @@ msgstr "" #: view:asset.modify:0 #: field:asset.modify,note:0 msgid "Notes" -msgstr "" +msgstr "Catatan" #. module: account_asset #: field:account.asset.depreciation.line,move_id:0 msgid "Depreciation Entry" -msgstr "" +msgstr "Entri Depresiasi" #. module: account_asset #: view:asset.asset.report:0 #: field:asset.asset.report,nbr:0 msgid "# of Depreciation Lines" -msgstr "" +msgstr "# Baris Depresiasi" #. module: account_asset #: field:account.asset.asset,method_period:0 msgid "Number of Months in a Period" -msgstr "" +msgstr "Jumlah Bulan dalam Satu Periode" #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in draft state" -msgstr "" +msgstr "Aset pada kondisi draft" #. module: account_asset #: field:account.asset.asset,method_end:0 @@ -216,37 +218,37 @@ msgstr "" #: selection:account.asset.category,method_time:0 #: selection:account.asset.history,method_time:0 msgid "Ending Date" -msgstr "" +msgstr "Tanggal Akhir" #. module: account_asset #: field:account.asset.asset,code:0 msgid "Reference" -msgstr "" +msgstr "Referensi" #. module: account_asset #: view:account.asset.asset:0 msgid "Account Asset" -msgstr "" +msgstr "Akun Aset" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_asset_depreciation_confirmation_wizard #: model:ir.ui.menu,name:account_asset.menu_asset_depreciation_confirmation_wizard msgid "Compute Assets" -msgstr "" +msgstr "Hitung Aset" #. module: account_asset #: field:account.asset.category,method_period:0 #: field:account.asset.history,method_period:0 #: field:asset.modify,method_period:0 msgid "Period Length" -msgstr "" +msgstr "Lama Periode" #. module: account_asset #: selection:account.asset.asset,state:0 #: view:asset.asset.report:0 #: selection:asset.asset.report,state:0 msgid "Draft" -msgstr "" +msgstr "Draft" #. module: account_asset #: view:asset.asset.report:0 @@ -256,24 +258,24 @@ msgstr "Tanggal pembelian aset" #. module: account_asset #: view:account.asset.asset:0 msgid "Change Duration" -msgstr "" +msgstr "Ubah Durasi" #. module: account_asset #: help:account.asset.asset,method_number:0 #: help:account.asset.category,method_number:0 #: help:account.asset.history,method_number:0 msgid "The number of depreciations needed to depreciate your asset" -msgstr "" +msgstr "Jumlah depresiasi yang dibutuhkan untuk mendepresiasi aset anda" #. module: account_asset #: view:account.asset.category:0 msgid "Analytic Information" -msgstr "" +msgstr "Informasi Analitik" #. module: account_asset #: field:account.asset.category,account_analytic_id:0 msgid "Analytic account" -msgstr "" +msgstr "Akun Analitik" #. module: account_asset #: field:account.asset.asset,method:0 @@ -291,24 +293,24 @@ msgstr "" #. module: account_asset #: field:account.asset.depreciation.line,remaining_value:0 msgid "Next Period Depreciation" -msgstr "" +msgstr "Periode Depresiasi Berikutnya" #. module: account_asset #: help:account.asset.history,method_period:0 msgid "Time in month between two depreciations" -msgstr "" +msgstr "Waktu dalam bulan antara dua depresiasi" #. module: account_asset #: view:asset.modify:0 #: model:ir.actions.act_window,name:account_asset.action_asset_modify #: model:ir.model,name:account_asset.model_asset_modify msgid "Modify Asset" -msgstr "" +msgstr "Ubah Aktiva" #. module: account_asset #: field:account.asset.asset,salvage_value:0 msgid "Salvage Value" -msgstr "" +msgstr "Nilai Likuidasi Aset" #. module: account_asset #: field:account.asset.asset,category_id:0 @@ -316,68 +318,68 @@ msgstr "" #: field:account.invoice.line,asset_category_id:0 #: view:asset.asset.report:0 msgid "Asset Category" -msgstr "" +msgstr "Kategori Aktiva" #. module: account_asset #: view:account.asset.asset:0 msgid "Assets in closed state" -msgstr "" +msgstr "Aktiva pada kondisi tertutup" #. module: account_asset #: field:account.asset.asset,parent_id:0 msgid "Parent Asset" -msgstr "" +msgstr "Aktiva induk" #. module: account_asset #: view:account.asset.history:0 #: model:ir.model,name:account_asset.model_account_asset_history msgid "Asset history" -msgstr "" +msgstr "Histori Aktiva" #. module: account_asset #: view:account.asset.category:0 msgid "Search Asset Category" -msgstr "" +msgstr "Cari Kategori Aktiva" #. module: account_asset #: view:asset.modify:0 msgid "months" -msgstr "" +msgstr "bulan" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Baris Tagihan" #. module: account_asset #: view:account.asset.asset:0 msgid "Depreciation Board" -msgstr "" +msgstr "Papan Depresiasi" #. module: account_asset #: field:asset.asset.report,unposted_value:0 msgid "Unposted Amount" -msgstr "" +msgstr "Jumlah Belum Terposting" #. module: account_asset #: field:account.asset.asset,method_time:0 #: field:account.asset.category,method_time:0 #: field:account.asset.history,method_time:0 msgid "Time Method" -msgstr "" +msgstr "Metode Waktu" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 #: view:asset.modify:0 msgid "or" -msgstr "" +msgstr "atau" #. module: account_asset #: field:account.asset.asset,note:0 #: field:account.asset.category,note:0 #: field:account.asset.history,note:0 msgid "Note" -msgstr "" +msgstr "Catatan" #. module: account_asset #: help:account.asset.history,method_time:0 @@ -388,6 +390,12 @@ msgid "" "Ending Date: Choose the time between 2 depreciations and the date the " "depreciations won't go beyond." msgstr "" +"Metode yang digunakan untuk menghitung tanggal dan angka pada baris " +"depresiasi.\n" +"Angka Depresiasi: Angka tetap dari baris depresiasi dan waktu antara 2 " +"depresiasi.\n" +"Tanggal Akhir: Pilih waktu antara 2 depresiasi dimana tanggal depresiasi " +"tidak melebihinya." #. module: account_asset #: help:account.asset.asset,method_time:0 @@ -400,16 +408,22 @@ msgid "" " * Ending Date: Choose the time between 2 depreciations and the date the " "depreciations won't go beyond." msgstr "" +"Pilih metode untuk digunakan untuk menghitung tanggal dan jumlah baris " +"depresiasi.\n" +" * Jumlah Depresiasi: Angkat baris depresiasi tetap dan waktu antara 2 " +"depresiasi.\n" +" * Tanggal Akhir: Pilih waktu antara 2 depresiasi dan tanggal depresiasi " +"tidak boleh melebihinya." #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in running state" -msgstr "" +msgstr "Aktiva pada kondisi berjalan" #. module: account_asset #: view:account.asset.asset:0 msgid "Closed" -msgstr "" +msgstr "Ditutup" #. module: account_asset #: help:account.asset.asset,state:0 @@ -420,43 +434,48 @@ msgid "" "You can manually close an asset when the depreciation is over. If the last " "line of depreciation is posted, the asset automatically goes in that status." msgstr "" +"Saat aktiva dibuat, statusnya adalah 'Draft'.\n" +"Jika aktiva di konfirmasi, statusnya menjadi 'Berjalan' dan baris depresiasi " +"dapat di posting pada pembukuan.\n" +"Anda dapat menutup secara manual suatu aktiva saat depresiasi sudah " +"berakhir. Jika baris akhir depresiasi dimasukkan, aktiva otomatis tertutup." #. module: account_asset #: field:account.asset.asset,state:0 #: field:asset.asset.report,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: account_asset #: field:account.asset.asset,partner_id:0 #: field:asset.asset.report,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Partner" #. module: account_asset #: view:asset.asset.report:0 msgid "Posted depreciation lines" -msgstr "" +msgstr "Baris depresiasi terposting" #. module: account_asset #: field:account.asset.asset,child_ids:0 msgid "Children Assets" -msgstr "" +msgstr "Aktiva anak" #. module: account_asset #: view:asset.asset.report:0 msgid "Date of depreciation" -msgstr "" +msgstr "Tanggal depresiasi" #. module: account_asset #: field:account.asset.history,user_id:0 msgid "User" -msgstr "" +msgstr "Pengguna" #. module: account_asset #: field:account.asset.category,account_asset_id:0 msgid "Asset Account" -msgstr "" +msgstr "Akun Aktiva" #. module: account_asset #: view:asset.asset.report:0 @@ -467,17 +486,17 @@ msgstr "Filter Tambahan..." #: view:account.asset.asset:0 #: view:asset.depreciation.confirmation.wizard:0 msgid "Compute" -msgstr "" +msgstr "Hitung" #. module: account_asset #: view:account.asset.history:0 msgid "Asset History" -msgstr "" +msgstr "Histori Aktiva" #. module: account_asset #: model:ir.model,name:account_asset.model_asset_depreciation_confirmation_wizard msgid "asset.depreciation.confirmation.wizard" -msgstr "" +msgstr "wizard.konfirmasi.depresiasi.aktiva" #. module: account_asset #: field:account.asset.asset,active:0 @@ -487,12 +506,12 @@ msgstr "Aktif" #. module: account_asset #: field:account.asset.depreciation.line,parent_state:0 msgid "State of Asset" -msgstr "" +msgstr "Status Aktiva" #. module: account_asset #: field:account.asset.depreciation.line,name:0 msgid "Depreciation Name" -msgstr "" +msgstr "Nama Depresiasi" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/it.po b/addons/account_asset/i18n/it.po index 602f7f35cce..000f854fce2 100644 --- a/addons/account_asset/i18n/it.po +++ b/addons/account_asset/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ja.po b/addons/account_asset/i18n/ja.po index 4c396cb3fc0..1cf0f20a351 100644 --- a/addons/account_asset/i18n/ja.po +++ b/addons/account_asset/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ko.po b/addons/account_asset/i18n/ko.po index 08a125f0682..8e501b1a61e 100644 --- a/addons/account_asset/i18n/ko.po +++ b/addons/account_asset/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/lt.po b/addons/account_asset/i18n/lt.po index 043090df982..e3dc1ca5333 100644 --- a/addons/account_asset/i18n/lt.po +++ b/addons/account_asset/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/mk.po b/addons/account_asset/i18n/mk.po index 4ffd07af489..029d0188f16 100644 --- a/addons/account_asset/i18n/mk.po +++ b/addons/account_asset/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/mn.po b/addons/account_asset/i18n/mn.po index e45e2e5fcb8..3eb39f22589 100644 --- a/addons/account_asset/i18n/mn.po +++ b/addons/account_asset/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/nb.po b/addons/account_asset/i18n/nb.po index 3d23d093a89..5a31df18cd5 100644 --- a/addons/account_asset/i18n/nb.po +++ b/addons/account_asset/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/nl.po b/addons/account_asset/i18n/nl.po index f58d6f4ef52..de291e70899 100644 --- a/addons/account_asset/i18n/nl.po +++ b/addons/account_asset/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/nl_BE.po b/addons/account_asset/i18n/nl_BE.po index 0805982f551..bdc0ba70ba9 100644 --- a/addons/account_asset/i18n/nl_BE.po +++ b/addons/account_asset/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/pl.po b/addons/account_asset/i18n/pl.po index b3dc80d1c57..9cc1268f2a9 100755 --- a/addons/account_asset/i18n/pl.po +++ b/addons/account_asset/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/pt.po b/addons/account_asset/i18n/pt.po index 41de92155e0..52b1fb0f98b 100755 --- a/addons/account_asset/i18n/pt.po +++ b/addons/account_asset/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/pt_BR.po b/addons/account_asset/i18n/pt_BR.po index dd6a6c06288..453366ac145 100644 --- a/addons/account_asset/i18n/pt_BR.po +++ b/addons/account_asset/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ro.po b/addons/account_asset/i18n/ro.po index 62fd706def9..0310c219f21 100644 --- a/addons/account_asset/i18n/ro.po +++ b/addons/account_asset/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ru.po b/addons/account_asset/i18n/ru.po index 4c4b257152c..9acbad3d3ac 100644 --- a/addons/account_asset/i18n/ru.po +++ b/addons/account_asset/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/sl.po b/addons/account_asset/i18n/sl.po index bdbe757f914..b10d481f12d 100644 --- a/addons/account_asset/i18n/sl.po +++ b/addons/account_asset/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/sr@latin.po b/addons/account_asset/i18n/sr@latin.po index b72d4d4e62e..4a272ded4f4 100644 --- a/addons/account_asset/i18n/sr@latin.po +++ b/addons/account_asset/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/sv.po b/addons/account_asset/i18n/sv.po index d246a89346d..96f523bb928 100755 --- a/addons/account_asset/i18n/sv.po +++ b/addons/account_asset/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/th.po b/addons/account_asset/i18n/th.po index 17e324ae2d0..2971de1d51b 100644 --- a/addons/account_asset/i18n/th.po +++ b/addons/account_asset/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/tr.po b/addons/account_asset/i18n/tr.po index 2f3fd034643..67d8ab10a98 100644 --- a/addons/account_asset/i18n/tr.po +++ b/addons/account_asset/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/vi.po b/addons/account_asset/i18n/vi.po index 0a2a9e8db9b..50f97359804 100644 --- a/addons/account_asset/i18n/vi.po +++ b/addons/account_asset/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/zh_CN.po b/addons/account_asset/i18n/zh_CN.po index afeeb3cda08..de84bcc428d 100644 --- a/addons/account_asset/i18n/zh_CN.po +++ b/addons/account_asset/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/zh_TW.po b/addons/account_asset/i18n/zh_TW.po index 90b363c84e9..11464a032e1 100644 --- a/addons/account_asset/i18n/zh_TW.po +++ b/addons/account_asset/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:47+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:29+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_bank_statement_extensions/__openerp__.py b/addons/account_bank_statement_extensions/__openerp__.py index 7571eef3e54..203011c46c5 100644 --- a/addons/account_bank_statement_extensions/__openerp__.py +++ b/addons/account_bank_statement_extensions/__openerp__.py @@ -50,6 +50,7 @@ This module adds: 'wizard/confirm_statement_line_wizard.xml', 'wizard/cancel_statement_line_wizard.xml', 'data/account_bank_statement_extensions_data.xml', + 'views/report_bankstatementbalance.xml', ], 'auto_install': False, 'installable': True, diff --git a/addons/account_bank_statement_extensions/account_bank_statement_report.xml b/addons/account_bank_statement_extensions/account_bank_statement_report.xml index b4dafbfd9a7..861c3822520 100644 --- a/addons/account_bank_statement_extensions/account_bank_statement_report.xml +++ b/addons/account_bank_statement_extensions/account_bank_statement_report.xml @@ -1,16 +1,13 @@ - - - - - + + + diff --git a/addons/account_bank_statement_extensions/i18n/ar.po b/addons/account_bank_statement_extensions/i18n/ar.po index d22f08fca38..638bb793142 100644 --- a/addons/account_bank_statement_extensions/i18n/ar.po +++ b/addons/account_bank_statement_extensions/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/bs.po b/addons/account_bank_statement_extensions/i18n/bs.po index 73bcb33018b..5f1ec3eadf2 100644 --- a/addons/account_bank_statement_extensions/i18n/bs.po +++ b/addons/account_bank_statement_extensions/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/cs.po b/addons/account_bank_statement_extensions/i18n/cs.po index c5ed802ad3c..6572438cd4a 100644 --- a/addons/account_bank_statement_extensions/i18n/cs.po +++ b/addons/account_bank_statement_extensions/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/da.po b/addons/account_bank_statement_extensions/i18n/da.po index 25d41de3dd6..5f62eb19cf0 100644 --- a/addons/account_bank_statement_extensions/i18n/da.po +++ b/addons/account_bank_statement_extensions/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/de.po b/addons/account_bank_statement_extensions/i18n/de.po index d08361a562f..ab27c128288 100644 --- a/addons/account_bank_statement_extensions/i18n/de.po +++ b/addons/account_bank_statement_extensions/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/en_GB.po b/addons/account_bank_statement_extensions/i18n/en_GB.po index e51d8eafab9..4b4517c32b6 100644 --- a/addons/account_bank_statement_extensions/i18n/en_GB.po +++ b/addons/account_bank_statement_extensions/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es.po b/addons/account_bank_statement_extensions/i18n/es.po index 5fc92048e6a..b23afd3cde2 100644 --- a/addons/account_bank_statement_extensions/i18n/es.po +++ b/addons/account_bank_statement_extensions/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_CR.po b/addons/account_bank_statement_extensions/i18n/es_CR.po index 3d6bf80d562..08b40d5f9e1 100644 --- a/addons/account_bank_statement_extensions/i18n/es_CR.po +++ b/addons/account_bank_statement_extensions/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_EC.po b/addons/account_bank_statement_extensions/i18n/es_EC.po index 237373cbb1f..e4b96ac3041 100644 --- a/addons/account_bank_statement_extensions/i18n/es_EC.po +++ b/addons/account_bank_statement_extensions/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_MX.po b/addons/account_bank_statement_extensions/i18n/es_MX.po index de4bd578acb..847420da40d 100644 --- a/addons/account_bank_statement_extensions/i18n/es_MX.po +++ b/addons/account_bank_statement_extensions/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/fi.po b/addons/account_bank_statement_extensions/i18n/fi.po index c0aed627be8..62b9eb472d5 100644 --- a/addons/account_bank_statement_extensions/i18n/fi.po +++ b/addons/account_bank_statement_extensions/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/fr.po b/addons/account_bank_statement_extensions/i18n/fr.po index 9159c3bee88..718ce8489e2 100644 --- a/addons/account_bank_statement_extensions/i18n/fr.po +++ b/addons/account_bank_statement_extensions/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/gu.po b/addons/account_bank_statement_extensions/i18n/gu.po index e5e4613d162..8457f8b2cef 100644 --- a/addons/account_bank_statement_extensions/i18n/gu.po +++ b/addons/account_bank_statement_extensions/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/hr.po b/addons/account_bank_statement_extensions/i18n/hr.po index dfcda9a7bd0..37cd52c3993 100644 --- a/addons/account_bank_statement_extensions/i18n/hr.po +++ b/addons/account_bank_statement_extensions/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/hu.po b/addons/account_bank_statement_extensions/i18n/hu.po index af91f036a39..a510c4c8641 100644 --- a/addons/account_bank_statement_extensions/i18n/hu.po +++ b/addons/account_bank_statement_extensions/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/it.po b/addons/account_bank_statement_extensions/i18n/it.po index 0d4e784f26a..09b050026bc 100644 --- a/addons/account_bank_statement_extensions/i18n/it.po +++ b/addons/account_bank_statement_extensions/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ja.po b/addons/account_bank_statement_extensions/i18n/ja.po index 6b178acd5c9..9633e241745 100644 --- a/addons/account_bank_statement_extensions/i18n/ja.po +++ b/addons/account_bank_statement_extensions/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/mk.po b/addons/account_bank_statement_extensions/i18n/mk.po index 34746386cb2..f4a9686fd6d 100644 --- a/addons/account_bank_statement_extensions/i18n/mk.po +++ b/addons/account_bank_statement_extensions/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/mn.po b/addons/account_bank_statement_extensions/i18n/mn.po index 99df1bbb882..c1c369cf2f7 100644 --- a/addons/account_bank_statement_extensions/i18n/mn.po +++ b/addons/account_bank_statement_extensions/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/nb.po b/addons/account_bank_statement_extensions/i18n/nb.po index 58a7e1d33ed..e4ce63616ef 100644 --- a/addons/account_bank_statement_extensions/i18n/nb.po +++ b/addons/account_bank_statement_extensions/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/nl.po b/addons/account_bank_statement_extensions/i18n/nl.po index e9e29ca22fb..b42d321dbb0 100644 --- a/addons/account_bank_statement_extensions/i18n/nl.po +++ b/addons/account_bank_statement_extensions/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/pl.po b/addons/account_bank_statement_extensions/i18n/pl.po index fa8e2c2895f..e92fd4db54a 100644 --- a/addons/account_bank_statement_extensions/i18n/pl.po +++ b/addons/account_bank_statement_extensions/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/pt.po b/addons/account_bank_statement_extensions/i18n/pt.po index 3341c0f27e7..c38f4f42166 100644 --- a/addons/account_bank_statement_extensions/i18n/pt.po +++ b/addons/account_bank_statement_extensions/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/pt_BR.po b/addons/account_bank_statement_extensions/i18n/pt_BR.po index b1906a04938..27dfe163d42 100644 --- a/addons/account_bank_statement_extensions/i18n/pt_BR.po +++ b/addons/account_bank_statement_extensions/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ro.po b/addons/account_bank_statement_extensions/i18n/ro.po index fff9952cde1..1f0561d0213 100644 --- a/addons/account_bank_statement_extensions/i18n/ro.po +++ b/addons/account_bank_statement_extensions/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ru.po b/addons/account_bank_statement_extensions/i18n/ru.po index cb8ef856a4c..f2874289bc1 100644 --- a/addons/account_bank_statement_extensions/i18n/ru.po +++ b/addons/account_bank_statement_extensions/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sl.po b/addons/account_bank_statement_extensions/i18n/sl.po index a6667572e4f..aef0d8517aa 100644 --- a/addons/account_bank_statement_extensions/i18n/sl.po +++ b/addons/account_bank_statement_extensions/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sr@latin.po b/addons/account_bank_statement_extensions/i18n/sr@latin.po index 97776db1629..5dd9699e607 100644 --- a/addons/account_bank_statement_extensions/i18n/sr@latin.po +++ b/addons/account_bank_statement_extensions/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sv.po b/addons/account_bank_statement_extensions/i18n/sv.po index 93faf29c04f..95984fb30e6 100644 --- a/addons/account_bank_statement_extensions/i18n/sv.po +++ b/addons/account_bank_statement_extensions/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/tr.po b/addons/account_bank_statement_extensions/i18n/tr.po index b7a6132e038..fc392fa0861 100644 --- a/addons/account_bank_statement_extensions/i18n/tr.po +++ b/addons/account_bank_statement_extensions/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/zh_CN.po b/addons/account_bank_statement_extensions/i18n/zh_CN.po index 400d78217c0..61f4ff08563 100644 --- a/addons/account_bank_statement_extensions/i18n/zh_CN.po +++ b/addons/account_bank_statement_extensions/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/zh_TW.po b/addons/account_bank_statement_extensions/i18n/zh_TW.po index 6934dfcf5ab..7d631f593df 100644 --- a/addons/account_bank_statement_extensions/i18n/zh_TW.po +++ b/addons/account_bank_statement_extensions/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/report/bank_statement_balance_report.py b/addons/account_bank_statement_extensions/report/bank_statement_balance_report.py index 59b8efb23e1..f0b63bf148c 100644 --- a/addons/account_bank_statement_extensions/report/bank_statement_balance_report.py +++ b/addons/account_bank_statement_extensions/report/bank_statement_balance_report.py @@ -21,15 +21,14 @@ ############################################################################## import time - +from openerp.osv import osv from openerp.report import report_sxw + class bank_statement_balance_report(report_sxw.rml_parse): def set_context(self, objects, data, ids, report_type=None): cr = self.cr - uid = self.uid - context = self.context cr.execute('SELECT s.name as s_name, s.date AS s_date, j.code as j_code, s.balance_end_real as s_balance ' \ 'FROM account_bank_statement s ' \ @@ -46,7 +45,6 @@ class bank_statement_balance_report(report_sxw.rml_parse): }) super(bank_statement_balance_report, self).set_context(objects, data, ids, report_type=report_type) - def __init__(self, cr, uid, name, context): if context is None: context = {} @@ -56,12 +54,11 @@ class bank_statement_balance_report(report_sxw.rml_parse): }) self.context = context -report_sxw.report_sxw( - 'report.bank.statement.balance.report', - 'account.bank.statement', - 'addons/account_bank_statement_extensions/report/bank_statement_balance_report.rml', - parser=bank_statement_balance_report, - header='internal' -) + +class report_bankstatementbalance(osv.AbstractModel): + _name = 'report.account_bank_statement_extensions.report_bankstatementbalance' + _inherit = 'report.abstract_report' + _template = 'account_bank_statement_extensions.report_bankstatementbalance' + _wrapped_report_class = bank_statement_balance_report # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_bank_statement_extensions/report/bank_statement_balance_report.rml b/addons/account_bank_statement_extensions/report/bank_statement_balance_report.rml deleted file mode 100644 index 963b5d9dd68..00000000000 --- a/addons/account_bank_statement_extensions/report/bank_statement_balance_report.rml +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ ]] - - - - - - - Bank Statement Balances Report - - - - - - - - - - - - - Name - - - Date - - - Journal - - - Closing Balance - - - - - - -
- [[ repeatIn(lines, 'l') ]] - - - - [[ l['s_name'] ]] - - - [[ l['s_date'] ]] - - - [[ l['j_code'] ]] - - - [[ formatLang(l['s_balance']) ]] - - - - - - -
- - - -
-
- diff --git a/addons/account_bank_statement_extensions/views/report_bankstatementbalance.xml b/addons/account_bank_statement_extensions/views/report_bankstatementbalance.xml new file mode 100644 index 00000000000..111912a7507 --- /dev/null +++ b/addons/account_bank_statement_extensions/views/report_bankstatementbalance.xml @@ -0,0 +1,35 @@ + + + + + + diff --git a/addons/account_budget/__openerp__.py b/addons/account_budget/__openerp__.py index 222178b940c..695fd794b9f 100644 --- a/addons/account_budget/__openerp__.py +++ b/addons/account_budget/__openerp__.py @@ -19,7 +19,6 @@ # ############################################################################## - { 'name': 'Budgets Management', 'version': '1.0', @@ -61,13 +60,18 @@ Three reports are available: 'wizard/account_budget_report_view.xml', 'wizard/account_budget_crossovered_summary_report_view.xml', 'wizard/account_budget_crossovered_report_view.xml', + + 'views/report_analyticaccountbudget.xml', + 'views/report_budget.xml', + 'views/report_crossoveredbudget.xml', ], 'demo': ['account_budget_demo.xml'], - 'test':[ + 'test': [ 'test/account_budget.yml', 'test/account_budget_report.yml', ], 'installable': True, 'auto_install': False, } + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_budget/account_budget_report.xml b/addons/account_budget/account_budget_report.xml index 9cc38154ef9..7855deb9ccc 100644 --- a/addons/account_budget/account_budget_report.xml +++ b/addons/account_budget/account_budget_report.xml @@ -1,24 +1,34 @@ - - - - - - - + /> + + + + - \ No newline at end of file + diff --git a/addons/account_budget/i18n/ar.po b/addons/account_budget/i18n/ar.po index 3de97157982..b6f0e1b3073 100644 --- a/addons/account_budget/i18n/ar.po +++ b/addons/account_budget/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/bg.po b/addons/account_budget/i18n/bg.po index d25e3b097bf..3df72cdc42d 100644 --- a/addons/account_budget/i18n/bg.po +++ b/addons/account_budget/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/bs.po b/addons/account_budget/i18n/bs.po index 58c53755f61..4e49b9a17fe 100644 --- a/addons/account_budget/i18n/bs.po +++ b/addons/account_budget/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ca.po b/addons/account_budget/i18n/ca.po index 92f0d9b6432..d0e4caa97d1 100644 --- a/addons/account_budget/i18n/ca.po +++ b/addons/account_budget/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/cs.po b/addons/account_budget/i18n/cs.po index ddd7feb2c1e..af514b0b1e8 100644 --- a/addons/account_budget/i18n/cs.po +++ b/addons/account_budget/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/da.po b/addons/account_budget/i18n/da.po index e58d0f677d3..b039be26fef 100644 --- a/addons/account_budget/i18n/da.po +++ b/addons/account_budget/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/de.po b/addons/account_budget/i18n/de.po index 7f8495cd34f..f8e547dadb2 100644 --- a/addons/account_budget/i18n/de.po +++ b/addons/account_budget/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/el.po b/addons/account_budget/i18n/el.po index 47ce04d2fc2..7dcc8622073 100644 --- a/addons/account_budget/i18n/el.po +++ b/addons/account_budget/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/en_GB.po b/addons/account_budget/i18n/en_GB.po index d2798d31fd7..42e44d67c54 100644 --- a/addons/account_budget/i18n/en_GB.po +++ b/addons/account_budget/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es.po b/addons/account_budget/i18n/es.po index 573113d6272..fe7acaa40a5 100644 --- a/addons/account_budget/i18n/es.po +++ b/addons/account_budget/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_AR.po b/addons/account_budget/i18n/es_AR.po index 67217e67fd5..00d55515b9a 100644 --- a/addons/account_budget/i18n/es_AR.po +++ b/addons/account_budget/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_CR.po b/addons/account_budget/i18n/es_CR.po index 14229e567db..dd4b9bdcd9e 100644 --- a/addons/account_budget/i18n/es_CR.po +++ b/addons/account_budget/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: account_budget diff --git a/addons/account_budget/i18n/es_EC.po b/addons/account_budget/i18n/es_EC.po index f2a342badb7..4db9d1e2ad0 100644 --- a/addons/account_budget/i18n/es_EC.po +++ b/addons/account_budget/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_MX.po b/addons/account_budget/i18n/es_MX.po index 656d7fef276..fcf2d65617f 100644 --- a/addons/account_budget/i18n/es_MX.po +++ b/addons/account_budget/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_PY.po b/addons/account_budget/i18n/es_PY.po index 64e620a54e8..34660874e94 100644 --- a/addons/account_budget/i18n/es_PY.po +++ b/addons/account_budget/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/et.po b/addons/account_budget/i18n/et.po index 492f36265bd..0f78341bb03 100644 --- a/addons/account_budget/i18n/et.po +++ b/addons/account_budget/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/fa.po b/addons/account_budget/i18n/fa.po index 7e9deb9b268..c89bd803092 100644 --- a/addons/account_budget/i18n/fa.po +++ b/addons/account_budget/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/fi.po b/addons/account_budget/i18n/fi.po index a6d964adbf6..6382875b548 100644 --- a/addons/account_budget/i18n/fi.po +++ b/addons/account_budget/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.post:0 diff --git a/addons/account_budget/i18n/fr.po b/addons/account_budget/i18n/fr.po index 13c7595125d..463cadd3632 100644 --- a/addons/account_budget/i18n/fr.po +++ b/addons/account_budget/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/gl.po b/addons/account_budget/i18n/gl.po index 20618ae0cd9..fd7d009d0ee 100644 --- a/addons/account_budget/i18n/gl.po +++ b/addons/account_budget/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/gu.po b/addons/account_budget/i18n/gu.po index ce8b5ccb953..3791f5f4aab 100644 --- a/addons/account_budget/i18n/gu.po +++ b/addons/account_budget/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/he.po b/addons/account_budget/i18n/he.po index 928a4c64cd4..bcf39b9aa2b 100644 --- a/addons/account_budget/i18n/he.po +++ b/addons/account_budget/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hi.po b/addons/account_budget/i18n/hi.po index 74e9e7e8128..1ee7675aca6 100644 --- a/addons/account_budget/i18n/hi.po +++ b/addons/account_budget/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hr.po b/addons/account_budget/i18n/hr.po index 917bf9cacf2..6764b801369 100644 --- a/addons/account_budget/i18n/hr.po +++ b/addons/account_budget/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hu.po b/addons/account_budget/i18n/hu.po index 3b849952d9f..26c9a72d922 100644 --- a/addons/account_budget/i18n/hu.po +++ b/addons/account_budget/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/id.po b/addons/account_budget/i18n/id.po index 53ee14186aa..8173b5eb967 100644 --- a/addons/account_budget/i18n/id.po +++ b/addons/account_budget/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/it.po b/addons/account_budget/i18n/it.po index 0937aee436e..2a7f3cb3bcc 100644 --- a/addons/account_budget/i18n/it.po +++ b/addons/account_budget/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ja.po b/addons/account_budget/i18n/ja.po index 382dc5f3294..390c9ae76b8 100644 --- a/addons/account_budget/i18n/ja.po +++ b/addons/account_budget/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ko.po b/addons/account_budget/i18n/ko.po index 41a2fe0c08f..38847bef0f4 100644 --- a/addons/account_budget/i18n/ko.po +++ b/addons/account_budget/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lo.po b/addons/account_budget/i18n/lo.po index 093c1552b6d..741d07a914f 100644 --- a/addons/account_budget/i18n/lo.po +++ b/addons/account_budget/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lt.po b/addons/account_budget/i18n/lt.po index 1b1f6103920..60406b4be8e 100644 --- a/addons/account_budget/i18n/lt.po +++ b/addons/account_budget/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lv.po b/addons/account_budget/i18n/lv.po index 3f95359015b..4691fd1a5fa 100644 --- a/addons/account_budget/i18n/lv.po +++ b/addons/account_budget/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/mk.po b/addons/account_budget/i18n/mk.po index 300dea0ad6d..e29fae975a4 100644 --- a/addons/account_budget/i18n/mk.po +++ b/addons/account_budget/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/mn.po b/addons/account_budget/i18n/mn.po index 50ea07136ac..364b780b29c 100644 --- a/addons/account_budget/i18n/mn.po +++ b/addons/account_budget/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nb.po b/addons/account_budget/i18n/nb.po index aa1421cc7dc..48af813124c 100644 --- a/addons/account_budget/i18n/nb.po +++ b/addons/account_budget/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nl.po b/addons/account_budget/i18n/nl.po index 785f9fa006f..98932d79496 100644 --- a/addons/account_budget/i18n/nl.po +++ b/addons/account_budget/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nl_BE.po b/addons/account_budget/i18n/nl_BE.po index 0f6ba267099..4c4ac750255 100644 --- a/addons/account_budget/i18n/nl_BE.po +++ b/addons/account_budget/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/oc.po b/addons/account_budget/i18n/oc.po index 95ed18ee1c4..bc2faece509 100644 --- a/addons/account_budget/i18n/oc.po +++ b/addons/account_budget/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/pl.po b/addons/account_budget/i18n/pl.po index eeff7ca525a..c8818e9c21b 100644 --- a/addons/account_budget/i18n/pl.po +++ b/addons/account_budget/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/pt.po b/addons/account_budget/i18n/pt.po index 4add8caacca..5e4bf885673 100644 --- a/addons/account_budget/i18n/pt.po +++ b/addons/account_budget/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/pt_BR.po b/addons/account_budget/i18n/pt_BR.po index 0eded800263..3b98959fd82 100644 --- a/addons/account_budget/i18n/pt_BR.po +++ b/addons/account_budget/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ro.po b/addons/account_budget/i18n/ro.po index d670ba46a98..c1f1c6a89ec 100644 --- a/addons/account_budget/i18n/ro.po +++ b/addons/account_budget/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ru.po b/addons/account_budget/i18n/ru.po index 05503f568c7..45e51c09c7f 100644 --- a/addons/account_budget/i18n/ru.po +++ b/addons/account_budget/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sl.po b/addons/account_budget/i18n/sl.po index 02896d64e70..83f3aafbd11 100644 --- a/addons/account_budget/i18n/sl.po +++ b/addons/account_budget/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sq.po b/addons/account_budget/i18n/sq.po index 3e065bb7723..8c6c1187774 100644 --- a/addons/account_budget/i18n/sq.po +++ b/addons/account_budget/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sr.po b/addons/account_budget/i18n/sr.po index c22bf5639ba..4a791f5b743 100644 --- a/addons/account_budget/i18n/sr.po +++ b/addons/account_budget/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sr@latin.po b/addons/account_budget/i18n/sr@latin.po index 8621fd03f28..cfab30a107f 100644 --- a/addons/account_budget/i18n/sr@latin.po +++ b/addons/account_budget/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sv.po b/addons/account_budget/i18n/sv.po index 3754713fb65..64e3c1c69a8 100644 --- a/addons/account_budget/i18n/sv.po +++ b/addons/account_budget/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/tlh.po b/addons/account_budget/i18n/tlh.po index f3149a3e280..2ad20e7a163 100644 --- a/addons/account_budget/i18n/tlh.po +++ b/addons/account_budget/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/tr.po b/addons/account_budget/i18n/tr.po index eb8240deb35..588b8fc39db 100644 --- a/addons/account_budget/i18n/tr.po +++ b/addons/account_budget/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -94,7 +94,7 @@ msgstr "Bütçeleri Yazdır" #. module: account_budget #: report:account.budget:0 msgid "Currency:" -msgstr "Döviz:" +msgstr "Para Birimi:" #. module: account_budget #: model:ir.model,name:account_budget.model_account_budget_crossvered_report @@ -114,7 +114,7 @@ msgstr "Yüzde" #. module: account_budget #: field:crossovered.budget,state:0 msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. module: account_budget #: code:addons/account_budget/account_budget.py:119 @@ -172,7 +172,7 @@ msgstr "Yüzde(%)" #: view:crossovered.budget:0 #: selection:crossovered.budget,state:0 msgid "Done" -msgstr "Bitti" +msgstr "Biten" #. module: account_budget #: report:account.budget:0 @@ -423,7 +423,7 @@ msgstr "İptal" #: field:crossovered.budget,date_from:0 #: field:crossovered.budget.lines,date_from:0 msgid "Start Date" -msgstr "Baş. Tarihi" +msgstr "Başlama Tarihi" #. module: account_budget #: report:account.budget:0 diff --git a/addons/account_budget/i18n/uk.po b/addons/account_budget/i18n/uk.po index 27ef5ce5a2d..44c9535672a 100644 --- a/addons/account_budget/i18n/uk.po +++ b/addons/account_budget/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/vi.po b/addons/account_budget/i18n/vi.po index 02d0c87129d..c4aa88b1817 100644 --- a/addons/account_budget/i18n/vi.po +++ b/addons/account_budget/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/zh_CN.po b/addons/account_budget/i18n/zh_CN.po index d87ce70c5fc..a62474a67fd 100644 --- a/addons/account_budget/i18n/zh_CN.po +++ b/addons/account_budget/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/zh_TW.po b/addons/account_budget/i18n/zh_TW.po index 1436e0a7c8d..0b24ca945e4 100644 --- a/addons/account_budget/i18n/zh_TW.po +++ b/addons/account_budget/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/report/analytic_account_budget_report.py b/addons/account_budget/report/analytic_account_budget_report.py index 6701fc06a2b..4e3feaf06b7 100644 --- a/addons/account_budget/report/analytic_account_budget_report.py +++ b/addons/account_budget/report/analytic_account_budget_report.py @@ -20,10 +20,10 @@ ############################################################################## import time -import datetime - +from openerp.osv import osv from openerp.report import report_sxw + class analytic_account_budget_report(report_sxw.rml_parse): def __init__(self, cr, uid, name, context): super(analytic_account_budget_report, self).__init__(cr, uid, name, context=context) @@ -166,6 +166,11 @@ class analytic_account_budget_report(report_sxw.rml_parse): result.append(res) return result -report_sxw.report_sxw('report.account.analytic.account.budget', 'account.analytic.account', 'addons/account_budget/report/analytic_account_budget_report.rml',parser=analytic_account_budget_report,header='internal') + +class report_analyticaccountbudget(osv.AbstractModel): + _name = 'report.account_budget.report_analyticaccountbudget' + _inherit = 'report.abstract_report' + _template = 'account_budget.report_analyticaccountbudget' + _wrapped_report_class = analytic_account_budget_report # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_budget/report/analytic_account_budget_report.rml b/addons/account_budget/report/analytic_account_budget_report.rml deleted file mode 100644 index 15fddebd02d..00000000000 --- a/addons/account_budget/report/analytic_account_budget_report.rml +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Description - - - Theoretical Amt - - - Planned Amt - - - Practical Amt - - - Perc(%) - - - - - [[repeatIn(objects,'o')]] - Analytic Budget - - - - - - - Analysis from - - - Analytic Account - - - Currency - - - - - - - [[ formatLang(data['form']['date_from'],date=True) ]] to [[ formatLang(data['form']['date_to'],date=True) ]] - - - [[ o.name ]] - - - [[ company.currency_id.name ]] - - - - - - - - - - Description - - - Theoretical Amt - - - Planned Amt - - - Practical Amt - - - Perc(%) - - - -
- [[ repeatIn(funct(o,data['form']),'a') ]] - - - - [['.....' *(a['status']-1) ]] [[ (a['status']==1 and (setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ a['name'] ]] - - - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['theo'], currency_obj=company.currency_id) ]] - - - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['pln'], currency_obj=company.currency_id) ]] - - - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['prac'], currency_obj=company.currency_id) ]] - - - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['perc']) ]]% - - - -
- - - - [[ repeatIn(funct_total(data['form']),'b') ]] Total: - - - [[ formatLang(b['tot_theo'], currency_obj=company.currency_id) ]] - - - [[ formatLang(b['tot_pln'], currency_obj=company.currency_id) ]] - - - [[ formatLang(b['tot_prac'], currency_obj=company.currency_id) ]] - - - [[ formatLang(b['tot_perc']) ]]% - - - - - - -
-
-
diff --git a/addons/account_budget/report/budget_report.py b/addons/account_budget/report/budget_report.py index f00eb8a3713..f8f812639b0 100644 --- a/addons/account_budget/report/budget_report.py +++ b/addons/account_budget/report/budget_report.py @@ -20,6 +20,7 @@ ############################################################################## import time +from openerp.osv import osv from openerp.report import report_sxw tot = {} @@ -187,6 +188,11 @@ class budget_report(report_sxw.rml_parse): result.append(res) return result -report_sxw.report_sxw('report.account.budget', 'account.budget.post', 'addons/account_budget/report/budget_report.rml', parser=budget_report, header='internal') + +class report_budget(osv.AbstractModel): + _name = 'report.account_budget.report_budget' + _inherit = 'report.abstract_report' + _template = 'account_budget.report_budget' + _wrapped_report_class = budget_report # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_budget/report/budget_report.rml b/addons/account_budget/report/budget_report.rml deleted file mode 100644 index 789c3ed1ffb..00000000000 --- a/addons/account_budget/report/budget_report.rml +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ repeatIn(objects,'o') ]] - - - - Budget - - - - - - - Currency: [[ company.currency_id.name ]] - - - Printed at: [[ formatLang(time.strftime('%Y-%m-%d'),date=True) ]] at [[ time.strftime('%H:%M:%S')]] - - - - - Analysis from [[ formatLang(data['form']['date_from'],date=True) ]] to [[ formatLang(data['form']['date_to'],date=True) ]] - - - Budget : [[ o.name ]] - - - - - - - - - - - - - Description - - - Theoretical Amt - - - Planned Amt - - - Practical Amt - - - Perc(%) - - - -
- [[ repeatIn(funct(o,data['form']),'a') ]] - - - - [['.....' *(a['status']-1) ]][[ (a['status']==1 and (setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ a['name'] ]] - - - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['theo'], digits=get_digits(dp='Account'), currency_obj=company.currency_id) ]] - - - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['pln'], digits=get_digits(dp='Account'), currency_obj=company.currency_id) ]] - - - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['prac'], digits=get_digits(dp='Account'), currency_obj=company.currency_id) ]] - - - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['perc'], digits=2) ]]% - - - -
- - - - [[ repeatIn(funct_total(data['form']),'b') ]]Total: - - - [[ formatLang(b['tot_theo'], digits=get_digits(dp='Account'), currency_obj=company.currency_id) ]] - - - [[ formatLang(b['tot_pln'], digits=get_digits(dp='Account'), currency_obj=company.currency_id) ]] - - - [[ formatLang(b['tot_prac'], digits=get_digits(dp='Account'), currency_obj=company.currency_id) ]] - - - [[ formatLang(b['tot_perc'], digits=2) ]]% - - - - - - -
-
diff --git a/addons/account_budget/report/crossovered_budget_report.py b/addons/account_budget/report/crossovered_budget_report.py index 70cbdecb713..8a001aafb39 100644 --- a/addons/account_budget/report/crossovered_budget_report.py +++ b/addons/account_budget/report/crossovered_budget_report.py @@ -20,11 +20,9 @@ ############################################################################## import time -import datetime - +from openerp.osv import osv from openerp.report import report_sxw -import operator -from openerp import osv + class budget_report(report_sxw.rml_parse): def __init__(self, cr, uid, name, context): @@ -191,7 +189,11 @@ class budget_report(report_sxw.rml_parse): result.append(res) return result -report_sxw.report_sxw('report.crossovered.budget.report', 'crossovered.budget', 'addons/account_budget/report/crossovered_budget_report.rml',parser=budget_report,header='internal') + +class report_crossoveredbudget(osv.AbstractModel): + _name = 'report.account_budget.report_crossoveredbudget' + _inherit = 'report.abstract_report' + _template = 'account_budget.report_crossoveredbudget' + _wrapped_report_class = budget_report # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/account_budget/report/crossovered_budget_report.rml b/addons/account_budget/report/crossovered_budget_report.rml deleted file mode 100644 index a63920a4c9f..00000000000 --- a/addons/account_budget/report/crossovered_budget_report.rml +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ repeatIn(objects,'o') ]] - Budget - - - - - - - Analysis from - - - Budget - - - Currency - - - - - - - [[ formatLang(data['form']['date_from'],date=True) ]] to [[ formatLang(data['form']['date_to'],date=True) ]] - - - [[ o.name ]] - - - [[ company.currency_id.name ]] - - - - - - - - - - Description - - - Theoretical Amt - - - Planned Amt - - - Practical Amt - - - Perc(%) - - - -
- [[ repeatIn(funct(o,data['form']),'a') ]] - - - - [['.....' *(a['status']-1) ]][[ (a['status']==1 and (setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ a['name'] ]] - - - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['theo'], dp='Account', currency_obj=company.currency_id) ]] - - - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['pln'], dp='Account', currency_obj=company.currency_id) ]] - - - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['prac'], dp='Account', currency_obj=company.currency_id) ]] - - - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['perc'],digits=2) ]]% - - - -
- - - - [[ repeatIn(funct_total(data['form']),'b') ]] Total : - - - [[ formatLang(b['tot_theo'], dp='Account', currency_obj=company.currency_id) ]] - - - [[ formatLang(b['tot_pln'], dp='Account', currency_obj=company.currency_id) ]] - - - [[ formatLang(b['tot_prac'], dp='Account', currency_obj=company.currency_id) ]] - - - [[ formatLang(b['tot_perc'],digits=2) ]]% - - - - - - -
-
diff --git a/addons/account_budget/test/account_budget_report.yml b/addons/account_budget/test/account_budget_report.yml index 80ab9b36b34..a36c2d87d04 100644 --- a/addons/account_budget/test/account_budget_report.yml +++ b/addons/account_budget/test/account_budget_report.yml @@ -2,35 +2,22 @@ Print the Analytic Budget Report through wizard - !python {model: account.analytic.account}: | - import os, time - from openerp import netsvc, tools - ctx={} - ctx.update({'model': 'account.analytic.account','active_ids': [ref('account.analytic_root')]}) - data_dict = {} + ctx = {'model': 'account.analytic.account','active_ids': [ref('account.analytic_root')]} from openerp.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') + test_reports.try_report_action(cr, uid, 'action_account_budget_analytic',wiz_data={}, context=ctx, our_module='account_budget') - Print the Budget Report through wizard - !python {model: account.budget.post}: | - import os, time - from openerp import netsvc, tools - ctx={} - ctx.update({'model': 'account.budget.post','active_ids': [ref('account_budget.account_budget_post_sales0')]}) - data_dict = {} + ctx = {'model': 'account.budget.post','active_ids': [ref('account_budget.account_budget_post_sales0')]} from openerp.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') + test_reports.try_report_action(cr, uid, 'action_account_budget_report',wiz_data={}, context=ctx, our_module='account_budget') - Print the CrossOvered Budget Report mode through wizard - !python {model: crossovered.budget}: | - import os, time - from openerp import netsvc, tools - ctx={} - ctx.update({'model': 'account.budget.post','active_ids': [ref('account_budget.crossovered_budget_budgetoptimistic0')]}) - data_dict = {} + ctx = {'model': 'account.budget.post','active_ids': [ref('account_budget.crossovered_budget_budgetoptimistic0')]} from openerp.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') - + test_reports.try_report_action(cr, uid, 'action_account_budget_crossvered_report',wiz_data={}, context=ctx, our_module='account_budget') diff --git a/addons/account_budget/views/report_analyticaccountbudget.xml b/addons/account_budget/views/report_analyticaccountbudget.xml new file mode 100644 index 00000000000..dab987d6099 --- /dev/null +++ b/addons/account_budget/views/report_analyticaccountbudget.xml @@ -0,0 +1,69 @@ + + + + + + \ No newline at end of file diff --git a/addons/account_budget/views/report_budget.xml b/addons/account_budget/views/report_budget.xml new file mode 100644 index 00000000000..6bc72fc9dca --- /dev/null +++ b/addons/account_budget/views/report_budget.xml @@ -0,0 +1,77 @@ + + + + + + diff --git a/addons/account_budget/views/report_crossoveredbudget.xml b/addons/account_budget/views/report_crossoveredbudget.xml new file mode 100644 index 00000000000..412c2aac8ed --- /dev/null +++ b/addons/account_budget/views/report_crossoveredbudget.xml @@ -0,0 +1,81 @@ + + + + + + diff --git a/addons/account_budget/wizard/account_budget_analytic.py b/addons/account_budget/wizard/account_budget_analytic.py index 90285b90d1e..a58b804ebbf 100644 --- a/addons/account_budget/wizard/account_budget_analytic.py +++ b/addons/account_budget/wizard/account_budget_analytic.py @@ -1,4 +1,4 @@ -# -*- coding: utf-8 -*- + # -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution @@ -18,10 +18,11 @@ # along with this program. If not, see . # ############################################################################## -import time +import time from openerp.osv import fields, osv + class account_budget_analytic(osv.osv_memory): _name = 'account.budget.analytic' @@ -30,7 +31,7 @@ class account_budget_analytic(osv.osv_memory): 'date_from': fields.date('Start of period', required=True), 'date_to': fields.date('End of period', required=True), } - _defaults= { + _defaults = { 'date_from': lambda *a: time.strftime('%Y-01-01'), 'date_to': lambda *a: time.strftime('%Y-%m-%d'), } @@ -40,15 +41,11 @@ class account_budget_analytic(osv.osv_memory): context = {} data = self.read(cr, uid, ids, context=context)[0] datas = { - 'ids': context.get('active_ids',[]), - 'model': 'account.analytic.account', - 'form': data + 'ids': context.get('active_ids', []), + 'model': 'account.analytic.account', + 'form': data } - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'account.analytic.account.budget', - 'datas': datas, - } - + datas['form']['ids'] = datas['ids'] + return self.pool['report'].get_action(cr, uid, ids, 'account_budget.report_analyticaccountbudget', data=datas, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_budget/wizard/account_budget_crossovered_report.py b/addons/account_budget/wizard/account_budget_crossovered_report.py index 6f89a3cd95c..96561df5af0 100644 --- a/addons/account_budget/wizard/account_budget_crossovered_report.py +++ b/addons/account_budget/wizard/account_budget_crossovered_report.py @@ -18,10 +18,11 @@ # along with this program. If not, see . # ############################################################################## -import time +import time from openerp.osv import fields, osv + class account_budget_crossvered_report(osv.osv_memory): _name = "account.budget.crossvered.report" @@ -40,16 +41,12 @@ class account_budget_crossvered_report(osv.osv_memory): context = {} data = self.read(cr, uid, ids, context=context)[0] datas = { - 'ids': context.get('active_ids',[]), - 'model': 'crossovered.budget', - 'form': data + 'ids': context.get('active_ids', []), + 'model': 'crossovered.budget', + 'form': data } + datas['form']['ids'] = datas['ids'] datas['form']['report'] = 'analytic-full' - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'crossovered.budget.report', - 'datas': datas, - } - + return self.pool['report'].get_action(cr, uid, ids, 'account_budget.report_crossoveredbudget', data=datas, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_budget/wizard/account_budget_crossovered_summary_report.py b/addons/account_budget/wizard/account_budget_crossovered_summary_report.py index 6e3131b584c..6b676ecc684 100644 --- a/addons/account_budget/wizard/account_budget_crossovered_summary_report.py +++ b/addons/account_budget/wizard/account_budget_crossovered_summary_report.py @@ -18,10 +18,11 @@ # along with this program. If not, see . # ############################################################################## -import time +import time from openerp.osv import fields, osv + class account_budget_crossvered_summary_report(osv.osv_memory): """ This wizard provides the crossovered budget summary report' @@ -32,7 +33,7 @@ class account_budget_crossvered_summary_report(osv.osv_memory): 'date_from': fields.date('Start of period', required=True), 'date_to': fields.date('End of period', required=True), } - _defaults= { + _defaults = { 'date_from': lambda *a: time.strftime('%Y-01-01'), 'date_to': lambda *a: time.strftime('%Y-%m-%d'), } @@ -42,17 +43,12 @@ class account_budget_crossvered_summary_report(osv.osv_memory): context = {} data = self.read(cr, uid, ids, context=context)[0] datas = { - 'ids': context.get('active_ids',[]), - 'model': 'crossovered.budge', - 'form': data + 'ids': context.get('active_ids',[]), + 'model': 'crossovered.budge', + 'form': data } + datas['form']['ids'] = datas['ids'] datas['form']['report'] = 'analytic-one' - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'crossovered.budget.report', - 'datas': datas, - } - + return self.pool['report'].get_action(cr, uid, ids, 'account_budget.report_crossoveredbudget', data=datas, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/account_budget/wizard/account_budget_report.py b/addons/account_budget/wizard/account_budget_report.py index 54c3180ee0d..2308b5ff9ac 100644 --- a/addons/account_budget/wizard/account_budget_report.py +++ b/addons/account_budget/wizard/account_budget_report.py @@ -18,8 +18,8 @@ # along with this program. If not, see . # ############################################################################## -import time +import time from openerp.osv import fields, osv @@ -31,7 +31,7 @@ class account_budget_report(osv.osv_memory): 'date_from': fields.date('Start of period', required=True), 'date_to': fields.date('End of period', required=True), } - _defaults= { + _defaults = { 'date_from': lambda *a: time.strftime('%Y-01-01'), 'date_to': lambda *a: time.strftime('%Y-%m-%d'), } @@ -41,16 +41,12 @@ class account_budget_report(osv.osv_memory): context = {} data = self.read(cr, uid, ids, context=context)[0] datas = { - 'ids': context.get('active_ids',[]), - 'model': 'account.budget.post', - 'form': data + 'ids': context.get('active_ids', []), + 'model': 'account.budget.post', + 'form': data } - datas['form']['report']='analytic-full' - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'account.budget', - 'datas': datas, - } - + datas['form']['ids'] = datas['ids'] + datas['form']['report'] = 'analytic-full' + return self.pool['report'].get_action(cr, uid, ids, 'account_budget.report_budget', data=datas, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_cancel/i18n/ar.po b/addons/account_cancel/i18n/ar.po index b15f318488f..74c72d11d44 100644 --- a/addons/account_cancel/i18n/ar.po +++ b/addons/account_cancel/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bg.po b/addons/account_cancel/i18n/bg.po index b187bfa3e68..062c75477d3 100644 --- a/addons/account_cancel/i18n/bg.po +++ b/addons/account_cancel/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bn.po b/addons/account_cancel/i18n/bn.po index 2d3edb93c34..5e0ad3ae845 100644 --- a/addons/account_cancel/i18n/bn.po +++ b/addons/account_cancel/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/br.po b/addons/account_cancel/i18n/br.po index b674f9d277f..51f3b2271a2 100644 --- a/addons/account_cancel/i18n/br.po +++ b/addons/account_cancel/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bs.po b/addons/account_cancel/i18n/bs.po index a8f1302133e..b7b516f193d 100644 --- a/addons/account_cancel/i18n/bs.po +++ b/addons/account_cancel/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ca.po b/addons/account_cancel/i18n/ca.po index d68102810cd..e629b0081e9 100644 --- a/addons/account_cancel/i18n/ca.po +++ b/addons/account_cancel/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/cs.po b/addons/account_cancel/i18n/cs.po index 4bcc97ab9f3..c5af92a5c81 100644 --- a/addons/account_cancel/i18n/cs.po +++ b/addons/account_cancel/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/da.po b/addons/account_cancel/i18n/da.po index ab4a808963a..ae1b00138e7 100644 --- a/addons/account_cancel/i18n/da.po +++ b/addons/account_cancel/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/de.po b/addons/account_cancel/i18n/de.po index 60357e405f3..c1da3690fab 100644 --- a/addons/account_cancel/i18n/de.po +++ b/addons/account_cancel/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/el.po b/addons/account_cancel/i18n/el.po index a33f5be5baa..6ae53105f10 100644 --- a/addons/account_cancel/i18n/el.po +++ b/addons/account_cancel/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/en_GB.po b/addons/account_cancel/i18n/en_GB.po index 4e3e6e73416..392e39400b5 100644 --- a/addons/account_cancel/i18n/en_GB.po +++ b/addons/account_cancel/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es.po b/addons/account_cancel/i18n/es.po index 6ae0b0ea550..00458fe3835 100644 --- a/addons/account_cancel/i18n/es.po +++ b/addons/account_cancel/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_CL.po b/addons/account_cancel/i18n/es_CL.po index 30a7dd23877..6a040a3c71c 100644 --- a/addons/account_cancel/i18n/es_CL.po +++ b/addons/account_cancel/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_CR.po b/addons/account_cancel/i18n/es_CR.po index 12ede14b4e9..46f0a6e6104 100644 --- a/addons/account_cancel/i18n/es_CR.po +++ b/addons/account_cancel/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/es_EC.po b/addons/account_cancel/i18n/es_EC.po index 7bfc48ba11e..713f3a39c1a 100644 --- a/addons/account_cancel/i18n/es_EC.po +++ b/addons/account_cancel/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_MX.po b/addons/account_cancel/i18n/es_MX.po index fa8bee31c9e..0693b6a2c38 100644 --- a/addons/account_cancel/i18n/es_MX.po +++ b/addons/account_cancel/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_PY.po b/addons/account_cancel/i18n/es_PY.po index 7691445a166..ad21c62302e 100644 --- a/addons/account_cancel/i18n/es_PY.po +++ b/addons/account_cancel/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/et.po b/addons/account_cancel/i18n/et.po index 26e2381002f..0b8486689a1 100644 --- a/addons/account_cancel/i18n/et.po +++ b/addons/account_cancel/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fa.po b/addons/account_cancel/i18n/fa.po index ebc9dcf6d9a..6ffd112711d 100644 --- a/addons/account_cancel/i18n/fa.po +++ b/addons/account_cancel/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fi.po b/addons/account_cancel/i18n/fi.po index fa8c399ad77..eac98a8654d 100644 --- a/addons/account_cancel/i18n/fi.po +++ b/addons/account_cancel/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fr.po b/addons/account_cancel/i18n/fr.po index 5a66060cd9c..0d9a39c3d7e 100644 --- a/addons/account_cancel/i18n/fr.po +++ b/addons/account_cancel/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/gl.po b/addons/account_cancel/i18n/gl.po index c4a29c2baa3..a67b2f62ac4 100644 --- a/addons/account_cancel/i18n/gl.po +++ b/addons/account_cancel/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/gu.po b/addons/account_cancel/i18n/gu.po index a2a7642e384..7d967d0a7d1 100644 --- a/addons/account_cancel/i18n/gu.po +++ b/addons/account_cancel/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/he.po b/addons/account_cancel/i18n/he.po index 3c2cbdaec9e..9f72823f9b6 100644 --- a/addons/account_cancel/i18n/he.po +++ b/addons/account_cancel/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hi.po b/addons/account_cancel/i18n/hi.po index 70ff77994a7..7b2a14fb834 100644 --- a/addons/account_cancel/i18n/hi.po +++ b/addons/account_cancel/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hr.po b/addons/account_cancel/i18n/hr.po index 9bac7a9b791..fcb99d7e669 100644 --- a/addons/account_cancel/i18n/hr.po +++ b/addons/account_cancel/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hu.po b/addons/account_cancel/i18n/hu.po index 83cf42f3a3f..2c6dc04215f 100644 --- a/addons/account_cancel/i18n/hu.po +++ b/addons/account_cancel/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/id.po b/addons/account_cancel/i18n/id.po index 0020211e82c..36ef3fcf740 100644 --- a/addons/account_cancel/i18n/id.po +++ b/addons/account_cancel/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/it.po b/addons/account_cancel/i18n/it.po index 0d83b854160..bb235e0d0af 100644 --- a/addons/account_cancel/i18n/it.po +++ b/addons/account_cancel/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ja.po b/addons/account_cancel/i18n/ja.po index 8ee0b4890c0..881d0e2335c 100644 --- a/addons/account_cancel/i18n/ja.po +++ b/addons/account_cancel/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/kk.po b/addons/account_cancel/i18n/kk.po index d04092b108d..8f2fc517083 100644 --- a/addons/account_cancel/i18n/kk.po +++ b/addons/account_cancel/i18n/kk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lo.po b/addons/account_cancel/i18n/lo.po index 09a1b76b706..f6d79aa43fd 100644 --- a/addons/account_cancel/i18n/lo.po +++ b/addons/account_cancel/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lt.po b/addons/account_cancel/i18n/lt.po index 3d4e8db27f6..ae74873f471 100644 --- a/addons/account_cancel/i18n/lt.po +++ b/addons/account_cancel/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lv.po b/addons/account_cancel/i18n/lv.po index 375c76994e4..34f8a7e673a 100644 --- a/addons/account_cancel/i18n/lv.po +++ b/addons/account_cancel/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/mk.po b/addons/account_cancel/i18n/mk.po index 7e5af0c22a8..5dc413b0b60 100644 --- a/addons/account_cancel/i18n/mk.po +++ b/addons/account_cancel/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/mn.po b/addons/account_cancel/i18n/mn.po index 3900af96f31..d806f86604b 100644 --- a/addons/account_cancel/i18n/mn.po +++ b/addons/account_cancel/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nb.po b/addons/account_cancel/i18n/nb.po index 703eaee4218..54fc1cc373e 100644 --- a/addons/account_cancel/i18n/nb.po +++ b/addons/account_cancel/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nl.po b/addons/account_cancel/i18n/nl.po index 8336c120b29..5fe8c9e59ab 100644 --- a/addons/account_cancel/i18n/nl.po +++ b/addons/account_cancel/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nl_BE.po b/addons/account_cancel/i18n/nl_BE.po index b98a5a867bd..3adb7961670 100644 --- a/addons/account_cancel/i18n/nl_BE.po +++ b/addons/account_cancel/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/oc.po b/addons/account_cancel/i18n/oc.po index 40c824e1230..b3e155137ad 100644 --- a/addons/account_cancel/i18n/oc.po +++ b/addons/account_cancel/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pl.po b/addons/account_cancel/i18n/pl.po index 3af1c87d2a3..0cca31f60f9 100644 --- a/addons/account_cancel/i18n/pl.po +++ b/addons/account_cancel/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pt.po b/addons/account_cancel/i18n/pt.po index ac346d6c8a0..ce0d3852099 100644 --- a/addons/account_cancel/i18n/pt.po +++ b/addons/account_cancel/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pt_BR.po b/addons/account_cancel/i18n/pt_BR.po index 0011a248a19..76f280a6c75 100644 --- a/addons/account_cancel/i18n/pt_BR.po +++ b/addons/account_cancel/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ro.po b/addons/account_cancel/i18n/ro.po index a164e7522f6..7402a1706a5 100644 --- a/addons/account_cancel/i18n/ro.po +++ b/addons/account_cancel/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ru.po b/addons/account_cancel/i18n/ru.po index 105f19d5849..6301a985b21 100644 --- a/addons/account_cancel/i18n/ru.po +++ b/addons/account_cancel/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sl.po b/addons/account_cancel/i18n/sl.po index cbb2fc2f52d..a1e6e82762a 100644 --- a/addons/account_cancel/i18n/sl.po +++ b/addons/account_cancel/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sq.po b/addons/account_cancel/i18n/sq.po index 03191fda874..7e5d38b6f3d 100644 --- a/addons/account_cancel/i18n/sq.po +++ b/addons/account_cancel/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sr.po b/addons/account_cancel/i18n/sr.po index e5884d435bb..008417bebe5 100644 --- a/addons/account_cancel/i18n/sr.po +++ b/addons/account_cancel/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sr@latin.po b/addons/account_cancel/i18n/sr@latin.po index bce5bdcf94a..bad5fa4f5a5 100644 --- a/addons/account_cancel/i18n/sr@latin.po +++ b/addons/account_cancel/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sv.po b/addons/account_cancel/i18n/sv.po index a7b0caef111..c7f0d0ed6c7 100644 --- a/addons/account_cancel/i18n/sv.po +++ b/addons/account_cancel/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ta.po b/addons/account_cancel/i18n/ta.po index 34ed95dbfd4..34a048a57bb 100644 --- a/addons/account_cancel/i18n/ta.po +++ b/addons/account_cancel/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/th.po b/addons/account_cancel/i18n/th.po index cb1142b1cb6..7da34e55ac3 100644 --- a/addons/account_cancel/i18n/th.po +++ b/addons/account_cancel/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/tr.po b/addons/account_cancel/i18n/tr.po index 3f793613bf0..108f8fda25e 100644 --- a/addons/account_cancel/i18n/tr.po +++ b/addons/account_cancel/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/uk.po b/addons/account_cancel/i18n/uk.po index 1d914153d6c..4d9d7bdfecd 100644 --- a/addons/account_cancel/i18n/uk.po +++ b/addons/account_cancel/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/vi.po b/addons/account_cancel/i18n/vi.po index 23f5a86c108..24625ca10f7 100644 --- a/addons/account_cancel/i18n/vi.po +++ b/addons/account_cancel/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/zh_CN.po b/addons/account_cancel/i18n/zh_CN.po index 38635cafac6..9bf0fbfc1eb 100644 --- a/addons/account_cancel/i18n/zh_CN.po +++ b/addons/account_cancel/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/zh_TW.po b/addons/account_cancel/i18n/zh_TW.po index 1929fbeb677..02c352f6395 100644 --- a/addons/account_cancel/i18n/zh_TW.po +++ b/addons/account_cancel/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:35+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_chart/i18n/ar.po b/addons/account_chart/i18n/ar.po index 571a2d3c7b0..de66618a5cb 100644 --- a/addons/account_chart/i18n/ar.po +++ b/addons/account_chart/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/bg.po b/addons/account_chart/i18n/bg.po index 82bda893df0..a8620a67e64 100644 --- a/addons/account_chart/i18n/bg.po +++ b/addons/account_chart/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/bs.po b/addons/account_chart/i18n/bs.po index 36fb6485b61..a39019069bc 100644 --- a/addons/account_chart/i18n/bs.po +++ b/addons/account_chart/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ca.po b/addons/account_chart/i18n/ca.po index 6534db475bc..329412d4c25 100644 --- a/addons/account_chart/i18n/ca.po +++ b/addons/account_chart/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/cs.po b/addons/account_chart/i18n/cs.po index 295e4ee18b7..ee6a229fbbc 100644 --- a/addons/account_chart/i18n/cs.po +++ b/addons/account_chart/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/da.po b/addons/account_chart/i18n/da.po index c9592f1e704..fc1aa13c2d7 100644 --- a/addons/account_chart/i18n/da.po +++ b/addons/account_chart/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/de.po b/addons/account_chart/i18n/de.po index ccb45a0bbdd..fcdc69f9d6c 100644 --- a/addons/account_chart/i18n/de.po +++ b/addons/account_chart/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/el.po b/addons/account_chart/i18n/el.po index d9ee4606f49..679c745bf46 100644 --- a/addons/account_chart/i18n/el.po +++ b/addons/account_chart/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/en_GB.po b/addons/account_chart/i18n/en_GB.po index 6af4d5cd7b9..5003f98e73b 100644 --- a/addons/account_chart/i18n/en_GB.po +++ b/addons/account_chart/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es.po b/addons/account_chart/i18n/es.po index 19318407ffc..3478dfb2660 100644 --- a/addons/account_chart/i18n/es.po +++ b/addons/account_chart/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_AR.po b/addons/account_chart/i18n/es_AR.po index 4895230f091..22ed9ce29f4 100644 --- a/addons/account_chart/i18n/es_AR.po +++ b/addons/account_chart/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_CL.po b/addons/account_chart/i18n/es_CL.po index 0af5f8e5441..29dc1caddb5 100644 --- a/addons/account_chart/i18n/es_CL.po +++ b/addons/account_chart/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_CR.po b/addons/account_chart/i18n/es_CR.po index e1b5933150a..8fc5b41c29d 100644 --- a/addons/account_chart/i18n/es_CR.po +++ b/addons/account_chart/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: account_chart diff --git a/addons/account_chart/i18n/es_EC.po b/addons/account_chart/i18n/es_EC.po index 988c861f360..307f7c11be0 100644 --- a/addons/account_chart/i18n/es_EC.po +++ b/addons/account_chart/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_MX.po b/addons/account_chart/i18n/es_MX.po index 28d90389149..114af968f92 100644 --- a/addons/account_chart/i18n/es_MX.po +++ b/addons/account_chart/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_PY.po b/addons/account_chart/i18n/es_PY.po index f5a2ec8599d..0c78cd5cf97 100644 --- a/addons/account_chart/i18n/es_PY.po +++ b/addons/account_chart/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/et.po b/addons/account_chart/i18n/et.po index e51502a011b..4332bd94484 100644 --- a/addons/account_chart/i18n/et.po +++ b/addons/account_chart/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/eu.po b/addons/account_chart/i18n/eu.po index 6f3e0501211..477337d358b 100644 --- a/addons/account_chart/i18n/eu.po +++ b/addons/account_chart/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fa.po b/addons/account_chart/i18n/fa.po index 6a8b133206d..b8748292725 100644 --- a/addons/account_chart/i18n/fa.po +++ b/addons/account_chart/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fi.po b/addons/account_chart/i18n/fi.po index 47a02ebd6e7..4497535d6ec 100644 --- a/addons/account_chart/i18n/fi.po +++ b/addons/account_chart/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fr.po b/addons/account_chart/i18n/fr.po index 375c884ac19..14db1333a3d 100644 --- a/addons/account_chart/i18n/fr.po +++ b/addons/account_chart/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/gl.po b/addons/account_chart/i18n/gl.po index 67ac19267e0..bbc1458966a 100644 --- a/addons/account_chart/i18n/gl.po +++ b/addons/account_chart/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/gu.po b/addons/account_chart/i18n/gu.po index 578f726300d..8affef751b1 100644 --- a/addons/account_chart/i18n/gu.po +++ b/addons/account_chart/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hi.po b/addons/account_chart/i18n/hi.po index e46e4a3c86c..f0a0b03f248 100644 --- a/addons/account_chart/i18n/hi.po +++ b/addons/account_chart/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hr.po b/addons/account_chart/i18n/hr.po index 5c829a5b273..dd4bb28fb05 100644 --- a/addons/account_chart/i18n/hr.po +++ b/addons/account_chart/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hu.po b/addons/account_chart/i18n/hu.po index bd874508a00..b0afdffbf57 100644 --- a/addons/account_chart/i18n/hu.po +++ b/addons/account_chart/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/id.po b/addons/account_chart/i18n/id.po index 598aa7963a4..2eb44941aaf 100644 --- a/addons/account_chart/i18n/id.po +++ b/addons/account_chart/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/it.po b/addons/account_chart/i18n/it.po index 9d6c84fa412..b4235160d00 100644 --- a/addons/account_chart/i18n/it.po +++ b/addons/account_chart/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ja.po b/addons/account_chart/i18n/ja.po index 60214be5392..5e51fa2d112 100644 --- a/addons/account_chart/i18n/ja.po +++ b/addons/account_chart/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ko.po b/addons/account_chart/i18n/ko.po index 43e08c883e9..54f7de87f37 100644 --- a/addons/account_chart/i18n/ko.po +++ b/addons/account_chart/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lo.po b/addons/account_chart/i18n/lo.po index cfe9c000940..8dfb5f641c2 100644 --- a/addons/account_chart/i18n/lo.po +++ b/addons/account_chart/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lt.po b/addons/account_chart/i18n/lt.po index ac3fff33ba9..99c9f1c8032 100644 --- a/addons/account_chart/i18n/lt.po +++ b/addons/account_chart/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lv.po b/addons/account_chart/i18n/lv.po index fe97dd57880..508d317f54f 100644 --- a/addons/account_chart/i18n/lv.po +++ b/addons/account_chart/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/mk.po b/addons/account_chart/i18n/mk.po index 9af61097b5b..7c86acbc6ad 100644 --- a/addons/account_chart/i18n/mk.po +++ b/addons/account_chart/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/mn.po b/addons/account_chart/i18n/mn.po index 8dd151416d9..30760637d09 100644 --- a/addons/account_chart/i18n/mn.po +++ b/addons/account_chart/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nb.po b/addons/account_chart/i18n/nb.po index 0033482ecc5..04dacd05418 100644 --- a/addons/account_chart/i18n/nb.po +++ b/addons/account_chart/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nl.po b/addons/account_chart/i18n/nl.po index d526d527b38..a6700ad8598 100644 --- a/addons/account_chart/i18n/nl.po +++ b/addons/account_chart/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nl_BE.po b/addons/account_chart/i18n/nl_BE.po index 2d0b6fd9cbe..ae09172c212 100644 --- a/addons/account_chart/i18n/nl_BE.po +++ b/addons/account_chart/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/oc.po b/addons/account_chart/i18n/oc.po index 64756c79e9a..5efcff72721 100644 --- a/addons/account_chart/i18n/oc.po +++ b/addons/account_chart/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pl.po b/addons/account_chart/i18n/pl.po index f609a8642fa..13dbe876c8b 100644 --- a/addons/account_chart/i18n/pl.po +++ b/addons/account_chart/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pt.po b/addons/account_chart/i18n/pt.po index d8e6f7d3adf..6389490fb56 100644 --- a/addons/account_chart/i18n/pt.po +++ b/addons/account_chart/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pt_BR.po b/addons/account_chart/i18n/pt_BR.po index 5d8f35b3133..6580eae82e0 100644 --- a/addons/account_chart/i18n/pt_BR.po +++ b/addons/account_chart/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ro.po b/addons/account_chart/i18n/ro.po index 0d9ec9f32fd..c6b108a7d82 100644 --- a/addons/account_chart/i18n/ro.po +++ b/addons/account_chart/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ru.po b/addons/account_chart/i18n/ru.po index c0c1b3e6a81..c3db4c27163 100644 --- a/addons/account_chart/i18n/ru.po +++ b/addons/account_chart/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sk.po b/addons/account_chart/i18n/sk.po index 621527ad95c..da85458b1b8 100644 --- a/addons/account_chart/i18n/sk.po +++ b/addons/account_chart/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sl.po b/addons/account_chart/i18n/sl.po index 47b80459e8f..3a1f432b2f3 100644 --- a/addons/account_chart/i18n/sl.po +++ b/addons/account_chart/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sq.po b/addons/account_chart/i18n/sq.po index a508a30e847..90338a12701 100644 --- a/addons/account_chart/i18n/sq.po +++ b/addons/account_chart/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sr.po b/addons/account_chart/i18n/sr.po index 6e571e5bbf6..3fc5fff0f59 100644 --- a/addons/account_chart/i18n/sr.po +++ b/addons/account_chart/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sr@latin.po b/addons/account_chart/i18n/sr@latin.po index df64e13c8a4..b1303880a14 100644 --- a/addons/account_chart/i18n/sr@latin.po +++ b/addons/account_chart/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sv.po b/addons/account_chart/i18n/sv.po index c2dab697487..39466bfa3c8 100644 --- a/addons/account_chart/i18n/sv.po +++ b/addons/account_chart/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ta.po b/addons/account_chart/i18n/ta.po index bb2d9ae2f2d..fd2bc860ff7 100644 --- a/addons/account_chart/i18n/ta.po +++ b/addons/account_chart/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/th.po b/addons/account_chart/i18n/th.po index 3b5e4293a0f..f3c7b0076fb 100644 --- a/addons/account_chart/i18n/th.po +++ b/addons/account_chart/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/tr.po b/addons/account_chart/i18n/tr.po index d3d6c1d2ce2..ecb98a3fd7c 100644 --- a/addons/account_chart/i18n/tr.po +++ b/addons/account_chart/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/uk.po b/addons/account_chart/i18n/uk.po index 855affeac0d..10a34359c64 100644 --- a/addons/account_chart/i18n/uk.po +++ b/addons/account_chart/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/vi.po b/addons/account_chart/i18n/vi.po index d9d822390d5..3e825759f75 100644 --- a/addons/account_chart/i18n/vi.po +++ b/addons/account_chart/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/zh_CN.po b/addons/account_chart/i18n/zh_CN.po index adf2b5063d8..1131cabd151 100644 --- a/addons/account_chart/i18n/zh_CN.po +++ b/addons/account_chart/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/zh_TW.po b/addons/account_chart/i18n/zh_TW.po index c9d1c2c327e..cbc3956ec4a 100644 --- a/addons/account_chart/i18n/zh_TW.po +++ b/addons/account_chart/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_check_writing/__openerp__.py b/addons/account_check_writing/__openerp__.py index e01c17d66a7..3311a7c03b3 100644 --- a/addons/account_check_writing/__openerp__.py +++ b/addons/account_check_writing/__openerp__.py @@ -31,10 +31,12 @@ Module for the Check Writing and Check Printing. 'depends' : ['account_voucher'], 'data': [ 'wizard/account_check_batch_printing_view.xml', - 'account_check_writing_report.xml', 'account_view.xml', 'account_voucher_view.xml', 'account_check_writing_data.xml', + 'data/report_paperformat.xml', + 'views/report_check.xml', + 'account_check_writing_report.xml', ], 'demo': ['account_demo.xml'], 'test': [], diff --git a/addons/account_check_writing/account_check_writing_report.xml b/addons/account_check_writing/account_check_writing_report.xml index eece4e4a5da..d32dd77bc8f 100644 --- a/addons/account_check_writing/account_check_writing_report.xml +++ b/addons/account_check_writing/account_check_writing_report.xml @@ -1,29 +1,17 @@ - + - - - - - + + + + diff --git a/addons/account_check_writing/account_voucher.py b/addons/account_check_writing/account_voucher.py index e4933708f7a..c3abe28eef0 100644 --- a/addons/account_check_writing/account_voucher.py +++ b/addons/account_check_writing/account_voucher.py @@ -41,6 +41,23 @@ class account_voucher(osv.osv): 'number': fields.char('Number', size=32), } + def _amount_to_text(self, cr, uid, amount, currency_id, context=None): + # Currency complete name is not available in res.currency model + # Exceptions done here (EUR, USD, BRL) cover 75% of cases + # For other currencies, display the currency code + currency = self.pool['res.currency'].browse(cr, uid, currency_id, context=context) + if currency.name.upper() == 'EUR': + currency_name = 'Euro' + elif currency.name.upper() == 'USD': + currency_name = 'Dollars' + elif currency.name.upper() == 'BRL': + currency_name = 'reais' + else: + currency_name = currency.name + #TODO : generic amount_to_text is not ready yet, otherwise language (and country) and currency can be passed + #amount_in_word = amount_to_text(amount, context=context) + return amount_to_text(amount, currency=currency_name) + def onchange_amount(self, cr, uid, ids, amount, rate, partner_id, journal_id, currency_id, ttype, date, payment_rate_currency_id, company_id, context=None): """ Inherited - add amount_in_word and allow_check_writting in returned value dictionary """ if not context: @@ -48,22 +65,7 @@ class account_voucher(osv.osv): default = super(account_voucher, self).onchange_amount(cr, uid, ids, amount, rate, partner_id, journal_id, currency_id, ttype, date, payment_rate_currency_id, company_id, context=context) if 'value' in default: amount = 'amount' in default['value'] and default['value']['amount'] or amount - - # Currency complete name is not available in res.currency model - # Exceptions done here (EUR, USD, BRL) cover 75% of cases - # For other currencies, display the currency code - currency = self.pool['res.currency'].browse(cr, uid, currency_id, context=context) - if currency.name.upper() == 'EUR': - currency_name = 'Euro' - elif currency.name.upper() == 'USD': - currency_name = 'Dollars' - elif currency.name.upper() == 'BRL': - currency_name = 'reais' - else: - currency_name = currency.name - #TODO : generic amount_to_text is not ready yet, otherwise language (and country) and currency can be passed - #amount_in_word = amount_to_text(amount, context=context) - amount_in_word = amount_to_text(amount, currency=currency_name) + amount_in_word = self._amount_to_text(cr, uid, amount, currency_id, context=context) default['value'].update({'amount_in_word':amount_in_word}) if journal_id: allow_check_writing = self.pool.get('account.journal').browse(cr, uid, journal_id, context=context).allow_check_writing @@ -92,6 +94,19 @@ class account_voucher(osv.osv): }, 'nodestroy': True } + def create(self, cr, uid, vals, context=None): + if vals.get('amount') and vals.get('journal_id') and 'amount_in_word' not in vals: + vals['amount_in_word'] = self._amount_to_text(cr, uid, vals['amount'], vals.get('currency_id') or \ + self.pool['account.journal'].browse(cr, uid, vals['journal_id'], context=context).currency.id or \ + self.pool['res.company'].browse(cr, uid, vals['company_id']).currency_id.id, context=context) + return super(account_voucher, self).create(cr, uid, vals, context=context) + + def write(self, cr, uid, ids, vals, context=None): + if vals.get('amount') and vals.get('journal_id') and 'amount_in_word' not in vals: + vals['amount_in_word'] = self._amount_to_text(cr, uid, vals['amount'], vals.get('currency_id') or \ + self.pool['account.journal'].browse(cr, uid, vals['journal_id'], context=context).currency.id or \ + self.pool['res.company'].browse(cr, uid, vals['company_id']).currency_id.id, context=context) + return super(account_voucher, self).write(cr, uid, ids, vals, context=context) def fields_view_get(self, cr, uid, view_id=None, view_type=False, context=None, toolbar=False, submenu=False): """ diff --git a/addons/account_check_writing/data/report_paperformat.xml b/addons/account_check_writing/data/report_paperformat.xml new file mode 100644 index 00000000000..3782b8bde40 --- /dev/null +++ b/addons/account_check_writing/data/report_paperformat.xml @@ -0,0 +1,20 @@ + + + + + French Bank Check + + custom + 80 + 175 + Portrait + 3 + 3 + 3 + 3 + + 3 + 80 + + + diff --git a/addons/account_check_writing/i18n/ar.po b/addons/account_check_writing/i18n/ar.po index 545d3ed5502..09919a4339e 100644 --- a/addons/account_check_writing/i18n/ar.po +++ b/addons/account_check_writing/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/bs.po b/addons/account_check_writing/i18n/bs.po index 0aca0268472..c4772bfdf8d 100644 --- a/addons/account_check_writing/i18n/bs.po +++ b/addons/account_check_writing/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/cs.po b/addons/account_check_writing/i18n/cs.po index c3b5d4ec86a..192b7944ffb 100644 --- a/addons/account_check_writing/i18n/cs.po +++ b/addons/account_check_writing/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/de.po b/addons/account_check_writing/i18n/de.po index 95df0f68ba6..6a79f9f1428 100644 --- a/addons/account_check_writing/i18n/de.po +++ b/addons/account_check_writing/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/en_GB.po b/addons/account_check_writing/i18n/en_GB.po index 6e5109d2b3d..646d5f29b7a 100644 --- a/addons/account_check_writing/i18n/en_GB.po +++ b/addons/account_check_writing/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es.po b/addons/account_check_writing/i18n/es.po index a752702be75..223c1d81443 100644 --- a/addons/account_check_writing/i18n/es.po +++ b/addons/account_check_writing/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_CR.po b/addons/account_check_writing/i18n/es_CR.po index 19251bff6f5..c1792494817 100644 --- a/addons/account_check_writing/i18n/es_CR.po +++ b/addons/account_check_writing/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_EC.po b/addons/account_check_writing/i18n/es_EC.po index 974c5145da1..36c529668f8 100644 --- a/addons/account_check_writing/i18n/es_EC.po +++ b/addons/account_check_writing/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_MX.po b/addons/account_check_writing/i18n/es_MX.po index a3ef8525694..8c22394b28e 100644 --- a/addons/account_check_writing/i18n/es_MX.po +++ b/addons/account_check_writing/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/fi.po b/addons/account_check_writing/i18n/fi.po index cd33f450cf3..300db155d4a 100644 --- a/addons/account_check_writing/i18n/fi.po +++ b/addons/account_check_writing/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/fr.po b/addons/account_check_writing/i18n/fr.po index 1eb0339a595..dd8e843c5da 100644 --- a/addons/account_check_writing/i18n/fr.po +++ b/addons/account_check_writing/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/gu.po b/addons/account_check_writing/i18n/gu.po index 9cc9a4913a6..f9be71a8ed3 100644 --- a/addons/account_check_writing/i18n/gu.po +++ b/addons/account_check_writing/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/hr.po b/addons/account_check_writing/i18n/hr.po index 53d52d9ed84..80c2b9238b7 100644 --- a/addons/account_check_writing/i18n/hr.po +++ b/addons/account_check_writing/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/hu.po b/addons/account_check_writing/i18n/hu.po index d8f226cf962..fa59d35a234 100644 --- a/addons/account_check_writing/i18n/hu.po +++ b/addons/account_check_writing/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ja.po b/addons/account_check_writing/i18n/ja.po index 592f9b6c8b9..3b80254bc88 100644 --- a/addons/account_check_writing/i18n/ja.po +++ b/addons/account_check_writing/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/lt.po b/addons/account_check_writing/i18n/lt.po index e39dfd3896c..154294e57c5 100644 --- a/addons/account_check_writing/i18n/lt.po +++ b/addons/account_check_writing/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/mk.po b/addons/account_check_writing/i18n/mk.po index e11237f5c79..a55214e6ed8 100644 --- a/addons/account_check_writing/i18n/mk.po +++ b/addons/account_check_writing/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/mn.po b/addons/account_check_writing/i18n/mn.po index 9588a3c2ba4..373029e0eea 100644 --- a/addons/account_check_writing/i18n/mn.po +++ b/addons/account_check_writing/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/nb.po b/addons/account_check_writing/i18n/nb.po index baeb34401a3..17496337cc8 100644 --- a/addons/account_check_writing/i18n/nb.po +++ b/addons/account_check_writing/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/nl.po b/addons/account_check_writing/i18n/nl.po index 6b8e662cb9d..ea84aff8aee 100644 --- a/addons/account_check_writing/i18n/nl.po +++ b/addons/account_check_writing/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -25,7 +25,7 @@ msgstr "Cheque boven" #. module: account_check_writing #: report:account.print.check.top:0 msgid "Open Balance" -msgstr "Open balans" +msgstr "Openstaand bedrag" #. module: account_check_writing #: view:account.check.write:0 diff --git a/addons/account_check_writing/i18n/pl.po b/addons/account_check_writing/i18n/pl.po index 3712c5fae36..6c7ede863e1 100644 --- a/addons/account_check_writing/i18n/pl.po +++ b/addons/account_check_writing/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/pt.po b/addons/account_check_writing/i18n/pt.po index f0caa6bc114..374d3bec319 100644 --- a/addons/account_check_writing/i18n/pt.po +++ b/addons/account_check_writing/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/pt_BR.po b/addons/account_check_writing/i18n/pt_BR.po index c1e455b8d01..d19ee0e2b17 100644 --- a/addons/account_check_writing/i18n/pt_BR.po +++ b/addons/account_check_writing/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ro.po b/addons/account_check_writing/i18n/ro.po index 75997d3c4ab..2b16e0084f3 100644 --- a/addons/account_check_writing/i18n/ro.po +++ b/addons/account_check_writing/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ru.po b/addons/account_check_writing/i18n/ru.po index 1620d2af5bb..35238e04b83 100644 --- a/addons/account_check_writing/i18n/ru.po +++ b/addons/account_check_writing/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sl.po b/addons/account_check_writing/i18n/sl.po index e99c8779351..a728510892a 100644 --- a/addons/account_check_writing/i18n/sl.po +++ b/addons/account_check_writing/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sr@latin.po b/addons/account_check_writing/i18n/sr@latin.po index 725e3799521..c697b64015a 100644 --- a/addons/account_check_writing/i18n/sr@latin.po +++ b/addons/account_check_writing/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sv.po b/addons/account_check_writing/i18n/sv.po index 497f1250694..dcabd9d71fc 100644 --- a/addons/account_check_writing/i18n/sv.po +++ b/addons/account_check_writing/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/tr.po b/addons/account_check_writing/i18n/tr.po index fbf358fe036..0a064f1721e 100644 --- a/addons/account_check_writing/i18n/tr.po +++ b/addons/account_check_writing/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/zh_CN.po b/addons/account_check_writing/i18n/zh_CN.po index b9a5f994f1c..63ec5095f1b 100644 --- a/addons/account_check_writing/i18n/zh_CN.po +++ b/addons/account_check_writing/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/zh_TW.po b/addons/account_check_writing/i18n/zh_TW.po index be42778d28c..20f1ef4fee4 100644 --- a/addons/account_check_writing/i18n/zh_TW.po +++ b/addons/account_check_writing/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:48+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:30+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/report/check_print.py b/addons/account_check_writing/report/check_print.py index add79fcc35a..be5feb4662b 100644 --- a/addons/account_check_writing/report/check_print.py +++ b/addons/account_check_writing/report/check_print.py @@ -20,8 +20,9 @@ ############################################################################## import time +from openerp.osv import osv from openerp.report import report_sxw -from openerp.tools import amount_to_text_en + class report_print_check(report_sxw.rml_parse): def __init__(self, cr, uid, name, context): @@ -33,13 +34,14 @@ class report_print_check(report_sxw.rml_parse): 'get_lines': self.get_lines, 'fill_stars' : self.fill_stars, }) + def fill_stars(self, amount): if len(amount) < 100: stars = 100 - len(amount) return ' '.join([amount,'*'*stars]) else: return amount - + def get_lines(self, voucher_lines): result = [] self.number_lines = len(voucher_lines) @@ -63,24 +65,11 @@ class report_print_check(report_sxw.rml_parse): result.append(res) return result -report_sxw.report_sxw( - 'report.account.print.check.top', - 'account.voucher', - 'addons/account_check_writing/report/check_print_top.rml', - parser=report_print_check,header=False -) -report_sxw.report_sxw( - 'report.account.print.check.middle', - 'account.voucher', - 'addons/account_check_writing/report/check_print_middle.rml', - parser=report_print_check,header=False -) +class report_check(osv.AbstractModel): + _name = 'report.account_check_writing.report_check' + _inherit = 'report.abstract_report' + _template = 'account_check_writing.report_check' + _wrapped_report_class = report_print_check -report_sxw.report_sxw( - 'report.account.print.check.bottom', - 'account.voucher', - 'addons/account_check_writing/report/check_print_bottom.rml', - parser=report_print_check,header=False -) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_check_writing/report/check_print_bottom.rml b/addons/account_check_writing/report/check_print_bottom.rml deleted file mode 100644 index f9add2fe60b..00000000000 --- a/addons/account_check_writing/report/check_print_bottom.rml +++ /dev/null @@ -1,318 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[repeatIn(objects,'voucher')]] - - - - - - - [[voucher.partner_id.name]] - - - [[ formatLang(voucher.date , date=True) or '' ]] [[ voucher.journal_id.use_preprint_check and voucher.chk_seq or '' ]] - - - - - - - Due Date - - - Description - - - Original Amount - - - Balance Due - - - Discount - - - Payment - - - - - [[ repeatIn(get_lines(voucher.line_dr_ids),'l') ]] [[ formatLang(l['date_original'] ,date=True) or '' ]] - - - [[ l['name'] ]] - - - [[formatLang( l['amount_original']) ]] - - - [[ formatLang( l['amount_due']) ]] - - - - - - - - [[ formatLang (l['amount']) ]] - - - - - - - Check Amount - - - [[ formatLang (voucher.amount) ]] - - - - - - - - - - - - - - - - [[voucher.partner_id.name]] - - - [[ formatLang(voucher.date , date=True) or '' ]] [[ voucher.journal_id.use_preprint_check and voucher.chk_seq or '' ]] - - - - - - - Due Date - - - Description - - - Original Amount - - - Balance Due - - - Discount - - - Payment - - - - - [[ repeatIn(get_lines(voucher.line_dr_ids),'l') ]] [[ formatLang(l['date_original'] ,date=True) or '' ]] - - - [[ l['name'] ]] - - - [[ formatLang (l['amount_original']) ]] - - - [[ formatLang (l['amount_due']) ]] - - - - - - - - [[ formatLang (l['amount']) ]] - - - - - - - Check Amount - - - [[ formatLang (voucher.amount) ]] - - - - - - - - - - - - - - - - - - - - - - - - [[ voucher.journal_id.use_preprint_check and voucher.chk_seq or '' ]] - - - - - - - - [[ formatLang(voucher.date , date=True) or '' ]] - - - [[ formatLang (voucher.amount) ]] - - - - - - - - - - - - [[ voucher.partner_id.name ]] - [[ display_address(voucher.partner_id) or removeParentNode('para') ]] - - - - - - - [[ fill_stars(voucher.amount_in_word) ]] - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/addons/account_check_writing/report/check_print_middle.rml b/addons/account_check_writing/report/check_print_middle.rml deleted file mode 100644 index b1fffca662d..00000000000 --- a/addons/account_check_writing/report/check_print_middle.rml +++ /dev/null @@ -1,356 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[repeatIn(objects,'voucher')]] - - - - - - - - - - [[ voucher.journal_id.use_preprint_check and voucher.chk_seq or '' ]] - - - - - [[voucher.partner_id.name]] - - - [[ formatLang(voucher.date , date=True) or '' ]] - - - - - - - Due Date - - - Description - - - Original Amount - - - Balance Due - - - Discount - - - Payment - - - - - [[ repeatIn(get_lines(voucher.line_dr_ids),'l') ]] [[ formatLang(l['date_original'] ,date=True) or '' ]] - - - [[ l['name'] ]] - - - [[formatLang( l['amount_original']) ]] - - - [[ formatLang( l['amount_due']) ]] - - - - - - - - [[ formatLang (l['amount']) ]] - - - - - - - Check Amount - - - [[ formatLang (voucher.amount) ]] - - - - - - - - - - - - - - - [[ voucher.journal_id.use_preprint_check and voucher.chk_seq or '' ]] - - - - - - - - - - - - - [[ str(fill_stars(voucher.amount_in_word)) ]] - - - - - - - - - - - - - - - - - - - - - - - - [[ formatLang(voucher.date , date=True) or '' ]] - - - [[ formatLang (voucher.amount) ]] - - - - - - - - - - - - [[ voucher.partner_id.name ]] - [[ display_address(voucher.partner_id) or removeParentNode('para') ]] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[voucher.partner_id.name]] - - - [[ formatLang(voucher.date , date=True) or '' ]] - - - [[ voucher.journal_id.use_preprint_check and voucher.chk_seq or '' ]] - - - - - - - Due Date - - - Description - - - Original Amount - - - Balance Due - - - Discount - - - Payment - - - - - [[ repeatIn(get_lines(voucher.line_dr_ids),'l') ]] [[ formatLang(l['date_original'] ,date=True) or '' ]] - - - [[ l['name'] ]] - - - [[ formatLang (l['amount_original']) ]] - - - [[ formatLang (l['amount_due']) ]] - - - - - - - - [[ formatLang (l['amount']) ]] - - - - - - - Check Amount - - - [[ formatLang (voucher.amount) ]] - - - - - - - - - - - - - - diff --git a/addons/account_check_writing/report/check_print_top.rml b/addons/account_check_writing/report/check_print_top.rml deleted file mode 100644 index 9a4d633e680..00000000000 --- a/addons/account_check_writing/report/check_print_top.rml +++ /dev/null @@ -1,336 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[repeatIn(objects,'voucher')]] - - - - - - - - - - - - - - - - - - - - - - - - [[ formatLang(voucher.date , date=True) or '' ]] [[ voucher.journal_id.use_preprint_check and voucher.chk_seq or '' ]] - - - - - - - - - - - - [[ voucher.partner_id.name ]] - - - [[ formatLang (voucher.amount) ]] - - - - - - - [[ fill_stars(voucher.amount_in_word) ]] - - - - - - - - - - [[ voucher.partner_id.name ]] - [[ display_address(voucher.partner_id) or removeParentNode('para') ]] - - - - - - - - - - - - - - - [[ voucher.name ]] - - - - - - - - - - - - - - - - - - - - - [[voucher.partner_id.name]] - - - [[ formatLang(voucher.date , date=True) or '' ]] [[ voucher.journal_id.use_preprint_check and voucher.chk_seq or '' ]] - - - - - - - Due Date - - - Description - - - Original Amount - - - Open Balance - - - Discount - - - Payment - - - - - [[ repeatIn(get_lines(voucher.line_dr_ids),'l') ]] [[ formatLang(l['date_due'] ,date=True) or '' ]] - - - [[ l['name'] ]] - - - [[formatLang( l['amount_original']) ]] - - - [[ formatLang( l['amount_unreconciled']) ]] - - - - - - - - [[ formatLang (l['amount']) ]] - - - - - - - Check Amount - - - [[ formatLang (voucher.amount) ]] - - - - - - - - - - - - - - - - [[voucher.partner_id.name]] - - - [[ formatLang(voucher.date , date=True) or '' ]] [[ voucher.journal_id.use_preprint_check and voucher.chk_seq or '' ]] - - - - - - - Due Date - - - Description - - - Original Amount - - - Open Balance - - - Discount - - - Payment - - - - - [[ repeatIn(get_lines(voucher.line_dr_ids),'l') ]] [[ formatLang(l['date_due'] ,date=True) or '' ]] - - - [[ l['name'] ]] - - - [[ formatLang (l['amount_original']) ]] - - - [[ formatLang (l['amount_unreconciled']) ]] - - - - - - - - [[ formatLang (l['amount']) ]] - - - - - - - Check Amount - - - [[ formatLang (voucher.amount) ]] - - - - - - - - - - - - - - diff --git a/addons/account_check_writing/views/report_check.xml b/addons/account_check_writing/views/report_check.xml new file mode 100644 index 00000000000..d740de1a0a4 --- /dev/null +++ b/addons/account_check_writing/views/report_check.xml @@ -0,0 +1,48 @@ + + + + + + diff --git a/addons/account_followup/__openerp__.py b/addons/account_followup/__openerp__.py index dbb4ea6583e..61e9ea2d4ae 100644 --- a/addons/account_followup/__openerp__.py +++ b/addons/account_followup/__openerp__.py @@ -55,11 +55,12 @@ Note that if you want to check the follow-up level for a given partner/account e 'account_followup_view.xml', 'account_followup_customers.xml', 'wizard/account_followup_print_view.xml', + 'views/report_followup.xml', + 'account_followup_reports.xml' ], 'demo': ['account_followup_demo.xml'], 'test': [ 'test/account_followup.yml', - #TODO 'test/account_followup_report.yml', --> Need to wait for second step in order to check report (expects after first) ], 'installable': True, 'auto_install': False, diff --git a/addons/account_followup/account_followup.py b/addons/account_followup/account_followup.py index 9237282ad80..eae361913ad 100644 --- a/addons/account_followup/account_followup.py +++ b/addons/account_followup/account_followup.py @@ -21,7 +21,6 @@ from openerp.osv import fields, osv from lxml import etree - from openerp.tools.translate import _ class followup(osv.osv): @@ -189,11 +188,7 @@ class res_partner(osv.osv): 'model': 'account_followup.followup', 'form': data } - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'account_followup.followup.print', - 'datas': datas, - } + return self.pool['report'].get_action(cr, uid, wizard_partner_ids, 'account_followup.report_followup', data=datas, context=context) def do_partner_mail(self, cr, uid, partner_ids, context=None): if context is None: @@ -274,6 +269,9 @@ class res_partner(osv.osv): strbegin = "" strend = "" followup_table +="" + strbegin + str(aml['date']) + strend + strbegin + aml['name'] + strend + strbegin + aml['ref'] + strend + strbegin + str(date) + strend + strbegin + str(aml['balance']) + strend + strbegin + block + strend + "" + + total = reduce(lambda x, y: x+y['balance'], currency_dict['line'], 0.00) + total = rml_parse.formatLang(total, dp='Account', currency_obj=currency) followup_table += ''' diff --git a/addons/account_followup/account_followup_reports.xml b/addons/account_followup/account_followup_reports.xml new file mode 100644 index 00000000000..16149a5fd47 --- /dev/null +++ b/addons/account_followup/account_followup_reports.xml @@ -0,0 +1,14 @@ + + + + + + diff --git a/addons/account_followup/account_followup_view.xml b/addons/account_followup/account_followup_view.xml index e233feb489e..57f71566db0 100644 --- a/addons/account_followup/account_followup_view.xml +++ b/addons/account_followup/account_followup_view.xml @@ -132,7 +132,6 @@ id="menu_manual_reconcile_followup"/> - account.move.line.partner.tree diff --git a/addons/account_followup/i18n/ar.po b/addons/account_followup/i18n/ar.po index 95f3def5564..c7b057c0476 100644 --- a/addons/account_followup/i18n/ar.po +++ b/addons/account_followup/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/bg.po b/addons/account_followup/i18n/bg.po index eda20e63ed5..dddcc4ce5c1 100644 --- a/addons/account_followup/i18n/bg.po +++ b/addons/account_followup/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/bs.po b/addons/account_followup/i18n/bs.po index db9c64c9637..1d0df610eb0 100644 --- a/addons/account_followup/i18n/bs.po +++ b/addons/account_followup/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ca.po b/addons/account_followup/i18n/ca.po index b2ccad13c86..cdf78df2f19 100644 --- a/addons/account_followup/i18n/ca.po +++ b/addons/account_followup/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/cs.po b/addons/account_followup/i18n/cs.po index 2d5efefd707..07ae2869f57 100644 --- a/addons/account_followup/i18n/cs.po +++ b/addons/account_followup/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/da.po b/addons/account_followup/i18n/da.po index 562dd82b08f..730623589e9 100644 --- a/addons/account_followup/i18n/da.po +++ b/addons/account_followup/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/de.po b/addons/account_followup/i18n/de.po index be742ac8202..a51cf09ab7b 100644 --- a/addons/account_followup/i18n/de.po +++ b/addons/account_followup/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/el.po b/addons/account_followup/i18n/el.po index 7cfe57ce026..8731220ec95 100644 --- a/addons/account_followup/i18n/el.po +++ b/addons/account_followup/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/en_GB.po b/addons/account_followup/i18n/en_GB.po index d519052cd91..ab0a429cc45 100644 --- a/addons/account_followup/i18n/en_GB.po +++ b/addons/account_followup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es.po b/addons/account_followup/i18n/es.po index e2f60ac2f46..a984f00c135 100644 --- a/addons/account_followup/i18n/es.po +++ b/addons/account_followup/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_AR.po b/addons/account_followup/i18n/es_AR.po index 187edfb5c20..97aa0c77387 100644 --- a/addons/account_followup/i18n/es_AR.po +++ b/addons/account_followup/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_CR.po b/addons/account_followup/i18n/es_CR.po index 7c01bfbff29..67f8cda0849 100644 --- a/addons/account_followup/i18n/es_CR.po +++ b/addons/account_followup/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: account_followup diff --git a/addons/account_followup/i18n/es_EC.po b/addons/account_followup/i18n/es_EC.po index 3693513bd95..9b12f15fa7d 100644 --- a/addons/account_followup/i18n/es_EC.po +++ b/addons/account_followup/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_PY.po b/addons/account_followup/i18n/es_PY.po index 55ed10d3dcd..939eddab6e8 100644 --- a/addons/account_followup/i18n/es_PY.po +++ b/addons/account_followup/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/et.po b/addons/account_followup/i18n/et.po index df292c5d176..599e2f24937 100644 --- a/addons/account_followup/i18n/et.po +++ b/addons/account_followup/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/fa.po b/addons/account_followup/i18n/fa.po index 829fa58c306..a8ee91b955c 100644 --- a/addons/account_followup/i18n/fa.po +++ b/addons/account_followup/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/fi.po b/addons/account_followup/i18n/fi.po index cb46285939d..8bcf1785633 100644 --- a/addons/account_followup/i18n/fi.po +++ b/addons/account_followup/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/fr.po b/addons/account_followup/i18n/fr.po index 7c0658521be..40b7e07b011 100644 --- a/addons/account_followup/i18n/fr.po +++ b/addons/account_followup/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/gl.po b/addons/account_followup/i18n/gl.po index 19e58e083d3..e8b2ccb90e3 100644 --- a/addons/account_followup/i18n/gl.po +++ b/addons/account_followup/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/hr.po b/addons/account_followup/i18n/hr.po index 5740d500ae3..7fa2700e68b 100644 --- a/addons/account_followup/i18n/hr.po +++ b/addons/account_followup/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/hu.po b/addons/account_followup/i18n/hu.po index 9d59334bfd5..ce5357df815 100644 --- a/addons/account_followup/i18n/hu.po +++ b/addons/account_followup/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/id.po b/addons/account_followup/i18n/id.po index 460a253d7bd..41ff65c6a0d 100644 --- a/addons/account_followup/i18n/id.po +++ b/addons/account_followup/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/it.po b/addons/account_followup/i18n/it.po index 31e77405ce1..39bbbea8bb0 100644 --- a/addons/account_followup/i18n/it.po +++ b/addons/account_followup/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ja.po b/addons/account_followup/i18n/ja.po index 077b9ac843c..4c9b3b5f0b5 100644 --- a/addons/account_followup/i18n/ja.po +++ b/addons/account_followup/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ko.po b/addons/account_followup/i18n/ko.po index 0b6c716b05c..abb1b84f145 100644 --- a/addons/account_followup/i18n/ko.po +++ b/addons/account_followup/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/lt.po b/addons/account_followup/i18n/lt.po index c531795c0d8..2a75827f772 100644 --- a/addons/account_followup/i18n/lt.po +++ b/addons/account_followup/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/mk.po b/addons/account_followup/i18n/mk.po index 6199a819cd5..93f683c2395 100644 --- a/addons/account_followup/i18n/mk.po +++ b/addons/account_followup/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/mn.po b/addons/account_followup/i18n/mn.po index a01e7a397f0..3dc5b98fb73 100644 --- a/addons/account_followup/i18n/mn.po +++ b/addons/account_followup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/nb.po b/addons/account_followup/i18n/nb.po index faed80a8254..68e8f54aeba 100644 --- a/addons/account_followup/i18n/nb.po +++ b/addons/account_followup/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/nl.po b/addons/account_followup/i18n/nl.po index e0ba10d1930..885b2ce9de2 100644 --- a/addons/account_followup/i18n/nl.po +++ b/addons/account_followup/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/nl_BE.po b/addons/account_followup/i18n/nl_BE.po index 8fc954e88c4..6458bc9e92c 100644 --- a/addons/account_followup/i18n/nl_BE.po +++ b/addons/account_followup/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: nl\n" #. module: account_followup diff --git a/addons/account_followup/i18n/oc.po b/addons/account_followup/i18n/oc.po index 0dde8919d1a..78297b4d6ef 100644 --- a/addons/account_followup/i18n/oc.po +++ b/addons/account_followup/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/pl.po b/addons/account_followup/i18n/pl.po index e510d3dc6b5..1a37b819f02 100644 --- a/addons/account_followup/i18n/pl.po +++ b/addons/account_followup/i18n/pl.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: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-12 17:49+0000\n" -"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \n" +"PO-Revision-Date: 2014-04-04 19:44+0000\n" +"Last-Translator: Dariusz Żbikowski \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: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-04-05 05:30+0000\n" +"X-Generator: Launchpad (build 16976)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -109,7 +109,7 @@ msgstr "Kroki monitowania płatności" #. module: account_followup #: field:account_followup.print,email_body:0 msgid "Email Body" -msgstr "" +msgstr "Treść email" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_print @@ -403,7 +403,7 @@ msgstr "Monity o płatność" #. module: account_followup #: field:account_followup.followup.line,delay:0 msgid "Due Days" -msgstr "" +msgstr "Dni zwłoki" #. module: account_followup #: field:account.move.line,followup_line_id:0 @@ -419,7 +419,7 @@ msgstr "Ostatni monit o płatność" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_manual_reconcile_followup msgid "Reconcile Invoices & Payments" -msgstr "" +msgstr "Uzgadnianie Faktur i Płatności" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_s @@ -429,7 +429,7 @@ msgstr "Wykonaj manualnie monit o płatność" #. module: account_followup #: report:account_followup.followup.print:0 msgid "Li." -msgstr "" +msgstr "Sp." #. module: account_followup #: field:account_followup.print,email_conf:0 @@ -499,6 +499,7 @@ msgstr "Monitowanie płatności" #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" +"Email nie został wysłany ponieważ adres email partnera nie został wypełniony" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup @@ -511,6 +512,8 @@ msgid "" "Optionally you can assign a user to this field, which will make him " "responsible for the action." msgstr "" +"Opcjonalnie możesz przypisać użytkownika do tego pola, który stanie się " +"odpowiedzialny za tę akcję." #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_sending_results @@ -528,7 +531,7 @@ msgstr "" #: code:addons/account_followup/wizard/account_followup_print.py:172 #, python-format msgid " manual action(s) assigned:" -msgstr "" +msgstr " ręczna akcja przypisana do:" #. module: account_followup #: view:res.partner:0 @@ -548,13 +551,13 @@ msgstr "Przeszukaj monity o płatność" #. module: account_followup #: view:res.partner:0 msgid "Account Move line" -msgstr "" +msgstr "Pozycja zapisu" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:237 #, python-format msgid "Send Letters and Emails: Actions Summary" -msgstr "" +msgstr "Listy i Email: Podsumowanie akcji" #. module: account_followup #: view:account_followup.print:0 @@ -916,7 +919,7 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "Responsible" -msgstr "" +msgstr "Odpowiedzialny" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_finance_followup @@ -945,7 +948,7 @@ msgstr "Działanie monitowania płatności" #. module: account_followup #: view:account_followup.stat:0 msgid "Including journal entries marked as a litigation" -msgstr "" +msgstr "Załącz pozycje dziennika oznaczone jako sporne" #. module: account_followup #: report:account_followup.followup.print:0 diff --git a/addons/account_followup/i18n/pt.po b/addons/account_followup/i18n/pt.po index fca9ba09686..c9ef22d3afc 100644 --- a/addons/account_followup/i18n/pt.po +++ b/addons/account_followup/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/pt_BR.po b/addons/account_followup/i18n/pt_BR.po index fe42f2482f1..bb3a8ef5e12 100644 --- a/addons/account_followup/i18n/pt_BR.po +++ b/addons/account_followup/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ro.po b/addons/account_followup/i18n/ro.po index 768d88de832..1a05439feb9 100644 --- a/addons/account_followup/i18n/ro.po +++ b/addons/account_followup/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ru.po b/addons/account_followup/i18n/ru.po index 3e5b69beaeb..048df747fe2 100644 --- a/addons/account_followup/i18n/ru.po +++ b/addons/account_followup/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sl.po b/addons/account_followup/i18n/sl.po index 1b6323eb764..cb0f70cbd5c 100644 --- a/addons/account_followup/i18n/sl.po +++ b/addons/account_followup/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sq.po b/addons/account_followup/i18n/sq.po index 7a019604db4..db959ab46a1 100644 --- a/addons/account_followup/i18n/sq.po +++ b/addons/account_followup/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sr.po b/addons/account_followup/i18n/sr.po index ab19013160d..aafa4dc1657 100644 --- a/addons/account_followup/i18n/sr.po +++ b/addons/account_followup/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:44+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:16+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sr@latin.po b/addons/account_followup/i18n/sr@latin.po index f3b59ed521b..c78dd40d528 100644 --- a/addons/account_followup/i18n/sr@latin.po +++ b/addons/account_followup/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sv.po b/addons/account_followup/i18n/sv.po index ff013b5e217..868db1b8e3c 100644 --- a/addons/account_followup/i18n/sv.po +++ b/addons/account_followup/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/tlh.po b/addons/account_followup/i18n/tlh.po index f01601b50e3..bc9926f7b62 100644 --- a/addons/account_followup/i18n/tlh.po +++ b/addons/account_followup/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/tr.po b/addons/account_followup/i18n/tr.po index ffbb5a86fef..1a511a84985 100644 --- a/addons/account_followup/i18n/tr.po +++ b/addons/account_followup/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -350,7 +350,7 @@ msgstr "En Kötü Vade Tarihi" #. module: account_followup #: view:account_followup.stat:0 msgid "Not Litigation" -msgstr "Dava açılmamış" +msgstr "ihtilaflı olmayan" #. module: account_followup #: view:account_followup.print:0 @@ -890,7 +890,7 @@ msgstr "" #. module: account_followup #: model:ir.model,name:account_followup.model_account_move_line msgid "Journal Items" -msgstr "Günlük Öğeleri" +msgstr "Yevmiye Öğeleri" #. module: account_followup #: report:account_followup.followup.print:0 @@ -916,7 +916,7 @@ msgstr "Bir Eposta Gönder" #. module: account_followup #: field:account_followup.stat,credit:0 msgid "Credit" -msgstr "Borç" +msgstr "Alacak" #. module: account_followup #: field:res.partner,payment_amount_overdue:0 @@ -1140,7 +1140,7 @@ msgstr "İzleme Eylemi" #. module: account_followup #: view:account_followup.stat:0 msgid "Including journal entries marked as a litigation" -msgstr "Davalı olarak işaretli günlük girişlerini içerir" +msgstr "İhtilaflı olarak işaretli yevmiye girişlerini içerir" #. module: account_followup #: report:account_followup.followup.print:0 diff --git a/addons/account_followup/i18n/uk.po b/addons/account_followup/i18n/uk.po index 5d3d59800b7..c3f52466959 100644 --- a/addons/account_followup/i18n/uk.po +++ b/addons/account_followup/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/vi.po b/addons/account_followup/i18n/vi.po index 1160ba3b9f6..31cca01492f 100644 --- a/addons/account_followup/i18n/vi.po +++ b/addons/account_followup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/zh_CN.po b/addons/account_followup/i18n/zh_CN.po index f6de38651a2..9612299c03c 100644 --- a/addons/account_followup/i18n/zh_CN.po +++ b/addons/account_followup/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/zh_TW.po b/addons/account_followup/i18n/zh_TW.po index 65811c4c460..e6e0d1d4e2f 100644 --- a/addons/account_followup/i18n/zh_TW.po +++ b/addons/account_followup/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:17+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/report/account_followup_print.py b/addons/account_followup/report/account_followup_print.py index eecba81acb9..4e856853915 100644 --- a/addons/account_followup/report/account_followup_print.py +++ b/addons/account_followup/report/account_followup_print.py @@ -21,9 +21,10 @@ import time from collections import defaultdict - +from openerp.osv import osv from openerp.report import report_sxw + class report_rappel(report_sxw.rml_parse): _name = "account_followup.report.rappel" @@ -108,8 +109,11 @@ class report_rappel(report_sxw.rml_parse): } return text -report_sxw.report_sxw('report.account_followup.followup.print', - 'account_followup.stat.by.partner', 'addons/account_followup/report/account_followup_print.rml', - parser=report_rappel) + +class report_followup(osv.AbstractModel): + _name = 'report.account_followup.report_followup' + _inherit = 'report.abstract_report' + _template = 'account_followup.report_followup' + _wrapped_report_class = report_rappel # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_followup/report/account_followup_print.rml b/addons/account_followup/report/account_followup_print.rml deleted file mode 100644 index 6eadaed8675..00000000000 --- a/addons/account_followup/report/account_followup_print.rml +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ repeatIn(ids_to_objects(data['form']['partner_ids']),'o') ]] - [[ setLang(o.partner_id.lang) ]] - - - - - - - [[ o.partner_id.name or '' ]] - [[ display_address(o.partner_id) or '']] - - - - VAT: [[ o.partner_id.vat or removeParentNode('para') ]] - - - - - - - Document : Customer account statement - Date : [[ formatLang(data['form']['date'],date=True) ]] - Customer Ref : [[ o.partner_id.ref or '' ]] - - - -
[[ format(get_text(o,data['form']['followup_id'])) ]]
- - - -
- - - [[repeatIn(getLines(o), 'cur_lines') ]] - - - Invoice Date - - - Description - - - Ref - - - Maturity Date - - - Amount - - - Li. - - - - - - [[repeatIn(cur_lines['line'], 'line') ]] - - [[ formatLang(line['date'],date = True) ]] - - - [[ line['name'] ]] - - - [[ line['ref'] ]] - - - [[ line['date_maturity'] and formatLang(line['date_maturity'], date=True) ]] - - - [[ formatLang(line['balance'], currency_obj=line['currency_id']) ]] - - - [[ line['blocked'] and 'X' or '' ]] - - - - - - - - - - - - Total: - - - [[formatLang(reduce(lambda x,y: x+y['balance'], cur_lines['line'], 0.00), currency_obj=line['currency_id']) ]] - - - - - - - - - - - - - - - - - - - -
- -
-
diff --git a/addons/account_followup/tests/test_account_followup.py b/addons/account_followup/tests/test_account_followup.py index 9e70430c518..b3025021278 100644 --- a/addons/account_followup/tests/test_account_followup.py +++ b/addons/account_followup/tests/test_account_followup.py @@ -59,7 +59,6 @@ class TestAccountFollowup(TransactionCase): self.wizard.do_process(cr, uid, [self.wizard_id], context={"followup_id": self.followup_id}) self.assertFalse(self.partner.browse(cr, uid, self.partner_id).latest_followup_level_id) - def run_wizard_three_times(self): cr, uid = self.cr, self.uid current_date = datetime.datetime.utcnow() @@ -131,7 +130,7 @@ class TestAccountFollowup(TransactionCase): self.run_wizard_three_times() self.assertEqual(self.partner.browse(cr, uid, self.partner_id).latest_followup_level_id.id, self.last_followup_line_id, "Lines are not equal") - + def test_06_pay_the_invoice(self): """Run wizard until manual action, pay the invoice and check that partner has no follow-up level anymore and after running the wizard the action is empty""" cr, uid = self.cr, self.uid @@ -148,7 +147,6 @@ class TestAccountFollowup(TransactionCase): 'followup_id': self.followup_id }, context={"followup_id": self.followup_id}) self.wizard.do_process(cr, uid, [self.wizard_id], context={"followup_id": self.followup_id}) - partner_ref = self.partner.browse(cr, uid, self.partner_id) self.assertEqual(0, self.partner.browse(cr, uid, self.partner_id).payment_amount_due, "Amount Due != 0") self.assertFalse(self.partner.browse(cr, uid, self.partner_id).payment_next_action_date, "Next action date not cleared") diff --git a/addons/account_followup/views/report_followup.xml b/addons/account_followup/views/report_followup.xml new file mode 100644 index 00000000000..6c79fe4cc55 --- /dev/null +++ b/addons/account_followup/views/report_followup.xml @@ -0,0 +1,58 @@ + + + + + + diff --git a/addons/account_followup/wizard/account_followup_print.py b/addons/account_followup/wizard/account_followup_print.py index 00ecab7b860..7b7cb8fc77e 100644 --- a/addons/account_followup/wizard/account_followup_print.py +++ b/addons/account_followup/wizard/account_followup_print.py @@ -218,18 +218,18 @@ class account_followup_print(osv.osv_memory): #Update partners self.do_update_followup_level(cr, uid, to_update, partner_list, date, context=context) #process the partners (send mails...) - restot = self.process_partners(cr, uid, partner_list, data, context=context) + restot_context = context.copy() + restot = self.process_partners(cr, uid, partner_list, data, context=restot_context) + context.update(restot_context) #clear the manual actions if nothing is due anymore nbactionscleared = self.clear_manual_actions(cr, uid, partner_list, context=context) if nbactionscleared > 0: restot['resulttext'] = restot['resulttext'] + "
  • " + _("%s partners have no credits and as such the action is cleared") %(str(nbactionscleared)) + "
  • " - res = restot['action'] - #return the next action mod_obj = self.pool.get('ir.model.data') model_data_ids = mod_obj.search(cr, uid, [('model','=','ir.ui.view'),('name','=','view_account_followup_sending_results')], context=context) resource_id = mod_obj.read(cr, uid, model_data_ids, fields=['res_id'], context=context)[0]['res_id'] - context.update({'description': restot['resulttext'], 'needprinting': restot['needprinting'], 'report_data': res}) + context.update({'description': restot['resulttext'], 'needprinting': restot['needprinting'], 'report_data': restot['action']}) return { 'name': _('Send Letters and Emails: Actions Summary'), 'view_type': 'form', diff --git a/addons/account_payment/__openerp__.py b/addons/account_payment/__openerp__.py index 4c3c8f045e3..c5cccc38c26 100644 --- a/addons/account_payment/__openerp__.py +++ b/addons/account_payment/__openerp__.py @@ -54,6 +54,8 @@ have a new option to import payment orders as bank statement lines. 'account_payment_workflow.xml', 'account_payment_sequence.xml', 'account_payment_report.xml', + + 'views/report_paymentorder.xml', ], 'demo': ['account_payment_demo.xml'], 'test': [ diff --git a/addons/account_payment/account_payment_report.xml b/addons/account_payment/account_payment_report.xml index 699207e1733..3a57abe901f 100644 --- a/addons/account_payment/account_payment_report.xml +++ b/addons/account_payment/account_payment_report.xml @@ -1,6 +1,13 @@ - + diff --git a/addons/account_payment/i18n/am.po b/addons/account_payment/i18n/am.po index 113967f20d4..e2e19a6080b 100644 --- a/addons/account_payment/i18n/am.po +++ b/addons/account_payment/i18n/am.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ar.po b/addons/account_payment/i18n/ar.po index 138879f7ab2..ed37138346b 100644 --- a/addons/account_payment/i18n/ar.po +++ b/addons/account_payment/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/bg.po b/addons/account_payment/i18n/bg.po index e1cac07010b..384d7065830 100644 --- a/addons/account_payment/i18n/bg.po +++ b/addons/account_payment/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/bs.po b/addons/account_payment/i18n/bs.po index 52f07976e89..b8f30a98795 100644 --- a/addons/account_payment/i18n/bs.po +++ b/addons/account_payment/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ca.po b/addons/account_payment/i18n/ca.po index c143a063959..8d074eb80cd 100644 --- a/addons/account_payment/i18n/ca.po +++ b/addons/account_payment/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/cs.po b/addons/account_payment/i18n/cs.po index 61ad1ab77c8..778d8cd5e0a 100644 --- a/addons/account_payment/i18n/cs.po +++ b/addons/account_payment/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/da.po b/addons/account_payment/i18n/da.po index 92def5633a5..a3b694d3c7c 100644 --- a/addons/account_payment/i18n/da.po +++ b/addons/account_payment/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/de.po b/addons/account_payment/i18n/de.po index 4dff11378ae..b9111c5a39b 100644 --- a/addons/account_payment/i18n/de.po +++ b/addons/account_payment/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/el.po b/addons/account_payment/i18n/el.po index 0a264ecc0be..ce6516d1375 100644 --- a/addons/account_payment/i18n/el.po +++ b/addons/account_payment/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/en_GB.po b/addons/account_payment/i18n/en_GB.po index 5752cda013b..6eca392d25d 100644 --- a/addons/account_payment/i18n/en_GB.po +++ b/addons/account_payment/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es.po b/addons/account_payment/i18n/es.po index 42c7e4ab537..c7e25681f32 100644 --- a/addons/account_payment/i18n/es.po +++ b/addons/account_payment/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_AR.po b/addons/account_payment/i18n/es_AR.po index 263def3f564..d47b928764c 100644 --- a/addons/account_payment/i18n/es_AR.po +++ b/addons/account_payment/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_CL.po b/addons/account_payment/i18n/es_CL.po index 1ddcf6b4971..22ff15baded 100644 --- a/addons/account_payment/i18n/es_CL.po +++ b/addons/account_payment/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_CR.po b/addons/account_payment/i18n/es_CR.po index ed9e019b5c4..5e4c1b04d43 100644 --- a/addons/account_payment/i18n/es_CR.po +++ b/addons/account_payment/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: account_payment diff --git a/addons/account_payment/i18n/es_EC.po b/addons/account_payment/i18n/es_EC.po index d3ca0fef5ca..555d1ea7c0b 100644 --- a/addons/account_payment/i18n/es_EC.po +++ b/addons/account_payment/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_MX.po b/addons/account_payment/i18n/es_MX.po index a781b0b47ce..e261f1b4e51 100644 --- a/addons/account_payment/i18n/es_MX.po +++ b/addons/account_payment/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_PY.po b/addons/account_payment/i18n/es_PY.po index 54fa7d4392d..8ba547efce3 100644 --- a/addons/account_payment/i18n/es_PY.po +++ b/addons/account_payment/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/et.po b/addons/account_payment/i18n/et.po index 08e3f49b378..4f73def2aca 100644 --- a/addons/account_payment/i18n/et.po +++ b/addons/account_payment/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fa.po b/addons/account_payment/i18n/fa.po index 8cfe1a825a8..cb4e2c004e7 100644 --- a/addons/account_payment/i18n/fa.po +++ b/addons/account_payment/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fi.po b/addons/account_payment/i18n/fi.po index 00c46c227c2..0a612a41a86 100644 --- a/addons/account_payment/i18n/fi.po +++ b/addons/account_payment/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fr.po b/addons/account_payment/i18n/fr.po index da225e15dbd..7c3a1611061 100644 --- a/addons/account_payment/i18n/fr.po +++ b/addons/account_payment/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #~ msgid "Total debit" #~ msgstr "Débit total" diff --git a/addons/account_payment/i18n/gl.po b/addons/account_payment/i18n/gl.po index e837c20c3ef..1087cef1358 100644 --- a/addons/account_payment/i18n/gl.po +++ b/addons/account_payment/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hi.po b/addons/account_payment/i18n/hi.po index cfe8ac6f555..b8f13715c4a 100644 --- a/addons/account_payment/i18n/hi.po +++ b/addons/account_payment/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hr.po b/addons/account_payment/i18n/hr.po index 3e071d73d49..82e494edb66 100644 --- a/addons/account_payment/i18n/hr.po +++ b/addons/account_payment/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hu.po b/addons/account_payment/i18n/hu.po index 5b7e6082ad4..2c540b2e702 100644 --- a/addons/account_payment/i18n/hu.po +++ b/addons/account_payment/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/id.po b/addons/account_payment/i18n/id.po index 37f525dcaf2..5b1edf6f86a 100644 --- a/addons/account_payment/i18n/id.po +++ b/addons/account_payment/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/it.po b/addons/account_payment/i18n/it.po index a7d5b1f6845..44bf045263d 100644 --- a/addons/account_payment/i18n/it.po +++ b/addons/account_payment/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ja.po b/addons/account_payment/i18n/ja.po index 8d96386afe4..d78da200fbe 100644 --- a/addons/account_payment/i18n/ja.po +++ b/addons/account_payment/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ko.po b/addons/account_payment/i18n/ko.po index b0af7585f63..6223278d195 100644 --- a/addons/account_payment/i18n/ko.po +++ b/addons/account_payment/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/lt.po b/addons/account_payment/i18n/lt.po index 28855750fab..3abeb281e01 100644 --- a/addons/account_payment/i18n/lt.po +++ b/addons/account_payment/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/lv.po b/addons/account_payment/i18n/lv.po index fc6db08a3a8..9fae256f51f 100644 --- a/addons/account_payment/i18n/lv.po +++ b/addons/account_payment/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/mk.po b/addons/account_payment/i18n/mk.po index 65248404504..2b0b53cdb12 100644 --- a/addons/account_payment/i18n/mk.po +++ b/addons/account_payment/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/mn.po b/addons/account_payment/i18n/mn.po index a68388faa77..de3b684f53a 100644 --- a/addons/account_payment/i18n/mn.po +++ b/addons/account_payment/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nb.po b/addons/account_payment/i18n/nb.po index 376d76b09fd..6df9d9932a3 100644 --- a/addons/account_payment/i18n/nb.po +++ b/addons/account_payment/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nl.po b/addons/account_payment/i18n/nl.po index a8b1c44789b..387ff67d235 100644 --- a/addons/account_payment/i18n/nl.po +++ b/addons/account_payment/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nl_BE.po b/addons/account_payment/i18n/nl_BE.po index 88cfa4f4868..449c9b060ca 100644 --- a/addons/account_payment/i18n/nl_BE.po +++ b/addons/account_payment/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/oc.po b/addons/account_payment/i18n/oc.po index 557b6aedd39..17385259f05 100644 --- a/addons/account_payment/i18n/oc.po +++ b/addons/account_payment/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pl.po b/addons/account_payment/i18n/pl.po index d3a1b7a7bfe..dcf0c0f4515 100644 --- a/addons/account_payment/i18n/pl.po +++ b/addons/account_payment/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pt.po b/addons/account_payment/i18n/pt.po index 9f21ce1fbfe..e23672304bf 100644 --- a/addons/account_payment/i18n/pt.po +++ b/addons/account_payment/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pt_BR.po b/addons/account_payment/i18n/pt_BR.po index b1d2c49e6b0..781bcd1d2f5 100644 --- a/addons/account_payment/i18n/pt_BR.po +++ b/addons/account_payment/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ro.po b/addons/account_payment/i18n/ro.po index ba7c070fcbf..8db0f058845 100644 --- a/addons/account_payment/i18n/ro.po +++ b/addons/account_payment/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ru.po b/addons/account_payment/i18n/ru.po index 06b5db42314..dd8f9a4a3e9 100644 --- a/addons/account_payment/i18n/ru.po +++ b/addons/account_payment/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sl.po b/addons/account_payment/i18n/sl.po index 1b6ac2a6977..48d0886714e 100644 --- a/addons/account_payment/i18n/sl.po +++ b/addons/account_payment/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sq.po b/addons/account_payment/i18n/sq.po index 09bb7de9968..d0ad7b04cb9 100644 --- a/addons/account_payment/i18n/sq.po +++ b/addons/account_payment/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:09+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:45+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sr.po b/addons/account_payment/i18n/sr.po index e264ea54180..d9b2b281b9d 100644 --- a/addons/account_payment/i18n/sr.po +++ b/addons/account_payment/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sr@latin.po b/addons/account_payment/i18n/sr@latin.po index 9f33cff45b9..83a1f816452 100644 --- a/addons/account_payment/i18n/sr@latin.po +++ b/addons/account_payment/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sv.po b/addons/account_payment/i18n/sv.po index 427fa98fc4d..17cc879105c 100644 --- a/addons/account_payment/i18n/sv.po +++ b/addons/account_payment/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/tlh.po b/addons/account_payment/i18n/tlh.po index 79041df7f6b..17014d36a5d 100644 --- a/addons/account_payment/i18n/tlh.po +++ b/addons/account_payment/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/tr.po b/addons/account_payment/i18n/tr.po index 3ea7f204a55..72c8e709234 100644 --- a/addons/account_payment/i18n/tr.po +++ b/addons/account_payment/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -56,7 +56,7 @@ msgstr "Uygulanacak Ödeme Şeklini Seç" #: view:payment.mode:0 #: view:payment.order:0 msgid "Group By..." -msgstr "Grupla..." +msgstr "Grupla İle..." #. module: account_payment #: field:payment.order,line_ids:0 @@ -143,12 +143,12 @@ msgstr "Hata!" #: report:payment.order:0 #: view:payment.order:0 msgid "Amount" -msgstr "Miktar" +msgstr "Tutar" #. module: account_payment #: view:payment.order:0 msgid "Total in Company Currency" -msgstr "Şirket Para Biriminde Toplam" +msgstr "Şirket Para Birimi ile Toplam" #. module: account_payment #: selection:payment.order,state:0 @@ -350,7 +350,7 @@ msgstr "Ödenecek tutar" #. module: account_payment #: report:payment.order:0 msgid "Currency" -msgstr "Para birimi" +msgstr "Para Birimi" #. module: account_payment #: view:account.payment.make.payment:0 @@ -495,7 +495,7 @@ msgstr "Ödeme Tutarı" #. module: account_payment #: field:payment.line,amount:0 msgid "Amount in Company Currency" -msgstr "Firma Para Biriminde Tutar" +msgstr "Firma Para Birimi ile Tutar" #. module: account_payment #: help:payment.line,partner_id:0 @@ -619,7 +619,7 @@ msgstr "Ödemeleri Onayla" #: field:payment.line,company_currency:0 #: report:payment.order:0 msgid "Company Currency" -msgstr "Firma Dövizi" +msgstr "Firma Para Birimi" #. module: account_payment #: model:ir.ui.menu,name:account_payment.menu_main_payment @@ -666,7 +666,7 @@ msgstr "Giriş Bilgisi" #. module: account_payment #: model:ir.model,name:account_payment.model_payment_order_create msgid "payment.order.create" -msgstr "ödeme.emir.oluştur" +msgstr "payment.order.create" #. module: account_payment #: field:payment.line,order_id:0 diff --git a/addons/account_payment/i18n/uk.po b/addons/account_payment/i18n/uk.po index 0f16fda45fd..f32e55b4ffd 100644 --- a/addons/account_payment/i18n/uk.po +++ b/addons/account_payment/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/vi.po b/addons/account_payment/i18n/vi.po index 23e0266d342..65fa1840f05 100644 --- a/addons/account_payment/i18n/vi.po +++ b/addons/account_payment/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/zh_CN.po b/addons/account_payment/i18n/zh_CN.po index 35d65d71f75..5808b0baba8 100644 --- a/addons/account_payment/i18n/zh_CN.po +++ b/addons/account_payment/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/zh_TW.po b/addons/account_payment/i18n/zh_TW.po index d8fa0cb7458..c39abef1e56 100644 --- a/addons/account_payment/i18n/zh_TW.po +++ b/addons/account_payment/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/report/order.rml b/addons/account_payment/report/order.rml deleted file mode 100644 index 02675baf0b2..00000000000 --- a/addons/account_payment/report/order.rml +++ /dev/null @@ -1,290 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Partner - - - Bank Account - - - Invoice Ref - - - Value Date - - - Amount - - - Currency - - - - - [[ repeatIn(objects, 'o') ]] - - - - - - - - - - - - [[ o.mode and o.mode.bank_id.bank and o.mode.bank_id.bank.name or '']] - [[ o.mode and o.mode.bank_id.bank and o.mode.bank_id.bank.street or '']] - [[ o.mode and o.mode.bank_id.bank and o.mode.bank_id.bank.street2 or removeParentNode('para')]] - [[ o.mode and o.mode.bank_id.bank and o.mode.bank_id.bank.zip or '']] [[ o.mode and o.mode.bank_id.bank and o.mode.bank_id.bank.city or '']] - [[ o.mode and o.mode.bank_id.bank and o.mode.bank_id.bank.state and o.mode.bank_id.bank.state.name or removeParentNode('para') ]] - [[ o.mode and o.mode.bank_id.bank and o.mode.bank_id.bank.country and o.mode.bank_id.bank.country.name or '']] - - - - - - - Payment Order / Payment - - - - - - - Payment Type - - - Reference - - - Used Account - - - Execution Type - - - Company Currency - - - - - - - [[ o.mode and o.mode.name or '-' ]] - - - [[ o.reference or '-' ]] - - - [[get_account_name(o.mode.bank_id.id)]] - - - [[ o.date_prefered == 'now' and 'Now' or removeParentNode('para') ]] - [[ o.date_prefered == 'due' and 'Due date' or removeParentNode('para') ]] - [[ o.date_prefered == 'fixed' and 'Fixed date' or removeParentNode('para') ]] - - - [[ 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 '' ]] - - - - - - - - - - Partner - - - Bank Account - - - Invoice Ref - - - Value Date - - - Amount - - - Currency - - - -
    - [[repeatIn(o.line_ids, 'line') ]] - - - - [[line.partner_id and line.partner_id.name or '-' ]] - - - [[get_account_name(line.bank_id.id) or '-']] - - - [[ get_invoice_name(line.ml_inv_ref.id) or '-' ]] - - - [[not line.date and '-' or formatLang(line.date,date=True) ]] - - - [[ formatLang(line.amount or 0.0, currency_obj=line.company_currency) ]] - - - [[ formatLang(line.amount_currency, currency_obj=line.currency) ]] - - - -
    - - - - - - - - - Total: - - - [[ formatLang(get_amount_total(o), currency_obj=o.company_id.currency_id) or '' ]] - - - [[ formatLang(get_amount_total_in_currency(o), currency_obj=(o.line_ids and o.line_ids[0].currency or None)) or '' ]] - - - - - - -
    -
    -
    diff --git a/addons/account_payment/report/payment_order.py b/addons/account_payment/report/payment_order.py index a851a54ecbb..292d0e11bf4 100644 --- a/addons/account_payment/report/payment_order.py +++ b/addons/account_payment/report/payment_order.py @@ -20,9 +20,10 @@ ############################################################################## import time - +from openerp.osv import osv from openerp.report import report_sxw + class payment_order(report_sxw.rml_parse): def __init__(self, cr, uid, name, context=None): @@ -70,6 +71,11 @@ class payment_order(report_sxw.rml_parse): return value_name[0][1] return False -report_sxw.report_sxw('report.payment.order', 'payment.order', 'addons/account_payment/report/payment_order.rml', parser=payment_order, header="external") + +class report_paymentorder(osv.AbstractModel): + _name = 'report.account_payment.report_paymentorder' + _inherit = 'report.abstract_report' + _template = 'account_payment.report_paymentorder' + _wrapped_report_class = payment_order # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_payment/test/account_payment_report.yml b/addons/account_payment/test/account_payment_report.yml index 3def62de429..922d2502203 100644 --- a/addons/account_payment/test/account_payment_report.yml +++ b/addons/account_payment/test/account_payment_report.yml @@ -5,6 +5,6 @@ import os import openerp.report from openerp import tools - data, format = openerp.report.render_report(cr, uid, [ref('payment_order_1')], 'payment.order', {}, {}) + data, format = openerp.report.render_report(cr, uid, [ref('payment_order_1')], 'account_payment.report_paymentorder', {}, {}) if tools.config['test_report_directory']: file(os.path.join(tools.config['test_report_directory'], 'account_payment-payment_order_report.'+format), 'wb+').write(data) diff --git a/addons/account_payment/views/report_paymentorder.xml b/addons/account_payment/views/report_paymentorder.xml new file mode 100644 index 00000000000..42a2cbe989a --- /dev/null +++ b/addons/account_payment/views/report_paymentorder.xml @@ -0,0 +1,109 @@ + + + + + + diff --git a/addons/account_sequence/i18n/ar.po b/addons/account_sequence/i18n/ar.po index eb16779a87c..fc070f627fa 100644 --- a/addons/account_sequence/i18n/ar.po +++ b/addons/account_sequence/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/bg.po b/addons/account_sequence/i18n/bg.po index fb40fb4c072..22dafbb7e30 100644 --- a/addons/account_sequence/i18n/bg.po +++ b/addons/account_sequence/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/bs.po b/addons/account_sequence/i18n/bs.po index b177177f7a9..f3704e6bd16 100644 --- a/addons/account_sequence/i18n/bs.po +++ b/addons/account_sequence/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ca.po b/addons/account_sequence/i18n/ca.po index c7ba4368df1..b0000379e9c 100644 --- a/addons/account_sequence/i18n/ca.po +++ b/addons/account_sequence/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/cs.po b/addons/account_sequence/i18n/cs.po index bdd80b79bb7..0e08d6dc128 100644 --- a/addons/account_sequence/i18n/cs.po +++ b/addons/account_sequence/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/da.po b/addons/account_sequence/i18n/da.po index c1d9493e3b5..09c145ef316 100644 --- a/addons/account_sequence/i18n/da.po +++ b/addons/account_sequence/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/de.po b/addons/account_sequence/i18n/de.po index 7a505fb8757..70a5830b6d6 100644 --- a/addons/account_sequence/i18n/de.po +++ b/addons/account_sequence/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/el.po b/addons/account_sequence/i18n/el.po index 6669f19cf3d..971a401f4ec 100644 --- a/addons/account_sequence/i18n/el.po +++ b/addons/account_sequence/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/en_GB.po b/addons/account_sequence/i18n/en_GB.po index 8d8f28f3488..7a04bccb975 100644 --- a/addons/account_sequence/i18n/en_GB.po +++ b/addons/account_sequence/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es.po b/addons/account_sequence/i18n/es.po index fe3c810dad3..4014e68b146 100644 --- a/addons/account_sequence/i18n/es.po +++ b/addons/account_sequence/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es_CR.po b/addons/account_sequence/i18n/es_CR.po index 9ee13942a28..37cdca0bbf9 100644 --- a/addons/account_sequence/i18n/es_CR.po +++ b/addons/account_sequence/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/es_EC.po b/addons/account_sequence/i18n/es_EC.po index 71b897def9f..fcba0c131f4 100644 --- a/addons/account_sequence/i18n/es_EC.po +++ b/addons/account_sequence/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es_PY.po b/addons/account_sequence/i18n/es_PY.po index ec754aea024..94b2bf4aed8 100644 --- a/addons/account_sequence/i18n/es_PY.po +++ b/addons/account_sequence/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/fa.po b/addons/account_sequence/i18n/fa.po index abfe1a7678b..269748e63fc 100644 --- a/addons/account_sequence/i18n/fa.po +++ b/addons/account_sequence/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/fr.po b/addons/account_sequence/i18n/fr.po index f7089b57c3a..0ba6aa7e267 100644 --- a/addons/account_sequence/i18n/fr.po +++ b/addons/account_sequence/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/gl.po b/addons/account_sequence/i18n/gl.po index 90336ca1bc6..1ecad5648b2 100644 --- a/addons/account_sequence/i18n/gl.po +++ b/addons/account_sequence/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/hr.po b/addons/account_sequence/i18n/hr.po index afc91b5d49b..fd782397314 100644 --- a/addons/account_sequence/i18n/hr.po +++ b/addons/account_sequence/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/hu.po b/addons/account_sequence/i18n/hu.po index 2894cb9c1e4..5691eba70cd 100644 --- a/addons/account_sequence/i18n/hu.po +++ b/addons/account_sequence/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/id.po b/addons/account_sequence/i18n/id.po index 84da6069a96..2965ca0482b 100644 --- a/addons/account_sequence/i18n/id.po +++ b/addons/account_sequence/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/it.po b/addons/account_sequence/i18n/it.po index a3614f37c9c..d33689eb01d 100644 --- a/addons/account_sequence/i18n/it.po +++ b/addons/account_sequence/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ja.po b/addons/account_sequence/i18n/ja.po index a0b02610425..6269e8da183 100644 --- a/addons/account_sequence/i18n/ja.po +++ b/addons/account_sequence/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/lv.po b/addons/account_sequence/i18n/lv.po index de03bf919d0..3fcc5e720a5 100644 --- a/addons/account_sequence/i18n/lv.po +++ b/addons/account_sequence/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/mk.po b/addons/account_sequence/i18n/mk.po index 3b83335aa0a..c7bc91ab20f 100644 --- a/addons/account_sequence/i18n/mk.po +++ b/addons/account_sequence/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/mn.po b/addons/account_sequence/i18n/mn.po index bd79ce5b7b0..757b2a3195e 100644 --- a/addons/account_sequence/i18n/mn.po +++ b/addons/account_sequence/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nb.po b/addons/account_sequence/i18n/nb.po index 261e8a51e45..2296fdb7868 100644 --- a/addons/account_sequence/i18n/nb.po +++ b/addons/account_sequence/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nl.po b/addons/account_sequence/i18n/nl.po index 6889006160d..19ab5219a15 100644 --- a/addons/account_sequence/i18n/nl.po +++ b/addons/account_sequence/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nl_BE.po b/addons/account_sequence/i18n/nl_BE.po index f14e5368b01..ca9223a776e 100644 --- a/addons/account_sequence/i18n/nl_BE.po +++ b/addons/account_sequence/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/pl.po b/addons/account_sequence/i18n/pl.po index 52a3976b71f..06c03ed6fbb 100644 --- a/addons/account_sequence/i18n/pl.po +++ b/addons/account_sequence/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/pt.po b/addons/account_sequence/i18n/pt.po index 85a45088f84..105ba5dc289 100644 --- a/addons/account_sequence/i18n/pt.po +++ b/addons/account_sequence/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/pt_BR.po b/addons/account_sequence/i18n/pt_BR.po index 2332b6fd873..053442159d0 100644 --- a/addons/account_sequence/i18n/pt_BR.po +++ b/addons/account_sequence/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ro.po b/addons/account_sequence/i18n/ro.po index e6310e029e6..9662be0a22a 100644 --- a/addons/account_sequence/i18n/ro.po +++ b/addons/account_sequence/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ru.po b/addons/account_sequence/i18n/ru.po index e1558f7027f..d1f0dd31414 100644 --- a/addons/account_sequence/i18n/ru.po +++ b/addons/account_sequence/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sl.po b/addons/account_sequence/i18n/sl.po index 4f8cdd29ef5..1543571e4a2 100644 --- a/addons/account_sequence/i18n/sl.po +++ b/addons/account_sequence/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sq.po b/addons/account_sequence/i18n/sq.po index 8dcbeec4adf..5eb28e187f3 100644 --- a/addons/account_sequence/i18n/sq.po +++ b/addons/account_sequence/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sr@latin.po b/addons/account_sequence/i18n/sr@latin.po index 19fb666b171..635e5d95ebf 100644 --- a/addons/account_sequence/i18n/sr@latin.po +++ b/addons/account_sequence/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sv.po b/addons/account_sequence/i18n/sv.po index 4abdada80b4..b908ebce515 100644 --- a/addons/account_sequence/i18n/sv.po +++ b/addons/account_sequence/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/tr.po b/addons/account_sequence/i18n/tr.po index 0feb50be4f8..8634186083e 100644 --- a/addons/account_sequence/i18n/tr.po +++ b/addons/account_sequence/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 @@ -140,7 +140,7 @@ msgstr "" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_sequence_installer msgid "account.sequence.installer" -msgstr "hesap.dizi.kurucu" +msgstr "account.sequence.installer" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_journal diff --git a/addons/account_sequence/i18n/vi.po b/addons/account_sequence/i18n/vi.po index 81e59e02feb..f484437f179 100644 --- a/addons/account_sequence/i18n/vi.po +++ b/addons/account_sequence/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/zh_CN.po b/addons/account_sequence/i18n/zh_CN.po index 11dcdb07970..24e808aa7e1 100644 --- a/addons/account_sequence/i18n/zh_CN.po +++ b/addons/account_sequence/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/zh_TW.po b/addons/account_sequence/i18n/zh_TW.po index 9e16dab04e9..72fe9750fda 100644 --- a/addons/account_sequence/i18n/zh_TW.po +++ b/addons/account_sequence/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_test/__openerp__.py b/addons/account_test/__openerp__.py index cfd4007fed0..51b47bace7a 100644 --- a/addons/account_test/__openerp__.py +++ b/addons/account_test/__openerp__.py @@ -19,11 +19,12 @@ # along with this program. If not, see . # ############################################################################## + { - 'name' : 'Accounting Consistency Tests', - 'version' : '1.0', - 'author' : 'OpenERP', - 'category' : 'Accounting & Finance', + 'name': 'Accounting Consistency Tests', + 'version': '1.0', + 'author': 'OpenERP', + 'category': 'Accounting & Finance', 'website': 'http://www.openerp.com', 'description': """ Asserts on accounting. @@ -34,14 +35,16 @@ You can write a query in order to create Consistency Test and you will get the r in PDF format which can be accessed by Menu Reporting -> Accounting Tests, then select the test and print the report from Print button in header area. """, - 'depends' : ['account'], - 'data' : [ + 'depends': ['account'], + 'data': [ 'security/ir.model.access.csv', 'account_test_view.xml', 'account_test_report.xml', 'account_test_data.xml', + 'views/report_accounttest.xml', ], 'active': False, 'installable': True } + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_test/account_test_report.xml b/addons/account_test/account_test_report.xml index 480507b6072..732b9e9fbdb 100644 --- a/addons/account_test/account_test_report.xml +++ b/addons/account_test/account_test_report.xml @@ -1,14 +1,13 @@ - - - - - + + + diff --git a/addons/account_test/i18n/ar.po b/addons/account_test/i18n/ar.po index 47857ae2b46..3fbc64a4313 100644 --- a/addons/account_test/i18n/ar.po +++ b/addons/account_test/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/cs.po b/addons/account_test/i18n/cs.po index 8cc6c65a24c..8334beae313 100644 --- a/addons/account_test/i18n/cs.po +++ b/addons/account_test/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/da.po b/addons/account_test/i18n/da.po index 77119d04e90..8e565ee0d7f 100644 --- a/addons/account_test/i18n/da.po +++ b/addons/account_test/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/en_GB.po b/addons/account_test/i18n/en_GB.po index b0464c99a0a..5afcf1b7882 100644 --- a/addons/account_test/i18n/en_GB.po +++ b/addons/account_test/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/es.po b/addons/account_test/i18n/es.po index e328b1a02da..4c461d4e965 100644 --- a/addons/account_test/i18n/es.po +++ b/addons/account_test/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/fr.po b/addons/account_test/i18n/fr.po index 394b3897ad3..94df4d0a104 100644 --- a/addons/account_test/i18n/fr.po +++ b/addons/account_test/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/hr.po b/addons/account_test/i18n/hr.po index 4be2c78ef3f..f82ad2228f0 100644 --- a/addons/account_test/i18n/hr.po +++ b/addons/account_test/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/hu.po b/addons/account_test/i18n/hu.po index 9160962ff55..fd4a5e1960f 100644 --- a/addons/account_test/i18n/hu.po +++ b/addons/account_test/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/it.po b/addons/account_test/i18n/it.po index b8c7d1507bc..ca7749e38f2 100644 --- a/addons/account_test/i18n/it.po +++ b/addons/account_test/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/mk.po b/addons/account_test/i18n/mk.po index e17bdb7079a..a270f144ad9 100644 --- a/addons/account_test/i18n/mk.po +++ b/addons/account_test/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/mn.po b/addons/account_test/i18n/mn.po index 5420ca35aeb..6812d1bf37d 100644 --- a/addons/account_test/i18n/mn.po +++ b/addons/account_test/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/nb.po b/addons/account_test/i18n/nb.po index 4a3e44b3cc8..09058b1ddec 100644 --- a/addons/account_test/i18n/nb.po +++ b/addons/account_test/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/nl.po b/addons/account_test/i18n/nl.po index ba60d37cb1d..2960244ebeb 100644 --- a/addons/account_test/i18n/nl.po +++ b/addons/account_test/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/pl.po b/addons/account_test/i18n/pl.po index 4ff8f210266..416961832d2 100644 --- a/addons/account_test/i18n/pl.po +++ b/addons/account_test/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/pt.po b/addons/account_test/i18n/pt.po index 8ec7d6a1e88..2bb448becb0 100644 --- a/addons/account_test/i18n/pt.po +++ b/addons/account_test/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/pt_BR.po b/addons/account_test/i18n/pt_BR.po index 703edf19a46..fab5ff6ce94 100644 --- a/addons/account_test/i18n/pt_BR.po +++ b/addons/account_test/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/ro.po b/addons/account_test/i18n/ro.po index a91d1f59237..d67bc3a6e1b 100644 --- a/addons/account_test/i18n/ro.po +++ b/addons/account_test/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/ru.po b/addons/account_test/i18n/ru.po index f079b4ec746..a005b79c58b 100644 --- a/addons/account_test/i18n/ru.po +++ b/addons/account_test/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/sl.po b/addons/account_test/i18n/sl.po index 009240eb7d0..b2d32556656 100644 --- a/addons/account_test/i18n/sl.po +++ b/addons/account_test/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/sv.po b/addons/account_test/i18n/sv.po new file mode 100644 index 00000000000..78dea50f511 --- /dev/null +++ b/addons/account_test/i18n/sv.po @@ -0,0 +1,266 @@ +# Swedish translation for openobject-addons +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2014-03-31 21:13+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-04-01 05:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "" +"Code should always set a variable named `result` with the result of your " +"test, that can be a list or\n" +"a dictionary. If `result` is an empty list, it means that the test was " +"succesful. Otherwise it will\n" +"try to translate and print what is inside `result`.\n" +"\n" +"If the result of your test is a dictionary, you can set a variable named " +"`column_order` to choose in\n" +"what order you want to print `result`'s content.\n" +"\n" +"Should you need them, you can also use the following variables into your " +"code:\n" +" * cr: cursor to the database\n" +" * uid: ID of the current user\n" +"\n" +"In any ways, the code must be legal python statements with correct " +"indentation (if needed).\n" +"\n" +"Example: \n" +" sql = '''SELECT id, name, ref, date\n" +" FROM account_move_line \n" +" WHERE account_id IN (SELECT id FROM account_account WHERE type " +"= 'view')\n" +" '''\n" +" cr.execute(sql)\n" +" result = cr.dictfetchall()" +msgstr "" +"Kod ska alltid ställa en variabel med namnet `resultat` med resultatet av " +"ditt test, kan det vara en lista eller\n" +"en ordbok. Om `resultat` är en tom lista, betyder det att testet var lyckat. " +"Annars kommer\n" +"försöka översätta och skriva ut vad som finns i `resultat`.\n" +"\n" +"Om resultatet av testet är en ordbok kan du ställa in en variabel med namnet " +"`column_order` för att välja in\n" +"vilken ordning du vill skriva ut `resultat` s innehåll.\n" +"\n" +"Om du behöver dem, kan du även använda följande variabler i koden:\n" +" * Cr: markören till databasen\n" +" * Uid: ID för den aktuella användaren\n" +"\n" +"På något sätt måste koden vara lagliga python uttalanden med rätt indrag (om " +"det behövs).\n" +"\n" +"Exempel:\n" +" sql ='' 'SELECT id, namn, ref, datum\n" +" FRÅN account_move_line\n" +" VAR konto-IN (SELECT id FROM account_account WHERE typ = " +"\"Visa\")\n" +" '' '\n" +" cr.execute (SQL)\n" +" resultat = cr.dictfetchall ()" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_02 +msgid "Test 2: Opening a fiscal year" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_05 +msgid "" +"Check that reconciled invoice for Sales/Purchases has reconciled entries for " +"Payable and Receivable Accounts" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_03 +msgid "" +"Check if movement lines are balanced and have the same date and period" +msgstr "" + +#. module: account_test +#: field:accounting.assert.test,name:0 +msgid "Test Name" +msgstr "Testnamn" + +#. module: account_test +#: report:account.test.assert.print:0 +msgid "Accouting tests on" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_01 +msgid "Test 1: General balance" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_06 +msgid "Check that paid/reconciled invoices are not in 'Open' state" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_05_2 +msgid "" +"Check that reconciled account moves, that define Payable and Receivable " +"accounts, are belonging to reconciled invoices" +msgstr "" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Tests" +msgstr "Tester" + +#. module: account_test +#: field:accounting.assert.test,desc:0 +msgid "Test Description" +msgstr "" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Description" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_06_1 +msgid "Check that there's no move for any account with « View » account type" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_08 +msgid "Test 9 : Accounts and partners on account moves" +msgstr "" + +#. module: account_test +#: model:ir.actions.act_window,name:account_test.action_accounting_assert +#: model:ir.actions.report.xml,name:account_test.account_assert_test_report +#: model:ir.ui.menu,name:account_test.menu_action_license +msgid "Accounting Tests" +msgstr "" + +#. module: account_test +#: code:addons/account_test/report/account_test_report.py:74 +#, python-format +msgid "The test was passed successfully" +msgstr "" + +#. module: account_test +#: field:accounting.assert.test,active:0 +msgid "Active" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_06 +msgid "Test 6 : Invoices status" +msgstr "" + +#. module: account_test +#: model:ir.model,name:account_test.model_accounting_assert_test +msgid "accounting.assert.test" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_05 +msgid "" +"Test 5.1 : Payable and Receivable accountant lines of reconciled invoices" +msgstr "" + +#. module: account_test +#: field:accounting.assert.test,code_exec:0 +msgid "Python code" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_07 +msgid "" +"Check on bank statement that the Closing Balance = Starting Balance + sum of " +"statement lines" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_07 +msgid "Test 8 : Closing balance on bank statements" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_03 +msgid "Test 3: Movement lines" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_05_2 +msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts" +msgstr "" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Expression" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_04 +msgid "Test 4: Totally reconciled mouvements" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_04 +msgid "Check if the totally reconciled movements are balanced" +msgstr "" + +#. module: account_test +#: field:accounting.assert.test,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_02 +msgid "" +"Check if the balance of the new opened fiscal year matches with last year's " +"balance" +msgstr "" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Python Code" +msgstr "" + +#. module: account_test +#: model:ir.actions.act_window,help:account_test.action_accounting_assert +msgid "" +"

    \n" +" Click to create Accounting Test.\n" +"

    \n" +" " +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_01 +msgid "Check the balance: Debit sum = Credit sum" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_08 +msgid "Check that general accounts and partners on account moves are active" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_06_1 +msgid "Test 7: « View  » account type" +msgstr "" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Code Help" +msgstr "" diff --git a/addons/account_test/i18n/tr.po b/addons/account_test/i18n/tr.po index 6d1f49c3624..49fa5f18d26 100644 --- a/addons/account_test/i18n/tr.po +++ b/addons/account_test/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/zh_CN.po b/addons/account_test/i18n/zh_CN.po index 574e9d7bd7b..003f84905d5 100644 --- a/addons/account_test/i18n/zh_CN.po +++ b/addons/account_test/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/report/account_test.rml b/addons/account_test/report/account_test.rml deleted file mode 100644 index 1efa12fd5cb..00000000000 --- a/addons/account_test/report/account_test.rml +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Accouting tests on [[ datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") ]] - - - -
    - [[repeatIn(objects,'o')]] - - - - [[ o.name ]] - - - - - [[ o.desc or '' ]] - - - - - - - [[ repeatIn(execute_code(o.code_exec), 'test_result') ]] - [[ test_result ]] - - - - - - -
    - -
    -
    diff --git a/addons/account_test/report/account_test_report.py b/addons/account_test/report/account_test_report.py index 0cfbc040d82..bb21e3807a8 100644 --- a/addons/account_test/report/account_test_report.py +++ b/addons/account_test/report/account_test_report.py @@ -23,8 +23,10 @@ import datetime import time -from openerp.report import report_sxw +from openerp.osv import osv from openerp.tools.translate import _ +from openerp.report import report_sxw + # # Use period and Journal for selection or resources @@ -84,6 +86,11 @@ class report_assert_account(report_sxw.rml_parse): return result -report_sxw.report_sxw('report.account.test.assert.print', 'accounting.assert.test', 'addons/account_test/report/account_test.rml', parser=report_assert_account, header=False) + +class report_accounttest(osv.AbstractModel): + _name = 'report.account_test.report_accounttest' + _inherit = 'report.abstract_report' + _template = 'account_test.report_accounttest' + _wrapped_report_class = report_assert_account # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_test/views/report_accounttest.xml b/addons/account_test/views/report_accounttest.xml new file mode 100644 index 00000000000..02ce82218dc --- /dev/null +++ b/addons/account_test/views/report_accounttest.xml @@ -0,0 +1,23 @@ + + + + + + diff --git a/addons/account_voucher/__openerp__.py b/addons/account_voucher/__openerp__.py index 0659e4f4bae..dc8102d6647 100644 --- a/addons/account_voucher/__openerp__.py +++ b/addons/account_voucher/__openerp__.py @@ -49,7 +49,6 @@ This module manages: 'security/ir.model.access.csv', 'account_voucher_sequence.xml', 'account_voucher_workflow.xml', - 'account_voucher_report.xml', 'wizard/account_statement_from_invoice_view.xml', 'account_voucher_view.xml', 'voucher_payment_receipt_view.xml', @@ -66,7 +65,6 @@ This module manages: 'test/account_voucher.yml', 'test/sales_receipt.yml', 'test/sales_payment.yml', - 'test/account_voucher_report.yml', 'test/case1_usd_usd.yml', 'test/case1_usd_usd_payment_rate.yml', 'test/case2_usd_eur_debtor_in_eur.yml', diff --git a/addons/account_voucher/account_voucher.py b/addons/account_voucher/account_voucher.py index 5d0ed8297c2..771c6e15bd8 100644 --- a/addons/account_voucher/account_voucher.py +++ b/addons/account_voucher/account_voucher.py @@ -732,13 +732,17 @@ class account_voucher(osv.osv): total_credit = 0.0 total_debit = 0.0 - account_type = 'receivable' + account_type = None + if context.get('account_id'): + account_type = self.pool['account.account'].browse(cr, uid, context['account_id'], context=context).type if ttype == 'payment': - account_type = 'payable' + if not account_type: + account_type = 'payable' total_debit = price or 0.0 else: total_credit = price or 0.0 - account_type = 'receivable' + if not account_type: + account_type = 'receivable' if not context.get('move_line_ids', False): ids = move_line_pool.search(cr, uid, [('state','=','valid'), ('account_id.type', '=', account_type), ('reconcile_id', '=', False), ('partner_id', '=', partner_id)], context=context) @@ -827,9 +831,9 @@ class account_voucher(osv.osv): else: default['value']['line_dr_ids'].append(rs) - if ttype == 'payment' and len(default['value']['line_cr_ids']) > 0: + if len(default['value']['line_cr_ids']) > 0: default['value']['pre_line'] = 1 - elif ttype == 'receipt' and len(default['value']['line_dr_ids']) > 0: + elif len(default['value']['line_dr_ids']) > 0: default['value']['pre_line'] = 1 default['value']['writeoff_amount'] = self._compute_writeoff_amount(cr, uid, default['value']['line_dr_ids'], default['value']['line_cr_ids'], price, ttype) return default @@ -1662,7 +1666,7 @@ class account_bank_statement_line(osv.osv): def _check_amount(self, cr, uid, ids, context=None): for obj in self.browse(cr, uid, ids, context=context): if obj.voucher_id: - diff = abs(obj.amount) - obj.voucher_id.amount + diff = abs(obj.amount) - abs(obj.voucher_id.amount) if not self.pool.get('res.currency').is_zero(cr, uid, obj.statement_id.currency, diff): return False return True diff --git a/addons/account_voucher/account_voucher_report.xml b/addons/account_voucher/account_voucher_report.xml deleted file mode 100644 index 239492d1a27..00000000000 --- a/addons/account_voucher/account_voucher_report.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - diff --git a/addons/account_voucher/account_voucher_view.xml b/addons/account_voucher/account_voucher_view.xml index 288f8ce9332..3e4f1635914 100644 --- a/addons/account_voucher/account_voucher_view.xml +++ b/addons/account_voucher/account_voucher_view.xml @@ -213,10 +213,10 @@ - + - + onchange_amount(amount) @@ -230,7 +230,7 @@ - +
    @@ -241,7 +241,7 @@ - + diff --git a/addons/account_voucher/i18n/ar.po b/addons/account_voucher/i18n/ar.po index 5a22ab271ee..d02cee11b62 100644 --- a/addons/account_voucher/i18n/ar.po +++ b/addons/account_voucher/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/bg.po b/addons/account_voucher/i18n/bg.po index f49bdf3cb45..05e1ec7e307 100644 --- a/addons/account_voucher/i18n/bg.po +++ b/addons/account_voucher/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/bs.po b/addons/account_voucher/i18n/bs.po index 78ba5c9d639..481076d4a16 100644 --- a/addons/account_voucher/i18n/bs.po +++ b/addons/account_voucher/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ca.po b/addons/account_voucher/i18n/ca.po index eea882af5e1..bb4d8bb8c68 100644 --- a/addons/account_voucher/i18n/ca.po +++ b/addons/account_voucher/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/cs.po b/addons/account_voucher/i18n/cs.po index 6cd7782835b..6019c1c6d76 100644 --- a/addons/account_voucher/i18n/cs.po +++ b/addons/account_voucher/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/da.po b/addons/account_voucher/i18n/da.po index 34ad4ed176e..e61981e6a74 100644 --- a/addons/account_voucher/i18n/da.po +++ b/addons/account_voucher/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/de.po b/addons/account_voucher/i18n/de.po index 067d9267f14..cdfbbc883ef 100644 --- a/addons/account_voucher/i18n/de.po +++ b/addons/account_voucher/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/el.po b/addons/account_voucher/i18n/el.po index 84344240c10..ba868ffd553 100644 --- a/addons/account_voucher/i18n/el.po +++ b/addons/account_voucher/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/en_GB.po b/addons/account_voucher/i18n/en_GB.po index ff33543b2c7..cf65e9bb21a 100644 --- a/addons/account_voucher/i18n/en_GB.po +++ b/addons/account_voucher/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es.po b/addons/account_voucher/i18n/es.po index 9a8960647c2..af458eb2680 100644 --- a/addons/account_voucher/i18n/es.po +++ b/addons/account_voucher/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_AR.po b/addons/account_voucher/i18n/es_AR.po index 80eea749890..db4af0a64d0 100644 --- a/addons/account_voucher/i18n/es_AR.po +++ b/addons/account_voucher/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_CR.po b/addons/account_voucher/i18n/es_CR.po index 3e3f99f06d2..3d03ed90d98 100644 --- a/addons/account_voucher/i18n/es_CR.po +++ b/addons/account_voucher/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/es_EC.po b/addons/account_voucher/i18n/es_EC.po index 083e04a3b59..a0a850aa6ae 100644 --- a/addons/account_voucher/i18n/es_EC.po +++ b/addons/account_voucher/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_PE.po b/addons/account_voucher/i18n/es_PE.po index afe46a66239..d5d1cb09a38 100644 --- a/addons/account_voucher/i18n/es_PE.po +++ b/addons/account_voucher/i18n/es_PE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_PY.po b/addons/account_voucher/i18n/es_PY.po index b67d04736f6..1ecd0c99b92 100644 --- a/addons/account_voucher/i18n/es_PY.po +++ b/addons/account_voucher/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/et.po b/addons/account_voucher/i18n/et.po index 772838f7d21..44e96ab7e40 100644 --- a/addons/account_voucher/i18n/et.po +++ b/addons/account_voucher/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #~ msgid "Bank Receipt Voucher" #~ msgstr "Panga sissetulekuorder" diff --git a/addons/account_voucher/i18n/fa.po b/addons/account_voucher/i18n/fa.po index c48a1040253..2b43c6ba248 100644 --- a/addons/account_voucher/i18n/fa.po +++ b/addons/account_voucher/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/fi.po b/addons/account_voucher/i18n/fi.po index a4e8133dd8d..12fb46164e1 100644 --- a/addons/account_voucher/i18n/fi.po +++ b/addons/account_voucher/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/fr.po b/addons/account_voucher/i18n/fr.po index 96f525e4db6..b7fb70f4663 100644 --- a/addons/account_voucher/i18n/fr.po +++ b/addons/account_voucher/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/gl.po b/addons/account_voucher/i18n/gl.po index c08ef62323a..07032fda58d 100644 --- a/addons/account_voucher/i18n/gl.po +++ b/addons/account_voucher/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/gu.po b/addons/account_voucher/i18n/gu.po index 6e0b513d58d..55547643f25 100644 --- a/addons/account_voucher/i18n/gu.po +++ b/addons/account_voucher/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/hi.po b/addons/account_voucher/i18n/hi.po index 27aaa97e694..d74601ec50a 100644 --- a/addons/account_voucher/i18n/hi.po +++ b/addons/account_voucher/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/hr.po b/addons/account_voucher/i18n/hr.po index 6dd760fdac4..40affba5c3d 100644 --- a/addons/account_voucher/i18n/hr.po +++ b/addons/account_voucher/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/hu.po b/addons/account_voucher/i18n/hu.po index 35d5c1a7a82..b73080ea5ba 100644 --- a/addons/account_voucher/i18n/hu.po +++ b/addons/account_voucher/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/id.po b/addons/account_voucher/i18n/id.po index 3aa112c16c5..d0266f7cbb0 100644 --- a/addons/account_voucher/i18n/id.po +++ b/addons/account_voucher/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/it.po b/addons/account_voucher/i18n/it.po index 25d115757a5..5a2a234f2f3 100644 --- a/addons/account_voucher/i18n/it.po +++ b/addons/account_voucher/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ja.po b/addons/account_voucher/i18n/ja.po index e9b35f4d0eb..b6c79676c83 100644 --- a/addons/account_voucher/i18n/ja.po +++ b/addons/account_voucher/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ko.po b/addons/account_voucher/i18n/ko.po index 761765c646f..26711ec9fd7 100644 --- a/addons/account_voucher/i18n/ko.po +++ b/addons/account_voucher/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/lt.po b/addons/account_voucher/i18n/lt.po index 8ffb1724664..e723f44b98e 100644 --- a/addons/account_voucher/i18n/lt.po +++ b/addons/account_voucher/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/mk.po b/addons/account_voucher/i18n/mk.po index 8f2026a8d56..2f5733fda31 100644 --- a/addons/account_voucher/i18n/mk.po +++ b/addons/account_voucher/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/mn.po b/addons/account_voucher/i18n/mn.po index 2b2ba4d8171..068dafe3a63 100644 --- a/addons/account_voucher/i18n/mn.po +++ b/addons/account_voucher/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/nb.po b/addons/account_voucher/i18n/nb.po index a8d4b9767cc..5d7adcf0f6c 100644 --- a/addons/account_voucher/i18n/nb.po +++ b/addons/account_voucher/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/nl.po b/addons/account_voucher/i18n/nl.po index a305b567969..77b4cc4ed86 100644 --- a/addons/account_voucher/i18n/nl.po +++ b/addons/account_voucher/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -1314,7 +1314,7 @@ msgstr "Relatie" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 msgid "Open Balance" -msgstr "Open balans" +msgstr "Openstaand bedrag" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change diff --git a/addons/account_voucher/i18n/nl_BE.po b/addons/account_voucher/i18n/nl_BE.po index 365a3f5cd52..b11d27bf919 100644 --- a/addons/account_voucher/i18n/nl_BE.po +++ b/addons/account_voucher/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: nl\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/oc.po b/addons/account_voucher/i18n/oc.po index 0ed71f4c8b5..66ef41f4322 100644 --- a/addons/account_voucher/i18n/oc.po +++ b/addons/account_voucher/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/pl.po b/addons/account_voucher/i18n/pl.po index 04b3b4e4623..6c262eec6a1 100644 --- a/addons/account_voucher/i18n/pl.po +++ b/addons/account_voucher/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/pt.po b/addons/account_voucher/i18n/pt.po index 8974d40c4dd..e0bed4ced96 100644 --- a/addons/account_voucher/i18n/pt.po +++ b/addons/account_voucher/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/pt_BR.po b/addons/account_voucher/i18n/pt_BR.po index 7cbf5c0c3ff..6f36ce57c50 100644 --- a/addons/account_voucher/i18n/pt_BR.po +++ b/addons/account_voucher/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ro.po b/addons/account_voucher/i18n/ro.po index b507e014a90..ffe8df739e8 100644 --- a/addons/account_voucher/i18n/ro.po +++ b/addons/account_voucher/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ru.po b/addons/account_voucher/i18n/ru.po index 18d31f1d8a8..28b95d7f8b9 100644 --- a/addons/account_voucher/i18n/ru.po +++ b/addons/account_voucher/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sl.po b/addons/account_voucher/i18n/sl.po index bf23438c2b7..007a38a1eba 100644 --- a/addons/account_voucher/i18n/sl.po +++ b/addons/account_voucher/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sq.po b/addons/account_voucher/i18n/sq.po index 104e41b19fa..5badbcca76b 100644 --- a/addons/account_voucher/i18n/sq.po +++ b/addons/account_voucher/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sr.po b/addons/account_voucher/i18n/sr.po index 31a0c2bb38e..6a962b8264e 100644 --- a/addons/account_voucher/i18n/sr.po +++ b/addons/account_voucher/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sr@latin.po b/addons/account_voucher/i18n/sr@latin.po index c5fc9893b43..0554a101da0 100644 --- a/addons/account_voucher/i18n/sr@latin.po +++ b/addons/account_voucher/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sv.po b/addons/account_voucher/i18n/sv.po index e4b760aacb3..797a00c030b 100644 --- a/addons/account_voucher/i18n/sv.po +++ b/addons/account_voucher/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/tlh.po b/addons/account_voucher/i18n/tlh.po index e9a86a1ca6c..da356bf8f9e 100644 --- a/addons/account_voucher/i18n/tlh.po +++ b/addons/account_voucher/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/tr.po b/addons/account_voucher/i18n/tr.po index 3747c4066d2..6b6ab4ae8bb 100644 --- a/addons/account_voucher/i18n/tr.po +++ b/addons/account_voucher/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -77,7 +77,7 @@ msgstr "Fatura Ödeme" #: view:account.statement.from.invoice.lines:0 #: model:ir.actions.act_window,name:account_voucher.action_view_account_statement_from_invoice_lines msgid "Import Entries" -msgstr "Girişleri İçeaktar" +msgstr "Girişleri İçe aktar" #. module: account_voucher #: view:account.voucher:0 @@ -123,7 +123,7 @@ msgstr "Fatura Tarihinin yılına göre gruplandır" #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesperson" -msgstr "SatışTemsilcisi" +msgstr "Satış Temsilcisi" #. module: account_voucher #: view:account.voucher:0 @@ -802,7 +802,7 @@ msgstr "Haziran" #. module: account_voucher #: field:account.voucher,payment_rate_currency_id:0 msgid "Payment Rate Currency" -msgstr "Ödeme Para Birimi" +msgstr "Ödeme Para Birimi Kuru" #. module: account_voucher #: field:account.voucher,paid:0 @@ -918,7 +918,7 @@ msgstr "Müşteri Ödemeleri" #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "Satış Makbuzları Analizi" +msgstr "Satış Makbuz Analizi" #. module: account_voucher #: view:sale.receipt.report:0 @@ -960,7 +960,7 @@ msgstr "Muhasebe Fişi" #. module: account_voucher #: field:account.voucher,number:0 msgid "Number" -msgstr "Sayı" +msgstr "Numara" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -1292,7 +1292,7 @@ msgstr "Vergisi Tutar" #. module: account_voucher #: model:ir.model,name:account_voucher.model_sale_receipt_report msgid "Sales Receipt Statistics" -msgstr "Satış Makbuzları İstatistikleri" +msgstr "Satış Makbuz İstatistikleri" #. module: account_voucher #: view:account.voucher:0 @@ -1306,7 +1306,7 @@ msgstr "İş Ortağı" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 msgid "Open Balance" -msgstr "Bilanço Aç" +msgstr "Açık Bakiye" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change diff --git a/addons/account_voucher/i18n/uk.po b/addons/account_voucher/i18n/uk.po index 6b44466e022..d683314afc0 100644 --- a/addons/account_voucher/i18n/uk.po +++ b/addons/account_voucher/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/vi.po b/addons/account_voucher/i18n/vi.po index b670edef3f5..067e03e7498 100644 --- a/addons/account_voucher/i18n/vi.po +++ b/addons/account_voucher/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/zh_CN.po b/addons/account_voucher/i18n/zh_CN.po index a351ea5134f..c65dca1e14c 100644 --- a/addons/account_voucher/i18n/zh_CN.po +++ b/addons/account_voucher/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/zh_TW.po b/addons/account_voucher/i18n/zh_TW.po index fd6fdfe0f61..005b7c3a7b8 100644 --- a/addons/account_voucher/i18n/zh_TW.po +++ b/addons/account_voucher/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:59+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/report/__init__.py b/addons/account_voucher/report/__init__.py index 862843352a8..53ac7e915be 100644 --- a/addons/account_voucher/report/__init__.py +++ b/addons/account_voucher/report/__init__.py @@ -19,8 +19,6 @@ # ############################################################################## -import account_voucher -import account_voucher_print import account_voucher_sales_receipt # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_voucher/report/account_voucher.py b/addons/account_voucher/report/account_voucher.py deleted file mode 100644 index c23c7f4d384..00000000000 --- a/addons/account_voucher/report/account_voucher.py +++ /dev/null @@ -1,75 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 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 . -# -############################################################################## - -import time -from openerp.report import report_sxw -from openerp.tools import amount_to_text_en - -class report_voucher(report_sxw.rml_parse): - def __init__(self, cr, uid, name, context): - super(report_voucher, self).__init__(cr, uid, name, context) - self.localcontext.update({ - 'time': time, - 'convert':self.convert, - 'get_title': self.get_title, - 'debit':self.debit, - 'credit':self.credit, - 'get_ref': self._get_ref - }) - - def convert(self, amount, cur): - amt_en = amount_to_text_en.amount_to_text(amount, 'en', cur) - return amt_en - - def get_title(self, type): - title = '' - if type: - title = type[0].swapcase() + type[1:] + " Voucher" - return title - - def debit(self, move_ids): - debit = 0.0 - for move in move_ids: - debit += move.debit - return debit - - def credit(self, move_ids): - credit = 0.0 - for move in move_ids: - credit += move.credit - return credit - - def _get_ref(self, voucher_id, move_ids): - voucher_line_obj = self.pool.get('account.voucher.line') - voucher_line = voucher_line_obj.search(self.cr, self.uid, [('partner_id', '=', move_ids.partner_id.id), ('voucher_id', '=', voucher_id)]) - if voucher_line: - voucher = voucher_line_obj.browse(self.cr, self.uid, voucher_line)[0] - return voucher.name - else: - return -report_sxw.report_sxw( - 'report.voucher.cash_receipt.drcr', - 'account.voucher', - 'addons/account_voucher/report/account_voucher.rml', - parser=report_voucher,header="external" -) - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_voucher/report/account_voucher.rml b/addons/account_voucher/report/account_voucher.rml deleted file mode 100644 index 6b3337aa64f..00000000000 --- a/addons/account_voucher/report/account_voucher.rml +++ /dev/null @@ -1,446 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ repeatIn(objects,'voucher') ]] - - - - [[ get_title(voucher.type) ]] - - - - - - - - - - Journal: - - - [[ voucher.type ]] - - - Number: - - - [[ voucher.number ]] - - - - - - - Status: - - - PRO-FORMA [[ ((voucher.state == 'proforma') or removeParentNode('para')) and '' ]] - Draft[[ ((voucher.state == 'draft') or removeParentNode('para')) and '' ]] - Canceled [[ ((voucher.state == 'cancel') or removeParentNode('para')) and '' ]] - Posted [[ ((voucher.state == 'posted') or removeParentNode('para')) and '' ]] - - - Ref. : - - - [[ voucher.reference or '' ]] - - - Date: - - - [[ formatLang(voucher.date , date=True) or '' ]] - - - - - - - - - - Particulars - - - Debit - - - Credit - - - - - - -
    - [[ repeatIn(voucher.move_ids,'move_ids') ]] - - - - [[ (move_ids.partner_id and move_ids.partner_id.name) or 'Account']] - - - [[ formatLang(move_ids.debit) ]] - - - [[ formatLang(move_ids.credit) ]] - - - - - [[ move_ids.account_id.name ]] - - - - - - - - - - - - - - - [[ move_ids.name ]] - [[ get_ref(voucher.id,move_ids) ]] - - - - - - - - - - - - - - - - -
    - - - - - - - Through : - - - - - - - - - - - - - - - [[ voucher.narration or '']] - - - - - - - - - - - - - - - On Account of : - - - - - - - - - - - - - - - [[ voucher.name ]] - - - - - - - - - - - - - - - Amount (in words) : - - - - - - - - - - - - - - - [[ convert(voucher.amount,voucher.currency_id.name) ]] - - - - - - - - - - - - - - - - - - - - - - - - - [[ debit(voucher.move_ids)]] - - - [[ credit(voucher.move_ids) ]] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Receiver's Signature - - - - - - - - - - - - - Authorised Signatory - - - - - - -
    -
    diff --git a/addons/account_voucher/report/account_voucher_print.py b/addons/account_voucher/report/account_voucher_print.py deleted file mode 100644 index 1bc411947f6..00000000000 --- a/addons/account_voucher/report/account_voucher_print.py +++ /dev/null @@ -1,96 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 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 . -# -############################################################################## - -import time -from openerp.report import report_sxw -from openerp.tools import amount_to_text_en - -class report_voucher_print(report_sxw.rml_parse): - def __init__(self, cr, uid, name, context): - super(report_voucher_print, self).__init__(cr, uid, name, context) - self.localcontext.update({ - 'time': time, - 'get_title': self.get_title, - 'get_lines':self.get_lines, - 'get_on_account':self.get_on_account, - 'convert':self.convert - }) - - def convert(self, amount, cur): - amt_en = amount_to_text_en.amount_to_text(amount, 'en', cur) - return amt_en - - def get_lines(self, voucher): - result = [] - if voucher.type in ('payment','receipt'): - type = voucher.line_ids and voucher.line_ids[0].type or False - for move in voucher.move_ids: - res = {} - amount = move.credit - if type == 'dr': - amount = move.debit - if amount > 0.0: - res['pname'] = move.partner_id.name - res['ref'] = 'Agst Ref'+" "+str(move.name) - res['aname'] = move.account_id.name - res['amount'] = amount - result.append(res) - else: - type = voucher.line_ids and voucher.line_ids[0].type or False - for move in voucher.move_ids: - res = {} - amount = move.credit - if type == 'dr': - amount = move.debit - if amount > 0.0: - res['pname'] = move.partner_id.name - res['ref'] = move.name - res['aname'] = move.account_id.name - res['amount'] = amount - result.append(res) - return result - - def get_title(self, type): - title = '' - if type: - title = type[0].swapcase() + type[1:] + " Voucher" - return title - - def get_on_account(self, voucher): - name = "" - if voucher.type == 'receipt': - name = "Received cash from "+str(voucher.partner_id.name) - elif voucher.type == 'payment': - name = "Payment from "+str(voucher.partner_id.name) - elif voucher.type == 'sale': - name = "Sale to "+str(voucher.partner_id.name) - elif voucher.type == 'purchase': - name = "Purchase from "+str(voucher.partner_id.name) - return name - -report_sxw.report_sxw( - 'report.voucher.print', - 'account.voucher', - 'addons/account_voucher/report/account_voucher_print.rml', - parser=report_voucher_print,header="external" -) - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_voucher/report/account_voucher_print.rml b/addons/account_voucher/report/account_voucher_print.rml deleted file mode 100644 index 9f0f2e1f07e..00000000000 --- a/addons/account_voucher/report/account_voucher_print.rml +++ /dev/null @@ -1,331 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ repeatIn(objects,'voucher') ]] - - - - [[ get_title(voucher.type) ]] - - - - - - - - - - Number: - - - [[ voucher.number ]] - - - - - - - - - - - - - Date: - - - [[ formatLang(voucher.date , date=True) or '' ]] - - - - - - - Status: - - - PRO-FORMA [[ ((voucher.state == 'proforma') or removeParentNode('para')) and '' ]] - Draft[[ ((voucher.state == 'draft') or removeParentNode('para')) and '' ]] - Canceled [[ ((voucher.state == 'cancel') or removeParentNode('para')) and '' ]] - Posted [[ ((voucher.state == 'posted') or removeParentNode('para')) and '' ]] - - - - - - - - - - - - - Currency: - - - [[ voucher.currency_id.symbol ]] - - - - - - - - - - Particulars - - - Amount - - - - - - -
    - [[ repeatIn(get_lines(voucher),'p') ]] - - - - Account : - - - - - - - - - - [[ p['pname'] ]] - - - [[ formatLang(p['amount'], currency_obj=voucher.currency_id) ]] - - - - - [[ p['ref'] ]] - - - - - - - - - - Account : [[ p['aname'] ]] - - - - - - - - - - - -
    - - - - - - - Through : - - - - - - - - - - [[ voucher.journal_id.name or '' ]] - - - - - - - - - - On Account of : - - - - - - - - - - [[ get_on_account(voucher) ]] - - - - - - - - - - Amount (in words) : - - - - - - - - - - [[ convert(voucher.amount,voucher.currency_id.name) ]] - - - - - - - - - - - - - - - - - - - - [[ formatLang(voucher.amount, currency_obj=voucher.currency_id) ]] - - - -
    -
    diff --git a/addons/account_voucher/test/account_voucher_report.yml b/addons/account_voucher/test/account_voucher_report.yml deleted file mode 100644 index 96e96e4bdfd..00000000000 --- a/addons/account_voucher/test/account_voucher_report.yml +++ /dev/null @@ -1,27 +0,0 @@ -- - Demo for Account Voucher -- - !record {model: account.voucher, id: account_voucher_voucheraxelor0again, view: view_sale_receipt_form}: - type: sale - account_id: account.cash - company_id: base.main_company - journal_id: account.bank_journal - name: Voucher Axelor - narration: PC Assemble SC234 - amount: 1000.0 - line_ids: - - account_id: account.cash - amount: 1000.0 - name: Voucher Axelor - period_id: account.period_6 - -- - In order to test the PDF reports defined on a account_voucher, we will print account voucher Report -- - !python {model: account.voucher}: | - import os - import openerp.report - from openerp import tools - data, format = openerp.report.render_report(cr, uid, [ref("account_voucher_voucheraxelor0again")], 'voucher.cash_receipt.drcr', {}, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account_voucher-report.'+format), 'wb+').write(data) diff --git a/addons/analytic/analytic.py b/addons/analytic/analytic.py index 894a2a2d6c5..c1ea1f655d2 100644 --- a/addons/analytic/analytic.py +++ b/addons/analytic/analytic.py @@ -203,7 +203,7 @@ class account_analytic_account(osv.osv): }, string='Currency', type='many2one', relation='res.currency'), } - def on_change_template(self, cr, uid, ids, template_id, context=None): + def on_change_template(self, cr, uid, ids, template_id, date_start=False, context=None): if not template_id: return {} res = {'value':{}} @@ -213,7 +213,8 @@ class account_analytic_account(osv.osv): to_dt = datetime.strptime(template.date, tools.DEFAULT_SERVER_DATE_FORMAT) timedelta = to_dt - from_dt res['value']['date'] = datetime.strftime(datetime.now() + timedelta, tools.DEFAULT_SERVER_DATE_FORMAT) - res['value']['date_start'] = fields.date.today() + if not date_start: + res['value']['date_start'] = fields.date.today() res['value']['quantity_max'] = template.quantity_max res['value']['parent_id'] = template.parent_id and template.parent_id.id or False res['value']['description'] = template.description diff --git a/addons/analytic/analytic_view.xml b/addons/analytic/analytic_view.xml index 9a99552be13..5e65874a1d9 100644 --- a/addons/analytic/analytic_view.xml +++ b/addons/analytic/analytic_view.xml @@ -27,7 +27,7 @@ - + diff --git a/addons/analytic/i18n/ar.po b/addons/analytic/i18n/ar.po index c34264286e6..d82a6189520 100644 --- a/addons/analytic/i18n/ar.po +++ b/addons/analytic/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/bg.po b/addons/analytic/i18n/bg.po index e5416604e96..9d3b57d51f2 100644 --- a/addons/analytic/i18n/bg.po +++ b/addons/analytic/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/bs.po b/addons/analytic/i18n/bs.po index daa52733938..86f44825112 100644 --- a/addons/analytic/i18n/bs.po +++ b/addons/analytic/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ca.po b/addons/analytic/i18n/ca.po index 027103018ad..459dd1eac76 100644 --- a/addons/analytic/i18n/ca.po +++ b/addons/analytic/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/cs.po b/addons/analytic/i18n/cs.po index 808e50417f5..57b245a1e24 100644 --- a/addons/analytic/i18n/cs.po +++ b/addons/analytic/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Language: czech\n" #. module: analytic diff --git a/addons/analytic/i18n/da.po b/addons/analytic/i18n/da.po index c44e7984642..b821be859d0 100644 --- a/addons/analytic/i18n/da.po +++ b/addons/analytic/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/de.po b/addons/analytic/i18n/de.po index 25740aa2799..1339ee12572 100644 --- a/addons/analytic/i18n/de.po +++ b/addons/analytic/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/el.po b/addons/analytic/i18n/el.po index 5b66c775f96..47ce3fbbd3d 100644 --- a/addons/analytic/i18n/el.po +++ b/addons/analytic/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/en_GB.po b/addons/analytic/i18n/en_GB.po index 0d15eeaf590..d23290c31fa 100644 --- a/addons/analytic/i18n/en_GB.po +++ b/addons/analytic/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es.po b/addons/analytic/i18n/es.po index ba3781041b3..66a51f1bdb0 100644 --- a/addons/analytic/i18n/es.po +++ b/addons/analytic/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es_CR.po b/addons/analytic/i18n/es_CR.po index 771d426ea96..54928526d13 100644 --- a/addons/analytic/i18n/es_CR.po +++ b/addons/analytic/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: analytic diff --git a/addons/analytic/i18n/es_EC.po b/addons/analytic/i18n/es_EC.po index c590dd90b00..1e24718528b 100644 --- a/addons/analytic/i18n/es_EC.po +++ b/addons/analytic/i18n/es_EC.po @@ -9,8 +9,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es_PY.po b/addons/analytic/i18n/es_PY.po index a87013a6ab7..ea960e6a4ac 100644 --- a/addons/analytic/i18n/es_PY.po +++ b/addons/analytic/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/et.po b/addons/analytic/i18n/et.po index 87424440ff5..410ab0ce24c 100644 --- a/addons/analytic/i18n/et.po +++ b/addons/analytic/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/fa.po b/addons/analytic/i18n/fa.po index 40e40c68f48..d80099b1b10 100644 --- a/addons/analytic/i18n/fa.po +++ b/addons/analytic/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/fi.po b/addons/analytic/i18n/fi.po index 5b057df1b43..762452ea698 100644 --- a/addons/analytic/i18n/fi.po +++ b/addons/analytic/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/fr.po b/addons/analytic/i18n/fr.po index 49a07afc8f1..a2bfef594ad 100644 --- a/addons/analytic/i18n/fr.po +++ b/addons/analytic/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/gl.po b/addons/analytic/i18n/gl.po index 444e345975b..59a348849e3 100644 --- a/addons/analytic/i18n/gl.po +++ b/addons/analytic/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/hr.po b/addons/analytic/i18n/hr.po index 8f1d92fa600..4fbdb39784f 100644 --- a/addons/analytic/i18n/hr.po +++ b/addons/analytic/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/hu.po b/addons/analytic/i18n/hu.po index a6d9488430c..7789eac1e89 100644 --- a/addons/analytic/i18n/hu.po +++ b/addons/analytic/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/it.po b/addons/analytic/i18n/it.po index 03cf0f1060e..0b4f6579cde 100644 --- a/addons/analytic/i18n/it.po +++ b/addons/analytic/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ja.po b/addons/analytic/i18n/ja.po index 3892cdaabda..d111f42f9fc 100644 --- a/addons/analytic/i18n/ja.po +++ b/addons/analytic/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/lt.po b/addons/analytic/i18n/lt.po index 4d51151cf37..54801bdd45b 100644 --- a/addons/analytic/i18n/lt.po +++ b/addons/analytic/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/lv.po b/addons/analytic/i18n/lv.po index 562a6368f83..cd0dc72e58b 100644 --- a/addons/analytic/i18n/lv.po +++ b/addons/analytic/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/mk.po b/addons/analytic/i18n/mk.po index 98ed6ce2fc3..0caabf85b62 100644 --- a/addons/analytic/i18n/mk.po +++ b/addons/analytic/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/mn.po b/addons/analytic/i18n/mn.po index 4799d737022..7d73e0c134f 100644 --- a/addons/analytic/i18n/mn.po +++ b/addons/analytic/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/nb.po b/addons/analytic/i18n/nb.po index d44ecca13bb..fdadbd01fd3 100644 --- a/addons/analytic/i18n/nb.po +++ b/addons/analytic/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/nl.po b/addons/analytic/i18n/nl.po index da911d6a4ba..b6454f0e51d 100644 --- a/addons/analytic/i18n/nl.po +++ b/addons/analytic/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/nl_BE.po b/addons/analytic/i18n/nl_BE.po index cdfa5a14e80..caa8b2461df 100644 --- a/addons/analytic/i18n/nl_BE.po +++ b/addons/analytic/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/pl.po b/addons/analytic/i18n/pl.po index cb29cf53366..eb5dc6161c2 100644 --- a/addons/analytic/i18n/pl.po +++ b/addons/analytic/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/pt.po b/addons/analytic/i18n/pt.po index 211ae08a9b9..b8eb8474f03 100644 --- a/addons/analytic/i18n/pt.po +++ b/addons/analytic/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/pt_BR.po b/addons/analytic/i18n/pt_BR.po index 42b5983b100..bda96647f5f 100644 --- a/addons/analytic/i18n/pt_BR.po +++ b/addons/analytic/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ro.po b/addons/analytic/i18n/ro.po index be307177a5f..9128e0565ea 100644 --- a/addons/analytic/i18n/ro.po +++ b/addons/analytic/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ru.po b/addons/analytic/i18n/ru.po index d361c1c4978..1a3fcc77a87 100644 --- a/addons/analytic/i18n/ru.po +++ b/addons/analytic/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sl.po b/addons/analytic/i18n/sl.po index 9cf107ca94c..769ad0bedd5 100644 --- a/addons/analytic/i18n/sl.po +++ b/addons/analytic/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sq.po b/addons/analytic/i18n/sq.po index 4489ff0fd77..7f672ad7852 100644 --- a/addons/analytic/i18n/sq.po +++ b/addons/analytic/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sr.po b/addons/analytic/i18n/sr.po index 6515d487a00..bbe0da2d69f 100644 --- a/addons/analytic/i18n/sr.po +++ b/addons/analytic/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sr@latin.po b/addons/analytic/i18n/sr@latin.po index 6832aaa8ded..a28d22e047f 100644 --- a/addons/analytic/i18n/sr@latin.po +++ b/addons/analytic/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sv.po b/addons/analytic/i18n/sv.po index d77cc5ee777..9d9e7a60816 100644 --- a/addons/analytic/i18n/sv.po +++ b/addons/analytic/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/tr.po b/addons/analytic/i18n/tr.po index 8b3b6ffbc49..bfe0640e7e1 100644 --- a/addons/analytic/i18n/tr.po +++ b/addons/analytic/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/vi.po b/addons/analytic/i18n/vi.po index 78e95bcf78d..f2cac8f0cca 100644 --- a/addons/analytic/i18n/vi.po +++ b/addons/analytic/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/zh_CN.po b/addons/analytic/i18n/zh_CN.po index 5dd83ec0087..48b6606aee0 100644 --- a/addons/analytic/i18n/zh_CN.po +++ b/addons/analytic/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -84,7 +84,7 @@ msgstr "" #. module: analytic #: selection:account.analytic.account,type:0 msgid "Contract or Project" -msgstr "" +msgstr "合同或者项目" #. module: analytic #: field:account.analytic.account,name:0 @@ -338,7 +338,7 @@ msgstr "" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting msgid "Analytic Accounting" -msgstr "成本会计" +msgstr "辅助核算" #. module: analytic #: field:account.analytic.line,amount:0 diff --git a/addons/analytic/i18n/zh_TW.po b/addons/analytic/i18n/zh_TW.po index 6da13caff8b..713decdc19d 100644 --- a/addons/analytic/i18n/zh_TW.po +++ b/addons/analytic/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py b/addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py index a1bf43714ce..3682755b9c4 100644 --- a/addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py +++ b/addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py @@ -115,8 +115,8 @@ class account_analytic_account(osv.osv): digits_compute=dp.get_precision('Account')), } - def on_change_template(self, cr, uid, id, template_id, context=None): - res = super(account_analytic_account, self).on_change_template(cr, uid, id, template_id, context=context) + def on_change_template(self, cr, uid, id, template_id, date_start=False, context=None): + res = super(account_analytic_account, self).on_change_template(cr, uid, id, template_id, date_start=date_start, context=context) if template_id and 'value' in res: template = self.browse(cr, uid, template_id, context=context) res['value']['charge_expenses'] = template.charge_expenses diff --git a/addons/analytic_contract_hr_expense/i18n/ar.po b/addons/analytic_contract_hr_expense/i18n/ar.po index 59062aca01e..ff728c8e732 100644 --- a/addons/analytic_contract_hr_expense/i18n/ar.po +++ b/addons/analytic_contract_hr_expense/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/cs.po b/addons/analytic_contract_hr_expense/i18n/cs.po index f0aeb6f80e1..1234dab9773 100644 --- a/addons/analytic_contract_hr_expense/i18n/cs.po +++ b/addons/analytic_contract_hr_expense/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/da.po b/addons/analytic_contract_hr_expense/i18n/da.po index d606cf825f2..58916ec9023 100644 --- a/addons/analytic_contract_hr_expense/i18n/da.po +++ b/addons/analytic_contract_hr_expense/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/de.po b/addons/analytic_contract_hr_expense/i18n/de.po index 984c82f6910..54bb8f1ede6 100644 --- a/addons/analytic_contract_hr_expense/i18n/de.po +++ b/addons/analytic_contract_hr_expense/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/en_GB.po b/addons/analytic_contract_hr_expense/i18n/en_GB.po index 96098c99a2d..977391a501d 100644 --- a/addons/analytic_contract_hr_expense/i18n/en_GB.po +++ b/addons/analytic_contract_hr_expense/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/es.po b/addons/analytic_contract_hr_expense/i18n/es.po index 39d99bb3876..35be9fe1470 100644 --- a/addons/analytic_contract_hr_expense/i18n/es.po +++ b/addons/analytic_contract_hr_expense/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/fr.po b/addons/analytic_contract_hr_expense/i18n/fr.po index e26dc2108f5..fd3a38d75b5 100644 --- a/addons/analytic_contract_hr_expense/i18n/fr.po +++ b/addons/analytic_contract_hr_expense/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/hr.po b/addons/analytic_contract_hr_expense/i18n/hr.po index 89837f31fbe..aa93b5bf993 100644 --- a/addons/analytic_contract_hr_expense/i18n/hr.po +++ b/addons/analytic_contract_hr_expense/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/hu.po b/addons/analytic_contract_hr_expense/i18n/hu.po index d1c8d825439..f656789d102 100644 --- a/addons/analytic_contract_hr_expense/i18n/hu.po +++ b/addons/analytic_contract_hr_expense/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/it.po b/addons/analytic_contract_hr_expense/i18n/it.po index ed0ee8c6b82..fffa1cc6618 100644 --- a/addons/analytic_contract_hr_expense/i18n/it.po +++ b/addons/analytic_contract_hr_expense/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/ja.po b/addons/analytic_contract_hr_expense/i18n/ja.po index f3b6c3d365f..88f64c8e66d 100644 --- a/addons/analytic_contract_hr_expense/i18n/ja.po +++ b/addons/analytic_contract_hr_expense/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/mk.po b/addons/analytic_contract_hr_expense/i18n/mk.po index 062ac71b0d0..c282705518f 100644 --- a/addons/analytic_contract_hr_expense/i18n/mk.po +++ b/addons/analytic_contract_hr_expense/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/mn.po b/addons/analytic_contract_hr_expense/i18n/mn.po index 1db29a7a163..4f9dd98bf54 100644 --- a/addons/analytic_contract_hr_expense/i18n/mn.po +++ b/addons/analytic_contract_hr_expense/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/nb.po b/addons/analytic_contract_hr_expense/i18n/nb.po index ac583d36c31..a301ffc19d0 100644 --- a/addons/analytic_contract_hr_expense/i18n/nb.po +++ b/addons/analytic_contract_hr_expense/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/nl.po b/addons/analytic_contract_hr_expense/i18n/nl.po index 1fa7c7a9c50..3f07d3264d6 100644 --- a/addons/analytic_contract_hr_expense/i18n/nl.po +++ b/addons/analytic_contract_hr_expense/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/nl_BE.po b/addons/analytic_contract_hr_expense/i18n/nl_BE.po index 962ea9c167a..b2dad196457 100644 --- a/addons/analytic_contract_hr_expense/i18n/nl_BE.po +++ b/addons/analytic_contract_hr_expense/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/pl.po b/addons/analytic_contract_hr_expense/i18n/pl.po index 7305216c92d..e1b25a1f3c8 100644 --- a/addons/analytic_contract_hr_expense/i18n/pl.po +++ b/addons/analytic_contract_hr_expense/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/pt.po b/addons/analytic_contract_hr_expense/i18n/pt.po index 29cde717a11..d3a0bf89af9 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt.po +++ b/addons/analytic_contract_hr_expense/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/pt_BR.po b/addons/analytic_contract_hr_expense/i18n/pt_BR.po index 0d714c41adc..c64627cf205 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt_BR.po +++ b/addons/analytic_contract_hr_expense/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/ro.po b/addons/analytic_contract_hr_expense/i18n/ro.po index 9aaf2623480..2aab588efca 100644 --- a/addons/analytic_contract_hr_expense/i18n/ro.po +++ b/addons/analytic_contract_hr_expense/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/sl.po b/addons/analytic_contract_hr_expense/i18n/sl.po index 59a91254c35..6ca59c46e4d 100644 --- a/addons/analytic_contract_hr_expense/i18n/sl.po +++ b/addons/analytic_contract_hr_expense/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/sv.po b/addons/analytic_contract_hr_expense/i18n/sv.po new file mode 100644 index 00000000000..acad6977b6a --- /dev/null +++ b/addons/analytic_contract_hr_expense/i18n/sv.po @@ -0,0 +1,72 @@ +# Swedish translation for openobject-addons +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2014-03-31 21:25+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-04-01 05:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "or view" +msgstr "eller visa" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "Nothing to invoice, create" +msgstr "Inget att fakturera, skapa" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "expenses" +msgstr "utlägg" + +#. module: analytic_contract_hr_expense +#: model:ir.model,name:analytic_contract_hr_expense.model_account_analytic_account +msgid "Analytic Account" +msgstr "Objektkonto" + +#. module: analytic_contract_hr_expense +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 +#, python-format +msgid "Expenses to Invoice of %s" +msgstr "Utlägg att fakturera av %s" + +#. module: analytic_contract_hr_expense +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 +#, python-format +msgid "Expenses of %s" +msgstr "Utlägg av %s" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,expense_invoiced:0 +#: field:account.analytic.account,expense_to_invoice:0 +#: field:account.analytic.account,remaining_expense:0 +msgid "unknown" +msgstr "okänd" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,est_expenses:0 +msgid "Estimation of Expenses to Invoice" +msgstr "Uppskattning av utlägg att fakturera" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,charge_expenses:0 +msgid "Charge Expenses" +msgstr "Debitera utläggen" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "⇒ Invoice" +msgstr "⇒ Faktura" diff --git a/addons/analytic_contract_hr_expense/i18n/tr.po b/addons/analytic_contract_hr_expense/i18n/tr.po index 127824bbad6..8ed53c712ee 100644 --- a/addons/analytic_contract_hr_expense/i18n/tr.po +++ b/addons/analytic_contract_hr_expense/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/zh_CN.po b/addons/analytic_contract_hr_expense/i18n/zh_CN.po index 91c98cad715..fd3718d5e5c 100644 --- a/addons/analytic_contract_hr_expense/i18n/zh_CN.po +++ b/addons/analytic_contract_hr_expense/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_user_function/analytic_user_function.py b/addons/analytic_user_function/analytic_user_function.py index 2671fc92581..5a17ac91e53 100644 --- a/addons/analytic_user_function/analytic_user_function.py +++ b/addons/analytic_user_function/analytic_user_function.py @@ -26,6 +26,7 @@ import openerp.addons.decimal_precision as dp class analytic_user_funct_grid(osv.osv): _name="analytic.user.funct.grid" _description= "Price per User" + _rec_name="user_id" _columns={ 'user_id': fields.many2one("res.users", "User", required=True,), 'product_id': fields.many2one("product.product", "Service", required=True,), diff --git a/addons/analytic_user_function/i18n/ar.po b/addons/analytic_user_function/i18n/ar.po index f74ad47b8eb..e032d59101d 100644 --- a/addons/analytic_user_function/i18n/ar.po +++ b/addons/analytic_user_function/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/bg.po b/addons/analytic_user_function/i18n/bg.po index c923307997b..4a7e94524cf 100644 --- a/addons/analytic_user_function/i18n/bg.po +++ b/addons/analytic_user_function/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/bs.po b/addons/analytic_user_function/i18n/bs.po index 7921d982cac..d7743ce17fd 100644 --- a/addons/analytic_user_function/i18n/bs.po +++ b/addons/analytic_user_function/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ca.po b/addons/analytic_user_function/i18n/ca.po index 149ea120ef3..ca1e280f354 100644 --- a/addons/analytic_user_function/i18n/ca.po +++ b/addons/analytic_user_function/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/cs.po b/addons/analytic_user_function/i18n/cs.po index 0b17707a9d7..e6708e478cb 100644 --- a/addons/analytic_user_function/i18n/cs.po +++ b/addons/analytic_user_function/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/da.po b/addons/analytic_user_function/i18n/da.po index 69f00ec5914..6fa391948a2 100644 --- a/addons/analytic_user_function/i18n/da.po +++ b/addons/analytic_user_function/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/de.po b/addons/analytic_user_function/i18n/de.po index 11bd95f5d5e..9ce125de17f 100644 --- a/addons/analytic_user_function/i18n/de.po +++ b/addons/analytic_user_function/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/el.po b/addons/analytic_user_function/i18n/el.po index d2f8c840367..6f7e71af6eb 100644 --- a/addons/analytic_user_function/i18n/el.po +++ b/addons/analytic_user_function/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/en_GB.po b/addons/analytic_user_function/i18n/en_GB.po index 3e59cc902cf..2ae91005bcd 100644 --- a/addons/analytic_user_function/i18n/en_GB.po +++ b/addons/analytic_user_function/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es.po b/addons/analytic_user_function/i18n/es.po index fed00314c04..91bc1b7ff23 100644 --- a/addons/analytic_user_function/i18n/es.po +++ b/addons/analytic_user_function/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_AR.po b/addons/analytic_user_function/i18n/es_AR.po index 5208712fc69..4e5d9a96ecc 100644 --- a/addons/analytic_user_function/i18n/es_AR.po +++ b/addons/analytic_user_function/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_CR.po b/addons/analytic_user_function/i18n/es_CR.po index 2a785d2181b..6dfaaefa63f 100644 --- a/addons/analytic_user_function/i18n/es_CR.po +++ b/addons/analytic_user_function/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/es_EC.po b/addons/analytic_user_function/i18n/es_EC.po index 3d98a4997f9..941ec07c5bf 100644 --- a/addons/analytic_user_function/i18n/es_EC.po +++ b/addons/analytic_user_function/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_PY.po b/addons/analytic_user_function/i18n/es_PY.po index 7a7b102d864..e5452f76140 100644 --- a/addons/analytic_user_function/i18n/es_PY.po +++ b/addons/analytic_user_function/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/et.po b/addons/analytic_user_function/i18n/et.po index 293c8dea836..da28abe3ddf 100644 --- a/addons/analytic_user_function/i18n/et.po +++ b/addons/analytic_user_function/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fa.po b/addons/analytic_user_function/i18n/fa.po index 25eecd27133..daf532916c4 100644 --- a/addons/analytic_user_function/i18n/fa.po +++ b/addons/analytic_user_function/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fi.po b/addons/analytic_user_function/i18n/fi.po index 27474f86e1a..1f824b3dd68 100644 --- a/addons/analytic_user_function/i18n/fi.po +++ b/addons/analytic_user_function/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fr.po b/addons/analytic_user_function/i18n/fr.po index 2e144a10d90..bba741d3aaa 100644 --- a/addons/analytic_user_function/i18n/fr.po +++ b/addons/analytic_user_function/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/gl.po b/addons/analytic_user_function/i18n/gl.po index 57fbc166516..10ca36cfb04 100644 --- a/addons/analytic_user_function/i18n/gl.po +++ b/addons/analytic_user_function/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/gu.po b/addons/analytic_user_function/i18n/gu.po index 9f51f7bdac7..65fdbf52b01 100644 --- a/addons/analytic_user_function/i18n/gu.po +++ b/addons/analytic_user_function/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/hr.po b/addons/analytic_user_function/i18n/hr.po index a67c5b89b9e..c4c984610a5 100644 --- a/addons/analytic_user_function/i18n/hr.po +++ b/addons/analytic_user_function/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: hr\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/hu.po b/addons/analytic_user_function/i18n/hu.po index 60836cbdb68..9d30cd99d2c 100644 --- a/addons/analytic_user_function/i18n/hu.po +++ b/addons/analytic_user_function/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/id.po b/addons/analytic_user_function/i18n/id.po index ed90219587c..7fd3d886706 100644 --- a/addons/analytic_user_function/i18n/id.po +++ b/addons/analytic_user_function/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/it.po b/addons/analytic_user_function/i18n/it.po index 9b16a862ece..65cd280e252 100644 --- a/addons/analytic_user_function/i18n/it.po +++ b/addons/analytic_user_function/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ja.po b/addons/analytic_user_function/i18n/ja.po index a335d643e01..6be69b21e9c 100644 --- a/addons/analytic_user_function/i18n/ja.po +++ b/addons/analytic_user_function/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ko.po b/addons/analytic_user_function/i18n/ko.po index 281e808857c..0869dfbf408 100644 --- a/addons/analytic_user_function/i18n/ko.po +++ b/addons/analytic_user_function/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/lt.po b/addons/analytic_user_function/i18n/lt.po index 53628e6b0d5..5d755138eef 100644 --- a/addons/analytic_user_function/i18n/lt.po +++ b/addons/analytic_user_function/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/mk.po b/addons/analytic_user_function/i18n/mk.po index 98b23465e5f..904d4a3358c 100644 --- a/addons/analytic_user_function/i18n/mk.po +++ b/addons/analytic_user_function/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/mn.po b/addons/analytic_user_function/i18n/mn.po index 4c1705009a6..2144dbe09cf 100644 --- a/addons/analytic_user_function/i18n/mn.po +++ b/addons/analytic_user_function/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nb.po b/addons/analytic_user_function/i18n/nb.po index 76fd8c4d23b..900cf408769 100644 --- a/addons/analytic_user_function/i18n/nb.po +++ b/addons/analytic_user_function/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nl.po b/addons/analytic_user_function/i18n/nl.po index e1ea2b902f6..9b396fc8486 100644 --- a/addons/analytic_user_function/i18n/nl.po +++ b/addons/analytic_user_function/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nl_BE.po b/addons/analytic_user_function/i18n/nl_BE.po index 879c5310598..0cf5cf9fae3 100644 --- a/addons/analytic_user_function/i18n/nl_BE.po +++ b/addons/analytic_user_function/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/oc.po b/addons/analytic_user_function/i18n/oc.po index 4d5cee0a410..3789ad389e5 100644 --- a/addons/analytic_user_function/i18n/oc.po +++ b/addons/analytic_user_function/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pl.po b/addons/analytic_user_function/i18n/pl.po index 03b01bdd05c..adcdfdaca4a 100644 --- a/addons/analytic_user_function/i18n/pl.po +++ b/addons/analytic_user_function/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pt.po b/addons/analytic_user_function/i18n/pt.po index 50a0ad32a20..b988f66af36 100644 --- a/addons/analytic_user_function/i18n/pt.po +++ b/addons/analytic_user_function/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pt_BR.po b/addons/analytic_user_function/i18n/pt_BR.po index 8968ba97567..afe0bb9ceae 100644 --- a/addons/analytic_user_function/i18n/pt_BR.po +++ b/addons/analytic_user_function/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ro.po b/addons/analytic_user_function/i18n/ro.po index 8054107497f..01d9bb5ece5 100644 --- a/addons/analytic_user_function/i18n/ro.po +++ b/addons/analytic_user_function/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ru.po b/addons/analytic_user_function/i18n/ru.po index 9f67600155f..287f89933f7 100644 --- a/addons/analytic_user_function/i18n/ru.po +++ b/addons/analytic_user_function/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sk.po b/addons/analytic_user_function/i18n/sk.po index a6992a1ab46..344309031fe 100644 --- a/addons/analytic_user_function/i18n/sk.po +++ b/addons/analytic_user_function/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sl.po b/addons/analytic_user_function/i18n/sl.po index cfed9166eb8..37fb609f274 100644 --- a/addons/analytic_user_function/i18n/sl.po +++ b/addons/analytic_user_function/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sq.po b/addons/analytic_user_function/i18n/sq.po index a3d4588a733..edcfb1fec1b 100644 --- a/addons/analytic_user_function/i18n/sq.po +++ b/addons/analytic_user_function/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sr.po b/addons/analytic_user_function/i18n/sr.po index edf06281e31..e967cf02e31 100644 --- a/addons/analytic_user_function/i18n/sr.po +++ b/addons/analytic_user_function/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sr@latin.po b/addons/analytic_user_function/i18n/sr@latin.po index d9ac102aedf..08f58a19a96 100644 --- a/addons/analytic_user_function/i18n/sr@latin.po +++ b/addons/analytic_user_function/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sv.po b/addons/analytic_user_function/i18n/sv.po index 7a5f8e7da3a..5b6e645e7bf 100644 --- a/addons/analytic_user_function/i18n/sv.po +++ b/addons/analytic_user_function/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/tlh.po b/addons/analytic_user_function/i18n/tlh.po index 751858bf426..f59b209e33b 100644 --- a/addons/analytic_user_function/i18n/tlh.po +++ b/addons/analytic_user_function/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/tr.po b/addons/analytic_user_function/i18n/tr.po index fcb9affee21..c03a9925254 100644 --- a/addons/analytic_user_function/i18n/tr.po +++ b/addons/analytic_user_function/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/uk.po b/addons/analytic_user_function/i18n/uk.po index edbfe75d480..95c13c89600 100644 --- a/addons/analytic_user_function/i18n/uk.po +++ b/addons/analytic_user_function/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/vi.po b/addons/analytic_user_function/i18n/vi.po index 118af12ec85..50152cf9231 100644 --- a/addons/analytic_user_function/i18n/vi.po +++ b/addons/analytic_user_function/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/zh_CN.po b/addons/analytic_user_function/i18n/zh_CN.po index 6622a561195..57d12b00cb9 100644 --- a/addons/analytic_user_function/i18n/zh_CN.po +++ b/addons/analytic_user_function/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/zh_TW.po b/addons/analytic_user_function/i18n/zh_TW.po index c5db74972ed..8b3eb6c8ef6 100644 --- a/addons/analytic_user_function/i18n/zh_TW.po +++ b/addons/analytic_user_function/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:00+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/anonymization/i18n/ar.po b/addons/anonymization/i18n/ar.po index 87400314c86..312523cc8c5 100644 --- a/addons/anonymization/i18n/ar.po +++ b/addons/anonymization/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/bg.po b/addons/anonymization/i18n/bg.po index 92c25cf695b..46f03d7d945 100644 --- a/addons/anonymization/i18n/bg.po +++ b/addons/anonymization/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ca.po b/addons/anonymization/i18n/ca.po index df87f24d9f8..edc5443a314 100644 --- a/addons/anonymization/i18n/ca.po +++ b/addons/anonymization/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/cs.po b/addons/anonymization/i18n/cs.po index 73defd93fe5..ec5a90c7faf 100644 --- a/addons/anonymization/i18n/cs.po +++ b/addons/anonymization/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/da.po b/addons/anonymization/i18n/da.po index f6c8b170d54..7956f6e1856 100644 --- a/addons/anonymization/i18n/da.po +++ b/addons/anonymization/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/de.po b/addons/anonymization/i18n/de.po index 12b64e58406..14baf4e894b 100644 --- a/addons/anonymization/i18n/de.po +++ b/addons/anonymization/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/en_GB.po b/addons/anonymization/i18n/en_GB.po index 281ea502368..40656642e1f 100644 --- a/addons/anonymization/i18n/en_GB.po +++ b/addons/anonymization/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es.po b/addons/anonymization/i18n/es.po index 36492e0a881..b8895814011 100644 --- a/addons/anonymization/i18n/es.po +++ b/addons/anonymization/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es_CR.po b/addons/anonymization/i18n/es_CR.po index 36cb74d0999..808b15b8539 100644 --- a/addons/anonymization/i18n/es_CR.po +++ b/addons/anonymization/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: anonymization diff --git a/addons/anonymization/i18n/es_EC.po b/addons/anonymization/i18n/es_EC.po index 10245d37106..c2ae44cc842 100644 --- a/addons/anonymization/i18n/es_EC.po +++ b/addons/anonymization/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es_PY.po b/addons/anonymization/i18n/es_PY.po index b089b5e6307..99598d1c355 100644 --- a/addons/anonymization/i18n/es_PY.po +++ b/addons/anonymization/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/et.po b/addons/anonymization/i18n/et.po index 40c2effb6a8..5a44bdf2b8f 100644 --- a/addons/anonymization/i18n/et.po +++ b/addons/anonymization/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fa.po b/addons/anonymization/i18n/fa.po index 05b8edbd75e..522b67b3b3c 100644 --- a/addons/anonymization/i18n/fa.po +++ b/addons/anonymization/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fi.po b/addons/anonymization/i18n/fi.po index f99056dac43..e4681ca4949 100644 --- a/addons/anonymization/i18n/fi.po +++ b/addons/anonymization/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fr.po b/addons/anonymization/i18n/fr.po index f47a79cec4c..5819c5a8635 100644 --- a/addons/anonymization/i18n/fr.po +++ b/addons/anonymization/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/gl.po b/addons/anonymization/i18n/gl.po index af6c4c8c22f..b66b3f7bcb1 100644 --- a/addons/anonymization/i18n/gl.po +++ b/addons/anonymization/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/hr.po b/addons/anonymization/i18n/hr.po index 86bce5a3f39..aa7bc721b55 100644 --- a/addons/anonymization/i18n/hr.po +++ b/addons/anonymization/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/hu.po b/addons/anonymization/i18n/hu.po index 1a17b690d31..82b7112fdf6 100644 --- a/addons/anonymization/i18n/hu.po +++ b/addons/anonymization/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/it.po b/addons/anonymization/i18n/it.po index 3922c5de803..eefbfe8d02b 100644 --- a/addons/anonymization/i18n/it.po +++ b/addons/anonymization/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ja.po b/addons/anonymization/i18n/ja.po index b20367687b3..4f58708876d 100644 --- a/addons/anonymization/i18n/ja.po +++ b/addons/anonymization/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/lv.po b/addons/anonymization/i18n/lv.po index 37e251cf888..03f7a96bf0c 100644 --- a/addons/anonymization/i18n/lv.po +++ b/addons/anonymization/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/mk.po b/addons/anonymization/i18n/mk.po index 8be498a9b13..749d38192f3 100644 --- a/addons/anonymization/i18n/mk.po +++ b/addons/anonymization/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/mn.po b/addons/anonymization/i18n/mn.po index 1edc8689bfa..6699484976a 100644 --- a/addons/anonymization/i18n/mn.po +++ b/addons/anonymization/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/nb.po b/addons/anonymization/i18n/nb.po index 7537a0cbf97..1916799bb2e 100644 --- a/addons/anonymization/i18n/nb.po +++ b/addons/anonymization/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/nl.po b/addons/anonymization/i18n/nl.po index 2cbd4c2d7f4..368a01ddebb 100644 --- a/addons/anonymization/i18n/nl.po +++ b/addons/anonymization/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/pl.po b/addons/anonymization/i18n/pl.po index 58f1bd261cb..0e738484904 100644 --- a/addons/anonymization/i18n/pl.po +++ b/addons/anonymization/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/pt.po b/addons/anonymization/i18n/pt.po index 0d78f9031c7..965f8e144c3 100644 --- a/addons/anonymization/i18n/pt.po +++ b/addons/anonymization/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/pt_BR.po b/addons/anonymization/i18n/pt_BR.po index 0a133b24b4c..95180276508 100644 --- a/addons/anonymization/i18n/pt_BR.po +++ b/addons/anonymization/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ro.po b/addons/anonymization/i18n/ro.po index db9e5833ed1..05da56dd30b 100644 --- a/addons/anonymization/i18n/ro.po +++ b/addons/anonymization/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ru.po b/addons/anonymization/i18n/ru.po index 0afa816c767..da29c2170be 100644 --- a/addons/anonymization/i18n/ru.po +++ b/addons/anonymization/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sl.po b/addons/anonymization/i18n/sl.po index e3fe32e3547..3eb428f2ce7 100644 --- a/addons/anonymization/i18n/sl.po +++ b/addons/anonymization/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sq.po b/addons/anonymization/i18n/sq.po index 69c3c08124f..7eed1f7c180 100644 --- a/addons/anonymization/i18n/sq.po +++ b/addons/anonymization/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sr@latin.po b/addons/anonymization/i18n/sr@latin.po index 5a4994af0d4..73a15b7bd8c 100644 --- a/addons/anonymization/i18n/sr@latin.po +++ b/addons/anonymization/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sv.po b/addons/anonymization/i18n/sv.po index ff76f64d1dc..b822e3322db 100644 --- a/addons/anonymization/i18n/sv.po +++ b/addons/anonymization/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/tr.po b/addons/anonymization/i18n/tr.po index 9de1a8bf57d..25ff095b586 100644 --- a/addons/anonymization/i18n/tr.po +++ b/addons/anonymization/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/zh_CN.po b/addons/anonymization/i18n/zh_CN.po index 19d151a4274..33501f2bc16 100644 --- a/addons/anonymization/i18n/zh_CN.po +++ b/addons/anonymization/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/zh_TW.po b/addons/anonymization/i18n/zh_TW.po index 90a11117f8d..b2d2f41157f 100644 --- a/addons/anonymization/i18n/zh_TW.po +++ b/addons/anonymization/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:28+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/association/i18n/ar.po b/addons/association/i18n/ar.po index a53f99383de..ee45457da8b 100644 --- a/addons/association/i18n/ar.po +++ b/addons/association/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/bg.po b/addons/association/i18n/bg.po index 36deca01bbf..3a8a82ad3af 100644 --- a/addons/association/i18n/bg.po +++ b/addons/association/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/bs.po b/addons/association/i18n/bs.po index c7ee61c3192..8ab39ea9764 100644 --- a/addons/association/i18n/bs.po +++ b/addons/association/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ca.po b/addons/association/i18n/ca.po index e34227b83bd..aff472a7cc1 100644 --- a/addons/association/i18n/ca.po +++ b/addons/association/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/cs.po b/addons/association/i18n/cs.po index 421b7221a42..096ef16a701 100644 --- a/addons/association/i18n/cs.po +++ b/addons/association/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Language: Czech\n" #. module: association diff --git a/addons/association/i18n/da.po b/addons/association/i18n/da.po index 589fffb47b7..140f81077ae 100644 --- a/addons/association/i18n/da.po +++ b/addons/association/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/de.po b/addons/association/i18n/de.po index 0ebcd5867ea..e99f8d7f8b4 100644 --- a/addons/association/i18n/de.po +++ b/addons/association/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/el.po b/addons/association/i18n/el.po index 518822d6a43..66f4b3c0718 100644 --- a/addons/association/i18n/el.po +++ b/addons/association/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/en_GB.po b/addons/association/i18n/en_GB.po index 3878042ac8b..d108d5f3e36 100644 --- a/addons/association/i18n/en_GB.po +++ b/addons/association/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es.po b/addons/association/i18n/es.po index db12ffe3d0c..41ccd5b948c 100644 --- a/addons/association/i18n/es.po +++ b/addons/association/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es_CR.po b/addons/association/i18n/es_CR.po index 3fc1dada37a..e402b5d1842 100644 --- a/addons/association/i18n/es_CR.po +++ b/addons/association/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: association diff --git a/addons/association/i18n/es_EC.po b/addons/association/i18n/es_EC.po index ad328eba6fe..ea384dc513a 100644 --- a/addons/association/i18n/es_EC.po +++ b/addons/association/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es_PY.po b/addons/association/i18n/es_PY.po index 7bf4cb6b050..edb7e37bc11 100644 --- a/addons/association/i18n/es_PY.po +++ b/addons/association/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/et.po b/addons/association/i18n/et.po index f0d07c1ca9d..8e3cce807f3 100644 --- a/addons/association/i18n/et.po +++ b/addons/association/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fa.po b/addons/association/i18n/fa.po index 9d890879397..e4694e37ab0 100644 --- a/addons/association/i18n/fa.po +++ b/addons/association/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fi.po b/addons/association/i18n/fi.po index 381628a97d2..a9f9f713a82 100644 --- a/addons/association/i18n/fi.po +++ b/addons/association/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fr.po b/addons/association/i18n/fr.po index e747d802e79..036e783f281 100644 --- a/addons/association/i18n/fr.po +++ b/addons/association/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/gl.po b/addons/association/i18n/gl.po index efb4e6928a3..f220bb0f2ea 100644 --- a/addons/association/i18n/gl.po +++ b/addons/association/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/gu.po b/addons/association/i18n/gu.po index d56cdc0ba9c..d3492a5cada 100644 --- a/addons/association/i18n/gu.po +++ b/addons/association/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/hr.po b/addons/association/i18n/hr.po index 9c1dd334a6d..2192788e9f3 100644 --- a/addons/association/i18n/hr.po +++ b/addons/association/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/hu.po b/addons/association/i18n/hu.po index bb07244c57a..282d66a0d21 100644 --- a/addons/association/i18n/hu.po +++ b/addons/association/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/id.po b/addons/association/i18n/id.po index c429b33030a..9ad695ff0f1 100644 --- a/addons/association/i18n/id.po +++ b/addons/association/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/it.po b/addons/association/i18n/it.po index 43ad7ad90a3..0c16f90c4c6 100644 --- a/addons/association/i18n/it.po +++ b/addons/association/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ja.po b/addons/association/i18n/ja.po index bbdc5326148..3bcca160506 100644 --- a/addons/association/i18n/ja.po +++ b/addons/association/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ko.po b/addons/association/i18n/ko.po index fb529a4b5b9..ae5032c046e 100644 --- a/addons/association/i18n/ko.po +++ b/addons/association/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lo.po b/addons/association/i18n/lo.po index f0d93965d28..84debde2e02 100644 --- a/addons/association/i18n/lo.po +++ b/addons/association/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lt.po b/addons/association/i18n/lt.po index 7f01fe52884..01a6b13d927 100644 --- a/addons/association/i18n/lt.po +++ b/addons/association/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lv.po b/addons/association/i18n/lv.po index 5dd75da99e4..7f747566a04 100644 --- a/addons/association/i18n/lv.po +++ b/addons/association/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/mk.po b/addons/association/i18n/mk.po index 728c9887b3e..1886b9a2d7a 100644 --- a/addons/association/i18n/mk.po +++ b/addons/association/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/mn.po b/addons/association/i18n/mn.po index b93ff3f268b..90caf62a0e0 100644 --- a/addons/association/i18n/mn.po +++ b/addons/association/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/nb.po b/addons/association/i18n/nb.po index 3cba562fc5c..ab01ea00a1a 100644 --- a/addons/association/i18n/nb.po +++ b/addons/association/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/nl.po b/addons/association/i18n/nl.po index 32fedf59230..63759e6dc85 100644 --- a/addons/association/i18n/nl.po +++ b/addons/association/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pl.po b/addons/association/i18n/pl.po index 63d2a370670..ffb0b4ecdea 100644 --- a/addons/association/i18n/pl.po +++ b/addons/association/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pt.po b/addons/association/i18n/pt.po index 49d4e9ae0aa..f4a146686e6 100644 --- a/addons/association/i18n/pt.po +++ b/addons/association/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pt_BR.po b/addons/association/i18n/pt_BR.po index 533b694d9db..58818a8482f 100644 --- a/addons/association/i18n/pt_BR.po +++ b/addons/association/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ro.po b/addons/association/i18n/ro.po index c29b13966ce..be76ba09646 100644 --- a/addons/association/i18n/ro.po +++ b/addons/association/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ru.po b/addons/association/i18n/ru.po index 129b57e3e18..b2369b0a5e7 100644 --- a/addons/association/i18n/ru.po +++ b/addons/association/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sl.po b/addons/association/i18n/sl.po index e73748869f7..a03d26ef15b 100644 --- a/addons/association/i18n/sl.po +++ b/addons/association/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sq.po b/addons/association/i18n/sq.po index de94f57f20e..bf49300e7b6 100644 --- a/addons/association/i18n/sq.po +++ b/addons/association/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sr.po b/addons/association/i18n/sr.po index 3ad0502ed13..084d397830a 100644 --- a/addons/association/i18n/sr.po +++ b/addons/association/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sr@latin.po b/addons/association/i18n/sr@latin.po index 0a56ac7f3ab..5dd6b60e36d 100644 --- a/addons/association/i18n/sr@latin.po +++ b/addons/association/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sv.po b/addons/association/i18n/sv.po index 558153d34fd..93329392f29 100644 --- a/addons/association/i18n/sv.po +++ b/addons/association/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/tlh.po b/addons/association/i18n/tlh.po index 7f01fe52884..01a6b13d927 100644 --- a/addons/association/i18n/tlh.po +++ b/addons/association/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/tr.po b/addons/association/i18n/tr.po index cbd50939dbf..4423c08decb 100644 --- a/addons/association/i18n/tr.po +++ b/addons/association/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/uk.po b/addons/association/i18n/uk.po index 50e7db9901c..4d212901f7f 100644 --- a/addons/association/i18n/uk.po +++ b/addons/association/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/vi.po b/addons/association/i18n/vi.po index 09069ebeb4b..bf0e195db50 100644 --- a/addons/association/i18n/vi.po +++ b/addons/association/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/zh_CN.po b/addons/association/i18n/zh_CN.po index 3ba6b610d1e..13b9a685fe5 100644 --- a/addons/association/i18n/zh_CN.po +++ b/addons/association/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/zh_TW.po b/addons/association/i18n/zh_TW.po index 9de987a18ec..20c5b10e8ed 100644 --- a/addons/association/i18n/zh_TW.po +++ b/addons/association/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:24+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/audittrail/audittrail.py b/addons/audittrail/audittrail.py index ca4a15bca6e..71008e0855b 100644 --- a/addons/audittrail/audittrail.py +++ b/addons/audittrail/audittrail.py @@ -463,14 +463,12 @@ def process_data(cr, uid, pool, res_ids, model, method, old_values=None, new_val # if at least one modification has been found for model_id, resource_id in lines: line_model = pool.get('ir.model').browse(cr, SUPERUSER_ID, model_id).model - name = pool.get(line_model).name_get(cr, uid, [resource_id])[0][1] vals = { 'method': method, 'object_id': model_id, 'user_id': uid, 'res_id': resource_id, - 'name': name, } if (model_id, resource_id) not in old_values and method not in ('copy', 'read'): # the resource was not existing so we are forcing the method to 'create' @@ -481,7 +479,11 @@ def process_data(cr, uid, pool, res_ids, model, method, old_values=None, new_val # the resource is not existing anymore so we are forcing the method to 'unlink' # (because it could also come with the value 'write' if we are deleting the # record through a one2many field) + name = old_values[(model_id, resource_id)]['value'].get('name',False) vals.update({'method': 'unlink'}) + else : + name = pool[line_model].name_get(cr, uid, [resource_id])[0][1] + vals.update({'name': name}) # create the audittrail log in super admin mode, only if a change has been detected if lines[(model_id, resource_id)]: log_id = pool.get('audittrail.log').create(cr, SUPERUSER_ID, vals) diff --git a/addons/audittrail/i18n/ar.po b/addons/audittrail/i18n/ar.po index 42dc44f89f2..79b8a908f10 100644 --- a/addons/audittrail/i18n/ar.po +++ b/addons/audittrail/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/bg.po b/addons/audittrail/i18n/bg.po index 127e80d756b..87dd178a0f8 100644 --- a/addons/audittrail/i18n/bg.po +++ b/addons/audittrail/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/bs.po b/addons/audittrail/i18n/bs.po index 647ef997f20..6737ea47b04 100644 --- a/addons/audittrail/i18n/bs.po +++ b/addons/audittrail/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ca.po b/addons/audittrail/i18n/ca.po index bed5266aba3..c3539ccb89d 100644 --- a/addons/audittrail/i18n/ca.po +++ b/addons/audittrail/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/cs.po b/addons/audittrail/i18n/cs.po index e9c8fe5fd40..db8340c261c 100644 --- a/addons/audittrail/i18n/cs.po +++ b/addons/audittrail/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Language: Czech\n" #. module: audittrail diff --git a/addons/audittrail/i18n/da.po b/addons/audittrail/i18n/da.po index 049df5fb6d3..ebbc70335ea 100644 --- a/addons/audittrail/i18n/da.po +++ b/addons/audittrail/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/de.po b/addons/audittrail/i18n/de.po index 36de79803d2..40ca137fbe1 100644 --- a/addons/audittrail/i18n/de.po +++ b/addons/audittrail/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/el.po b/addons/audittrail/i18n/el.po index 153120cb821..e6e5f6edbac 100644 --- a/addons/audittrail/i18n/el.po +++ b/addons/audittrail/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es.po b/addons/audittrail/i18n/es.po index 34c672252bc..cbedfda4561 100644 --- a/addons/audittrail/i18n/es.po +++ b/addons/audittrail/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_AR.po b/addons/audittrail/i18n/es_AR.po index a1de40daf69..85aec5e655c 100644 --- a/addons/audittrail/i18n/es_AR.po +++ b/addons/audittrail/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_CR.po b/addons/audittrail/i18n/es_CR.po index 9531dd006a8..01420fe3240 100644 --- a/addons/audittrail/i18n/es_CR.po +++ b/addons/audittrail/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: audittrail diff --git a/addons/audittrail/i18n/es_EC.po b/addons/audittrail/i18n/es_EC.po index 2e6116aa76a..0f90c395bc6 100644 --- a/addons/audittrail/i18n/es_EC.po +++ b/addons/audittrail/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_PY.po b/addons/audittrail/i18n/es_PY.po index 296453048c0..5ec5f77541f 100644 --- a/addons/audittrail/i18n/es_PY.po +++ b/addons/audittrail/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/et.po b/addons/audittrail/i18n/et.po index 26faead63ff..f00ee440c75 100644 --- a/addons/audittrail/i18n/et.po +++ b/addons/audittrail/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa.po b/addons/audittrail/i18n/fa.po index 59f49d29713..b0d51cc9b01 100644 --- a/addons/audittrail/i18n/fa.po +++ b/addons/audittrail/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa_AF.po b/addons/audittrail/i18n/fa_AF.po index 26612bfc33b..707125b0618 100644 --- a/addons/audittrail/i18n/fa_AF.po +++ b/addons/audittrail/i18n/fa_AF.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fi.po b/addons/audittrail/i18n/fi.po index 7dd01124c67..1753d1b1e15 100644 --- a/addons/audittrail/i18n/fi.po +++ b/addons/audittrail/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fr.po b/addons/audittrail/i18n/fr.po index 8644220c984..e36dfa6307b 100644 --- a/addons/audittrail/i18n/fr.po +++ b/addons/audittrail/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/gl.po b/addons/audittrail/i18n/gl.po index 95de15afd15..81afb971fcd 100644 --- a/addons/audittrail/i18n/gl.po +++ b/addons/audittrail/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/gu.po b/addons/audittrail/i18n/gu.po index 6a13f258552..a1fb7fac86f 100644 --- a/addons/audittrail/i18n/gu.po +++ b/addons/audittrail/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hr.po b/addons/audittrail/i18n/hr.po index a0d9c0f1c12..a3c9c02aed3 100644 --- a/addons/audittrail/i18n/hr.po +++ b/addons/audittrail/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hu.po b/addons/audittrail/i18n/hu.po index cb063f72676..fdcc7b9c969 100644 --- a/addons/audittrail/i18n/hu.po +++ b/addons/audittrail/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/id.po b/addons/audittrail/i18n/id.po index eaabc6ffc01..854e5151562 100644 --- a/addons/audittrail/i18n/id.po +++ b/addons/audittrail/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/it.po b/addons/audittrail/i18n/it.po index 888cfc30294..29a2699284c 100644 --- a/addons/audittrail/i18n/it.po +++ b/addons/audittrail/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ja.po b/addons/audittrail/i18n/ja.po index d47687ae2ac..36874952560 100644 --- a/addons/audittrail/i18n/ja.po +++ b/addons/audittrail/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ko.po b/addons/audittrail/i18n/ko.po index 116fc648b0c..3814e9dfdee 100644 --- a/addons/audittrail/i18n/ko.po +++ b/addons/audittrail/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lt.po b/addons/audittrail/i18n/lt.po index b759a344780..84a8362d1c0 100644 --- a/addons/audittrail/i18n/lt.po +++ b/addons/audittrail/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lv.po b/addons/audittrail/i18n/lv.po index 52e890c345a..63f299f5ba7 100644 --- a/addons/audittrail/i18n/lv.po +++ b/addons/audittrail/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/mk.po b/addons/audittrail/i18n/mk.po index 9310153877a..6f899e7184c 100644 --- a/addons/audittrail/i18n/mk.po +++ b/addons/audittrail/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/mn.po b/addons/audittrail/i18n/mn.po index dbd4c3ab15c..e362e471630 100644 --- a/addons/audittrail/i18n/mn.po +++ b/addons/audittrail/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nb.po b/addons/audittrail/i18n/nb.po index 7abcdb7843f..a10adb6b144 100644 --- a/addons/audittrail/i18n/nb.po +++ b/addons/audittrail/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl.po b/addons/audittrail/i18n/nl.po index c27ae3c6a71..2178c28a34a 100644 --- a/addons/audittrail/i18n/nl.po +++ b/addons/audittrail/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl_BE.po b/addons/audittrail/i18n/nl_BE.po index 535b56dc1bc..08677a2cb88 100644 --- a/addons/audittrail/i18n/nl_BE.po +++ b/addons/audittrail/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/oc.po b/addons/audittrail/i18n/oc.po index cec24473685..6e4c5e974bd 100644 --- a/addons/audittrail/i18n/oc.po +++ b/addons/audittrail/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pl.po b/addons/audittrail/i18n/pl.po index ca25e5fc24e..281750606bc 100644 --- a/addons/audittrail/i18n/pl.po +++ b/addons/audittrail/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt.po b/addons/audittrail/i18n/pt.po index 95952068563..1d47c09fdd7 100644 --- a/addons/audittrail/i18n/pt.po +++ b/addons/audittrail/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt_BR.po b/addons/audittrail/i18n/pt_BR.po index 6237569d3c4..c5d5edeb77a 100644 --- a/addons/audittrail/i18n/pt_BR.po +++ b/addons/audittrail/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ro.po b/addons/audittrail/i18n/ro.po index a9e8776a131..4d45b1892a4 100644 --- a/addons/audittrail/i18n/ro.po +++ b/addons/audittrail/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ru.po b/addons/audittrail/i18n/ru.po index 9d78b8cddac..e12eac6ada2 100644 --- a/addons/audittrail/i18n/ru.po +++ b/addons/audittrail/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sl.po b/addons/audittrail/i18n/sl.po index efbf3c54996..d0f78b45748 100644 --- a/addons/audittrail/i18n/sl.po +++ b/addons/audittrail/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sq.po b/addons/audittrail/i18n/sq.po index 3ed7aba509a..e344341fc2d 100644 --- a/addons/audittrail/i18n/sq.po +++ b/addons/audittrail/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sr@latin.po b/addons/audittrail/i18n/sr@latin.po index 0c9115800e3..1db67b1f196 100644 --- a/addons/audittrail/i18n/sr@latin.po +++ b/addons/audittrail/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sv.po b/addons/audittrail/i18n/sv.po index 6ab96e8614f..01d34162cbc 100644 --- a/addons/audittrail/i18n/sv.po +++ b/addons/audittrail/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tlh.po b/addons/audittrail/i18n/tlh.po index 044ff96d8f7..3a0f2050913 100644 --- a/addons/audittrail/i18n/tlh.po +++ b/addons/audittrail/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tr.po b/addons/audittrail/i18n/tr.po index 3453587d036..12d818d500a 100644 --- a/addons/audittrail/i18n/tr.po +++ b/addons/audittrail/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/uk.po b/addons/audittrail/i18n/uk.po index b94bd0f49e8..063e83ce612 100644 --- a/addons/audittrail/i18n/uk.po +++ b/addons/audittrail/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/vi.po b/addons/audittrail/i18n/vi.po index b00dd81b155..4268306820c 100644 --- a/addons/audittrail/i18n/vi.po +++ b/addons/audittrail/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_CN.po b/addons/audittrail/i18n/zh_CN.po index 27b11e38602..a8a76253b55 100644 --- a/addons/audittrail/i18n/zh_CN.po +++ b/addons/audittrail/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_TW.po b/addons/audittrail/i18n/zh_TW.po index bd94f5bf588..6eb17fafefc 100644 --- a/addons/audittrail/i18n/zh_TW.po +++ b/addons/audittrail/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/auth_crypt/i18n/ar.po b/addons/auth_crypt/i18n/ar.po index c7ffed10e18..8f02f616641 100644 --- a/addons/auth_crypt/i18n/ar.po +++ b/addons/auth_crypt/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/cs.po b/addons/auth_crypt/i18n/cs.po index dc653445ebf..5209a4debec 100644 --- a/addons/auth_crypt/i18n/cs.po +++ b/addons/auth_crypt/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/da.po b/addons/auth_crypt/i18n/da.po index 9e28cd7dc49..bd3badbdc33 100644 --- a/addons/auth_crypt/i18n/da.po +++ b/addons/auth_crypt/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/de.po b/addons/auth_crypt/i18n/de.po index 80f88b75b0c..b2c42ab41de 100644 --- a/addons/auth_crypt/i18n/de.po +++ b/addons/auth_crypt/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/en_GB.po b/addons/auth_crypt/i18n/en_GB.po index 6b5aba3cdf9..3feb6b1949c 100644 --- a/addons/auth_crypt/i18n/en_GB.po +++ b/addons/auth_crypt/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/es.po b/addons/auth_crypt/i18n/es.po index 0288f7b64be..d9339423442 100644 --- a/addons/auth_crypt/i18n/es.po +++ b/addons/auth_crypt/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/et.po b/addons/auth_crypt/i18n/et.po index 0b7cb55889f..3c2a3349993 100644 --- a/addons/auth_crypt/i18n/et.po +++ b/addons/auth_crypt/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/fr.po b/addons/auth_crypt/i18n/fr.po index 2921580a05c..e67d492c058 100644 --- a/addons/auth_crypt/i18n/fr.po +++ b/addons/auth_crypt/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/gl.po b/addons/auth_crypt/i18n/gl.po index 6d96154a878..3d3cabd52fd 100644 --- a/addons/auth_crypt/i18n/gl.po +++ b/addons/auth_crypt/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/hr.po b/addons/auth_crypt/i18n/hr.po index 6b6d7683b2a..727d8b682fc 100644 --- a/addons/auth_crypt/i18n/hr.po +++ b/addons/auth_crypt/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/hu.po b/addons/auth_crypt/i18n/hu.po index bd02e788f27..21d2dec4525 100644 --- a/addons/auth_crypt/i18n/hu.po +++ b/addons/auth_crypt/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/it.po b/addons/auth_crypt/i18n/it.po index 5f7c0f61830..bed05463fce 100644 --- a/addons/auth_crypt/i18n/it.po +++ b/addons/auth_crypt/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/lt.po b/addons/auth_crypt/i18n/lt.po index 3321af0e3bb..d3e903262db 100644 --- a/addons/auth_crypt/i18n/lt.po +++ b/addons/auth_crypt/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/mk.po b/addons/auth_crypt/i18n/mk.po index 3bd7dd9a741..4b3b5f1d25c 100644 --- a/addons/auth_crypt/i18n/mk.po +++ b/addons/auth_crypt/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/mn.po b/addons/auth_crypt/i18n/mn.po index 531a1ba44ea..8144fd53413 100644 --- a/addons/auth_crypt/i18n/mn.po +++ b/addons/auth_crypt/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/nl.po b/addons/auth_crypt/i18n/nl.po index 576c0d25e5a..cb83a026a69 100644 --- a/addons/auth_crypt/i18n/nl.po +++ b/addons/auth_crypt/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/nl_BE.po b/addons/auth_crypt/i18n/nl_BE.po index 1f831118884..c9af8fc3817 100644 --- a/addons/auth_crypt/i18n/nl_BE.po +++ b/addons/auth_crypt/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/pl.po b/addons/auth_crypt/i18n/pl.po index fc0a761ceef..9786ece7dcb 100644 --- a/addons/auth_crypt/i18n/pl.po +++ b/addons/auth_crypt/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/pt.po b/addons/auth_crypt/i18n/pt.po index 7d1a6806da9..8612f30d4cc 100644 --- a/addons/auth_crypt/i18n/pt.po +++ b/addons/auth_crypt/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/pt_BR.po b/addons/auth_crypt/i18n/pt_BR.po index 8e1e6d10ff2..bf91ae34572 100644 --- a/addons/auth_crypt/i18n/pt_BR.po +++ b/addons/auth_crypt/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/ro.po b/addons/auth_crypt/i18n/ro.po index fbcd3a25497..c1d6348469e 100644 --- a/addons/auth_crypt/i18n/ro.po +++ b/addons/auth_crypt/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/ru.po b/addons/auth_crypt/i18n/ru.po index a2a5d24b075..7df93bd801a 100644 --- a/addons/auth_crypt/i18n/ru.po +++ b/addons/auth_crypt/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/sl.po b/addons/auth_crypt/i18n/sl.po index 5deb8f60daa..99cb5081dca 100644 --- a/addons/auth_crypt/i18n/sl.po +++ b/addons/auth_crypt/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/sv.po b/addons/auth_crypt/i18n/sv.po index f57d0d60ba2..dc460f7ca5e 100644 --- a/addons/auth_crypt/i18n/sv.po +++ b/addons/auth_crypt/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/tr.po b/addons/auth_crypt/i18n/tr.po index f277f0e393f..3c2c2110564 100644 --- a/addons/auth_crypt/i18n/tr.po +++ b/addons/auth_crypt/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/zh_CN.po b/addons/auth_crypt/i18n/zh_CN.po index 45cc57ea041..c49325739f0 100644 --- a/addons/auth_crypt/i18n/zh_CN.po +++ b/addons/auth_crypt/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/zh_TW.po b/addons/auth_crypt/i18n/zh_TW.po index c846c5ec0be..3af77342227 100644 --- a/addons/auth_crypt/i18n/zh_TW.po +++ b/addons/auth_crypt/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:35+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_ldap/i18n/ar.po b/addons/auth_ldap/i18n/ar.po index 491c98eabbf..799661519a4 100644 --- a/addons/auth_ldap/i18n/ar.po +++ b/addons/auth_ldap/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/bg.po b/addons/auth_ldap/i18n/bg.po index e9a1d2be082..be0f1865d7d 100644 --- a/addons/auth_ldap/i18n/bg.po +++ b/addons/auth_ldap/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ca.po b/addons/auth_ldap/i18n/ca.po index a930eb01fc7..9e4d914499c 100644 --- a/addons/auth_ldap/i18n/ca.po +++ b/addons/auth_ldap/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/cs.po b/addons/auth_ldap/i18n/cs.po index 6dd471fdf02..8b3207c5796 100644 --- a/addons/auth_ldap/i18n/cs.po +++ b/addons/auth_ldap/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/da.po b/addons/auth_ldap/i18n/da.po index 9afe517e7d2..a31713b9c22 100644 --- a/addons/auth_ldap/i18n/da.po +++ b/addons/auth_ldap/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/de.po b/addons/auth_ldap/i18n/de.po index d74863ab0fe..bf05be1a884 100644 --- a/addons/auth_ldap/i18n/de.po +++ b/addons/auth_ldap/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/en_GB.po b/addons/auth_ldap/i18n/en_GB.po index 2c0a9e89df9..cbd6b6d0b1c 100644 --- a/addons/auth_ldap/i18n/en_GB.po +++ b/addons/auth_ldap/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/es.po b/addons/auth_ldap/i18n/es.po index 68582208d25..071c848fef5 100644 --- a/addons/auth_ldap/i18n/es.po +++ b/addons/auth_ldap/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/es_CR.po b/addons/auth_ldap/i18n/es_CR.po index a13569db5a8..19eb7027e15 100644 --- a/addons/auth_ldap/i18n/es_CR.po +++ b/addons/auth_ldap/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/fi.po b/addons/auth_ldap/i18n/fi.po index 688da217f40..64c0fb65564 100644 --- a/addons/auth_ldap/i18n/fi.po +++ b/addons/auth_ldap/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/fr.po b/addons/auth_ldap/i18n/fr.po index 8f570b469cb..d4a4b514e32 100644 --- a/addons/auth_ldap/i18n/fr.po +++ b/addons/auth_ldap/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/gl.po b/addons/auth_ldap/i18n/gl.po index 1178968f9e5..f595f566cf4 100644 --- a/addons/auth_ldap/i18n/gl.po +++ b/addons/auth_ldap/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/hr.po b/addons/auth_ldap/i18n/hr.po index f59a6bf55a3..bf411c32eaa 100644 --- a/addons/auth_ldap/i18n/hr.po +++ b/addons/auth_ldap/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/hu.po b/addons/auth_ldap/i18n/hu.po index b37bc5829bf..8f243e4880b 100644 --- a/addons/auth_ldap/i18n/hu.po +++ b/addons/auth_ldap/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/it.po b/addons/auth_ldap/i18n/it.po index 4599711ddf1..1ad5a7f9444 100644 --- a/addons/auth_ldap/i18n/it.po +++ b/addons/auth_ldap/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ja.po b/addons/auth_ldap/i18n/ja.po index 66930384fb2..462f7c4d22a 100644 --- a/addons/auth_ldap/i18n/ja.po +++ b/addons/auth_ldap/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/mk.po b/addons/auth_ldap/i18n/mk.po index 78b1cae93bf..cd3b4e90f96 100644 --- a/addons/auth_ldap/i18n/mk.po +++ b/addons/auth_ldap/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/mn.po b/addons/auth_ldap/i18n/mn.po index 4a662840efe..8dd1f7c5f0b 100644 --- a/addons/auth_ldap/i18n/mn.po +++ b/addons/auth_ldap/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/nb.po b/addons/auth_ldap/i18n/nb.po index 9cc131e6627..194cd6e2880 100644 --- a/addons/auth_ldap/i18n/nb.po +++ b/addons/auth_ldap/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/nl.po b/addons/auth_ldap/i18n/nl.po index 0572baa1414..5f444270e49 100644 --- a/addons/auth_ldap/i18n/nl.po +++ b/addons/auth_ldap/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pl.po b/addons/auth_ldap/i18n/pl.po index 8338cec32b9..2b41f5ee4eb 100644 --- a/addons/auth_ldap/i18n/pl.po +++ b/addons/auth_ldap/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pt.po b/addons/auth_ldap/i18n/pt.po index 8fa726e2b85..0a2d6eb38a2 100644 --- a/addons/auth_ldap/i18n/pt.po +++ b/addons/auth_ldap/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pt_BR.po b/addons/auth_ldap/i18n/pt_BR.po index f5e9dd53e69..fa029787bdb 100644 --- a/addons/auth_ldap/i18n/pt_BR.po +++ b/addons/auth_ldap/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ro.po b/addons/auth_ldap/i18n/ro.po index 4271e3800c3..401ce712142 100644 --- a/addons/auth_ldap/i18n/ro.po +++ b/addons/auth_ldap/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ru.po b/addons/auth_ldap/i18n/ru.po index e6b5e2591d7..1930f0a8263 100644 --- a/addons/auth_ldap/i18n/ru.po +++ b/addons/auth_ldap/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/sl.po b/addons/auth_ldap/i18n/sl.po index 1b7ddac313e..7dde7bdb675 100644 --- a/addons/auth_ldap/i18n/sl.po +++ b/addons/auth_ldap/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/sv.po b/addons/auth_ldap/i18n/sv.po index e173072df18..1e21810c1da 100644 --- a/addons/auth_ldap/i18n/sv.po +++ b/addons/auth_ldap/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/tr.po b/addons/auth_ldap/i18n/tr.po index 4f57ebd3adb..f804ac950f1 100644 --- a/addons/auth_ldap/i18n/tr.po +++ b/addons/auth_ldap/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/zh_CN.po b/addons/auth_ldap/i18n/zh_CN.po index b6a0a6dafe5..53cd885d5f9 100644 --- a/addons/auth_ldap/i18n/zh_CN.po +++ b/addons/auth_ldap/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_oauth/controllers/main.py b/addons/auth_oauth/controllers/main.py index 22a240e310b..4fca426ffc0 100644 --- a/addons/auth_oauth/controllers/main.py +++ b/addons/auth_oauth/controllers/main.py @@ -2,6 +2,7 @@ import functools import logging import simplejson +import urlparse import werkzeug.utils from werkzeug.exceptions import BadRequest @@ -68,7 +69,8 @@ class OAuthLogin(openerp.addons.web.controllers.main.Home): def get_state(self, provider): state = dict( d=request.session.db, - p=provider['id'] + p=provider['id'], + r=request.httprequest.full_path ) token = request.params.get('token') if token: @@ -78,6 +80,9 @@ class OAuthLogin(openerp.addons.web.controllers.main.Home): @http.route() def web_login(self, *args, **kw): ensure_db() + if request.httprequest.method == 'GET' and request.session.uid and request.params.get('redirect'): + # Redirect if already logged in and redirect param is present + return http.redirect_with_hash(request.params.get('redirect')) providers = self.list_providers() response = super(OAuthLogin, self).web_login(*args, **kw) @@ -134,8 +139,12 @@ class OAuthController(http.Controller): cr.commit() action = state.get('a') menu = state.get('m') + redirect = state.get('r') url = '/web' - if action: + if redirect and not redirect.startswith('/auth_oauth/signin') and \ + (not redirect.startswith('/web/login') or 'redirect' in urlparse.urlsplit(redirect).query): + url = redirect + elif action: url = '/web#action=%s' % action elif menu: url = '/web#menu_id=%s' % menu diff --git a/addons/auth_oauth/i18n/ar.po b/addons/auth_oauth/i18n/ar.po index 2199ce98405..bd848dfb982 100644 --- a/addons/auth_oauth/i18n/ar.po +++ b/addons/auth_oauth/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/cs.po b/addons/auth_oauth/i18n/cs.po index ea042070ccc..4d1f04acccc 100644 --- a/addons/auth_oauth/i18n/cs.po +++ b/addons/auth_oauth/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/de.po b/addons/auth_oauth/i18n/de.po index 738c3362de1..a0d2425d6eb 100644 --- a/addons/auth_oauth/i18n/de.po +++ b/addons/auth_oauth/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/en_GB.po b/addons/auth_oauth/i18n/en_GB.po index de9bd4623eb..f95e5f2b3df 100644 --- a/addons/auth_oauth/i18n/en_GB.po +++ b/addons/auth_oauth/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/es.po b/addons/auth_oauth/i18n/es.po index 11000cfd307..7c92480116c 100644 --- a/addons/auth_oauth/i18n/es.po +++ b/addons/auth_oauth/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/fr.po b/addons/auth_oauth/i18n/fr.po index fdf4773dcc6..7784c93d01c 100644 --- a/addons/auth_oauth/i18n/fr.po +++ b/addons/auth_oauth/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/hr.po b/addons/auth_oauth/i18n/hr.po index 9d299c0fe4b..13a85ff7730 100644 --- a/addons/auth_oauth/i18n/hr.po +++ b/addons/auth_oauth/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/hu.po b/addons/auth_oauth/i18n/hu.po index 62a0cb67a83..cd29edded87 100644 --- a/addons/auth_oauth/i18n/hu.po +++ b/addons/auth_oauth/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/it.po b/addons/auth_oauth/i18n/it.po index fdefbba3bd6..d5a213ee295 100644 --- a/addons/auth_oauth/i18n/it.po +++ b/addons/auth_oauth/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/mk.po b/addons/auth_oauth/i18n/mk.po index 8ee84042fd4..f459742bfb9 100644 --- a/addons/auth_oauth/i18n/mk.po +++ b/addons/auth_oauth/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/nb.po b/addons/auth_oauth/i18n/nb.po index 416f59a3fb4..7e2b5542eeb 100644 --- a/addons/auth_oauth/i18n/nb.po +++ b/addons/auth_oauth/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/nl.po b/addons/auth_oauth/i18n/nl.po index ef593c82214..3e96e0b3dfb 100644 --- a/addons/auth_oauth/i18n/nl.po +++ b/addons/auth_oauth/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/pl.po b/addons/auth_oauth/i18n/pl.po index 13ddd1e1ffd..0ce5046af56 100644 --- a/addons/auth_oauth/i18n/pl.po +++ b/addons/auth_oauth/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/pt.po b/addons/auth_oauth/i18n/pt.po index 9a17da3fe50..f0af44c0b6f 100644 --- a/addons/auth_oauth/i18n/pt.po +++ b/addons/auth_oauth/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/pt_BR.po b/addons/auth_oauth/i18n/pt_BR.po index 21531d0495e..7ec72edbd82 100644 --- a/addons/auth_oauth/i18n/pt_BR.po +++ b/addons/auth_oauth/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/ro.po b/addons/auth_oauth/i18n/ro.po index 7b2d3e364fc..0048351530e 100644 --- a/addons/auth_oauth/i18n/ro.po +++ b/addons/auth_oauth/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/ru.po b/addons/auth_oauth/i18n/ru.po index d93562e377c..2d4ce7e57af 100644 --- a/addons/auth_oauth/i18n/ru.po +++ b/addons/auth_oauth/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/sl.po b/addons/auth_oauth/i18n/sl.po index 5b8be46c789..b1a087ee0eb 100644 --- a/addons/auth_oauth/i18n/sl.po +++ b/addons/auth_oauth/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/sv.po b/addons/auth_oauth/i18n/sv.po index e0fcfa8bf4f..014d29712eb 100644 --- a/addons/auth_oauth/i18n/sv.po +++ b/addons/auth_oauth/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/tr.po b/addons/auth_oauth/i18n/tr.po index 7fee1418ce0..43d11a4355c 100644 --- a/addons/auth_oauth/i18n/tr.po +++ b/addons/auth_oauth/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/zh_CN.po b/addons/auth_oauth/i18n/zh_CN.po index 6ee8c730be2..615d126eb68 100644 --- a/addons/auth_oauth/i18n/zh_CN.po +++ b/addons/auth_oauth/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth_signup/i18n/ar.po b/addons/auth_oauth_signup/i18n/ar.po index 565c863caf3..d6555a7ac0f 100644 --- a/addons/auth_oauth_signup/i18n/ar.po +++ b/addons/auth_oauth_signup/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/cs.po b/addons/auth_oauth_signup/i18n/cs.po index 826b1639715..d720da6caae 100644 --- a/addons/auth_oauth_signup/i18n/cs.po +++ b/addons/auth_oauth_signup/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/da.po b/addons/auth_oauth_signup/i18n/da.po index 9303df2917c..c7ed6e25b5f 100644 --- a/addons/auth_oauth_signup/i18n/da.po +++ b/addons/auth_oauth_signup/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/de.po b/addons/auth_oauth_signup/i18n/de.po index be0c0a50a64..b23ff034db3 100644 --- a/addons/auth_oauth_signup/i18n/de.po +++ b/addons/auth_oauth_signup/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/en_GB.po b/addons/auth_oauth_signup/i18n/en_GB.po index 02ad01569e4..8e2f43fbba1 100644 --- a/addons/auth_oauth_signup/i18n/en_GB.po +++ b/addons/auth_oauth_signup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/es.po b/addons/auth_oauth_signup/i18n/es.po index 4067f9cf52d..86dd75f1bfe 100644 --- a/addons/auth_oauth_signup/i18n/es.po +++ b/addons/auth_oauth_signup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/et.po b/addons/auth_oauth_signup/i18n/et.po index d8ace329904..ae7583c6f45 100644 --- a/addons/auth_oauth_signup/i18n/et.po +++ b/addons/auth_oauth_signup/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/fr.po b/addons/auth_oauth_signup/i18n/fr.po index c83542040ef..57d4f98b871 100644 --- a/addons/auth_oauth_signup/i18n/fr.po +++ b/addons/auth_oauth_signup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/gl.po b/addons/auth_oauth_signup/i18n/gl.po index c1092a1ac33..2b11ca035e3 100644 --- a/addons/auth_oauth_signup/i18n/gl.po +++ b/addons/auth_oauth_signup/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/hr.po b/addons/auth_oauth_signup/i18n/hr.po index f9d702d22fa..b912541e851 100644 --- a/addons/auth_oauth_signup/i18n/hr.po +++ b/addons/auth_oauth_signup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/hu.po b/addons/auth_oauth_signup/i18n/hu.po index cc5ed7b1c5e..023e8241a35 100644 --- a/addons/auth_oauth_signup/i18n/hu.po +++ b/addons/auth_oauth_signup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/it.po b/addons/auth_oauth_signup/i18n/it.po index 8cd5e6337ad..96b99a3ea36 100644 --- a/addons/auth_oauth_signup/i18n/it.po +++ b/addons/auth_oauth_signup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/lt.po b/addons/auth_oauth_signup/i18n/lt.po index 40456dd098f..31c1862d156 100644 --- a/addons/auth_oauth_signup/i18n/lt.po +++ b/addons/auth_oauth_signup/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/mk.po b/addons/auth_oauth_signup/i18n/mk.po index 2916b096613..adc5fbe6d66 100644 --- a/addons/auth_oauth_signup/i18n/mk.po +++ b/addons/auth_oauth_signup/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/mn.po b/addons/auth_oauth_signup/i18n/mn.po index 3bbd6799f2a..a6767c0e2f9 100644 --- a/addons/auth_oauth_signup/i18n/mn.po +++ b/addons/auth_oauth_signup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/nl.po b/addons/auth_oauth_signup/i18n/nl.po index 63488b13c26..901ee48195d 100644 --- a/addons/auth_oauth_signup/i18n/nl.po +++ b/addons/auth_oauth_signup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/nl_BE.po b/addons/auth_oauth_signup/i18n/nl_BE.po index c14cceaa2b4..db22c361eaa 100644 --- a/addons/auth_oauth_signup/i18n/nl_BE.po +++ b/addons/auth_oauth_signup/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/pl.po b/addons/auth_oauth_signup/i18n/pl.po index e33990134ea..a3c4624e877 100644 --- a/addons/auth_oauth_signup/i18n/pl.po +++ b/addons/auth_oauth_signup/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/pt.po b/addons/auth_oauth_signup/i18n/pt.po index 75230026222..7045ca87479 100644 --- a/addons/auth_oauth_signup/i18n/pt.po +++ b/addons/auth_oauth_signup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/pt_BR.po b/addons/auth_oauth_signup/i18n/pt_BR.po index 0e266bf9c53..2f2fc993818 100644 --- a/addons/auth_oauth_signup/i18n/pt_BR.po +++ b/addons/auth_oauth_signup/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/ro.po b/addons/auth_oauth_signup/i18n/ro.po index 8e5d8c51cfd..a8cf2e2121a 100644 --- a/addons/auth_oauth_signup/i18n/ro.po +++ b/addons/auth_oauth_signup/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/ru.po b/addons/auth_oauth_signup/i18n/ru.po index 4914a64ea29..6ce16e8d737 100644 --- a/addons/auth_oauth_signup/i18n/ru.po +++ b/addons/auth_oauth_signup/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/sl.po b/addons/auth_oauth_signup/i18n/sl.po index e58aaf0b9d9..5ac54751370 100644 --- a/addons/auth_oauth_signup/i18n/sl.po +++ b/addons/auth_oauth_signup/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/sv.po b/addons/auth_oauth_signup/i18n/sv.po index 431a4cb1684..06ed2b1a29c 100644 --- a/addons/auth_oauth_signup/i18n/sv.po +++ b/addons/auth_oauth_signup/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/tr.po b/addons/auth_oauth_signup/i18n/tr.po index f515742d657..9c72c0809ab 100644 --- a/addons/auth_oauth_signup/i18n/tr.po +++ b/addons/auth_oauth_signup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/vi.po b/addons/auth_oauth_signup/i18n/vi.po index 134c91cadf1..355ae92c3f1 100644 --- a/addons/auth_oauth_signup/i18n/vi.po +++ b/addons/auth_oauth_signup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/zh_CN.po b/addons/auth_oauth_signup/i18n/zh_CN.po index 2d96a50b8a4..39dc4326c80 100644 --- a/addons/auth_oauth_signup/i18n/zh_CN.po +++ b/addons/auth_oauth_signup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/zh_TW.po b/addons/auth_oauth_signup/i18n/zh_TW.po index d7da6a16f91..10de635bf26 100644 --- a/addons/auth_oauth_signup/i18n/zh_TW.po +++ b/addons/auth_oauth_signup/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_openid/i18n/ar.po b/addons/auth_openid/i18n/ar.po index 42399fe1113..e34c46142cd 100644 --- a/addons/auth_openid/i18n/ar.po +++ b/addons/auth_openid/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/cs.po b/addons/auth_openid/i18n/cs.po index 16272310079..8bf3cab90c2 100644 --- a/addons/auth_openid/i18n/cs.po +++ b/addons/auth_openid/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/de.po b/addons/auth_openid/i18n/de.po index f0c65980a72..359df3426e6 100644 --- a/addons/auth_openid/i18n/de.po +++ b/addons/auth_openid/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/en_GB.po b/addons/auth_openid/i18n/en_GB.po index 6a6cc328160..1637e2f0fff 100644 --- a/addons/auth_openid/i18n/en_GB.po +++ b/addons/auth_openid/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/es.po b/addons/auth_openid/i18n/es.po index 2054a371e03..5396f10495a 100644 --- a/addons/auth_openid/i18n/es.po +++ b/addons/auth_openid/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/es_CR.po b/addons/auth_openid/i18n/es_CR.po index 57cb9891dfd..d35f5066cc6 100644 --- a/addons/auth_openid/i18n/es_CR.po +++ b/addons/auth_openid/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fi.po b/addons/auth_openid/i18n/fi.po index f23cbe43c57..b7ae2976d4f 100644 --- a/addons/auth_openid/i18n/fi.po +++ b/addons/auth_openid/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fr.po b/addons/auth_openid/i18n/fr.po index 3764449092e..f5f4e1f5ad4 100644 --- a/addons/auth_openid/i18n/fr.po +++ b/addons/auth_openid/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/gu.po b/addons/auth_openid/i18n/gu.po index f48a00c1b7c..126b39a1b92 100644 --- a/addons/auth_openid/i18n/gu.po +++ b/addons/auth_openid/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/hr.po b/addons/auth_openid/i18n/hr.po index c7673ca9c14..b2ac52d21e4 100644 --- a/addons/auth_openid/i18n/hr.po +++ b/addons/auth_openid/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/hu.po b/addons/auth_openid/i18n/hu.po index a672ca16226..556e495f09f 100644 --- a/addons/auth_openid/i18n/hu.po +++ b/addons/auth_openid/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/it.po b/addons/auth_openid/i18n/it.po index cfa4e83c7cc..41cee9471b1 100644 --- a/addons/auth_openid/i18n/it.po +++ b/addons/auth_openid/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ja.po b/addons/auth_openid/i18n/ja.po index 551205df43e..03e071567b5 100644 --- a/addons/auth_openid/i18n/ja.po +++ b/addons/auth_openid/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/mk.po b/addons/auth_openid/i18n/mk.po index 70ffb850f7e..c06e2395d56 100644 --- a/addons/auth_openid/i18n/mk.po +++ b/addons/auth_openid/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/mn.po b/addons/auth_openid/i18n/mn.po index 32851286c4a..d88b3fb38fa 100644 --- a/addons/auth_openid/i18n/mn.po +++ b/addons/auth_openid/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nb.po b/addons/auth_openid/i18n/nb.po index e7dbd3e9133..7d895efcf42 100644 --- a/addons/auth_openid/i18n/nb.po +++ b/addons/auth_openid/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nl.po b/addons/auth_openid/i18n/nl.po index 865c6e8c219..d79b65d503c 100644 --- a/addons/auth_openid/i18n/nl.po +++ b/addons/auth_openid/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pl.po b/addons/auth_openid/i18n/pl.po index d55482de672..d39a5b7b946 100644 --- a/addons/auth_openid/i18n/pl.po +++ b/addons/auth_openid/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pt.po b/addons/auth_openid/i18n/pt.po index 4eb42477162..f0253625cf6 100644 --- a/addons/auth_openid/i18n/pt.po +++ b/addons/auth_openid/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pt_BR.po b/addons/auth_openid/i18n/pt_BR.po index 6ba187feacc..4bf1ae652be 100644 --- a/addons/auth_openid/i18n/pt_BR.po +++ b/addons/auth_openid/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ro.po b/addons/auth_openid/i18n/ro.po index 583daf57fc9..05556caeb08 100644 --- a/addons/auth_openid/i18n/ro.po +++ b/addons/auth_openid/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ru.po b/addons/auth_openid/i18n/ru.po index da11dccc55f..885e07078e8 100644 --- a/addons/auth_openid/i18n/ru.po +++ b/addons/auth_openid/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sk.po b/addons/auth_openid/i18n/sk.po index 0d242cbfa50..7d507fe5a51 100644 --- a/addons/auth_openid/i18n/sk.po +++ b/addons/auth_openid/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sl.po b/addons/auth_openid/i18n/sl.po index b3c1abc7632..430281db196 100644 --- a/addons/auth_openid/i18n/sl.po +++ b/addons/auth_openid/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sr@latin.po b/addons/auth_openid/i18n/sr@latin.po index ffcddaf6d2c..d2e6e8d7ce9 100644 --- a/addons/auth_openid/i18n/sr@latin.po +++ b/addons/auth_openid/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sv.po b/addons/auth_openid/i18n/sv.po index 2e3a13cf661..f88c9e23e44 100644 --- a/addons/auth_openid/i18n/sv.po +++ b/addons/auth_openid/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/tr.po b/addons/auth_openid/i18n/tr.po index 573c9c3a691..86a47b4e626 100644 --- a/addons/auth_openid/i18n/tr.po +++ b/addons/auth_openid/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/vi.po b/addons/auth_openid/i18n/vi.po index 342043f736f..79c512e2081 100644 --- a/addons/auth_openid/i18n/vi.po +++ b/addons/auth_openid/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/zh_CN.po b/addons/auth_openid/i18n/zh_CN.po index b55dcb481ef..b09af414e9c 100644 --- a/addons/auth_openid/i18n/zh_CN.po +++ b/addons/auth_openid/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_signup/auth_signup_data.xml b/addons/auth_signup/auth_signup_data.xml index f470811d39e..2789fcd8315 100644 --- a/addons/auth_signup/auth_signup_data.xml +++ b/addons/auth_signup/auth_signup_data.xml @@ -10,7 +10,7 @@ - + _usertemplate diff --git a/addons/auth_signup/controllers/main.py b/addons/auth_signup/controllers/main.py index 78f2833f3d1..8a66d3ab075 100644 --- a/addons/auth_signup/controllers/main.py +++ b/addons/auth_signup/controllers/main.py @@ -37,6 +37,9 @@ class AuthSignupHome(openerp.addons.web.controllers.main.Home): ensure_db() response = super(AuthSignupHome, self).web_login(*args, **kw) response.qcontext.update(self.get_auth_signup_config()) + if request.httprequest.method == 'GET' and request.session.uid and request.params.get('redirect'): + # Redirect if already logged in and redirect param is present + return http.redirect_with_hash(request.params.get('redirect')) return response @http.route('/web/signup', type='http', auth='public', website=True, multilang=True) diff --git a/addons/auth_signup/i18n/ar.po b/addons/auth_signup/i18n/ar.po index a34c48c45a8..82427b9df0e 100644 --- a/addons/auth_signup/i18n/ar.po +++ b/addons/auth_signup/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/cs.po b/addons/auth_signup/i18n/cs.po index fb8b1a721cf..4e8b9e6997d 100644 --- a/addons/auth_signup/i18n/cs.po +++ b/addons/auth_signup/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/de.po b/addons/auth_signup/i18n/de.po index 51d51a15485..52ecd39100a 100644 --- a/addons/auth_signup/i18n/de.po +++ b/addons/auth_signup/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/en_GB.po b/addons/auth_signup/i18n/en_GB.po index cee30de6313..6d37ff04f17 100644 --- a/addons/auth_signup/i18n/en_GB.po +++ b/addons/auth_signup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/es.po b/addons/auth_signup/i18n/es.po index 927bff04993..24d13f0b292 100644 --- a/addons/auth_signup/i18n/es.po +++ b/addons/auth_signup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/es_CO.po b/addons/auth_signup/i18n/es_CO.po index 0fe1305ad83..c304b8794f9 100644 --- a/addons/auth_signup/i18n/es_CO.po +++ b/addons/auth_signup/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/fr.po b/addons/auth_signup/i18n/fr.po index 6a52445ce50..12777b2b6fe 100644 --- a/addons/auth_signup/i18n/fr.po +++ b/addons/auth_signup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/hr.po b/addons/auth_signup/i18n/hr.po index 2f7cad86b8b..e214b5d33e1 100644 --- a/addons/auth_signup/i18n/hr.po +++ b/addons/auth_signup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/hu.po b/addons/auth_signup/i18n/hu.po index 2c545914ae7..2265eebcc17 100644 --- a/addons/auth_signup/i18n/hu.po +++ b/addons/auth_signup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/it.po b/addons/auth_signup/i18n/it.po index 5296413b139..80b79fbc1e5 100644 --- a/addons/auth_signup/i18n/it.po +++ b/addons/auth_signup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/lt.po b/addons/auth_signup/i18n/lt.po index e190ad9431f..7b4509983e0 100644 --- a/addons/auth_signup/i18n/lt.po +++ b/addons/auth_signup/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/mk.po b/addons/auth_signup/i18n/mk.po index a01e02d7334..d7781318fd8 100644 --- a/addons/auth_signup/i18n/mk.po +++ b/addons/auth_signup/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/mn.po b/addons/auth_signup/i18n/mn.po index 742af165d08..4e6a3c37904 100644 --- a/addons/auth_signup/i18n/mn.po +++ b/addons/auth_signup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/nb.po b/addons/auth_signup/i18n/nb.po index e51eeaa185c..b174e5c9a8b 100644 --- a/addons/auth_signup/i18n/nb.po +++ b/addons/auth_signup/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/nl.po b/addons/auth_signup/i18n/nl.po index c6e4bb995e2..c2847e926b8 100644 --- a/addons/auth_signup/i18n/nl.po +++ b/addons/auth_signup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/pl.po b/addons/auth_signup/i18n/pl.po index 8f3dc57bef0..a95f5b3738f 100644 --- a/addons/auth_signup/i18n/pl.po +++ b/addons/auth_signup/i18n/pl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-12 18:01+0000\n" -"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \n" +"PO-Revision-Date: 2014-04-04 19:12+0000\n" +"Last-Translator: Dariusz Żbikowski \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-04-05 05:30+0000\n" +"X-Generator: Launchpad (build 16976)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -80,7 +80,7 @@ msgstr "Wprowadź hasło o potwierdź je" #. module: auth_signup #: view:res.users:0 msgid "Send an email to the user to (re)set their password." -msgstr "" +msgstr "Wyślij email do użytkownika w celu zresetowania hasła" #. module: auth_signup #. openerp-web @@ -99,7 +99,7 @@ msgstr "Nowy" #: code:addons/auth_signup/res_users.py:258 #, python-format msgid "Mail sent to:" -msgstr "" +msgstr "Mail wysłano do:" #. module: auth_signup #: field:res.users,state:0 @@ -191,7 +191,7 @@ msgstr "Proszę wprowadź nazwę użytkownika lub adres email." #. module: auth_signup #: selection:res.users,state:0 msgid "Resetting Password" -msgstr "" +msgstr "Resetowane hasło" #. module: auth_signup #. openerp-web diff --git a/addons/auth_signup/i18n/pt.po b/addons/auth_signup/i18n/pt.po index e4cb68ad08e..804c343f323 100644 --- a/addons/auth_signup/i18n/pt.po +++ b/addons/auth_signup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/pt_BR.po b/addons/auth_signup/i18n/pt_BR.po index 76f2c6af942..d5d3f98088e 100644 --- a/addons/auth_signup/i18n/pt_BR.po +++ b/addons/auth_signup/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/ro.po b/addons/auth_signup/i18n/ro.po index 7957da9f9bd..fe9425b0bb9 100644 --- a/addons/auth_signup/i18n/ro.po +++ b/addons/auth_signup/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/ru.po b/addons/auth_signup/i18n/ru.po index 1e130540c2b..482d5cab484 100644 --- a/addons/auth_signup/i18n/ru.po +++ b/addons/auth_signup/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/sl.po b/addons/auth_signup/i18n/sl.po index 84a5ba65534..07072b7efdc 100644 --- a/addons/auth_signup/i18n/sl.po +++ b/addons/auth_signup/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/sv.po b/addons/auth_signup/i18n/sv.po new file mode 100644 index 00000000000..9acedf81abc --- /dev/null +++ b/addons/auth_signup/i18n/sv.po @@ -0,0 +1,279 @@ +# Swedish translation for openobject-addons +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2014-03-27 12:30+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16967)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_uninvited:0 +msgid "Allow external users to sign up" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 +#, python-format +msgid "Confirm Password" +msgstr "Bekräfta lösenord" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_uninvited:0 +msgid "If unchecked, only invited users may sign up." +msgstr "" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_base_config_settings +msgid "base.config.settings" +msgstr "base.config.settings" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:266 +#, python-format +msgid "Cannot send email: user has no email address." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 +#, python-format +msgid "Reset password" +msgstr "Återställ lösenord" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_template_user_id:0 +msgid "Template user for new users created through signup" +msgstr "" + +#. module: auth_signup +#: model:email.template,subject:auth_signup.reset_password_email +msgid "Password reset" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#, python-format +msgid "Please enter a password and confirm it." +msgstr "" + +#. module: auth_signup +#: view:res.users:0 +msgid "Send an email to the user to (re)set their password." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 +#, python-format +msgid "Sign Up" +msgstr "" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "New" +msgstr "" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + +#. module: auth_signup +#: field:res.users,state:0 +msgid "Status" +msgstr "" + +#. module: auth_signup +#: model:email.template,body_html:auth_signup.reset_password_email +msgid "" +"\n" +"

    A password reset was requested for the OpenERP account linked to this " +"email.

    \n" +"\n" +"

    You may change your password by following this link.

    \n" +"\n" +"

    Note: If you do not expect this, you can safely ignore this email.

    " +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#, python-format +msgid "Please enter a name." +msgstr "" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_signup +#: field:res.partner,signup_url:0 +msgid "Signup URL" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#, python-format +msgid "Please enter a username." +msgstr "" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Active" +msgstr "" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:270 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 +#, python-format +msgid "Username" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:8 +#, python-format +msgid "Name" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 +#, python-format +msgid "Please enter a username or email address." +msgstr "" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Resetting Password" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 +#, python-format +msgid "Username (Email)" +msgstr "" + +#. module: auth_signup +#: field:res.partner,signup_expiration:0 +msgid "Signup Expiration" +msgstr "" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_reset_password:0 +msgid "This allows users to trigger a password reset from the Login page." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 +#, python-format +msgid "Log in" +msgstr "" + +#. module: auth_signup +#: field:res.partner,signup_valid:0 +msgid "Signup Token is Valid" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 +#, python-format +msgid "Login" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 +#, python-format +msgid "Invalid signup token" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#, python-format +msgid "Passwords do not match; please retype them." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#, python-format +msgid "No database selected !" +msgstr "" + +#. module: auth_signup +#: view:res.users:0 +msgid "Reset Password" +msgstr "" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_reset_password:0 +msgid "Enable password reset from Login page" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 +#, python-format +msgid "Back to Login" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#, python-format +msgid "Sign up" +msgstr "" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_partner +msgid "Partner" +msgstr "" + +#. module: auth_signup +#: field:res.partner,signup_token:0 +msgid "Signup Token" +msgstr "" diff --git a/addons/auth_signup/i18n/tr.po b/addons/auth_signup/i18n/tr.po index 562f63efcdc..96e72441dc7 100644 --- a/addons/auth_signup/i18n/tr.po +++ b/addons/auth_signup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/vi.po b/addons/auth_signup/i18n/vi.po index bc0afee0f29..4a8937739b6 100644 --- a/addons/auth_signup/i18n/vi.po +++ b/addons/auth_signup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/zh_CN.po b/addons/auth_signup/i18n/zh_CN.po index ed45725e5ec..62548c36b90 100644 --- a/addons/auth_signup/i18n/zh_CN.po +++ b/addons/auth_signup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/zh_TW.po b/addons/auth_signup/i18n/zh_TW.po index 668be0cd156..c3b85f01aee 100644 --- a/addons/auth_signup/i18n/zh_TW.po +++ b/addons/auth_signup/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/res_users.py b/addons/auth_signup/res_users.py index 4c1c1a671b7..5a744c21c81 100644 --- a/addons/auth_signup/res_users.py +++ b/addons/auth_signup/res_users.py @@ -20,8 +20,8 @@ ############################################################################## from datetime import datetime, timedelta import random -from urllib import urlencode from urlparse import urljoin +import werkzeug from openerp.addons.base.ir.ir_mail_server import MailDeliveryException from openerp.osv import osv, fields @@ -53,7 +53,7 @@ class res_partner(osv.Model): (not partner.signup_expiration or dt <= partner.signup_expiration) return res - def _get_signup_url_for_action(self, cr, uid, ids, action='login', view_type=None, menu_id=None, res_id=None, model=None, context=None): + def _get_signup_url_for_action(self, cr, uid, ids, action=None, view_type=None, menu_id=None, res_id=None, model=None, context=None): """ generate a signup url for the given partner ids and action, possibly overriding the url state components (menu_id, id, view_type) """ if context is None: @@ -81,6 +81,8 @@ class res_partner(osv.Model): continue # no signup token, no user, thus no signup url! fragment = dict() + if action: + fragment['action'] = action if view_type: fragment['view_type'] = view_type if menu_id: @@ -90,7 +92,10 @@ class res_partner(osv.Model): if res_id: fragment['id'] = res_id - res[partner.id] = urljoin(base_url, "/web/%s?%s#%s" % (route, urlencode(query), urlencode(fragment))) + if fragment: + query['redirect'] = '/web#' + werkzeug.url_encode(fragment) + + res[partner.id] = urljoin(base_url, "/web/%s?%s" % (route, werkzeug.url_encode(query))) return res diff --git a/addons/base_action_rule/i18n/ar.po b/addons/base_action_rule/i18n/ar.po index 2cd5fe7d978..e3463627eb9 100644 --- a/addons/base_action_rule/i18n/ar.po +++ b/addons/base_action_rule/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:22+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/bg.po b/addons/base_action_rule/i18n/bg.po index e4ccb4fcb1a..6dc236e27ba 100644 --- a/addons/base_action_rule/i18n/bg.po +++ b/addons/base_action_rule/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/bs.po b/addons/base_action_rule/i18n/bs.po index 7bf16feb89e..7e405cc90ef 100644 --- a/addons/base_action_rule/i18n/bs.po +++ b/addons/base_action_rule/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:22+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ca.po b/addons/base_action_rule/i18n/ca.po index 9d7e9c60531..9bb058c9d7b 100644 --- a/addons/base_action_rule/i18n/ca.po +++ b/addons/base_action_rule/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/cs.po b/addons/base_action_rule/i18n/cs.po index ea31a3a107c..0c77e1dfd77 100644 --- a/addons/base_action_rule/i18n/cs.po +++ b/addons/base_action_rule/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/da.po b/addons/base_action_rule/i18n/da.po index fc04b8a7ce2..21ced2aa705 100644 --- a/addons/base_action_rule/i18n/da.po +++ b/addons/base_action_rule/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/de.po b/addons/base_action_rule/i18n/de.po index c32b9658161..0b2524ec973 100644 --- a/addons/base_action_rule/i18n/de.po +++ b/addons/base_action_rule/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/el.po b/addons/base_action_rule/i18n/el.po index 7a43ab6bf3c..7f38d7af063 100644 --- a/addons/base_action_rule/i18n/el.po +++ b/addons/base_action_rule/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es.po b/addons/base_action_rule/i18n/es.po index 205c9ec8ff4..470ddb4a05e 100644 --- a/addons/base_action_rule/i18n/es.po +++ b/addons/base_action_rule/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es_CR.po b/addons/base_action_rule/i18n/es_CR.po index 5eabd692be0..8fd14cc9911 100644 --- a/addons/base_action_rule/i18n/es_CR.po +++ b/addons/base_action_rule/i18n/es_CR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/es_EC.po b/addons/base_action_rule/i18n/es_EC.po index e2627c82af5..f2852edc43b 100644 --- a/addons/base_action_rule/i18n/es_EC.po +++ b/addons/base_action_rule/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es_PY.po b/addons/base_action_rule/i18n/es_PY.po index 7f9caac7223..049b0c2b73b 100644 --- a/addons/base_action_rule/i18n/es_PY.po +++ b/addons/base_action_rule/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fa.po b/addons/base_action_rule/i18n/fa.po index 30b9db7a087..579dc3f8d53 100644 --- a/addons/base_action_rule/i18n/fa.po +++ b/addons/base_action_rule/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fi.po b/addons/base_action_rule/i18n/fi.po index 60b3a28e24d..31af0fd254d 100644 --- a/addons/base_action_rule/i18n/fi.po +++ b/addons/base_action_rule/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fr.po b/addons/base_action_rule/i18n/fr.po index dfcd817425d..f6b262eb101 100644 --- a/addons/base_action_rule/i18n/fr.po +++ b/addons/base_action_rule/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/gl.po b/addons/base_action_rule/i18n/gl.po index 63cbe267f89..24980f6a3cf 100644 --- a/addons/base_action_rule/i18n/gl.po +++ b/addons/base_action_rule/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/gu.po b/addons/base_action_rule/i18n/gu.po index 4ec953c0956..1749e8842c6 100644 --- a/addons/base_action_rule/i18n/gu.po +++ b/addons/base_action_rule/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/he.po b/addons/base_action_rule/i18n/he.po index 5829d02237b..db70de9c7aa 100644 --- a/addons/base_action_rule/i18n/he.po +++ b/addons/base_action_rule/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/hr.po b/addons/base_action_rule/i18n/hr.po index 358539ffa4c..a7bbe7cb0ed 100644 --- a/addons/base_action_rule/i18n/hr.po +++ b/addons/base_action_rule/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/hu.po b/addons/base_action_rule/i18n/hu.po index d11f10144e7..169be063d0a 100644 --- a/addons/base_action_rule/i18n/hu.po +++ b/addons/base_action_rule/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/it.po b/addons/base_action_rule/i18n/it.po index 3b279dfc5bf..8cb68bc7339 100644 --- a/addons/base_action_rule/i18n/it.po +++ b/addons/base_action_rule/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ja.po b/addons/base_action_rule/i18n/ja.po index 56a9829f51e..6c428aa291c 100644 --- a/addons/base_action_rule/i18n/ja.po +++ b/addons/base_action_rule/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/lt.po b/addons/base_action_rule/i18n/lt.po index e2c5d36b9a6..fe87cb207ce 100644 --- a/addons/base_action_rule/i18n/lt.po +++ b/addons/base_action_rule/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/lv.po b/addons/base_action_rule/i18n/lv.po index 82829703afe..5ffabb00064 100644 --- a/addons/base_action_rule/i18n/lv.po +++ b/addons/base_action_rule/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/mk.po b/addons/base_action_rule/i18n/mk.po index 1d053bab41f..f6e9a413f4e 100644 --- a/addons/base_action_rule/i18n/mk.po +++ b/addons/base_action_rule/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/mn.po b/addons/base_action_rule/i18n/mn.po index 9ab345d097c..87cb0724e3f 100644 --- a/addons/base_action_rule/i18n/mn.po +++ b/addons/base_action_rule/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/nb.po b/addons/base_action_rule/i18n/nb.po index 2b5ecb07905..6a8fdcef22e 100644 --- a/addons/base_action_rule/i18n/nb.po +++ b/addons/base_action_rule/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/nl.po b/addons/base_action_rule/i18n/nl.po index ae6c2f0cc0b..7588d25fa7d 100644 --- a/addons/base_action_rule/i18n/nl.po +++ b/addons/base_action_rule/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/pl.po b/addons/base_action_rule/i18n/pl.po index c4d3eb9c476..8f2c7467992 100644 --- a/addons/base_action_rule/i18n/pl.po +++ b/addons/base_action_rule/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/pt.po b/addons/base_action_rule/i18n/pt.po index b59b80bab5d..6579615fe2b 100644 --- a/addons/base_action_rule/i18n/pt.po +++ b/addons/base_action_rule/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/pt_BR.po b/addons/base_action_rule/i18n/pt_BR.po index 43928f91901..240fb3952f6 100644 --- a/addons/base_action_rule/i18n/pt_BR.po +++ b/addons/base_action_rule/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ro.po b/addons/base_action_rule/i18n/ro.po index 70be501accb..957d0b3aec2 100644 --- a/addons/base_action_rule/i18n/ro.po +++ b/addons/base_action_rule/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ru.po b/addons/base_action_rule/i18n/ru.po index 5e4a141cb11..7db90ffe4d1 100644 --- a/addons/base_action_rule/i18n/ru.po +++ b/addons/base_action_rule/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sl.po b/addons/base_action_rule/i18n/sl.po index 40cc15e8a47..781cc180d19 100644 --- a/addons/base_action_rule/i18n/sl.po +++ b/addons/base_action_rule/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sq.po b/addons/base_action_rule/i18n/sq.po index 0d21e757006..e9d0ae2e2df 100644 --- a/addons/base_action_rule/i18n/sq.po +++ b/addons/base_action_rule/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:22+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sr.po b/addons/base_action_rule/i18n/sr.po index 3fe70dc889d..64e950a7085 100644 --- a/addons/base_action_rule/i18n/sr.po +++ b/addons/base_action_rule/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sr@latin.po b/addons/base_action_rule/i18n/sr@latin.po index 79f2316956d..3470674f2c8 100644 --- a/addons/base_action_rule/i18n/sr@latin.po +++ b/addons/base_action_rule/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sv.po b/addons/base_action_rule/i18n/sv.po index bc92c10bc2d..bade2283097 100644 --- a/addons/base_action_rule/i18n/sv.po +++ b/addons/base_action_rule/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/tr.po b/addons/base_action_rule/i18n/tr.po index 01c7c307ed8..6fdf65beb23 100644 --- a/addons/base_action_rule/i18n/tr.po +++ b/addons/base_action_rule/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/zh_CN.po b/addons/base_action_rule/i18n/zh_CN.po index 12526fbc02d..897f32656a3 100644 --- a/addons/base_action_rule/i18n/zh_CN.po +++ b/addons/base_action_rule/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/zh_TW.po b/addons/base_action_rule/i18n/zh_TW.po index e80c01dc354..6f787fa6c3b 100644 --- a/addons/base_action_rule/i18n/zh_TW.po +++ b/addons/base_action_rule/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:41+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_gengo/__init__.py b/addons/base_gengo/__init__.py index 133fa90dc51..ff48d6cc91f 100644 --- a/addons/base_gengo/__init__.py +++ b/addons/base_gengo/__init__.py @@ -22,5 +22,6 @@ import res_company import ir_translation import wizard +import controller # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_gengo/controller/__init__.py b/addons/base_gengo/controller/__init__.py new file mode 100644 index 00000000000..4648ae64b0f --- /dev/null +++ b/addons/base_gengo/controller/__init__.py @@ -0,0 +1 @@ +import gengo_callback diff --git a/addons/base_gengo/controller/gengo_callback.py b/addons/base_gengo/controller/gengo_callback.py new file mode 100644 index 00000000000..381ac7b7fe9 --- /dev/null +++ b/addons/base_gengo/controller/gengo_callback.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- + +import openerp +from openerp.addons.web import http +from openerp.addons.web.http import request + +import json + +class website_gengo(http.Controller): + @http.route('/website/gengo_callback', type='http', auth='none') + def gengo_callback(self,**post): + cr, uid, context = request.cr, openerp.SUPERUSER_ID, request.context + translation_pool = request.registry['ir.translation'] + if post and post.get('job'): + job = json.loads(post['job']) + tid = job.get('custom_data', False) + if (job.get('status') == 'approved') and tid: + term = translation_pool.browse(cr, uid, int(tid), context=context) + if term.job_id <> job.get('job_id'): + raise 'Error' + vals = {'state': 'translated', 'value': job.get('body_tgt')} + translation_pool.write(cr, uid, [int(tid)], vals, context=context) diff --git a/addons/base_gengo/gengo_sync_schedular_data.xml b/addons/base_gengo/gengo_sync_schedular_data.xml index baf2a639cff..91a5c8266d8 100644 --- a/addons/base_gengo/gengo_sync_schedular_data.xml +++ b/addons/base_gengo/gengo_sync_schedular_data.xml @@ -4,9 +4,9 @@ Gengo Sync Translation (Response) - - 20 - minutes + + 6 + hours -1 @@ -16,9 +16,9 @@ Gengo Sync Translation (Request) - - 20 - minutes + + 6 + hours -1 diff --git a/addons/base_gengo/i18n/ar.po b/addons/base_gengo/i18n/ar.po index afc5085b221..2fa9a85de5e 100644 --- a/addons/base_gengo/i18n/ar.po +++ b/addons/base_gengo/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/bs.po b/addons/base_gengo/i18n/bs.po index d6702237fc8..2ee8964b0a5 100644 --- a/addons/base_gengo/i18n/bs.po +++ b/addons/base_gengo/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/cs.po b/addons/base_gengo/i18n/cs.po index cb996ed7cb1..48d4b30b307 100644 --- a/addons/base_gengo/i18n/cs.po +++ b/addons/base_gengo/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/da.po b/addons/base_gengo/i18n/da.po index 20158a743b4..f5366ad7571 100644 --- a/addons/base_gengo/i18n/da.po +++ b/addons/base_gengo/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/de.po b/addons/base_gengo/i18n/de.po index 2cbd0974e8b..ca406cff075 100644 --- a/addons/base_gengo/i18n/de.po +++ b/addons/base_gengo/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/es.po b/addons/base_gengo/i18n/es.po index 5b7f8aac380..9f122fd4189 100644 --- a/addons/base_gengo/i18n/es.po +++ b/addons/base_gengo/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/fr.po b/addons/base_gengo/i18n/fr.po index 75fb605643c..33f9e2878af 100644 --- a/addons/base_gengo/i18n/fr.po +++ b/addons/base_gengo/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/hr.po b/addons/base_gengo/i18n/hr.po index 7ec56445255..55bab4bb454 100644 --- a/addons/base_gengo/i18n/hr.po +++ b/addons/base_gengo/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/hu.po b/addons/base_gengo/i18n/hu.po index c0054a866a1..19503d3df76 100644 --- a/addons/base_gengo/i18n/hu.po +++ b/addons/base_gengo/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/it.po b/addons/base_gengo/i18n/it.po index a2a7bfb13c1..0934075d81f 100644 --- a/addons/base_gengo/i18n/it.po +++ b/addons/base_gengo/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/mk.po b/addons/base_gengo/i18n/mk.po index e1103b8e478..9ecf640b1cd 100644 --- a/addons/base_gengo/i18n/mk.po +++ b/addons/base_gengo/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/mn.po b/addons/base_gengo/i18n/mn.po index 20f2235b42b..22a6e60eb12 100644 --- a/addons/base_gengo/i18n/mn.po +++ b/addons/base_gengo/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/nb.po b/addons/base_gengo/i18n/nb.po index 4d48c0b6342..ecde420fc30 100644 --- a/addons/base_gengo/i18n/nb.po +++ b/addons/base_gengo/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/nl.po b/addons/base_gengo/i18n/nl.po index 136fbd1e9fe..c1c0c453205 100644 --- a/addons/base_gengo/i18n/nl.po +++ b/addons/base_gengo/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/pl.po b/addons/base_gengo/i18n/pl.po index 622fa3b4795..f129602cf4c 100644 --- a/addons/base_gengo/i18n/pl.po +++ b/addons/base_gengo/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/pt.po b/addons/base_gengo/i18n/pt.po index 858f51aa5de..a16cc82cfe3 100644 --- a/addons/base_gengo/i18n/pt.po +++ b/addons/base_gengo/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/pt_BR.po b/addons/base_gengo/i18n/pt_BR.po index c69074f18f4..af23f44c9b7 100644 --- a/addons/base_gengo/i18n/pt_BR.po +++ b/addons/base_gengo/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/ro.po b/addons/base_gengo/i18n/ro.po index 00ce32fc75f..9c99467380d 100644 --- a/addons/base_gengo/i18n/ro.po +++ b/addons/base_gengo/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/sl.po b/addons/base_gengo/i18n/sl.po index bf1bc086ce5..6ffdb36a66b 100644 --- a/addons/base_gengo/i18n/sl.po +++ b/addons/base_gengo/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/sv.po b/addons/base_gengo/i18n/sv.po new file mode 100644 index 00000000000..79d7d7dd96c --- /dev/null +++ b/addons/base_gengo/i18n/sv.po @@ -0,0 +1,249 @@ +# Swedish translation for openobject-addons +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2014-03-31 16:36+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-04-01 05:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" + +#. module: base_gengo +#: view:res.company:0 +msgid "Comments for Translator" +msgstr "" + +#. module: base_gengo +#: field:ir.translation,job_id:0 +msgid "Gengo Job ID" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "This language is not supported by the Gengo translation services." +msgstr "" + +#. module: base_gengo +#: field:res.company,gengo_comment:0 +msgid "Comments" +msgstr "Kommentarer" + +#. module: base_gengo +#: field:res.company,gengo_private_key:0 +msgid "Gengo Private Key" +msgstr "" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_base_gengo_translations +msgid "base.gengo.translations" +msgstr "base.gengo.translations" + +#. module: base_gengo +#: help:res.company,gengo_auto_approve:0 +msgid "Jobs are Automatically Approved by Gengo." +msgstr "" + +#. module: base_gengo +#: field:base.gengo.translations,lang_id:0 +msgid "Language" +msgstr "" + +#. module: base_gengo +#: field:ir.translation,gengo_comment:0 +msgid "Comments & Activity Linked to Gengo" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:124 +#, python-format +msgid "Gengo Sync Translation (Response)" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:72 +#, python-format +msgid "" +"Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " +"authentication parameters under `Settings > Companies > Gengo Parameters`." +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Translation By Machine" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:155 +#, python-format +msgid "" +"%s\n" +"\n" +"--\n" +" Commented on %s by %s." +msgstr "" + +#. module: base_gengo +#: field:ir.translation,gengo_translation:0 +msgid "Gengo Translation Service Level" +msgstr "" + +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Standard" +msgstr "" + +#. module: base_gengo +#: help:ir.translation,gengo_translation:0 +msgid "" +"You can select here the service level you want for an automatic translation " +"using Gengo." +msgstr "" + +#. module: base_gengo +#: field:base.gengo.translations,restart_send_job:0 +msgid "Restart Sending Job" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "To Approve In Gengo" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Private Key" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Public Key" +msgstr "" + +#. module: base_gengo +#: field:res.company,gengo_public_key:0 +msgid "Gengo Public Key" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:123 +#, python-format +msgid "Gengo Sync Translation (Request)" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Translations" +msgstr "" + +#. module: base_gengo +#: field:res.company,gengo_auto_approve:0 +msgid "Auto Approve Translation ?" +msgstr "" + +#. module: base_gengo +#: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations +#: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations +msgid "Gengo: Manual Request of Translation" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/ir_translation.py:62 +#: code:addons/base_gengo/wizard/base_gengo_translations.py:109 +#, python-format +msgid "Gengo Authentication Error" +msgstr "" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "" +"Note: If the translation state is 'In Progress', it means that the " +"translation has to be approved to be uploaded in this system. You are " +"supposed to do that directly by using your Gengo Account" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:82 +#, python-format +msgid "" +"Gengo connection failed with this message:\n" +"``%s``" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Gengo Parameters" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Send" +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Ultra" +msgstr "" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_ir_translation +msgid "ir.translation" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Translation Service" +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Pro" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Gengo Request Form" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "Warning" +msgstr "" + +#. module: base_gengo +#: help:res.company,gengo_comment:0 +msgid "" +"This comment will be automatically be enclosed in each an every request sent " +"to Gengo" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Cancel" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "or" +msgstr "" diff --git a/addons/base_gengo/i18n/th.po b/addons/base_gengo/i18n/th.po index fd1707fa7f5..0be51ea8812 100644 --- a/addons/base_gengo/i18n/th.po +++ b/addons/base_gengo/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/tr.po b/addons/base_gengo/i18n/tr.po index d3144989b1f..bc2817cbd5b 100644 --- a/addons/base_gengo/i18n/tr.po +++ b/addons/base_gengo/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/zh_CN.po b/addons/base_gengo/i18n/zh_CN.po index 5cfa08ca532..fd7279696bc 100644 --- a/addons/base_gengo/i18n/zh_CN.po +++ b/addons/base_gengo/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:33+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/ir_translation.py b/addons/base_gengo/ir_translation.py index 0ade9c54625..306516878cc 100644 --- a/addons/base_gengo/ir_translation.py +++ b/addons/base_gengo/ir_translation.py @@ -23,7 +23,7 @@ from openerp.osv import fields, osv from openerp.tools.translate import _ LANG_CODE_MAPPING = { - 'ar_SA': ('ar', 'Arabic'), + 'ar_SY': ('ar', 'Arabic'), 'id_ID': ('id', 'Indonesian'), 'nl_NL': ('nl', 'Dutch'), 'fr_CA': ('fr-ca', 'French (Canada)'), @@ -41,7 +41,19 @@ LANG_CODE_MAPPING = { 'fr_BE': ('fr', 'French'), 'ru_RU': ('ru', 'Russian'), 'it_IT': ('it', 'Italian'), - 'pt_BR': ('pt-br', 'Portuguese (Brazil)') + 'pt_BR': ('pt-br', 'Portuguese (Brazil)'), + 'th_TH': ('th', 'Thai'), + 'nb_NO': ('no', 'Norwegian'), + 'ro_RO': ('ro', 'Romanian'), + 'tr_TR': ('tr', 'Turkish'), + 'bg_BG': ('bg', 'Bulgarian'), + 'da_DK': ('da', 'Danish'), + 'en_GB': ('en-gb', 'English (British)'), + 'el_GR': ('el', 'Greek'), + 'vi_VN': ('vi', 'Vietnamese'), + 'he_IL': ('he', 'Hebrew'), + 'hu_HU': ('hu', 'Hungarian'), + 'fi_FI': ('fi', 'Finnish') } class ir_translation(osv.Model): @@ -71,18 +83,3 @@ class ir_translation(osv.Model): def _get_gengo_corresponding_language(cr, lang): return lang in LANG_CODE_MAPPING and LANG_CODE_MAPPING[lang][0] or lang - - def _check_lang_support(self, cr, uid, ids, context=None): - for term in self.browse(cr, uid, ids, context=context): - if term.gengo_translation: - supported_langs = self._get_all_supported_languages(cr, uid, context=context) - if supported_langs: - tier = "nonprofit" if term.gengo_translation == 'machine' else term.gengo_translation - language = self._get_gengo_corresponding_language(term.lang) - if tier not in supported_langs.get(language,[]): - return False - return True - - _constraints = [ - (_check_lang_support, 'The Gengo translation service selected is not supported for this language.', ['gengo_translation']) - ] diff --git a/addons/base_gengo/res_company.py b/addons/base_gengo/res_company.py index 3d038ac0813..1b083ecf5a2 100644 --- a/addons/base_gengo/res_company.py +++ b/addons/base_gengo/res_company.py @@ -30,6 +30,7 @@ class res_company(osv.Model): "gengo_public_key": fields.text("Gengo Public Key"), "gengo_comment": fields.text("Comments", help="This comment will be automatically be enclosed in each an every request sent to Gengo"), "gengo_auto_approve": fields.boolean("Auto Approve Translation ?", help="Jobs are Automatically Approved by Gengo."), + "gengo_sandbox": fields.boolean("Sandbox Mode", help="Check this box if you're using the sandbox mode of Gengo, mainly used for testing purpose."), } _defaults = { diff --git a/addons/base_gengo/res_company_view.xml b/addons/base_gengo/res_company_view.xml index 0f99efc8ad0..d08d809eb9c 100644 --- a/addons/base_gengo/res_company_view.xml +++ b/addons/base_gengo/res_company_view.xml @@ -17,8 +17,13 @@
    - - + + + + + + + diff --git a/addons/base_gengo/wizard/base_gengo_translations.py b/addons/base_gengo/wizard/base_gengo_translations.py index bfd51480141..f565b520d6c 100644 --- a/addons/base_gengo/wizard/base_gengo_translations.py +++ b/addons/base_gengo/wizard/base_gengo_translations.py @@ -33,29 +33,22 @@ try: from mygengo import MyGengo except ImportError: _logger.warning('Gengo library not found, Gengo features disabled. If you plan to use it, please install the mygengo library from http://pypi.python.org/pypi/mygengo') - class MyGengo(object): - def __init__(self, *args, **kwargs): - # no context for translations - so don't bother - raise ImportError('Gengo library not found, please install mygengo from http://pypi.python.org/pypi/mygengo') GENGO_DEFAULT_LIMIT = 20 -DEFAULT_CRON_VALS = { - 'active': True, - 'interval_number': 20, - 'interval_type': 'minutes', - 'model': "'base.gengo.translations'", - 'args': "'(%s,)'" % (str(GENGO_DEFAULT_LIMIT)), -} - class base_gengo_translations(osv.osv_memory): _name = 'base.gengo.translations' _columns = { - 'restart_send_job': fields.boolean("Restart Sending Job"), + 'sync_type': fields.selection([('send', 'Send New Terms'), + ('receive', 'Receive Translation'), + ('both', 'Both')], "Sync Type"), 'lang_id': fields.many2one('res.lang', 'Language', required=True), + 'sync_limit': fields.integer("No. of terms to sync"), } - + _defaults = {'sync_type' : 'both', + 'sync_limit' : 20 + } def gengo_authentication(self, cr, uid, context=None): ''' This method tries to open a connection with Gengo. For that, it uses the Public and Private @@ -74,6 +67,7 @@ class base_gengo_translations(osv.osv_memory): gengo = MyGengo( public_key=user.company_id.gengo_public_key.encode('ascii'), private_key=user.company_id.gengo_private_key.encode('ascii'), + sandbox=user.company_id.gengo_sandbox, ) gengo.getAccountStats() return (True, gengo) @@ -81,27 +75,11 @@ class base_gengo_translations(osv.osv_memory): _logger.exception('Gengo connection failed') return (False, _("Gengo connection failed with this message:\n``%s``") % e) - def do_check_schedular(self, cr, uid, xml_id, name, fn, context=None): - """ - This function is used to reset a cron to its default values, or to recreate it if it was deleted. - """ - cron_pool = self.pool.get('ir.cron') - cron_vals = DEFAULT_CRON_VALS.copy() - cron_vals.update({'name': name, "function": fn}) - try: - res = [] - _, res = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'base_gengo', xml_id) - cron_pool.write(cr, uid, [res], cron_vals, context=context) - except: - #the cron job was not found, probably deleted previously, so we create it again using default values - cron_vals.update({'numbercall': -1}) - return cron_pool.create(cr, uid, cron_vals, context=context) - def act_update(self, cr, uid, ids, context=None): ''' Function called by the wizard. ''' - if context == None: + if context is None: context = {} flag, gengo = self.gengo_authentication(cr, uid, context=context) @@ -113,21 +91,20 @@ class base_gengo_translations(osv.osv_memory): if language not in supported_langs: raise osv.except_osv(_("Warning"), _('This language is not supported by the Gengo translation services.')) - #send immediately a new request for the selected language (if any) ctx = context.copy() ctx['gengo_language'] = wizard.lang_id.id - self._sync_request(cr, uid, limit=GENGO_DEFAULT_LIMIT, context=ctx) - self._sync_response( cr, uid, limit=GENGO_DEFAULT_LIMIT, context=ctx) - #check the cron jobs and eventually restart/recreate them - if wizard.restart_send_job: - self.do_check_schedular(cr, uid, 'gengo_sync_send_request_scheduler', _('Gengo Sync Translation (Request)'), '_sync_request', context=context) - self.do_check_schedular(cr, uid, 'gengo_sync_receive_request_scheduler', _('Gengo Sync Translation (Response)'), '_sync_response', context=context) + if wizard.sync_limit > 200 or wizard.sync_limit < 1: + raise osv.except_osv(_("Warning"), _('Sync limit should between 1 to 200 for Gengo translation services.')) + if wizard.sync_type in ['send', 'both']: + self._sync_request(cr, uid, wizard.sync_limit, context=ctx) + if wizard.sync_type in ['receive', 'both']: + self._sync_response(cr, uid, wizard.sync_limit, context=ctx) return {'type': 'ir.actions.act_window_close'} def _sync_response(self, cr, uid, limit=GENGO_DEFAULT_LIMIT, context=None): """ This method will be called by cron services to get translations from - Gengo. It will read translated terms and comments from Gengo and will + Gengo. It will read translated terms and comments from Gengo and will update respective ir.translation in openerp. """ translation_pool = self.pool.get('ir.translation') @@ -135,48 +112,49 @@ class base_gengo_translations(osv.osv_memory): if not flag: _logger.warning("%s", gengo) else: - translation_id = translation_pool.search(cr, uid, [('state', '=', 'inprogress'), ('gengo_translation', 'in', ('machine','standard','pro','ultra'))], limit=limit, context=context) - for term in translation_pool.browse(cr, uid, translation_id, context=context): - up_term = up_comment = 0 - if term.job_id: - vals={} - job_response = gengo.getTranslationJob(id=term.job_id) - if job_response['opstat'] != 'ok': - _logger.warning("Invalid Response! Skipping translation Terms with `id` %s." % (term.job_id)) + offset = 0 + all_translation_ids = translation_pool.search(cr, uid, [('state', '=', 'inprogress'), ('gengo_translation', 'in', ('machine', 'standard', 'pro', 'ultra')), ('job_id', "!=", False)], context=context) + while True: + translation_ids = all_translation_ids[offset:offset + limit] + offset += limit + if not translation_ids: + break + translation_terms = translation_pool.browse(cr, uid, translation_ids, context=context) + gengo_job_id = [term.job_id for term in translation_terms] + if gengo_job_id: + gengo_ids = ','.join(gengo_job_id) + try: + job_response = gengo.getTranslationJobBatch(id=gengo_ids) + except: continue - if job_response['response']['job']['status'] == 'approved': - vals.update({'state': 'translated', - 'value': job_response['response']['job']['body_tgt']}) - up_term += 1 - job_comment = gengo.getTranslationJobComments(id=term.job_id) - if job_comment['opstat']=='ok': - gengo_comments="" - for comment in job_comment['response']['thread']: - gengo_comments += _('%s\n\n--\n Commented on %s by %s.') % (comment['body'], time.ctime(comment['ctime']), comment['author']) - vals.update({'gengo_comment': gengo_comments}) - up_comment += 1 - if vals: - translation_pool.write(cr, uid, term.id, vals) - _logger.info("Successfully Updated `%d` terms and %d Comments." % (up_term, up_comment )) - else: - _logger.warning("%s", 'Cannot retrieve the Gengo job ID for translation %s: %s' % (term.id, term.src)) + if job_response['opstat'] == 'ok': + for job in job_response['response'].get('jobs', []): + self._update_terms_job(cr, uid, job, context=context) return True + def _update_terms_job(self, cr, uid, job, context=None): + translation_pool = self.pool.get('ir.translation') + tid = int(job['custom_data']) + vals = {} + if job.get('job_id', False): + vals['job_id'] = job['job_id'] + vals['state'] = 'inprogress' + if job.get('status', False) in ('queued','available','pending','reviewable'): + vals['state'] = 'inprogress' + if job.get('body_tgt', False) and job.get('status', False)=='approved': + vals['value'] = job['body_tgt'] + if job.get('status', False) in ('approved', 'canceled'): + vals['state'] = 'translated' + if vals: + translation_pool.write(cr, uid, [tid], vals, context=context) + def _update_terms(self, cr, uid, response, context=None): """ Update the terms after their translation were requested to Gengo """ - translation_pool = self.pool.get('ir.translation') - for jobs in response['jobs']: + for jobs in response.get('jobs', []): for t_id, res in jobs.items(): - vals = {} - t_id = int(t_id) - tier = translation_pool.read(cr, uid, [t_id], ['gengo_translation'], context=context)[0]['gengo_translation'] - if tier == "machine": - vals.update({'value': res['body_tgt'], 'state': 'translated'}) - else: - vals.update({'job_id': res['job_id'], 'state': 'inprogress'}) - translation_pool.write(cr, uid, [t_id], vals, context=context) + self._update_terms_job(cr, uid, res, context=context) return def pack_jobs_request(self, cr, uid, term_ids, context=None): @@ -193,19 +171,25 @@ class base_gengo_translations(osv.osv_memory): auto_approve = 1 if user.company_id.gengo_auto_approve else 0 for term in translation_pool.browse(cr, uid, term_ids, context=context): if re.search(r"\w", term.src or ""): - jobs[term.id] = {'type': 'text', - 'slug': 'single::English to ' + term.lang, - 'tier': tools.ustr(term.gengo_translation), - 'body_src': term.src, - 'lc_src': 'en', - 'lc_tgt': translation_pool._get_gengo_corresponding_language(term.lang), - 'auto_approve': auto_approve, - 'comment': user.company_id.gengo_comment, + comment = user.company_id.gengo_comment or '' + if term.gengo_comment: + comment+='\n' + term.gengo_comment + jobs[time.strftime('%Y%m%d%H%M%S') + '-' + str(term.id)] = { + 'type': 'text', + 'slug': 'Single :: English to ' + term.lang, + 'tier': tools.ustr(term.gengo_translation), + 'custom_data': str(term.id), + 'body_src': term.src, + 'lc_src': 'en', + 'lc_tgt': translation_pool._get_gengo_corresponding_language(term.lang), + 'auto_approve': auto_approve, + 'comment': comment, + 'callback_url': self.pool.get('ir.config_parameter').get_param(cr, uid,'web.base.url') + '/website/gengo_callback' } - return {'jobs': jobs} + return {'jobs': jobs, 'as_group': 1} - def _send_translation_terms(self, cr, uid, term_ids, context=None): + def _send_translation_terms(self, cr, uid, term_ids, context=None): """ Send a request to Gengo with all the term_ids in a different job, get the response and update the terms in database accordingly. @@ -234,20 +218,23 @@ class base_gengo_translations(osv.osv_memory): context = {} language_pool = self.pool.get('res.lang') translation_pool = self.pool.get('ir.translation') + domain = [('state', '=', 'to_translate'), ('gengo_translation', 'in', ('machine', 'standard', 'pro', 'ultra')), ('job_id', "=", False)] + if context.get('gengo_language', False): + lc = language_pool.browse(cr, uid, context['gengo_language'], context=context).code + domain.append( ('lang', '=', lc) ) + + all_term_ids = translation_pool.search(cr, uid, domain, context=context) try: - #by default, the request will be made for all terms that needs it, whatever the language - lang_ids = language_pool.search(cr, uid, [], context=context) - if context.get('gengo_language'): - #but if this specific key is given, then we restrict the request on terms of this language only - lang_ids = [context.get('gengo_language')] - langs = [lang.code for lang in language_pool.browse(cr, uid, lang_ids, context=context)] - #search for the n first terms to translate - term_ids = translation_pool.search(cr, uid, [('state', '=', 'to_translate'), ('gengo_translation', 'in', ('machine','standard','pro','ultra')), ('lang', 'in', langs)], limit=limit, context=context) - if term_ids: - self._send_translation_terms(cr, uid, term_ids, context=context) - _logger.info("%s Translation terms have been posted to Gengo successfully", len(term_ids)) - else: - _logger.info('No Translation terms to process.') + offset = 0 + while True: + #search for the n first terms to translate + term_ids = all_term_ids[offset:offset + limit] + if term_ids: + offset += limit + self._send_translation_terms(cr, uid, term_ids, context=context) + _logger.info("%s Translation terms have been posted to Gengo successfully", len(term_ids)) + if not len(term_ids) == limit: + break except Exception, e: _logger.error("%s", e) diff --git a/addons/base_gengo/wizard/base_gengo_translations_view.xml b/addons/base_gengo/wizard/base_gengo_translations_view.xml index 7b6be31d042..f1d77730c47 100644 --- a/addons/base_gengo/wizard/base_gengo_translations_view.xml +++ b/addons/base_gengo/wizard/base_gengo_translations_view.xml @@ -8,7 +8,14 @@
    - + + + + + + + +
    @@ -291,7 +280,7 @@ ${object.event_id.get_interval(object.event_id.date,'day')}
    ${object.event_id.get_interval(object.event_id.date, 'month')}
    -
    ${object.event_id.get_interval(object.event_id.date, 'time')}
    +
    ${not object.event_id.allday and object.event_id.get_interval(object.event_id.date, 'time', tz=object.partner_id.tz) or ''}
    @@ -356,7 +345,7 @@
    : % for attendee in object.event_id.attendee_ids: -
    +
    % if attendee.cn != object.cn: ${attendee.cn} % else: @@ -371,9 +360,9 @@
    @@ -423,7 +412,7 @@ ${object.event_id.get_interval(object.event_id.date,'day')}
    ${object.event_id.get_interval(object.event_id.date, 'month')}
    -
    ${object.event_id.get_interval(object.event_id.date, 'time')}
    +
    ${not object.event_id.allday and object.event_id.get_interval(object.event_id.date, 'time', tz=object.partner_id.tz) or ''}
    @@ -488,7 +477,7 @@ - - - - - Invoice [[ ((o.type == 'out_invoice' and (o.state == 'open' or o.state == 'paid')) or removeParentNode('para')) and '' ]] [[ o.number ]] - PRO-FORMA [[ ((o.type == 'out_invoice' and o.state == 'proforma2') or removeParentNode('para')) and '' ]] - Draft Invoice [[ ((o.type == 'out_invoice' and o.state == 'draft') or removeParentNode('para')) and '' ]] - Cancelled Invoice [[ ((o.type == 'out_invoice' and o.state == 'cancel') or removeParentNode('para')) and '' ]] [[ o.number ]] - Refund [[ (o.type=='out_refund' or removeParentNode('para')) and '' ]] [[ o.number ]] - Supplier Refund [[ (o.type=='in_refund' or removeParentNode('para')) and '' ]] [[ o.number ]] - Supplier Invoice [[ (o.type=='in_invoice' or removeParentNode('para')) and '' ]] [[ o.number ]] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - [[ repeatIn(o.invoice_line,'l') ]] - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - [[ repeatIn(o.tax_line,'t') ]] - -
    - - - - - - - - - - - [[ (o.comment and format(o.comment )) or removeParentNode('para') ]] - - - - [[ (o.payment_term and o.payment_term.note and format(o.payment_term and o.payment_term.note)) or removeParentNode('para') ]] - - - - - - - - - - - - - - diff --git a/addons/report_intrastat/test/report_intrastat_report.yml b/addons/report_intrastat/test/report_intrastat_report.yml index 687f605b901..5c70ba67ef2 100644 --- a/addons/report_intrastat/test/report_intrastat_report.yml +++ b/addons/report_intrastat/test/report_intrastat_report.yml @@ -16,6 +16,6 @@ import os import openerp.report from openerp import tools - data, format = openerp.report.render_report(cr, uid, [ref('test_invoice_1')], 'account.invoice.intrastat', {}, {}) + data, format = openerp.report.render_report(cr, uid, [ref('test_invoice_1')], 'report_intrastat.report_intrastatinvoice', {}, {}) if tools.config['test_report_directory']: file(os.path.join(tools.config['test_report_directory'], 'report_intrastat-intrastat_report.'+format), 'wb+').write(data) diff --git a/addons/report_intrastat/views/report_intrastatinvoice.xml b/addons/report_intrastat/views/report_intrastatinvoice.xml new file mode 100644 index 00000000000..c534f808c95 --- /dev/null +++ b/addons/report_intrastat/views/report_intrastatinvoice.xml @@ -0,0 +1,149 @@ + + + + + + + + diff --git a/addons/report_webkit/default_header.html b/addons/report_webkit/default_header.html index 0798209a5b7..37fd4135b62 100644 --- a/addons/report_webkit/default_header.html +++ b/addons/report_webkit/default_header.html @@ -1,3 +1,4 @@ + diff --git a/addons/report_webkit/i18n/ar.po b/addons/report_webkit/i18n/ar.po index b986ae9d85b..86f8ec14480 100644 --- a/addons/report_webkit/i18n/ar.po +++ b/addons/report_webkit/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/bg.po b/addons/report_webkit/i18n/bg.po index e8d700b86a7..e04c3c922a4 100644 --- a/addons/report_webkit/i18n/bg.po +++ b/addons/report_webkit/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ca.po b/addons/report_webkit/i18n/ca.po index 2bb31f87d2d..3ec2e216c0b 100644 --- a/addons/report_webkit/i18n/ca.po +++ b/addons/report_webkit/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/cs.po b/addons/report_webkit/i18n/cs.po index 268621d2691..bfe65ef6796 100644 --- a/addons/report_webkit/i18n/cs.po +++ b/addons/report_webkit/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/da.po b/addons/report_webkit/i18n/da.po index f999f2486a8..76b31d7ceb4 100644 --- a/addons/report_webkit/i18n/da.po +++ b/addons/report_webkit/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/de.po b/addons/report_webkit/i18n/de.po index 505302778fa..54507b1453e 100644 --- a/addons/report_webkit/i18n/de.po +++ b/addons/report_webkit/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/es.po b/addons/report_webkit/i18n/es.po index 09aae5bdc37..476c5ef61c2 100644 --- a/addons/report_webkit/i18n/es.po +++ b/addons/report_webkit/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 @@ -252,7 +252,7 @@ msgstr "Folio 27 210 x 330 mm" #. module: report_webkit #: field:ir.header_webkit,margin_top:0 msgid "Top Margin (mm)" -msgstr "Margen Superiro (mm)" +msgstr "Margen superior (mm)" #. module: report_webkit #: view:report.webkit.actions:0 diff --git a/addons/report_webkit/i18n/es_CR.po b/addons/report_webkit/i18n/es_CR.po index af0f00928c6..0b3f3c9cdcf 100644 --- a/addons/report_webkit/i18n/es_CR.po +++ b/addons/report_webkit/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/fi.po b/addons/report_webkit/i18n/fi.po index dcaf2ca1162..5ad64a1a92c 100644 --- a/addons/report_webkit/i18n/fi.po +++ b/addons/report_webkit/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/fr.po b/addons/report_webkit/i18n/fr.po index ef1888cad9c..eb2187037d8 100644 --- a/addons/report_webkit/i18n/fr.po +++ b/addons/report_webkit/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/hr.po b/addons/report_webkit/i18n/hr.po index 051c9fa637b..3f43f195a85 100644 --- a/addons/report_webkit/i18n/hr.po +++ b/addons/report_webkit/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/hu.po b/addons/report_webkit/i18n/hu.po index 388e0b355f5..3ad747e1bc8 100644 --- a/addons/report_webkit/i18n/hu.po +++ b/addons/report_webkit/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/it.po b/addons/report_webkit/i18n/it.po index 01419009217..5205a50bf20 100644 --- a/addons/report_webkit/i18n/it.po +++ b/addons/report_webkit/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ja.po b/addons/report_webkit/i18n/ja.po index 9fe072c54d9..cca54085a8b 100644 --- a/addons/report_webkit/i18n/ja.po +++ b/addons/report_webkit/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/mk.po b/addons/report_webkit/i18n/mk.po index 169def659da..a0f839c987a 100644 --- a/addons/report_webkit/i18n/mk.po +++ b/addons/report_webkit/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/mn.po b/addons/report_webkit/i18n/mn.po index 5c2d63994ce..4cc759b5e25 100644 --- a/addons/report_webkit/i18n/mn.po +++ b/addons/report_webkit/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/nl.po b/addons/report_webkit/i18n/nl.po index 7d742120a3a..57ab037843f 100644 --- a/addons/report_webkit/i18n/nl.po +++ b/addons/report_webkit/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/pl.po b/addons/report_webkit/i18n/pl.po index ca90f087480..1c92090fec4 100644 --- a/addons/report_webkit/i18n/pl.po +++ b/addons/report_webkit/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/pt.po b/addons/report_webkit/i18n/pt.po index 3b24b64b582..3ce96ff464d 100644 --- a/addons/report_webkit/i18n/pt.po +++ b/addons/report_webkit/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/pt_BR.po b/addons/report_webkit/i18n/pt_BR.po index 66ae216815f..598677b8227 100644 --- a/addons/report_webkit/i18n/pt_BR.po +++ b/addons/report_webkit/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ro.po b/addons/report_webkit/i18n/ro.po index 4963d7e75ad..48e6e931530 100644 --- a/addons/report_webkit/i18n/ro.po +++ b/addons/report_webkit/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ru.po b/addons/report_webkit/i18n/ru.po index d175130c52d..96e20f8ea88 100644 --- a/addons/report_webkit/i18n/ru.po +++ b/addons/report_webkit/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/sl.po b/addons/report_webkit/i18n/sl.po index 3f8da487a67..e3409f9d26f 100644 --- a/addons/report_webkit/i18n/sl.po +++ b/addons/report_webkit/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/sv.po b/addons/report_webkit/i18n/sv.po index 82a1759b5d5..e18b23f3054 100644 --- a/addons/report_webkit/i18n/sv.po +++ b/addons/report_webkit/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/tr.po b/addons/report_webkit/i18n/tr.po index c13bf2448dd..71e7924f740 100644 --- a/addons/report_webkit/i18n/tr.po +++ b/addons/report_webkit/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/zh_CN.po b/addons/report_webkit/i18n/zh_CN.po index 498e5a79b7d..e225e154c86 100644 --- a/addons/report_webkit/i18n/zh_CN.po +++ b/addons/report_webkit/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:45+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:27+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/webkit_report.py b/addons/report_webkit/webkit_report.py index 4f56d7efea7..60fb536ca96 100644 --- a/addons/report_webkit/webkit_report.py +++ b/addons/report_webkit/webkit_report.py @@ -112,6 +112,7 @@ def webkit_report_extender(report_name): return fct return fct1 + class WebKitParser(report_sxw): """Custom class that use webkit to render HTML reports Code partially taken from report openoffice. Thanks guys :) @@ -173,7 +174,7 @@ class WebKitParser(report_sxw): ), 'w' ) - head_file.write(header.encode('utf-8')) + head_file.write(self._sanitize_html(header.encode('utf-8'))) head_file.close() file_to_del.append(head_file.name) command.extend(['--header-html', head_file.name]) @@ -184,7 +185,7 @@ class WebKitParser(report_sxw): ), 'w' ) - foot_file.write(footer.encode('utf-8')) + foot_file.write(self._sanitize_html(footer.encode('utf-8'))) foot_file.close() file_to_del.append(foot_file.name) command.extend(['--footer-html', foot_file.name]) @@ -205,7 +206,7 @@ class WebKitParser(report_sxw): for html in html_list : html_file = file(os.path.join(tmp_dir, str(time.time()) + str(count) +'.body.html'), 'w') count += 1 - html_file.write(html.encode('utf-8')) + html_file.write(self._sanitize_html(html.encode('utf-8'))) html_file.close() file_to_del.append(html_file.name) command.append(html_file.name) @@ -366,7 +367,6 @@ class WebKitParser(report_sxw): pdf = self.generate_pdf(bin, report_xml, head, foot, htmls) return (pdf, 'pdf') - def create(self, cursor, uid, ids, data, context=None): """We override the create function in order to handle generator Code taken from report openoffice. Thanks guys :) """ @@ -387,11 +387,18 @@ class WebKitParser(report_sxw): report_xml.report_sxw = None else: return super(WebKitParser, self).create(cursor, uid, ids, data, context) - if report_xml.report_type != 'webkit' : + if report_xml.report_type != 'webkit': return super(WebKitParser, self).create(cursor, uid, ids, data, context) result = self.create_source_pdf(cursor, uid, ids, data, report_xml, context) if not result: return (False,False) return result + def _sanitize_html(self, html): + """wkhtmltopdf expects the html page to declare a doctype. + """ + if html and html[:9].upper() != "\n" + html + return html + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/resource/i18n/ar.po b/addons/resource/i18n/ar.po index 796ba5447ab..fd43a91f070 100644 --- a/addons/resource/i18n/ar.po +++ b/addons/resource/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/bg.po b/addons/resource/i18n/bg.po index e3f13ff932e..3a6ca5bddf1 100644 --- a/addons/resource/i18n/bg.po +++ b/addons/resource/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/bs.po b/addons/resource/i18n/bs.po index 578a6732402..3fde9556182 100644 --- a/addons/resource/i18n/bs.po +++ b/addons/resource/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ca.po b/addons/resource/i18n/ca.po index 0cb405f9edd..a86ee01d7cb 100644 --- a/addons/resource/i18n/ca.po +++ b/addons/resource/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/cs.po b/addons/resource/i18n/cs.po index 48dfc270d43..f340b393c74 100644 --- a/addons/resource/i18n/cs.po +++ b/addons/resource/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Language: Czech\n" #. module: resource diff --git a/addons/resource/i18n/da.po b/addons/resource/i18n/da.po index 3bbcceeec12..92e2518c075 100644 --- a/addons/resource/i18n/da.po +++ b/addons/resource/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/de.po b/addons/resource/i18n/de.po index 93cc535f413..13ecc2b4cca 100644 --- a/addons/resource/i18n/de.po +++ b/addons/resource/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/es.po b/addons/resource/i18n/es.po index 4b90b835bd1..d90f27f7360 100644 --- a/addons/resource/i18n/es.po +++ b/addons/resource/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/es_CR.po b/addons/resource/i18n/es_CR.po index fc329cd3aa6..ba18be4ef84 100644 --- a/addons/resource/i18n/es_CR.po +++ b/addons/resource/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: resource diff --git a/addons/resource/i18n/es_EC.po b/addons/resource/i18n/es_EC.po index 247fed74557..94552c57158 100644 --- a/addons/resource/i18n/es_EC.po +++ b/addons/resource/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/et.po b/addons/resource/i18n/et.po index 61b7b53944d..f1c04cc33d7 100644 --- a/addons/resource/i18n/et.po +++ b/addons/resource/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/fi.po b/addons/resource/i18n/fi.po index 5768684a151..1756a468325 100644 --- a/addons/resource/i18n/fi.po +++ b/addons/resource/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/fr.po b/addons/resource/i18n/fr.po index 963649be778..1f642aec191 100644 --- a/addons/resource/i18n/fr.po +++ b/addons/resource/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/gl.po b/addons/resource/i18n/gl.po index 8840a8def07..0bb35c2ffd5 100644 --- a/addons/resource/i18n/gl.po +++ b/addons/resource/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/he.po b/addons/resource/i18n/he.po index 278e84b24a7..03cb18d7797 100644 --- a/addons/resource/i18n/he.po +++ b/addons/resource/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/hr.po b/addons/resource/i18n/hr.po index 31fbe35acf1..66fbd1304ba 100644 --- a/addons/resource/i18n/hr.po +++ b/addons/resource/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/hu.po b/addons/resource/i18n/hu.po index 2fe03c801c2..b7d66ea4790 100644 --- a/addons/resource/i18n/hu.po +++ b/addons/resource/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/it.po b/addons/resource/i18n/it.po index a3c3bdb7d06..6b8495728c7 100644 --- a/addons/resource/i18n/it.po +++ b/addons/resource/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ja.po b/addons/resource/i18n/ja.po index e8f688856a2..083ce1431d1 100644 --- a/addons/resource/i18n/ja.po +++ b/addons/resource/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/lt.po b/addons/resource/i18n/lt.po index c1c92aff64e..3f7e0a92a1a 100644 --- a/addons/resource/i18n/lt.po +++ b/addons/resource/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/mk.po b/addons/resource/i18n/mk.po index 53140419f14..185baeb2026 100644 --- a/addons/resource/i18n/mk.po +++ b/addons/resource/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/mn.po b/addons/resource/i18n/mn.po index bdbe0b2cbf9..545d0fd67a5 100644 --- a/addons/resource/i18n/mn.po +++ b/addons/resource/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/nl.po b/addons/resource/i18n/nl.po index 6e4d3ee24cb..2a2394907a9 100644 --- a/addons/resource/i18n/nl.po +++ b/addons/resource/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/pl.po b/addons/resource/i18n/pl.po index 1909ae44148..38e45ddbde5 100644 --- a/addons/resource/i18n/pl.po +++ b/addons/resource/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/pt.po b/addons/resource/i18n/pt.po index 5cb558ff481..c3f9a64d9a9 100644 --- a/addons/resource/i18n/pt.po +++ b/addons/resource/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/pt_BR.po b/addons/resource/i18n/pt_BR.po index 34c87b126b6..4143199038a 100644 --- a/addons/resource/i18n/pt_BR.po +++ b/addons/resource/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ro.po b/addons/resource/i18n/ro.po index a641a59de17..caf263f905d 100644 --- a/addons/resource/i18n/ro.po +++ b/addons/resource/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ru.po b/addons/resource/i18n/ru.po index f68ecac5e41..5341f8ad3cd 100644 --- a/addons/resource/i18n/ru.po +++ b/addons/resource/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/sl.po b/addons/resource/i18n/sl.po index 651fd8571c5..9ebd117c30d 100644 --- a/addons/resource/i18n/sl.po +++ b/addons/resource/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/sv.po b/addons/resource/i18n/sv.po index d0c47d135f2..4360aa998c5 100644 --- a/addons/resource/i18n/sv.po +++ b/addons/resource/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/tr.po b/addons/resource/i18n/tr.po index c58526c0556..9beadb683cd 100644 --- a/addons/resource/i18n/tr.po +++ b/addons/resource/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/vi.po b/addons/resource/i18n/vi.po index fafff0c3449..25397fad4ca 100644 --- a/addons/resource/i18n/vi.po +++ b/addons/resource/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/zh_CN.po b/addons/resource/i18n/zh_CN.po index 3c4473ff26d..6d9ebf2e29a 100644 --- a/addons/resource/i18n/zh_CN.po +++ b/addons/resource/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/sale/__openerp__.py b/addons/sale/__openerp__.py index bb5bac89e46..1684760debf 100644 --- a/addons/sale/__openerp__.py +++ b/addons/sale/__openerp__.py @@ -59,7 +59,7 @@ The Dashboard for the Sales Manager will include 'author': 'OpenERP SA', 'website': 'http://www.openerp.com', 'images': ['images/sale_dashboard.jpeg','images/Sale_order_line_to_invoice.jpeg','images/sale_order.jpeg','images/sales_analysis.jpeg'], - 'depends': ['account_voucher'], + 'depends': ['account_voucher', 'report'], 'data': [ 'wizard/sale_make_invoice_advance.xml', 'wizard/sale_line_invoice.xml', diff --git a/addons/sale/i18n/ar.po b/addons/sale/i18n/ar.po index adf2b30d034..77be95b6ee1 100644 --- a/addons/sale/i18n/ar.po +++ b/addons/sale/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:00+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:36+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/bg.po b/addons/sale/i18n/bg.po index ef5f22ff98b..cf3472fb0c1 100644 --- a/addons/sale/i18n/bg.po +++ b/addons/sale/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:36+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/bs.po b/addons/sale/i18n/bs.po index 492f9abeb8a..e837fcde1e3 100644 --- a/addons/sale/i18n/bs.po +++ b/addons/sale/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:36+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/ca.po b/addons/sale/i18n/ca.po index 80db12f57c6..33937abe3e0 100644 --- a/addons/sale/i18n/ca.po +++ b/addons/sale/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:36+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/cs.po b/addons/sale/i18n/cs.po index 8093907ab74..b57fb069e0e 100644 --- a/addons/sale/i18n/cs.po +++ b/addons/sale/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:36+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Language: Czech\n" #. module: sale diff --git a/addons/sale/i18n/da.po b/addons/sale/i18n/da.po index 2de56745aed..e79f85e903e 100644 --- a/addons/sale/i18n/da.po +++ b/addons/sale/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:36+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/de.po b/addons/sale/i18n/de.po index 20c406ef9f7..144eaafb2ef 100644 --- a/addons/sale/i18n/de.po +++ b/addons/sale/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/el.po b/addons/sale/i18n/el.po index 1f10b95f085..98bb156c79e 100644 --- a/addons/sale/i18n/el.po +++ b/addons/sale/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es.po b/addons/sale/i18n/es.po index 4edd61f15f1..4df07e4bed1 100644 --- a/addons/sale/i18n/es.po +++ b/addons/sale/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es_AR.po b/addons/sale/i18n/es_AR.po index 779f49ba90b..02582d4ff03 100644 --- a/addons/sale/i18n/es_AR.po +++ b/addons/sale/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es_BO.po b/addons/sale/i18n/es_BO.po index a3d9a335fc2..15e367cfef0 100644 --- a/addons/sale/i18n/es_BO.po +++ b/addons/sale/i18n/es_BO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es_CL.po b/addons/sale/i18n/es_CL.po index 31fc3a2f3ad..759beed2b96 100644 --- a/addons/sale/i18n/es_CL.po +++ b/addons/sale/i18n/es_CL.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es_CR.po b/addons/sale/i18n/es_CR.po index d2e84b02312..4fe69a7444f 100644 --- a/addons/sale/i18n/es_CR.po +++ b/addons/sale/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:04+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: sale diff --git a/addons/sale/i18n/es_EC.po b/addons/sale/i18n/es_EC.po index a52ab393f3f..2b426052c24 100644 --- a/addons/sale/i18n/es_EC.po +++ b/addons/sale/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:04+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es_MX.po b/addons/sale/i18n/es_MX.po index 34cd489e818..5b074523594 100644 --- a/addons/sale/i18n/es_MX.po +++ b/addons/sale/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:04+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es_PE.po b/addons/sale/i18n/es_PE.po index 3420a4b0dc5..ad1d7e91375 100644 --- a/addons/sale/i18n/es_PE.po +++ b/addons/sale/i18n/es_PE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:04+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/et.po b/addons/sale/i18n/et.po index 48341c387ac..5e077a9ac30 100644 --- a/addons/sale/i18n/et.po +++ b/addons/sale/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: field:sale.order,amount_untaxed:0 diff --git a/addons/sale/i18n/eu.po b/addons/sale/i18n/eu.po index 3847776834e..20e0cf68cf8 100644 --- a/addons/sale/i18n/eu.po +++ b/addons/sale/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:36+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/fi.po b/addons/sale/i18n/fi.po index e34762e21a2..c345ce0069e 100644 --- a/addons/sale/i18n/fi.po +++ b/addons/sale/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/fr.po b/addons/sale/i18n/fr.po index 98a3514adf4..d6909e5e6ab 100644 --- a/addons/sale/i18n/fr.po +++ b/addons/sale/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #, python-format #~ msgid "" diff --git a/addons/sale/i18n/gl.po b/addons/sale/i18n/gl.po index 2f053b01f45..f1599d4894a 100644 --- a/addons/sale/i18n/gl.po +++ b/addons/sale/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/he.po b/addons/sale/i18n/he.po index f74ea500538..d441ed4a1d5 100644 --- a/addons/sale/i18n/he.po +++ b/addons/sale/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/hi.po b/addons/sale/i18n/hi.po index fd00cf0a82f..c47067837c3 100644 --- a/addons/sale/i18n/hi.po +++ b/addons/sale/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/hr.po b/addons/sale/i18n/hr.po index 7ebc2f0a7fa..2d24a39e744 100644 --- a/addons/sale/i18n/hr.po +++ b/addons/sale/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: hr\n" #. module: sale diff --git a/addons/sale/i18n/hu.po b/addons/sale/i18n/hu.po index 14bbb80794b..9b9d3642fcd 100644 --- a/addons/sale/i18n/hu.po +++ b/addons/sale/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/id.po b/addons/sale/i18n/id.po index f4a47c66102..21cea7e9c27 100644 --- a/addons/sale/i18n/id.po +++ b/addons/sale/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/is.po b/addons/sale/i18n/is.po index e5d4edc5204..ee4acdbf9bd 100644 --- a/addons/sale/i18n/is.po +++ b/addons/sale/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/it.po b/addons/sale/i18n/it.po index 299cacdfa7e..bd5c45f751e 100644 --- a/addons/sale/i18n/it.po +++ b/addons/sale/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/ja.po b/addons/sale/i18n/ja.po index 1427ac328ad..6ac4748be29 100644 --- a/addons/sale/i18n/ja.po +++ b/addons/sale/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/ko.po b/addons/sale/i18n/ko.po index 15e9fe9c99b..d372bc2a10c 100644 --- a/addons/sale/i18n/ko.po +++ b/addons/sale/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/lo.po b/addons/sale/i18n/lo.po index b0a107a0cc9..23cba8aa80e 100644 --- a/addons/sale/i18n/lo.po +++ b/addons/sale/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/lt.po b/addons/sale/i18n/lt.po index 17529b581e2..a2812768bb0 100644 --- a/addons/sale/i18n/lt.po +++ b/addons/sale/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/lv.po b/addons/sale/i18n/lv.po index 552d0ddfe91..f8f7dd4776e 100644 --- a/addons/sale/i18n/lv.po +++ b/addons/sale/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:37+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/mk.po b/addons/sale/i18n/mk.po index 3a5e0b850c2..0d9d22829c0 100644 --- a/addons/sale/i18n/mk.po +++ b/addons/sale/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/mn.po b/addons/sale/i18n/mn.po index bfb2091e5f9..9248d2cdab5 100644 --- a/addons/sale/i18n/mn.po +++ b/addons/sale/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/nb.po b/addons/sale/i18n/nb.po index 542b7d58c44..e57003aba50 100644 --- a/addons/sale/i18n/nb.po +++ b/addons/sale/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/nl.po b/addons/sale/i18n/nl.po index 414be8610cc..0f88b7b7be4 100644 --- a/addons/sale/i18n/nl.po +++ b/addons/sale/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:01+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:36+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/nl_BE.po b/addons/sale/i18n/nl_BE.po index 8f6a5562d60..3b618ec3e14 100644 --- a/addons/sale/i18n/nl_BE.po +++ b/addons/sale/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: nl\n" #. module: sale diff --git a/addons/sale/i18n/oc.po b/addons/sale/i18n/oc.po index 8ed463e89f4..62a418fc43b 100644 --- a/addons/sale/i18n/oc.po +++ b/addons/sale/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/pl.po b/addons/sale/i18n/pl.po index 6e914cb7d93..246afbb4aad 100644 --- a/addons/sale/i18n/pl.po +++ b/addons/sale/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/pt.po b/addons/sale/i18n/pt.po index 1d73a4fd6df..3f371bbcfda 100644 --- a/addons/sale/i18n/pt.po +++ b/addons/sale/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/pt_BR.po b/addons/sale/i18n/pt_BR.po index 7e49ee40700..e825514f726 100644 --- a/addons/sale/i18n/pt_BR.po +++ b/addons/sale/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/ro.po b/addons/sale/i18n/ro.po index b2aa2379b75..fe369d62555 100644 --- a/addons/sale/i18n/ro.po +++ b/addons/sale/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/ru.po b/addons/sale/i18n/ru.po index e8135ddf92b..b05145eb92f 100644 --- a/addons/sale/i18n/ru.po +++ b/addons/sale/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:02+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sk.po b/addons/sale/i18n/sk.po index 2bd9ef1587d..09bba563c8d 100644 --- a/addons/sale/i18n/sk.po +++ b/addons/sale/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sl.po b/addons/sale/i18n/sl.po index 2dd5e72f05f..727b6462e49 100644 --- a/addons/sale/i18n/sl.po +++ b/addons/sale/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sq.po b/addons/sale/i18n/sq.po index cbee25d6dc3..7c95528d2d2 100644 --- a/addons/sale/i18n/sq.po +++ b/addons/sale/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:00+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:36+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sr.po b/addons/sale/i18n/sr.po index dd77b1397cb..4086dd6d80a 100644 --- a/addons/sale/i18n/sr.po +++ b/addons/sale/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sr@latin.po b/addons/sale/i18n/sr@latin.po index 50031ba9925..136d3eab709 100644 --- a/addons/sale/i18n/sr@latin.po +++ b/addons/sale/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:04+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sv.po b/addons/sale/i18n/sv.po index 157ed6358b0..539b36476cf 100644 --- a/addons/sale/i18n/sv.po +++ b/addons/sale/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/th.po b/addons/sale/i18n/th.po index 41c2ba3b84b..7c9421eb7f8 100644 --- a/addons/sale/i18n/th.po +++ b/addons/sale/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/tlh.po b/addons/sale/i18n/tlh.po index 060daa498a0..1cb3c81bc60 100644 --- a/addons/sale/i18n/tlh.po +++ b/addons/sale/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/tr.po b/addons/sale/i18n/tr.po index 60bda4af1f5..ba42af8830a 100644 --- a/addons/sale/i18n/tr.po +++ b/addons/sale/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:38+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting @@ -54,7 +54,7 @@ msgstr "Onaylama Tarihi" #: view:sale.order.line:0 #: view:sale.report:0 msgid "Group By..." -msgstr "Gruplandır..." +msgstr "Gruplandır İle..." #. module: sale #: field:sale.order.line,address_allotment_id:0 @@ -258,7 +258,7 @@ msgstr "Her satış siparişi kalemi için indirim yapmanıza olanak verir." #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines that are in 'done' state" -msgstr "'tamamlandı' durumunda Satış Siparişi Kalemleri" +msgstr "'biten' durumunda Satış Siparişi Kalemleri" #. module: sale #: selection:sale.order.line,type:0 @@ -636,7 +636,7 @@ msgstr "Sipariş N°" #: view:sale.order:0 #: field:sale.order,order_line:0 msgid "Order Lines" -msgstr "Sipariş Kalemleri" +msgstr "Sipariş Satırları" #. module: sale #: report:sale.order:0 @@ -652,7 +652,7 @@ msgstr "Lütfen bu ürün için gelir hesabı belirtin: \"%s\" (id:%d)." #. module: sale #: field:sale.order.line,invoice_lines:0 msgid "Invoice Lines" -msgstr "Fatura Kalemleri" +msgstr "Fatura Satırları" #. module: sale #: view:sale.report:0 @@ -673,9 +673,9 @@ msgid "" " and perform batch operations on journals.\n" " This installs the module sale_journal." msgstr "" -"Satışlarınızı ve teslimatlarınızı (toplama listeleri) değişik günlükler " +"Satışlarınızı ve teslimatlarınızı (seçim listeleri) değişik yevmiyeler " "arasında sınıflandırmanızı sağlar,\n" -" günlükler üzerin toplu işlemler yürütür.\n" +" yevmiyeler üzerin toplu işlemler yürütür.\n" " Bu, sale_journal modülünü kurar." #. module: sale @@ -698,7 +698,7 @@ msgstr "Saat" #. module: sale #: field:res.partner,sale_order_count:0 msgid "# of Sales Order" -msgstr "Satış Siparişi sayısı" +msgstr "# Satış Siparişi" #. module: sale #: help:sale.config.settings,timesheet:0 @@ -879,7 +879,7 @@ msgstr "Satış Siparişi yapıldı" #: code:addons/sale/sale.py:364 #, python-format msgid "Please define sales journal for this company: \"%s\" (id:%d)." -msgstr "Bu şirket için lütfen satış günlüğü oluşturun: \"%s\" (id:%d)." +msgstr "Bu şirket için lütfen satış yevmiyesi oluşturun: \"%s\" (id:%d)." #. module: sale #: model:ir.actions.act_window,name:sale.act_res_partner_2_sale_order @@ -890,7 +890,7 @@ msgstr "Teklifler ve Satışlar" #. module: sale #: field:sale.order,invoiced:0 msgid "Paid" -msgstr "Ödenmiş" +msgstr "Ödenmdi" #. module: sale #: help:sale.config.settings,group_uom:0 @@ -1229,7 +1229,7 @@ msgid "" "yet been invoiced" msgstr "" "Onaylı, yapıldı ya da istisna durumundaki ve henüz faturalanmamış Satış " -"Siparişi Kalemleri" +"Siparişi Satırları" #. module: sale #: model:ir.model,name:sale.model_sale_report @@ -1397,8 +1397,8 @@ msgid "" "The salesman confirms the quotation. The state of the sales order becomes " "'In progress' or 'Manual in progress'." msgstr "" -"Satış temsilcisi teklifi onaylıyor. Satış Siparişinin durumu \"Sürüyor\" ya " -"da \"Elle işlem sürüyor\" olur." +"Satış temsilcisi teklifi onaylıyor. Satış Siparişinin durumu 'Sürüyor' ya da " +"'Elle işlem sürüyor' olur." #. module: sale #: code:addons/sale/sale.py:942 @@ -1480,7 +1480,7 @@ msgstr "Referansınız" #. module: sale #: view:sale.advance.payment.inv:0 msgid "Show Lines to Invoice" -msgstr "Faturalanacak Kalemleri Göster" +msgstr "Faturalanacak Satırları Göster" #. module: sale #: field:sale.report,date:0 @@ -1582,7 +1582,7 @@ msgstr "Fatura" #. module: sale #: view:sale.order.line:0 msgid "My Sales Order Lines" -msgstr "Satış Siparişi Kalemlerim" +msgstr "Satış Siparişi Satırları" #. module: sale #: model:process.transition.action,name:sale.process_transition_action_cancel0 @@ -1670,7 +1670,7 @@ msgstr "" #. module: sale #: view:sale.advance.payment.inv:0 msgid "Invoice Sales Order" -msgstr "Satış Siparişi faturala" +msgstr "Satış Siparişi Faturala" #. module: sale #: help:sale.order,invoice_quantity:0 @@ -1838,7 +1838,7 @@ msgstr "" "

    Sayın ${object.partner_id.name},

    \n" " \n" "

    Firmamız ${object.company_id.name}nden istemiş olduğunuz " -"${object.state in ('draft', 'sent') and 'teklif' or 'Sipariş doğrulama'} " +"${object.state in ('draft', 'sent') and 'Teklif' or 'Sipariş doğrulama'} " "aşağıdadır:

    \n" "\n" "

    \n" @@ -1953,8 +1953,8 @@ msgid "" "${object.company_id.name} ${object.state in ('draft', 'sent') and " "'Quotation' or 'Order'} (Ref ${object.name or 'n/a' })" msgstr "" -"${object.company_id.name} ${object.state in ('draft', 'sent') and " -"'Quotation' or 'Order'} (Ref ${object.name or 'n/a' })" +"${object.company_id.name} ${object.state in ('draft', 'sent') and 'Teklif' " +"or 'Sipariş'} (Ref ${object.name or 'n/a' })" #. module: sale #: report:sale.order:0 @@ -2332,7 +2332,7 @@ msgstr "ya da" #: view:sale.order:0 #: view:sale.order.line:0 msgid "Sales Order Lines" -msgstr "Satış Siparişi Kalemleri" +msgstr "Satış Siparişi Satırları" #. module: sale #: help:sale.order,pricelist_id:0 @@ -2357,7 +2357,7 @@ msgstr "Müşteri Referansı" #. module: sale #: view:sale.report:0 msgid "Picked" -msgstr "Toplanmış" +msgstr "Seçilmiş" #. module: sale #: help:sale.config.settings,module_sale_margin:0 diff --git a/addons/sale/i18n/uk.po b/addons/sale/i18n/uk.po index 21c47d3612c..38d965f749f 100644 --- a/addons/sale/i18n/uk.po +++ b/addons/sale/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/vi.po b/addons/sale/i18n/vi.po index 7b61e0429f0..edce4ea264c 100644 --- a/addons/sale/i18n/vi.po +++ b/addons/sale/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/zh_CN.po b/addons/sale/i18n/zh_CN.po index 0fbbcb6833d..3908b068716 100644 --- a/addons/sale/i18n/zh_CN.po +++ b/addons/sale/i18n/zh_CN.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: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-11-19 10:53+0000\n" -"Last-Translator: Guipo Hao \n" +"PO-Revision-Date: 2014-03-15 07:15+0000\n" +"Last-Translator: Victor Yu \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: 2014-03-04 07:04+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: help:sale.order,message_summary:0 @@ -247,7 +247,7 @@ msgstr "计量单位 " #: code:addons/sale/wizard/sale_make_invoice_advance.py:101 #, python-format msgid "Incorrect Data" -msgstr "" +msgstr "错误的数据" #. module: sale #: code:addons/sale/wizard/sale_make_invoice_advance.py:102 @@ -1570,7 +1570,7 @@ msgstr "查找未开票明细" #. module: sale #: model:ir.model,name:sale.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "会计.配置.设定" #. module: sale #: sql_constraint:sale.order:0 @@ -2080,7 +2080,7 @@ msgstr "产品销售单位" #. module: sale #: model:process.node,note:sale.process_node_quotation0 msgid "Draft state of sales order" -msgstr "销售订单草稿状态" +msgstr "草稿状态的销售订单" #. module: sale #: field:sale.order,origin:0 @@ -2286,7 +2286,9 @@ msgstr "" msgid "" "Before choosing a product,\n" " select a customer in the sales form." -msgstr "在挑选产品前,在 销售表单选择一个客户" +msgstr "" +"在挑选产品前,\n" +" 在销售表单中选择一个客户。" #. module: sale #: view:sale.order:0 diff --git a/addons/sale/i18n/zh_TW.po b/addons/sale/i18n/zh_TW.po index 4fb655e5979..ac98141d191 100644 --- a/addons/sale/i18n/zh_TW.po +++ b/addons/sale/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:03+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:39+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/sale.py b/addons/sale/sale.py index 667f15a375d..48b09ec7493 100644 --- a/addons/sale/sale.py +++ b/addons/sale/sale.py @@ -500,7 +500,7 @@ class sale_order(osv.osv): lines.append(line.id) created_lines = obj_sale_order_line.invoice_line_create(cr, uid, lines) if created_lines: - invoices.setdefault(o.partner_id.id, []).append((o, created_lines)) + invoices.setdefault(o.partner_invoice_id.id or o.partner_id.id, []).append((o, created_lines)) if not invoices: for o in self.browse(cr, uid, ids, context=context): for i in o.invoice_ids: diff --git a/addons/sale/views/report_saleorder.xml b/addons/sale/views/report_saleorder.xml index c6f237e3ac3..c23e680e664 100644 --- a/addons/sale/views/report_saleorder.xml +++ b/addons/sale/views/report_saleorder.xml @@ -1,131 +1,135 @@ + + diff --git a/addons/sale/wizard/sale_line_invoice.py b/addons/sale/wizard/sale_line_invoice.py index cd199760e9e..fa0b46daa7f 100644 --- a/addons/sale/wizard/sale_line_invoice.py +++ b/addons/sale/wizard/sale_line_invoice.py @@ -101,7 +101,6 @@ class sale_order_line_make_invoice(osv.osv_memory): break if flag: workflow.trg_validate(uid, 'sale.order', order.id, 'manual_invoice', cr) - sales_order_obj.write(cr, uid, [order.id], {'state': 'progress'}) if not invoices: raise osv.except_osv(_('Warning!'), _('Invoice cannot be created for this Sales Order Line due to one of the following reasons:\n1.The state of this sales order line is either "draft" or "cancel"!\n2.The Sales Order Line is Invoiced!')) diff --git a/addons/sale/wizard/sale_make_invoice.py b/addons/sale/wizard/sale_make_invoice.py index 3712feda20b..170259824f7 100644 --- a/addons/sale/wizard/sale_make_invoice.py +++ b/addons/sale/wizard/sale_make_invoice.py @@ -55,11 +55,12 @@ class sale_make_invoice(osv.osv_memory): raise osv.except_osv(_('Warning!'), _("You shouldn't manually invoice the following sale order %s") % (sale_order.name)) order_obj.action_invoice_create(cr, uid, context.get(('active_ids'), []), data['grouped'], date_invoice=data['invoice_date']) - - for o in order_obj.browse(cr, uid, context.get(('active_ids'), []), context=context): + orders = order_obj.browse(cr, uid, context.get(('active_ids'), []), context=context) + for o in orders: for i in o.invoice_ids: newinv.append(i.id) - + # Dummy call to workflow, will not create another invoice but bind the new invoice to the subflow + order_obj.signal_manual_invoice(cr, uid, [o.id for o in orders if o.order_policy == 'manual']) result = mod_obj.get_object_reference(cr, uid, 'account', 'action_invoice_tree1') id = result and result[1] or False result = act_obj.read(cr, uid, [id], context=context)[0] diff --git a/addons/sale_analytic_plans/i18n/ar.po b/addons/sale_analytic_plans/i18n/ar.po index 6d6f00746cd..29b7ccda799 100644 --- a/addons/sale_analytic_plans/i18n/ar.po +++ b/addons/sale_analytic_plans/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/bg.po b/addons/sale_analytic_plans/i18n/bg.po index 637c1af7311..82c1415a84c 100644 --- a/addons/sale_analytic_plans/i18n/bg.po +++ b/addons/sale_analytic_plans/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/bs.po b/addons/sale_analytic_plans/i18n/bs.po index be947537db3..4207e9dad69 100644 --- a/addons/sale_analytic_plans/i18n/bs.po +++ b/addons/sale_analytic_plans/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ca.po b/addons/sale_analytic_plans/i18n/ca.po index 84de55371a4..4771fe96041 100644 --- a/addons/sale_analytic_plans/i18n/ca.po +++ b/addons/sale_analytic_plans/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/cs.po b/addons/sale_analytic_plans/i18n/cs.po index 47d4a0b9c6e..01894da9737 100644 --- a/addons/sale_analytic_plans/i18n/cs.po +++ b/addons/sale_analytic_plans/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/da.po b/addons/sale_analytic_plans/i18n/da.po index c26e3601d53..ab2fe87cf64 100644 --- a/addons/sale_analytic_plans/i18n/da.po +++ b/addons/sale_analytic_plans/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/de.po b/addons/sale_analytic_plans/i18n/de.po index 52bde988acd..4b689a91821 100644 --- a/addons/sale_analytic_plans/i18n/de.po +++ b/addons/sale_analytic_plans/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/el.po b/addons/sale_analytic_plans/i18n/el.po index 55b1e5c1c4a..1363a4b9d47 100644 --- a/addons/sale_analytic_plans/i18n/el.po +++ b/addons/sale_analytic_plans/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/sale_analytic_plans/i18n/en_GB.po b/addons/sale_analytic_plans/i18n/en_GB.po index 5a98bf3eb73..167b0744d33 100644 --- a/addons/sale_analytic_plans/i18n/en_GB.po +++ b/addons/sale_analytic_plans/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es.po b/addons/sale_analytic_plans/i18n/es.po index e63a328e022..3bcf4e19cee 100644 --- a/addons/sale_analytic_plans/i18n/es.po +++ b/addons/sale_analytic_plans/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es_AR.po b/addons/sale_analytic_plans/i18n/es_AR.po index b072d452201..95160a0dec7 100644 --- a/addons/sale_analytic_plans/i18n/es_AR.po +++ b/addons/sale_analytic_plans/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es_CL.po b/addons/sale_analytic_plans/i18n/es_CL.po index b310cc1ac24..1c232e1d1b4 100644 --- a/addons/sale_analytic_plans/i18n/es_CL.po +++ b/addons/sale_analytic_plans/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es_CO.po b/addons/sale_analytic_plans/i18n/es_CO.po index b26b5c692db..26dd7889eba 100644 --- a/addons/sale_analytic_plans/i18n/es_CO.po +++ b/addons/sale_analytic_plans/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es_CR.po b/addons/sale_analytic_plans/i18n/es_CR.po index 76a7ef166ff..a0fd3d57a9e 100644 --- a/addons/sale_analytic_plans/i18n/es_CR.po +++ b/addons/sale_analytic_plans/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/et.po b/addons/sale_analytic_plans/i18n/et.po index daad1fa5579..a4cef7561e3 100644 --- a/addons/sale_analytic_plans/i18n/et.po +++ b/addons/sale_analytic_plans/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/fi.po b/addons/sale_analytic_plans/i18n/fi.po index d5a834e0e89..a31a4c40d05 100644 --- a/addons/sale_analytic_plans/i18n/fi.po +++ b/addons/sale_analytic_plans/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/fr.po b/addons/sale_analytic_plans/i18n/fr.po index 66e7f50a73a..6ec99623dbb 100644 --- a/addons/sale_analytic_plans/i18n/fr.po +++ b/addons/sale_analytic_plans/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/gl.po b/addons/sale_analytic_plans/i18n/gl.po index 313b6d70f23..3f507b42ebb 100644 --- a/addons/sale_analytic_plans/i18n/gl.po +++ b/addons/sale_analytic_plans/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/hr.po b/addons/sale_analytic_plans/i18n/hr.po index b5602d2384c..738604e7547 100644 --- a/addons/sale_analytic_plans/i18n/hr.po +++ b/addons/sale_analytic_plans/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: hr\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/hu.po b/addons/sale_analytic_plans/i18n/hu.po index 6fcc3ab0223..b54e37bb26e 100644 --- a/addons/sale_analytic_plans/i18n/hu.po +++ b/addons/sale_analytic_plans/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/id.po b/addons/sale_analytic_plans/i18n/id.po index 735f44dca42..27fdf5d363a 100644 --- a/addons/sale_analytic_plans/i18n/id.po +++ b/addons/sale_analytic_plans/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/it.po b/addons/sale_analytic_plans/i18n/it.po index 9f0907d3cf0..2d47fe9e54f 100644 --- a/addons/sale_analytic_plans/i18n/it.po +++ b/addons/sale_analytic_plans/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ja.po b/addons/sale_analytic_plans/i18n/ja.po index a0b420cc567..b079f1e63fe 100644 --- a/addons/sale_analytic_plans/i18n/ja.po +++ b/addons/sale_analytic_plans/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ko.po b/addons/sale_analytic_plans/i18n/ko.po index 5a10ec98a3d..5d5cefead85 100644 --- a/addons/sale_analytic_plans/i18n/ko.po +++ b/addons/sale_analytic_plans/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/lt.po b/addons/sale_analytic_plans/i18n/lt.po index e580e6948fd..eb5613c1102 100644 --- a/addons/sale_analytic_plans/i18n/lt.po +++ b/addons/sale_analytic_plans/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/mk.po b/addons/sale_analytic_plans/i18n/mk.po index 4d3c23c0444..8373a1293ce 100644 --- a/addons/sale_analytic_plans/i18n/mk.po +++ b/addons/sale_analytic_plans/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/mn.po b/addons/sale_analytic_plans/i18n/mn.po index 5ea8957a924..e9764631c7b 100644 --- a/addons/sale_analytic_plans/i18n/mn.po +++ b/addons/sale_analytic_plans/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/nb.po b/addons/sale_analytic_plans/i18n/nb.po index b24fa9499c4..ea391e14c48 100644 --- a/addons/sale_analytic_plans/i18n/nb.po +++ b/addons/sale_analytic_plans/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/nl.po b/addons/sale_analytic_plans/i18n/nl.po index 8c382dfe8f5..2391e5ce665 100644 --- a/addons/sale_analytic_plans/i18n/nl.po +++ b/addons/sale_analytic_plans/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/nl_BE.po b/addons/sale_analytic_plans/i18n/nl_BE.po index 793fff16e7b..444d05a8c38 100644 --- a/addons/sale_analytic_plans/i18n/nl_BE.po +++ b/addons/sale_analytic_plans/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/oc.po b/addons/sale_analytic_plans/i18n/oc.po index db251cca0c7..daeca208b15 100644 --- a/addons/sale_analytic_plans/i18n/oc.po +++ b/addons/sale_analytic_plans/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/pl.po b/addons/sale_analytic_plans/i18n/pl.po index 1d21aab6cbe..7451b378b57 100644 --- a/addons/sale_analytic_plans/i18n/pl.po +++ b/addons/sale_analytic_plans/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/pt.po b/addons/sale_analytic_plans/i18n/pt.po index 6f2bf5c2ea9..19a2065c39c 100644 --- a/addons/sale_analytic_plans/i18n/pt.po +++ b/addons/sale_analytic_plans/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/pt_BR.po b/addons/sale_analytic_plans/i18n/pt_BR.po index 6433bf571a5..4bbf6c08b8e 100644 --- a/addons/sale_analytic_plans/i18n/pt_BR.po +++ b/addons/sale_analytic_plans/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ro.po b/addons/sale_analytic_plans/i18n/ro.po index 7ebeb2ec170..b0a70f898e3 100644 --- a/addons/sale_analytic_plans/i18n/ro.po +++ b/addons/sale_analytic_plans/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ru.po b/addons/sale_analytic_plans/i18n/ru.po index c934c064a03..c5556cde464 100644 --- a/addons/sale_analytic_plans/i18n/ru.po +++ b/addons/sale_analytic_plans/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sk.po b/addons/sale_analytic_plans/i18n/sk.po index 4d6bbce20a2..09b2decd2de 100644 --- a/addons/sale_analytic_plans/i18n/sk.po +++ b/addons/sale_analytic_plans/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sl.po b/addons/sale_analytic_plans/i18n/sl.po index 57fb8d8ecb9..187c3fae775 100644 --- a/addons/sale_analytic_plans/i18n/sl.po +++ b/addons/sale_analytic_plans/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sq.po b/addons/sale_analytic_plans/i18n/sq.po index 82d66cf67f1..de8e22bf57e 100644 --- a/addons/sale_analytic_plans/i18n/sq.po +++ b/addons/sale_analytic_plans/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sr.po b/addons/sale_analytic_plans/i18n/sr.po index 2c8a35b4e6a..5a1bf9d5c42 100644 --- a/addons/sale_analytic_plans/i18n/sr.po +++ b/addons/sale_analytic_plans/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sr@latin.po b/addons/sale_analytic_plans/i18n/sr@latin.po index 4501be5045d..a652c296242 100644 --- a/addons/sale_analytic_plans/i18n/sr@latin.po +++ b/addons/sale_analytic_plans/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sv.po b/addons/sale_analytic_plans/i18n/sv.po index 328561051ff..0b143a59cde 100644 --- a/addons/sale_analytic_plans/i18n/sv.po +++ b/addons/sale_analytic_plans/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/tlh.po b/addons/sale_analytic_plans/i18n/tlh.po index 33d24205477..b3e4bdba360 100644 --- a/addons/sale_analytic_plans/i18n/tlh.po +++ b/addons/sale_analytic_plans/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/tr.po b/addons/sale_analytic_plans/i18n/tr.po index 617081a2aac..060f2e11601 100644 --- a/addons/sale_analytic_plans/i18n/tr.po +++ b/addons/sale_analytic_plans/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/uk.po b/addons/sale_analytic_plans/i18n/uk.po index c02f1d8578d..8923161096a 100644 --- a/addons/sale_analytic_plans/i18n/uk.po +++ b/addons/sale_analytic_plans/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/vi.po b/addons/sale_analytic_plans/i18n/vi.po index abccfe7728d..6bdc8a9cfcb 100644 --- a/addons/sale_analytic_plans/i18n/vi.po +++ b/addons/sale_analytic_plans/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/zh_CN.po b/addons/sale_analytic_plans/i18n/zh_CN.po index 551452bd91a..239cff07904 100644 --- a/addons/sale_analytic_plans/i18n/zh_CN.po +++ b/addons/sale_analytic_plans/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/zh_TW.po b/addons/sale_analytic_plans/i18n/zh_TW.po index 15c49a5a9ea..75185b90752 100644 --- a/addons/sale_analytic_plans/i18n/zh_TW.po +++ b/addons/sale_analytic_plans/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:57+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_crm/i18n/ar.po b/addons/sale_crm/i18n/ar.po index e46db84f657..7efb0cafbe8 100644 --- a/addons/sale_crm/i18n/ar.po +++ b/addons/sale_crm/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/bg.po b/addons/sale_crm/i18n/bg.po index 3190a3044c2..570d048a5d8 100644 --- a/addons/sale_crm/i18n/bg.po +++ b/addons/sale_crm/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/bs.po b/addons/sale_crm/i18n/bs.po index 0d923d83ddb..33fee4566f3 100644 --- a/addons/sale_crm/i18n/bs.po +++ b/addons/sale_crm/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/ca.po b/addons/sale_crm/i18n/ca.po index b14bfb34fba..a8580121c2b 100644 --- a/addons/sale_crm/i18n/ca.po +++ b/addons/sale_crm/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/cs.po b/addons/sale_crm/i18n/cs.po index 6ebe437fe54..1cc53ec0782 100644 --- a/addons/sale_crm/i18n/cs.po +++ b/addons/sale_crm/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Language: Czech\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/da.po b/addons/sale_crm/i18n/da.po index a2a74640bd1..01320a71ed7 100644 --- a/addons/sale_crm/i18n/da.po +++ b/addons/sale_crm/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/de.po b/addons/sale_crm/i18n/de.po index b6bf6916401..23fbd763da1 100644 --- a/addons/sale_crm/i18n/de.po +++ b/addons/sale_crm/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/el.po b/addons/sale_crm/i18n/el.po index e29139397b1..a32383c65b1 100644 --- a/addons/sale_crm/i18n/el.po +++ b/addons/sale_crm/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/sale_crm/i18n/es.po b/addons/sale_crm/i18n/es.po index a2f15eca3f6..641980f8837 100644 --- a/addons/sale_crm/i18n/es.po +++ b/addons/sale_crm/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/es_AR.po b/addons/sale_crm/i18n/es_AR.po index e441a680d37..74ee0e0a880 100644 --- a/addons/sale_crm/i18n/es_AR.po +++ b/addons/sale_crm/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/es_CL.po b/addons/sale_crm/i18n/es_CL.po index 67301ba4aea..873bcd336e6 100644 --- a/addons/sale_crm/i18n/es_CL.po +++ b/addons/sale_crm/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/es_CR.po b/addons/sale_crm/i18n/es_CR.po index d4bbc0381b5..e740e941ee7 100644 --- a/addons/sale_crm/i18n/es_CR.po +++ b/addons/sale_crm/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/et.po b/addons/sale_crm/i18n/et.po index 3dd1c79f01f..1d515ccdbab 100644 --- a/addons/sale_crm/i18n/et.po +++ b/addons/sale_crm/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/fi.po b/addons/sale_crm/i18n/fi.po index 7611a04ce23..0d9d40f4a07 100644 --- a/addons/sale_crm/i18n/fi.po +++ b/addons/sale_crm/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/fr.po b/addons/sale_crm/i18n/fr.po index 3f5a3c8b020..07b8b8e957b 100644 --- a/addons/sale_crm/i18n/fr.po +++ b/addons/sale_crm/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/gl.po b/addons/sale_crm/i18n/gl.po index c720d749d4a..e002976c766 100644 --- a/addons/sale_crm/i18n/gl.po +++ b/addons/sale_crm/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/he.po b/addons/sale_crm/i18n/he.po index 5463eaf756d..96c22db75d9 100644 --- a/addons/sale_crm/i18n/he.po +++ b/addons/sale_crm/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/hr.po b/addons/sale_crm/i18n/hr.po index 86a61c3ec8d..33c678ddc30 100644 --- a/addons/sale_crm/i18n/hr.po +++ b/addons/sale_crm/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: hr\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/hu.po b/addons/sale_crm/i18n/hu.po index a471b566d5f..45552fc0279 100644 --- a/addons/sale_crm/i18n/hu.po +++ b/addons/sale_crm/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/id.po b/addons/sale_crm/i18n/id.po index 1a0239f8201..735db5454fd 100644 --- a/addons/sale_crm/i18n/id.po +++ b/addons/sale_crm/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/it.po b/addons/sale_crm/i18n/it.po index d168bb23d78..41ec0bcbcf8 100644 --- a/addons/sale_crm/i18n/it.po +++ b/addons/sale_crm/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/ja.po b/addons/sale_crm/i18n/ja.po index b17b2d9b364..42de62a08ef 100644 --- a/addons/sale_crm/i18n/ja.po +++ b/addons/sale_crm/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/ko.po b/addons/sale_crm/i18n/ko.po index 26f86aafe09..608e7b4df74 100644 --- a/addons/sale_crm/i18n/ko.po +++ b/addons/sale_crm/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/lt.po b/addons/sale_crm/i18n/lt.po index 63b8e4ae126..62d746ee4c6 100644 --- a/addons/sale_crm/i18n/lt.po +++ b/addons/sale_crm/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/lv.po b/addons/sale_crm/i18n/lv.po index c2231da02b7..a04121e23e3 100644 --- a/addons/sale_crm/i18n/lv.po +++ b/addons/sale_crm/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/mk.po b/addons/sale_crm/i18n/mk.po index 3b817d0118b..e11f84b4af5 100644 --- a/addons/sale_crm/i18n/mk.po +++ b/addons/sale_crm/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/mn.po b/addons/sale_crm/i18n/mn.po index bf09eee0a75..db80ff3aec1 100644 --- a/addons/sale_crm/i18n/mn.po +++ b/addons/sale_crm/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/nb.po b/addons/sale_crm/i18n/nb.po index 080ea0889c0..e111eedbb74 100644 --- a/addons/sale_crm/i18n/nb.po +++ b/addons/sale_crm/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/nl.po b/addons/sale_crm/i18n/nl.po index dbea9ff03f2..015c67ff03f 100644 --- a/addons/sale_crm/i18n/nl.po +++ b/addons/sale_crm/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/nl_BE.po b/addons/sale_crm/i18n/nl_BE.po index 59e1328dc7a..818568e1de1 100644 --- a/addons/sale_crm/i18n/nl_BE.po +++ b/addons/sale_crm/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/pl.po b/addons/sale_crm/i18n/pl.po index e482d8be726..cec210ae47e 100644 --- a/addons/sale_crm/i18n/pl.po +++ b/addons/sale_crm/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/pt.po b/addons/sale_crm/i18n/pt.po index 8df34c180ce..b0c65732879 100644 --- a/addons/sale_crm/i18n/pt.po +++ b/addons/sale_crm/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/pt_BR.po b/addons/sale_crm/i18n/pt_BR.po index 4f9b07dfaa6..61c242b2cf8 100644 --- a/addons/sale_crm/i18n/pt_BR.po +++ b/addons/sale_crm/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/ro.po b/addons/sale_crm/i18n/ro.po index cd7c93d73c5..ef100fdb31b 100644 --- a/addons/sale_crm/i18n/ro.po +++ b/addons/sale_crm/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/ru.po b/addons/sale_crm/i18n/ru.po index 7268713d642..7dcff6983c6 100644 --- a/addons/sale_crm/i18n/ru.po +++ b/addons/sale_crm/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/sk.po b/addons/sale_crm/i18n/sk.po index e0ff5fd9c1b..dcd643db930 100644 --- a/addons/sale_crm/i18n/sk.po +++ b/addons/sale_crm/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/sl.po b/addons/sale_crm/i18n/sl.po index 0bd6cc94a74..6de473f7726 100644 --- a/addons/sale_crm/i18n/sl.po +++ b/addons/sale_crm/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/sq.po b/addons/sale_crm/i18n/sq.po index 77ce263a961..a9395000085 100644 --- a/addons/sale_crm/i18n/sq.po +++ b/addons/sale_crm/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/sv.po b/addons/sale_crm/i18n/sv.po index 1500c25c304..c16e3f56922 100644 --- a/addons/sale_crm/i18n/sv.po +++ b/addons/sale_crm/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/tlh.po b/addons/sale_crm/i18n/tlh.po index 835ec699609..e0cf7e71085 100644 --- a/addons/sale_crm/i18n/tlh.po +++ b/addons/sale_crm/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/tr.po b/addons/sale_crm/i18n/tr.po index f60c3049297..4d98e5bfa86 100644 --- a/addons/sale_crm/i18n/tr.po +++ b/addons/sale_crm/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/uk.po b/addons/sale_crm/i18n/uk.po index 550dfad8ab3..033aa4617d2 100644 --- a/addons/sale_crm/i18n/uk.po +++ b/addons/sale_crm/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/vi.po b/addons/sale_crm/i18n/vi.po index 9e8f8c39aef..7fa36e0b1df 100644 --- a/addons/sale_crm/i18n/vi.po +++ b/addons/sale_crm/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/zh_CN.po b/addons/sale_crm/i18n/zh_CN.po index bcad7e09869..b2d12d7c3d0 100644 --- a/addons/sale_crm/i18n/zh_CN.po +++ b/addons/sale_crm/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/zh_TW.po b/addons/sale_crm/i18n/zh_TW.po index c23b4adaf87..68c9f8ca66f 100644 --- a/addons/sale_crm/i18n/zh_TW.po +++ b/addons/sale_crm/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:43+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_journal/i18n/ar.po b/addons/sale_journal/i18n/ar.po index a4681ab9709..e6af385a7b2 100644 --- a/addons/sale_journal/i18n/ar.po +++ b/addons/sale_journal/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/bg.po b/addons/sale_journal/i18n/bg.po index 5efd662967c..d07e7a387ef 100644 --- a/addons/sale_journal/i18n/bg.po +++ b/addons/sale_journal/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/bs.po b/addons/sale_journal/i18n/bs.po index 2b7c6d48201..62ab566155d 100644 --- a/addons/sale_journal/i18n/bs.po +++ b/addons/sale_journal/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ca.po b/addons/sale_journal/i18n/ca.po index 22fae43b613..936beb6e5cf 100644 --- a/addons/sale_journal/i18n/ca.po +++ b/addons/sale_journal/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/cs.po b/addons/sale_journal/i18n/cs.po index 44351399084..4a7a4d24c69 100644 --- a/addons/sale_journal/i18n/cs.po +++ b/addons/sale_journal/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/da.po b/addons/sale_journal/i18n/da.po index 0351f417a9d..eded2097056 100644 --- a/addons/sale_journal/i18n/da.po +++ b/addons/sale_journal/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/de.po b/addons/sale_journal/i18n/de.po index f55ecc75e7f..e7814c00693 100644 --- a/addons/sale_journal/i18n/de.po +++ b/addons/sale_journal/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/el.po b/addons/sale_journal/i18n/el.po index f53f642023e..f92d9641912 100644 --- a/addons/sale_journal/i18n/el.po +++ b/addons/sale_journal/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es.po b/addons/sale_journal/i18n/es.po index 62870c50d00..a7c61b7095d 100644 --- a/addons/sale_journal/i18n/es.po +++ b/addons/sale_journal/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es_AR.po b/addons/sale_journal/i18n/es_AR.po index cec2ee6c732..72909ece539 100644 --- a/addons/sale_journal/i18n/es_AR.po +++ b/addons/sale_journal/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es_CL.po b/addons/sale_journal/i18n/es_CL.po index b0a4d3a1e05..4dd872b817f 100644 --- a/addons/sale_journal/i18n/es_CL.po +++ b/addons/sale_journal/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es_CR.po b/addons/sale_journal/i18n/es_CR.po index 385313019e1..079d1567ab1 100644 --- a/addons/sale_journal/i18n/es_CR.po +++ b/addons/sale_journal/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/es_PE.po b/addons/sale_journal/i18n/es_PE.po index eb7beb1c809..7d7d0dd706a 100644 --- a/addons/sale_journal/i18n/es_PE.po +++ b/addons/sale_journal/i18n/es_PE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/et.po b/addons/sale_journal/i18n/et.po index 64456b70308..725399002fc 100644 --- a/addons/sale_journal/i18n/et.po +++ b/addons/sale_journal/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/fi.po b/addons/sale_journal/i18n/fi.po index 1469bf53a5a..00161f6acb7 100644 --- a/addons/sale_journal/i18n/fi.po +++ b/addons/sale_journal/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/fr.po b/addons/sale_journal/i18n/fr.po index 837679e73fa..897b198bd9c 100644 --- a/addons/sale_journal/i18n/fr.po +++ b/addons/sale_journal/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/gl.po b/addons/sale_journal/i18n/gl.po index 413b23fd9c3..27208e0ab2b 100644 --- a/addons/sale_journal/i18n/gl.po +++ b/addons/sale_journal/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/hr.po b/addons/sale_journal/i18n/hr.po index bdf0ec9e461..28dafcd8597 100644 --- a/addons/sale_journal/i18n/hr.po +++ b/addons/sale_journal/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: hr\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/hu.po b/addons/sale_journal/i18n/hu.po index dc8062284a7..0d591525acf 100644 --- a/addons/sale_journal/i18n/hu.po +++ b/addons/sale_journal/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/id.po b/addons/sale_journal/i18n/id.po index 053a89efa4e..75bf9bde2ef 100644 --- a/addons/sale_journal/i18n/id.po +++ b/addons/sale_journal/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/it.po b/addons/sale_journal/i18n/it.po index e289ea26765..d5e99c32196 100644 --- a/addons/sale_journal/i18n/it.po +++ b/addons/sale_journal/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ja.po b/addons/sale_journal/i18n/ja.po index 19b7bb841ff..227b022fb61 100644 --- a/addons/sale_journal/i18n/ja.po +++ b/addons/sale_journal/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ko.po b/addons/sale_journal/i18n/ko.po index 8aa93e14998..d7de46b6069 100644 --- a/addons/sale_journal/i18n/ko.po +++ b/addons/sale_journal/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/lt.po b/addons/sale_journal/i18n/lt.po index 46a2de4332a..9003e73aeba 100644 --- a/addons/sale_journal/i18n/lt.po +++ b/addons/sale_journal/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/lv.po b/addons/sale_journal/i18n/lv.po index 82831c605bb..48e161f6a68 100644 --- a/addons/sale_journal/i18n/lv.po +++ b/addons/sale_journal/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/mk.po b/addons/sale_journal/i18n/mk.po index 42231379891..bbb22506097 100644 --- a/addons/sale_journal/i18n/mk.po +++ b/addons/sale_journal/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/mn.po b/addons/sale_journal/i18n/mn.po index dd85272863f..0bffc113954 100644 --- a/addons/sale_journal/i18n/mn.po +++ b/addons/sale_journal/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/nb.po b/addons/sale_journal/i18n/nb.po index e9a97db0dae..09fa8e96b61 100644 --- a/addons/sale_journal/i18n/nb.po +++ b/addons/sale_journal/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/nl.po b/addons/sale_journal/i18n/nl.po index 4d883edce8d..282ecc44c18 100644 --- a/addons/sale_journal/i18n/nl.po +++ b/addons/sale_journal/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/nl_BE.po b/addons/sale_journal/i18n/nl_BE.po index 4512c1312f2..3aeb69b40e7 100644 --- a/addons/sale_journal/i18n/nl_BE.po +++ b/addons/sale_journal/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/pl.po b/addons/sale_journal/i18n/pl.po index 2af147218c9..935922c9bcd 100644 --- a/addons/sale_journal/i18n/pl.po +++ b/addons/sale_journal/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/pt.po b/addons/sale_journal/i18n/pt.po index 6a83b93536d..531b7f2abda 100644 --- a/addons/sale_journal/i18n/pt.po +++ b/addons/sale_journal/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/pt_BR.po b/addons/sale_journal/i18n/pt_BR.po index b88637c549c..fe2bf2ad412 100644 --- a/addons/sale_journal/i18n/pt_BR.po +++ b/addons/sale_journal/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ro.po b/addons/sale_journal/i18n/ro.po index 81f476e3ea8..384ef13acf0 100644 --- a/addons/sale_journal/i18n/ro.po +++ b/addons/sale_journal/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ru.po b/addons/sale_journal/i18n/ru.po index 52c4fa9a864..317c4e70a9d 100644 --- a/addons/sale_journal/i18n/ru.po +++ b/addons/sale_journal/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sk.po b/addons/sale_journal/i18n/sk.po index 3721ef5f6d8..c8561830de6 100644 --- a/addons/sale_journal/i18n/sk.po +++ b/addons/sale_journal/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sl.po b/addons/sale_journal/i18n/sl.po index f8d37ff9a4e..d0dff3517d5 100644 --- a/addons/sale_journal/i18n/sl.po +++ b/addons/sale_journal/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sq.po b/addons/sale_journal/i18n/sq.po index e6f71770f1e..6aa451ab289 100644 --- a/addons/sale_journal/i18n/sq.po +++ b/addons/sale_journal/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:46+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sv.po b/addons/sale_journal/i18n/sv.po index f57b71071d8..aaadda653d6 100644 --- a/addons/sale_journal/i18n/sv.po +++ b/addons/sale_journal/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/tlh.po b/addons/sale_journal/i18n/tlh.po index a0887654e63..4e91553eaac 100644 --- a/addons/sale_journal/i18n/tlh.po +++ b/addons/sale_journal/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/tr.po b/addons/sale_journal/i18n/tr.po index a6899604414..1f8abcf3ef2 100644 --- a/addons/sale_journal/i18n/tr.po +++ b/addons/sale_journal/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/uk.po b/addons/sale_journal/i18n/uk.po index 0920f4bb9e1..ef70ae8f43f 100644 --- a/addons/sale_journal/i18n/uk.po +++ b/addons/sale_journal/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/vi.po b/addons/sale_journal/i18n/vi.po index 216c1ac8714..001df2974b7 100644 --- a/addons/sale_journal/i18n/vi.po +++ b/addons/sale_journal/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/zh_CN.po b/addons/sale_journal/i18n/zh_CN.po index 9ef260910d0..651c598c19f 100644 --- a/addons/sale_journal/i18n/zh_CN.po +++ b/addons/sale_journal/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/zh_TW.po b/addons/sale_journal/i18n/zh_TW.po index 169727dd200..01cd4ca3c19 100644 --- a/addons/sale_journal/i18n/zh_TW.po +++ b/addons/sale_journal/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:47+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_layout/__init__.py b/addons/sale_layout/__init__.py new file mode 100644 index 00000000000..bff786c0885 --- /dev/null +++ b/addons/sale_layout/__init__.py @@ -0,0 +1 @@ +import models diff --git a/addons/sale_layout/__openerp__.py b/addons/sale_layout/__openerp__.py new file mode 100644 index 00000000000..b8fcefc6adc --- /dev/null +++ b/addons/sale_layout/__openerp__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2014-Today OpenERP SA (). +# +# 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': 'Sale Layout', + 'version': '1.0', + 'sequence': 14, + 'summary': 'Sale Layout, page-break, subtotals, separators, report', + 'description': """ +Manage your sales reports +========================= +With this module you can personnalize the sale order and invoice report with +separators, page-breaks or subtotals. + """, + 'author': 'OpenERP SA', + 'website': 'http://www.openerp.com', + 'depends': ['sale', 'report'], + 'category': 'Sale', + 'data': ['views/sale_layout_category_view.xml', + 'views/report_invoice_layouted.xml', + 'views/report_quotation_layouted.xml', + 'views/sale_layout_template.xml', + 'security/ir.model.access.csv'], + 'demo': ['data/sale_layout_category_data.xml'], + 'installable': True, +} diff --git a/addons/sale_layout/data/sale_layout_category_data.xml b/addons/sale_layout/data/sale_layout_category_data.xml new file mode 100644 index 00000000000..858654e427f --- /dev/null +++ b/addons/sale_layout/data/sale_layout_category_data.xml @@ -0,0 +1,20 @@ + + + + + Services + + + + 1 + + + + Material + + + + 10 + + + diff --git a/addons/sale_layout/models/__init__.py b/addons/sale_layout/models/__init__.py new file mode 100644 index 00000000000..9e9b002e402 --- /dev/null +++ b/addons/sale_layout/models/__init__.py @@ -0,0 +1 @@ +import sale_layout diff --git a/addons/sale_layout/models/sale_layout.py b/addons/sale_layout/models/sale_layout.py new file mode 100644 index 00000000000..ac9d4241607 --- /dev/null +++ b/addons/sale_layout/models/sale_layout.py @@ -0,0 +1,146 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2014-Today OpenERP SA (). +# +# 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 . +# +############################################################################## + +from openerp.osv import osv, fields +from itertools import groupby + + +def grouplines(self, ordered_lines, sortkey): + """Return lines from a specified invoice or sale order grouped by category""" + grouped_lines = [] + for key, valuesiter in groupby(ordered_lines, sortkey): + group = {} + group['category'] = key + group['lines'] = list(v for v in valuesiter) + + if 'subtotal' in key and key.subtotal is True: + group['subtotal'] = sum(line.price_subtotal for line in group['lines']) + grouped_lines.append(group) + + return grouped_lines + + +class SaleLayoutCategory(osv.Model): + _name = 'sale_layout.category' + _order = 'sequence' + _columns = { + 'name': fields.char('Name', required=True), + 'sequence': fields.integer('Sequence', required=True), + 'subtotal': fields.boolean('Add subtotal'), + 'separator': fields.boolean('Add separator'), + 'pagebreak': fields.boolean('Add pagebreak') + } + + _defaults = { + 'subtotal': True, + 'separator': True, + 'pagebreak': False, + 'sequence': 10 + } + + # We want to forbid edit of a category if it is already linked to a report. + def _check(self, cr, uid, ids): + for cat in self.browse(cr, uid, ids): + invoice_obj = self.pool.get('account.invoice.line') + sale_obj = self.pool.get('sale.order.line') + ids = invoice_obj.search(cr, uid, [('sale_layout_cat_id', '=', cat.id)]) + ids += sale_obj.search(cr, uid, [('sale_layout_cat_id', '=', cat.id)]) + + if len(ids) > 0: + return False + + return True + + _constraints = [( + _check, + 'This category could not be modified nor deleted because it is still used in an invoice or' + ' a sale report.', ['name'] + )] + + +class AccountInvoice(osv.Model): + _inherit = 'account.invoice' + + def sale_layout_lines(self, cr, uid, ids, invoice_id=None, context=None): + """ + Returns invoice lines from a specified invoice ordered by + sale_layout_category sequence. Used in sale_layout module. + + :Parameters: + -'invoice_id' (int): specify the concerned invoice. + """ + ordered_lines = self.browse(cr, uid, invoice_id, context=context).invoice_line + # We chose to group first by category model and, if not present, by invoice name + sortkey = lambda x: x.sale_layout_cat_id if x.sale_layout_cat_id else '' + + return grouplines(self, ordered_lines, sortkey) + + +class AccountInvoiceLine(osv.Model): + _inherit = 'account.invoice.line' + _columns = { + 'sale_layout_cat_id': fields.many2one('sale_layout.category', + 'Layout Category'), + 'categ_sequence': fields.related('sale_layout_cat_id', + 'sequence', type='integer', + string='Layout Sequence', store=True) + # Store is intentionally set in order to keep the "historic" order. + } + _order = 'invoice_id, categ_sequence, sequence, id' + + +class SaleOrder(osv.Model): + _inherit = 'sale.order' + + def sale_layout_lines(self, cr, uid, ids, order_id=None, context=None): + """ + Returns order lines from a specified sale ordered by + sale_layout_category sequence. Used in sale_layout module. + + :Parameters: + -'order_id' (int): specify the concerned sale order. + """ + ordered_lines = self.browse(cr, uid, order_id, context=context).order_line + sortkey = lambda x: x.sale_layout_cat_id if x.sale_layout_cat_id else '' + + return grouplines(self, ordered_lines, sortkey) + + +class SaleOrderLine(osv.Model): + _inherit = 'sale.order.line' + _columns = { + 'sale_layout_cat_id': fields.many2one('sale_layout.category', + 'Layout Category'), + 'categ_sequence': fields.related('sale_layout_cat_id', + 'sequence', type='integer', + string='Layout Sequence', store=True) + # Store is intentionally set in order to keep the "historic" order. + } + _order = 'order_id, categ_sequence, sequence, id' + + def _prepare_order_line_invoice_line(self, cr, uid, line, account_id=False, context=None): + """Save the layout when converting to an invoice line.""" + invoice_vals = super(SaleOrderLine, self)._prepare_order_line_invoice_line(cr, uid, line, account_id=account_id, context=context) + if line.sale_layout_cat_id: + invoice_vals['sale_layout_cat_id'] = line.sale_layout_cat_id.id + if line.categ_sequence: + invoice_vals['categ_sequence'] = line.categ_sequence + return invoice_vals diff --git a/addons/sale_layout/security/ir.model.access.csv b/addons/sale_layout/security/ir.model.access.csv new file mode 100644 index 00000000000..119fce977d1 --- /dev/null +++ b/addons/sale_layout/security/ir.model.access.csv @@ -0,0 +1,5 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +report_layout_category_1,report_layout_category_1,model_sale_layout_category,base.group_sale_manager,1,1,1,1 +report_layout_category_2,report_layout_category_2,model_sale_layout_category,account.group_account_manager,1,1,1,1 +report_layout_category_3,report_layout_category_3,model_sale_layout_category,base.group_sale_salesman,1,1,1,O +report_layout_category_4,report_layout_category_4,model_sale_layout_category,base.group_sale_salesman_all_leads,1,1,1,0 diff --git a/addons/sale_layout/views/report_invoice_layouted.xml b/addons/sale_layout/views/report_invoice_layouted.xml new file mode 100644 index 00000000000..4c0b1929484 --- /dev/null +++ b/addons/sale_layout/views/report_invoice_layouted.xml @@ -0,0 +1,65 @@ + + + + + + diff --git a/addons/sale_layout/views/report_quotation_layouted.xml b/addons/sale_layout/views/report_quotation_layouted.xml new file mode 100644 index 00000000000..02f56786392 --- /dev/null +++ b/addons/sale_layout/views/report_quotation_layouted.xml @@ -0,0 +1,70 @@ + + + + + + diff --git a/addons/sale_layout/views/sale_layout_category_view.xml b/addons/sale_layout/views/sale_layout_category_view.xml new file mode 100644 index 00000000000..08f892c127e --- /dev/null +++ b/addons/sale_layout/views/sale_layout_category_view.xml @@ -0,0 +1,120 @@ + + + + + + sale.order.form.inherit_1 + sale.order + + + + + + + + + + + + sale.order.line.form.inherit_2 + sale.order + + + + + + + + + + + + + account.invoice.form.inherit_1 + account.invoice + + + + + + + + + + + + account.invoice.line.form.inherit_2 + account.invoice.line + + + + + + + + + + + + + report.configuration.form.view + sale_layout.category + + + + + + + + + + + + + + + report.configuration.form.view + sale_layout.category + + + + + + + + + + + + + report.configuration.search.view + sale_layout.category + + + + + + + + + + + + + + Report Configuration + sale_layout.category + form + tree,form + + + + + diff --git a/addons/sale_layout/views/sale_layout_template.xml b/addons/sale_layout/views/sale_layout_template.xml new file mode 100644 index 00000000000..73406fc9fd6 --- /dev/null +++ b/addons/sale_layout/views/sale_layout_template.xml @@ -0,0 +1,43 @@ + + + + + + + + + + diff --git a/addons/sale_margin/i18n/ar.po b/addons/sale_margin/i18n/ar.po index 9adb1e7caeb..d245605bdf8 100644 --- a/addons/sale_margin/i18n/ar.po +++ b/addons/sale_margin/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/bg.po b/addons/sale_margin/i18n/bg.po index a3d558c6157..9841a9458d1 100644 --- a/addons/sale_margin/i18n/bg.po +++ b/addons/sale_margin/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/bs.po b/addons/sale_margin/i18n/bs.po index 9cee08f1412..25db2d9a16f 100644 --- a/addons/sale_margin/i18n/bs.po +++ b/addons/sale_margin/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ca.po b/addons/sale_margin/i18n/ca.po index bb867f6f227..686b5fd9095 100644 --- a/addons/sale_margin/i18n/ca.po +++ b/addons/sale_margin/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/cs.po b/addons/sale_margin/i18n/cs.po index 945d2e3e7d9..8b2ee1cc332 100644 --- a/addons/sale_margin/i18n/cs.po +++ b/addons/sale_margin/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/da.po b/addons/sale_margin/i18n/da.po index 3ccffb55d4c..a7fb63bc84a 100644 --- a/addons/sale_margin/i18n/da.po +++ b/addons/sale_margin/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/de.po b/addons/sale_margin/i18n/de.po index 32004bbd94f..f9866a2a165 100644 --- a/addons/sale_margin/i18n/de.po +++ b/addons/sale_margin/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/el.po b/addons/sale_margin/i18n/el.po index c7516783142..8ad80d1679d 100644 --- a/addons/sale_margin/i18n/el.po +++ b/addons/sale_margin/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/es.po b/addons/sale_margin/i18n/es.po index d89ffba1da6..5ffb610fde9 100644 --- a/addons/sale_margin/i18n/es.po +++ b/addons/sale_margin/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/es_CL.po b/addons/sale_margin/i18n/es_CL.po index a7248547c33..af738436ad9 100644 --- a/addons/sale_margin/i18n/es_CL.po +++ b/addons/sale_margin/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/es_CR.po b/addons/sale_margin/i18n/es_CR.po index 7d8d5ae8cae..ecd90b48b5f 100644 --- a/addons/sale_margin/i18n/es_CR.po +++ b/addons/sale_margin/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/et.po b/addons/sale_margin/i18n/et.po index 0b214a4b8b1..1d01fe4fdf9 100644 --- a/addons/sale_margin/i18n/et.po +++ b/addons/sale_margin/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/fi.po b/addons/sale_margin/i18n/fi.po index 83d8ad0c647..4311f52f10a 100644 --- a/addons/sale_margin/i18n/fi.po +++ b/addons/sale_margin/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/fr.po b/addons/sale_margin/i18n/fr.po index 0905a9bea18..7d8bfa3c7af 100644 --- a/addons/sale_margin/i18n/fr.po +++ b/addons/sale_margin/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/hr.po b/addons/sale_margin/i18n/hr.po index 4d424b71701..45e624cda1d 100644 --- a/addons/sale_margin/i18n/hr.po +++ b/addons/sale_margin/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/hu.po b/addons/sale_margin/i18n/hu.po index 454c99787d8..8e0a70a3c45 100644 --- a/addons/sale_margin/i18n/hu.po +++ b/addons/sale_margin/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/it.po b/addons/sale_margin/i18n/it.po index 2a9b07c44d8..31630491a32 100644 --- a/addons/sale_margin/i18n/it.po +++ b/addons/sale_margin/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ja.po b/addons/sale_margin/i18n/ja.po index 2abbe402cb2..9123c321ff4 100644 --- a/addons/sale_margin/i18n/ja.po +++ b/addons/sale_margin/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/mk.po b/addons/sale_margin/i18n/mk.po index 82fa0ff2fa3..c54572e7251 100644 --- a/addons/sale_margin/i18n/mk.po +++ b/addons/sale_margin/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/mn.po b/addons/sale_margin/i18n/mn.po index 4cdc202cb78..f91d6caa65b 100644 --- a/addons/sale_margin/i18n/mn.po +++ b/addons/sale_margin/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/nb.po b/addons/sale_margin/i18n/nb.po index 90f3e4f90ae..badfa9576eb 100644 --- a/addons/sale_margin/i18n/nb.po +++ b/addons/sale_margin/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/nl.po b/addons/sale_margin/i18n/nl.po index 1d3f6557e9e..246a2495970 100644 --- a/addons/sale_margin/i18n/nl.po +++ b/addons/sale_margin/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/pl.po b/addons/sale_margin/i18n/pl.po index 31602e4c600..787db05cf37 100644 --- a/addons/sale_margin/i18n/pl.po +++ b/addons/sale_margin/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/pt.po b/addons/sale_margin/i18n/pt.po index 2c151775853..5350724d06d 100644 --- a/addons/sale_margin/i18n/pt.po +++ b/addons/sale_margin/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/pt_BR.po b/addons/sale_margin/i18n/pt_BR.po index a9b3a55fac1..cfb6c3a939a 100644 --- a/addons/sale_margin/i18n/pt_BR.po +++ b/addons/sale_margin/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ro.po b/addons/sale_margin/i18n/ro.po index 22ddae6ccc1..ea6edf76c4f 100644 --- a/addons/sale_margin/i18n/ro.po +++ b/addons/sale_margin/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ru.po b/addons/sale_margin/i18n/ru.po index e9711673846..daad429ade7 100644 --- a/addons/sale_margin/i18n/ru.po +++ b/addons/sale_margin/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/sk.po b/addons/sale_margin/i18n/sk.po index 154ca9b7fe7..6ee7d9e966d 100644 --- a/addons/sale_margin/i18n/sk.po +++ b/addons/sale_margin/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/sl.po b/addons/sale_margin/i18n/sl.po index 36c33f91fbd..f556671d1a5 100644 --- a/addons/sale_margin/i18n/sl.po +++ b/addons/sale_margin/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/sv.po b/addons/sale_margin/i18n/sv.po index 81185f49271..4bb823e1151 100644 --- a/addons/sale_margin/i18n/sv.po +++ b/addons/sale_margin/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/tr.po b/addons/sale_margin/i18n/tr.po index 40b40685496..98540ae7d41 100644 --- a/addons/sale_margin/i18n/tr.po +++ b/addons/sale_margin/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/zh_CN.po b/addons/sale_margin/i18n/zh_CN.po index f6ad9f733ff..5dadbbce2bd 100644 --- a/addons/sale_margin/i18n/zh_CN.po +++ b/addons/sale_margin/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/zh_TW.po b/addons/sale_margin/i18n/zh_TW.po index c29d91b2e8d..9c3c1e50bbe 100644 --- a/addons/sale_margin/i18n/zh_TW.po +++ b/addons/sale_margin/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:32+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:13+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_mrp/i18n/ar.po b/addons/sale_mrp/i18n/ar.po index af78f4043d1..e1967a5f014 100644 --- a/addons/sale_mrp/i18n/ar.po +++ b/addons/sale_mrp/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/bg.po b/addons/sale_mrp/i18n/bg.po index 35d99233560..39fe2091f01 100644 --- a/addons/sale_mrp/i18n/bg.po +++ b/addons/sale_mrp/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/bs.po b/addons/sale_mrp/i18n/bs.po index 40ddfcbb72c..30b2bf1050d 100644 --- a/addons/sale_mrp/i18n/bs.po +++ b/addons/sale_mrp/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ca.po b/addons/sale_mrp/i18n/ca.po index 7ea0f9b147b..cfa4b198bb5 100644 --- a/addons/sale_mrp/i18n/ca.po +++ b/addons/sale_mrp/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/cs.po b/addons/sale_mrp/i18n/cs.po index 95d87b0a6d1..22c74e2edd8 100644 --- a/addons/sale_mrp/i18n/cs.po +++ b/addons/sale_mrp/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/da.po b/addons/sale_mrp/i18n/da.po index eb9a6f78a22..99e111b2b52 100644 --- a/addons/sale_mrp/i18n/da.po +++ b/addons/sale_mrp/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/de.po b/addons/sale_mrp/i18n/de.po index 8c4f7e518a2..a4b3720da24 100644 --- a/addons/sale_mrp/i18n/de.po +++ b/addons/sale_mrp/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/es.po b/addons/sale_mrp/i18n/es.po index 270d5f92dcc..f4965525eb2 100644 --- a/addons/sale_mrp/i18n/es.po +++ b/addons/sale_mrp/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/es_CL.po b/addons/sale_mrp/i18n/es_CL.po index 2731be0148a..528c12c6ab8 100644 --- a/addons/sale_mrp/i18n/es_CL.po +++ b/addons/sale_mrp/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/es_CR.po b/addons/sale_mrp/i18n/es_CR.po index c49915ff354..4b39bcaea36 100644 --- a/addons/sale_mrp/i18n/es_CR.po +++ b/addons/sale_mrp/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/et.po b/addons/sale_mrp/i18n/et.po index d1cbbffbb8a..e16d31c5551 100644 --- a/addons/sale_mrp/i18n/et.po +++ b/addons/sale_mrp/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/fi.po b/addons/sale_mrp/i18n/fi.po index 811da062068..e4f1ae435f9 100644 --- a/addons/sale_mrp/i18n/fi.po +++ b/addons/sale_mrp/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/fr.po b/addons/sale_mrp/i18n/fr.po index 7ebaf6722cc..0a50466f089 100644 --- a/addons/sale_mrp/i18n/fr.po +++ b/addons/sale_mrp/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/gl.po b/addons/sale_mrp/i18n/gl.po index a1eef36e47c..0aa034d6960 100644 --- a/addons/sale_mrp/i18n/gl.po +++ b/addons/sale_mrp/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/hr.po b/addons/sale_mrp/i18n/hr.po index 7924829f576..f90eb0dace9 100644 --- a/addons/sale_mrp/i18n/hr.po +++ b/addons/sale_mrp/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/hu.po b/addons/sale_mrp/i18n/hu.po index 4f6db681fe3..95eedb7de87 100644 --- a/addons/sale_mrp/i18n/hu.po +++ b/addons/sale_mrp/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/it.po b/addons/sale_mrp/i18n/it.po index edb8dfae190..b1c194af072 100644 --- a/addons/sale_mrp/i18n/it.po +++ b/addons/sale_mrp/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ja.po b/addons/sale_mrp/i18n/ja.po index 2c3e22b80b9..ab35e21ffc1 100644 --- a/addons/sale_mrp/i18n/ja.po +++ b/addons/sale_mrp/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/lt.po b/addons/sale_mrp/i18n/lt.po index bbc6c3afe46..8e4e45d681c 100644 --- a/addons/sale_mrp/i18n/lt.po +++ b/addons/sale_mrp/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/mk.po b/addons/sale_mrp/i18n/mk.po index aa93e22f9f9..36d1e04d1a9 100644 --- a/addons/sale_mrp/i18n/mk.po +++ b/addons/sale_mrp/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/mn.po b/addons/sale_mrp/i18n/mn.po index 559a17356ed..3f9b5175d1a 100644 --- a/addons/sale_mrp/i18n/mn.po +++ b/addons/sale_mrp/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/nb.po b/addons/sale_mrp/i18n/nb.po index cf7c5d27541..d4c9c1dc7b9 100644 --- a/addons/sale_mrp/i18n/nb.po +++ b/addons/sale_mrp/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/nl.po b/addons/sale_mrp/i18n/nl.po index 0e365f8ce37..b343293ae03 100644 --- a/addons/sale_mrp/i18n/nl.po +++ b/addons/sale_mrp/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/nl_BE.po b/addons/sale_mrp/i18n/nl_BE.po index 10352e58e9a..ee6a3940854 100644 --- a/addons/sale_mrp/i18n/nl_BE.po +++ b/addons/sale_mrp/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/pl.po b/addons/sale_mrp/i18n/pl.po index cf18dbeacc8..1e901047276 100644 --- a/addons/sale_mrp/i18n/pl.po +++ b/addons/sale_mrp/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/pt.po b/addons/sale_mrp/i18n/pt.po index 888daf97277..d684ea98dff 100644 --- a/addons/sale_mrp/i18n/pt.po +++ b/addons/sale_mrp/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/pt_BR.po b/addons/sale_mrp/i18n/pt_BR.po index c75a448953d..c94b03577fe 100644 --- a/addons/sale_mrp/i18n/pt_BR.po +++ b/addons/sale_mrp/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ro.po b/addons/sale_mrp/i18n/ro.po index 3ada92c9849..3bceda84fb7 100644 --- a/addons/sale_mrp/i18n/ro.po +++ b/addons/sale_mrp/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ru.po b/addons/sale_mrp/i18n/ru.po index 00f8e86450c..63e1fda1c6e 100644 --- a/addons/sale_mrp/i18n/ru.po +++ b/addons/sale_mrp/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/sl.po b/addons/sale_mrp/i18n/sl.po index 402cf0f4195..fd65ed062d9 100644 --- a/addons/sale_mrp/i18n/sl.po +++ b/addons/sale_mrp/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/sr@latin.po b/addons/sale_mrp/i18n/sr@latin.po index 732f5daf33e..bffdc7e7a34 100644 --- a/addons/sale_mrp/i18n/sr@latin.po +++ b/addons/sale_mrp/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/sv.po b/addons/sale_mrp/i18n/sv.po index dd73bf6985a..7ef0682dd45 100644 --- a/addons/sale_mrp/i18n/sv.po +++ b/addons/sale_mrp/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/th.po b/addons/sale_mrp/i18n/th.po index c73e08f9b25..423f5d711a4 100644 --- a/addons/sale_mrp/i18n/th.po +++ b/addons/sale_mrp/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/tr.po b/addons/sale_mrp/i18n/tr.po index 5b75080eebe..6708669663a 100644 --- a/addons/sale_mrp/i18n/tr.po +++ b/addons/sale_mrp/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/zh_CN.po b/addons/sale_mrp/i18n/zh_CN.po index e325e0db482..bab4fb78b37 100644 --- a/addons/sale_mrp/i18n/zh_CN.po +++ b/addons/sale_mrp/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/zh_TW.po b/addons/sale_mrp/i18n/zh_TW.po index 49335604caf..0f292f693f2 100644 --- a/addons/sale_mrp/i18n/zh_TW.po +++ b/addons/sale_mrp/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_order_dates/__openerp__.py b/addons/sale_order_dates/__openerp__.py index 3fa9fba0ecf..1f4eb399dd8 100644 --- a/addons/sale_order_dates/__openerp__.py +++ b/addons/sale_order_dates/__openerp__.py @@ -22,7 +22,7 @@ { 'name': 'Dates on Sales Order', - 'version': '1.0', + 'version': '1.1', 'category': 'Sales Management', 'description': """ Add additional date information to the sales order. @@ -30,7 +30,7 @@ Add additional date information to the sales order. You can add the following additional dates to a sales order: ------------------------------------------------------------ - * Requested Date + * Requested Date (will be used as the expected date on pickings) * Commitment Date * Effective Date """, @@ -40,7 +40,7 @@ You can add the following additional dates to a sales order: 'depends': ['sale_stock'], 'data': ['sale_order_dates_view.xml'], 'demo': [], - 'test': [], + 'test': ['test/requested_date.yml'], 'installable': True, 'auto_install': False, } diff --git a/addons/sale_order_dates/i18n/ar.po b/addons/sale_order_dates/i18n/ar.po index 69c205c02e5..5205fd706bf 100644 --- a/addons/sale_order_dates/i18n/ar.po +++ b/addons/sale_order_dates/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/bg.po b/addons/sale_order_dates/i18n/bg.po index e14273dc97e..b20b9893eee 100644 --- a/addons/sale_order_dates/i18n/bg.po +++ b/addons/sale_order_dates/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/bs.po b/addons/sale_order_dates/i18n/bs.po index 11f21947f33..bca0b52ebab 100644 --- a/addons/sale_order_dates/i18n/bs.po +++ b/addons/sale_order_dates/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ca.po b/addons/sale_order_dates/i18n/ca.po index f927c0067c4..ba491013eda 100644 --- a/addons/sale_order_dates/i18n/ca.po +++ b/addons/sale_order_dates/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/cs.po b/addons/sale_order_dates/i18n/cs.po index d15563d009f..defe76b0506 100644 --- a/addons/sale_order_dates/i18n/cs.po +++ b/addons/sale_order_dates/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/da.po b/addons/sale_order_dates/i18n/da.po index b02e93d2160..1e50be62556 100644 --- a/addons/sale_order_dates/i18n/da.po +++ b/addons/sale_order_dates/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/de.po b/addons/sale_order_dates/i18n/de.po index fc3b43844ba..39440dceb07 100644 --- a/addons/sale_order_dates/i18n/de.po +++ b/addons/sale_order_dates/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/el.po b/addons/sale_order_dates/i18n/el.po index 8b3b5401a83..e1b3d2e16a7 100644 --- a/addons/sale_order_dates/i18n/el.po +++ b/addons/sale_order_dates/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/es.po b/addons/sale_order_dates/i18n/es.po index d592165165c..908a9f257f5 100644 --- a/addons/sale_order_dates/i18n/es.po +++ b/addons/sale_order_dates/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/es_CL.po b/addons/sale_order_dates/i18n/es_CL.po index 0d43faa70f8..e8b4a7227da 100644 --- a/addons/sale_order_dates/i18n/es_CL.po +++ b/addons/sale_order_dates/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/es_CR.po b/addons/sale_order_dates/i18n/es_CR.po index 4f828a0d1f4..38b02d700f3 100644 --- a/addons/sale_order_dates/i18n/es_CR.po +++ b/addons/sale_order_dates/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/es_PE.po b/addons/sale_order_dates/i18n/es_PE.po index 59263e7cacc..578438d265d 100644 --- a/addons/sale_order_dates/i18n/es_PE.po +++ b/addons/sale_order_dates/i18n/es_PE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/fi.po b/addons/sale_order_dates/i18n/fi.po index 823dc4e472c..50c640cffea 100644 --- a/addons/sale_order_dates/i18n/fi.po +++ b/addons/sale_order_dates/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/fr.po b/addons/sale_order_dates/i18n/fr.po index 231d81484d2..8dc1506314b 100644 --- a/addons/sale_order_dates/i18n/fr.po +++ b/addons/sale_order_dates/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/gl.po b/addons/sale_order_dates/i18n/gl.po index 22125ccc1bc..ab04ba98a8b 100644 --- a/addons/sale_order_dates/i18n/gl.po +++ b/addons/sale_order_dates/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/hr.po b/addons/sale_order_dates/i18n/hr.po index 1a97e928917..0ccc0416444 100644 --- a/addons/sale_order_dates/i18n/hr.po +++ b/addons/sale_order_dates/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/hu.po b/addons/sale_order_dates/i18n/hu.po index ab7edb7b93d..d02a81b50d0 100644 --- a/addons/sale_order_dates/i18n/hu.po +++ b/addons/sale_order_dates/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/id.po b/addons/sale_order_dates/i18n/id.po index a8e4dfe4e89..8509a52e372 100644 --- a/addons/sale_order_dates/i18n/id.po +++ b/addons/sale_order_dates/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/it.po b/addons/sale_order_dates/i18n/it.po index d6bbc357227..a679a074a96 100644 --- a/addons/sale_order_dates/i18n/it.po +++ b/addons/sale_order_dates/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ja.po b/addons/sale_order_dates/i18n/ja.po index 48652af3ad3..a69dcffa14d 100644 --- a/addons/sale_order_dates/i18n/ja.po +++ b/addons/sale_order_dates/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/mk.po b/addons/sale_order_dates/i18n/mk.po index 32e6dc05a2f..f9fb37337a9 100644 --- a/addons/sale_order_dates/i18n/mk.po +++ b/addons/sale_order_dates/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/mn.po b/addons/sale_order_dates/i18n/mn.po index 58920ff8058..edb8d4b9731 100644 --- a/addons/sale_order_dates/i18n/mn.po +++ b/addons/sale_order_dates/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/nb.po b/addons/sale_order_dates/i18n/nb.po index 749c3e8b858..7a4413eea3d 100644 --- a/addons/sale_order_dates/i18n/nb.po +++ b/addons/sale_order_dates/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/nl.po b/addons/sale_order_dates/i18n/nl.po index fb25e2cb59c..6e31b0610d4 100644 --- a/addons/sale_order_dates/i18n/nl.po +++ b/addons/sale_order_dates/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/pl.po b/addons/sale_order_dates/i18n/pl.po index d573fd6eb9c..39215480dc9 100644 --- a/addons/sale_order_dates/i18n/pl.po +++ b/addons/sale_order_dates/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/pt.po b/addons/sale_order_dates/i18n/pt.po index 206453475b3..cbc2caf3e80 100644 --- a/addons/sale_order_dates/i18n/pt.po +++ b/addons/sale_order_dates/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/pt_BR.po b/addons/sale_order_dates/i18n/pt_BR.po index ce793f1c275..ddeea273766 100644 --- a/addons/sale_order_dates/i18n/pt_BR.po +++ b/addons/sale_order_dates/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ro.po b/addons/sale_order_dates/i18n/ro.po index 6a6e5eff021..7da5d00d690 100644 --- a/addons/sale_order_dates/i18n/ro.po +++ b/addons/sale_order_dates/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ru.po b/addons/sale_order_dates/i18n/ru.po index 9f88303a643..a0999ae97c5 100644 --- a/addons/sale_order_dates/i18n/ru.po +++ b/addons/sale_order_dates/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/sale_order_dates.pot b/addons/sale_order_dates/i18n/sale_order_dates.pot index 8a45a8a46af..b34c1143ec0 100644 --- a/addons/sale_order_dates/i18n/sale_order_dates.pot +++ b/addons/sale_order_dates/i18n/sale_order_dates.pot @@ -32,12 +32,14 @@ msgstr "" #. module: sale_order_dates #: help:sale.order,effective_date:0 -msgid "Date on which picking is created." +msgid "Date on which the first Delivery Order was created." msgstr "" #. module: sale_order_dates #: help:sale.order,requested_date:0 -msgid "Date requested by the customer for the sale." +msgid "Date by which the customer has requested the items to be delivered.\n" +"When this Order gets confirmed, the Delivery Order's expected date will be computed based on this date and the Company's Security Delay.\n" +"Leave this field empty if you want the Delivery Order to be processed as soon as possible. In that case the expected date will be computed using the default method: based on the Product Lead Times and the Company's Security Delay." msgstr "" #. module: sale_order_dates @@ -52,6 +54,18 @@ msgstr "" #. module: sale_order_dates #: help:sale.order,commitment_date:0 -msgid "Committed date for delivery." +msgid "Date by which the products are sure to be delivered. This is a date that you can promise to the customer, based on the Product Lead Times." +msgstr "" + +#. module: sale_order_dates +#: code:addons/sale_order_dates/sale_order_dates.py:90 +#, python-format +msgid "Requested date is too soon!" +msgstr "" + +#. module: sale_order_dates +#: code:addons/sale_order_dates/sale_order_dates.py:91 +#, python-format +msgid "The date requested by the customer is sooner than the commitment date. You may be unable to honor the customer's request." msgstr "" diff --git a/addons/sale_order_dates/i18n/sk.po b/addons/sale_order_dates/i18n/sk.po index d6a285c43c8..127a248c6f1 100644 --- a/addons/sale_order_dates/i18n/sk.po +++ b/addons/sale_order_dates/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/sl.po b/addons/sale_order_dates/i18n/sl.po index c73ca89bc2b..67570e513c7 100644 --- a/addons/sale_order_dates/i18n/sl.po +++ b/addons/sale_order_dates/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/sr@latin.po b/addons/sale_order_dates/i18n/sr@latin.po index 0fc047ec12d..dec0c425cc3 100644 --- a/addons/sale_order_dates/i18n/sr@latin.po +++ b/addons/sale_order_dates/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/sv.po b/addons/sale_order_dates/i18n/sv.po index 17d1581dfd4..00dac69d466 100644 --- a/addons/sale_order_dates/i18n/sv.po +++ b/addons/sale_order_dates/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/tr.po b/addons/sale_order_dates/i18n/tr.po index 570cb32aa0f..16d69afc16f 100644 --- a/addons/sale_order_dates/i18n/tr.po +++ b/addons/sale_order_dates/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/zh_CN.po b/addons/sale_order_dates/i18n/zh_CN.po index d7b0ea3be84..4601a6c45ea 100644 --- a/addons/sale_order_dates/i18n/zh_CN.po +++ b/addons/sale_order_dates/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/zh_TW.po b/addons/sale_order_dates/i18n/zh_TW.po index 7be54449904..890543e93e0 100644 --- a/addons/sale_order_dates/i18n/zh_TW.po +++ b/addons/sale_order_dates/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:42+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:23+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/sale_order_dates.py b/addons/sale_order_dates/sale_order_dates.py index 64b939de088..f3ff971be9f 100644 --- a/addons/sale_order_dates/sale_order_dates.py +++ b/addons/sale_order_dates/sale_order_dates.py @@ -19,15 +19,37 @@ # ############################################################################## -from datetime import datetime -from dateutil.relativedelta import relativedelta +from datetime import datetime, timedelta from openerp.osv import fields, osv +from openerp.tools.translate import _ +from openerp.tools import DEFAULT_SERVER_DATE_FORMAT, DEFAULT_SERVER_DATETIME_FORMAT class sale_order_dates(osv.osv): + """Add several date fields to Sale Orders, computed or user-entered""" _inherit = 'sale.order' + def copy(self, cr, uid, id, default=None, context=None): + """Don't copy the requested date along with the Sales Order""" + default = dict(default or {}, requested_date=False) + return super(sale_order_dates, self).copy(cr, uid, id, default=default, + context=context) + + def _get_date_planned(self, cr, uid, order, line, start_date, context=None): + """Compute the expected date from the requested date, not the order date""" + if order and order.requested_date: + planned_str = self.date_to_datetime(cr, uid, + order.requested_date, context) + date_planned = datetime.strptime(planned_str, + DEFAULT_SERVER_DATETIME_FORMAT) + date_planned -= timedelta(days=order.company_id.security_lead) + return date_planned.strftime(DEFAULT_SERVER_DATETIME_FORMAT) + return super(sale_order_dates, self)._get_date_planned( + cr, uid, order, line, start_date, context=context) + def _get_effective_date(self, cr, uid, ids, name, arg, context=None): + """Read the shipping date from the related packings""" + # TODO: would be better if it returned the date the picking was processed? res = {} dates_list = [] for order in self.browse(cr, uid, ids, context=context): @@ -41,22 +63,57 @@ class sale_order_dates(osv.osv): return res def _get_commitment_date(self, cr, uid, ids, name, arg, context=None): + """Compute the commitment date""" res = {} dates_list = [] for order in self.browse(cr, uid, ids, context=context): + order_datetime_str = self.date_to_datetime(cr, uid, order.date_order, + context) + order_datetime = datetime.strptime(order_datetime_str, + DEFAULT_SERVER_DATETIME_FORMAT) dates_list = [] for line in order.order_line: - dt = datetime.strptime(order.date_order, '%Y-%m-%d') + relativedelta(days=line.delay or 0.0) - dt_s = dt.strftime('%Y-%m-%d') + dt = order_datetime + timedelta(days=line.delay or 0.0) + dt_s = dt.strftime(DEFAULT_SERVER_DATE_FORMAT) dates_list.append(dt_s) if dates_list: res[order.id] = min(dates_list) return res + def onchange_requested_date(self, cr, uid, ids, requested_date, + commitment_date, context=None): + """Warn if the requested dates is sooner than the commitment date""" + if (requested_date and commitment_date + and requested_date < commitment_date): + return {'warning': { + 'title': _('Requested date is too soon!'), + 'message': _("The date requested by the customer is " + "sooner than the commitment date. You may be " + "unable to honor the customer's request.") + } + } + return {} + _columns = { - 'commitment_date': fields.function(_get_commitment_date, store=True, type='date', string='Commitment Date', help="Committed date for delivery."), - 'requested_date': fields.date('Requested Date', help="Date requested by the customer for the sale."), - 'effective_date': fields.function(_get_effective_date, type='date', store=True, string='Effective Date',help="Date on which picking is created."), + 'commitment_date': fields.function(_get_commitment_date, store=True, + type='date', string='Commitment Date', + help="Date by which the products are sure to be delivered. This is " + "a date that you can promise to the customer, based on the " + "Product Lead Times."), + 'requested_date': fields.date('Requested Date', + readonly=True, states={'draft': [('readonly', False)]}, + help="Date by which the customer has requested the items to be " + "delivered.\n" + "When this Order gets confirmed, the Delivery Order's " + "expected date will be computed based on this date and the " + "Company's Security Delay.\n" + "Leave this field empty if you want the Delivery Order to be " + "processed as soon as possible. In that case the expected " + "date will be computed using the default method: based on " + "the Product Lead Times and the Company's Security Delay."), + 'effective_date': fields.function(_get_effective_date, type='date', + store=True, string='Effective Date', + help="Date on which the first Delivery Order was created."), } diff --git a/addons/sale_order_dates/sale_order_dates_view.xml b/addons/sale_order_dates/sale_order_dates_view.xml index 68419cd29bb..cc216ddd9b9 100644 --- a/addons/sale_order_dates/sale_order_dates_view.xml +++ b/addons/sale_order_dates/sale_order_dates_view.xml @@ -10,13 +10,23 @@ - + + + sale.order + + + + + + + + diff --git a/addons/sale_order_dates/test/requested_date.yml b/addons/sale_order_dates/test/requested_date.yml new file mode 100644 index 00000000000..d05191a4d99 --- /dev/null +++ b/addons/sale_order_dates/test/requested_date.yml @@ -0,0 +1,32 @@ +- + In order to test the Requested Date feature in Sale Orders in OpenERP, + I update a demo Sale Order with Requested Date on 2010-12-17 +- + !python {model: sale.order}: | + self.write(cr, uid, ref("sale.sale_order_6"), {'requested_date': '2010-07-12'}) +- + I confirm the Sale Order. +- + !workflow { + model: sale.order, action: order_confirm, + ref: sale.sale_order_6 + } +- + I verify that the Procurements and Stock Moves have been generated with the + correct date +- + !python {model: sale.order}: | + from datetime import datetime, timedelta + from openerp.tools import DEFAULT_SERVER_DATE_FORMAT, DEFAULT_SERVER_DATETIME_FORMAT + + so = self.browse(cr, uid, ref("sale.sale_order_6")) + security_delay = timedelta(days=so.company_id.security_lead) + requested_date = datetime.strptime( + self.date_to_datetime(cr, uid, so.requested_date), + DEFAULT_SERVER_DATETIME_FORMAT) + right_date = (requested_date - security_delay).strftime( + DEFAULT_SERVER_DATETIME_FORMAT) + for line in so.order_line: + assert line.procurement_id, "No Procurement was created" + assert line.procurement_id.date_planned == right_date, "The planned date for the Procurement Order is wrong" + assert line.procurement_id.move_id.date_expected == right_date, "The expected date for the Stock Move is wrong" diff --git a/addons/sale_stock/i18n/ar.po b/addons/sale_stock/i18n/ar.po index 781b147f451..46c6055ac57 100644 --- a/addons/sale_stock/i18n/ar.po +++ b/addons/sale_stock/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/bg.po b/addons/sale_stock/i18n/bg.po index 785bc0d83e0..7a9aee7dd4d 100644 --- a/addons/sale_stock/i18n/bg.po +++ b/addons/sale_stock/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/bs.po b/addons/sale_stock/i18n/bs.po index 1049ddd2e62..a9971ae40cc 100644 --- a/addons/sale_stock/i18n/bs.po +++ b/addons/sale_stock/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ca.po b/addons/sale_stock/i18n/ca.po index 3310c916a6f..e39ed815f3f 100644 --- a/addons/sale_stock/i18n/ca.po +++ b/addons/sale_stock/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/cs.po b/addons/sale_stock/i18n/cs.po index 862b1698d5d..58454f868b1 100644 --- a/addons/sale_stock/i18n/cs.po +++ b/addons/sale_stock/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Language: Czech\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/da.po b/addons/sale_stock/i18n/da.po index 89bb6ad83bd..ba41d4aa206 100644 --- a/addons/sale_stock/i18n/da.po +++ b/addons/sale_stock/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/de.po b/addons/sale_stock/i18n/de.po index 891d7e65d2b..cdd39eb0204 100644 --- a/addons/sale_stock/i18n/de.po +++ b/addons/sale_stock/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/el.po b/addons/sale_stock/i18n/el.po index c732dd5c828..12b4efd41f0 100644 --- a/addons/sale_stock/i18n/el.po +++ b/addons/sale_stock/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/es.po b/addons/sale_stock/i18n/es.po index 255ff740983..e324b4c85cd 100644 --- a/addons/sale_stock/i18n/es.po +++ b/addons/sale_stock/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/es_PE.po b/addons/sale_stock/i18n/es_PE.po index a112680e05b..d0a78eba5d5 100644 --- a/addons/sale_stock/i18n/es_PE.po +++ b/addons/sale_stock/i18n/es_PE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/et.po b/addons/sale_stock/i18n/et.po index 6d463b5f0ce..9a7e505447d 100644 --- a/addons/sale_stock/i18n/et.po +++ b/addons/sale_stock/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/fi.po b/addons/sale_stock/i18n/fi.po index 0301d2bad61..7995a23c983 100644 --- a/addons/sale_stock/i18n/fi.po +++ b/addons/sale_stock/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/fr.po b/addons/sale_stock/i18n/fr.po index 025f19d046d..fe6b48683d3 100644 --- a/addons/sale_stock/i18n/fr.po +++ b/addons/sale_stock/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/gl.po b/addons/sale_stock/i18n/gl.po index 736987c6e50..e1ae251c53c 100644 --- a/addons/sale_stock/i18n/gl.po +++ b/addons/sale_stock/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/hr.po b/addons/sale_stock/i18n/hr.po index 9fb21c0ec3c..5bb5c3df69c 100644 --- a/addons/sale_stock/i18n/hr.po +++ b/addons/sale_stock/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: hr\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/hu.po b/addons/sale_stock/i18n/hu.po index 0b2d043ab3a..41b02bc6428 100644 --- a/addons/sale_stock/i18n/hu.po +++ b/addons/sale_stock/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/id.po b/addons/sale_stock/i18n/id.po index adb224723d7..b490d822860 100644 --- a/addons/sale_stock/i18n/id.po +++ b/addons/sale_stock/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/is.po b/addons/sale_stock/i18n/is.po index e9f46a2d774..10a34125f70 100644 --- a/addons/sale_stock/i18n/is.po +++ b/addons/sale_stock/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/it.po b/addons/sale_stock/i18n/it.po index 7297ac02dac..7ab37820928 100644 --- a/addons/sale_stock/i18n/it.po +++ b/addons/sale_stock/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ja.po b/addons/sale_stock/i18n/ja.po index 2b461e3d6d9..ef6a70f7cc4 100644 --- a/addons/sale_stock/i18n/ja.po +++ b/addons/sale_stock/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ko.po b/addons/sale_stock/i18n/ko.po index a3804a7a94d..706e33bdf1a 100644 --- a/addons/sale_stock/i18n/ko.po +++ b/addons/sale_stock/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/lo.po b/addons/sale_stock/i18n/lo.po index 7bb7460ae2f..7f92ffa6d45 100644 --- a/addons/sale_stock/i18n/lo.po +++ b/addons/sale_stock/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/lt.po b/addons/sale_stock/i18n/lt.po index 150c97574fe..214783be026 100644 --- a/addons/sale_stock/i18n/lt.po +++ b/addons/sale_stock/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/lv.po b/addons/sale_stock/i18n/lv.po index d2e7db212a2..296e56420d2 100644 --- a/addons/sale_stock/i18n/lv.po +++ b/addons/sale_stock/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/mk.po b/addons/sale_stock/i18n/mk.po index 9c8ac4768d4..7550e50e339 100644 --- a/addons/sale_stock/i18n/mk.po +++ b/addons/sale_stock/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/mn.po b/addons/sale_stock/i18n/mn.po index 87f7e189f7d..225ee386973 100644 --- a/addons/sale_stock/i18n/mn.po +++ b/addons/sale_stock/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/nb.po b/addons/sale_stock/i18n/nb.po index 5e9d17809af..70051d14ae7 100644 --- a/addons/sale_stock/i18n/nb.po +++ b/addons/sale_stock/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/nl.po b/addons/sale_stock/i18n/nl.po index 6bd7c7820fb..5caadefe543 100644 --- a/addons/sale_stock/i18n/nl.po +++ b/addons/sale_stock/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/oc.po b/addons/sale_stock/i18n/oc.po index 326bdce6fc9..dc5e1303213 100644 --- a/addons/sale_stock/i18n/oc.po +++ b/addons/sale_stock/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/pl.po b/addons/sale_stock/i18n/pl.po index ab198692208..5d0731873e8 100644 --- a/addons/sale_stock/i18n/pl.po +++ b/addons/sale_stock/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/pt.po b/addons/sale_stock/i18n/pt.po index 841e5d11a2a..a1ecffa281d 100644 --- a/addons/sale_stock/i18n/pt.po +++ b/addons/sale_stock/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/pt_BR.po b/addons/sale_stock/i18n/pt_BR.po index 5f909c134c0..ae7b443f64d 100644 --- a/addons/sale_stock/i18n/pt_BR.po +++ b/addons/sale_stock/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ro.po b/addons/sale_stock/i18n/ro.po index 58f335fb427..418ba0a8e3a 100644 --- a/addons/sale_stock/i18n/ro.po +++ b/addons/sale_stock/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ru.po b/addons/sale_stock/i18n/ru.po index 0d730458d52..a169a124339 100644 --- a/addons/sale_stock/i18n/ru.po +++ b/addons/sale_stock/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sk.po b/addons/sale_stock/i18n/sk.po index d40cd225504..ef09f3a93b3 100644 --- a/addons/sale_stock/i18n/sk.po +++ b/addons/sale_stock/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sl.po b/addons/sale_stock/i18n/sl.po index a10ffe65307..6a4ebf1e1dd 100644 --- a/addons/sale_stock/i18n/sl.po +++ b/addons/sale_stock/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sq.po b/addons/sale_stock/i18n/sq.po index bb60ac5009a..430bddce389 100644 --- a/addons/sale_stock/i18n/sq.po +++ b/addons/sale_stock/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:31+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sr.po b/addons/sale_stock/i18n/sr.po index aa265f1f30a..c1f90f640dc 100644 --- a/addons/sale_stock/i18n/sr.po +++ b/addons/sale_stock/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sr@latin.po b/addons/sale_stock/i18n/sr@latin.po index 5ca2994fdf1..08b1539c043 100644 --- a/addons/sale_stock/i18n/sr@latin.po +++ b/addons/sale_stock/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sv.po b/addons/sale_stock/i18n/sv.po index c5e532c008f..94587da6ee5 100644 --- a/addons/sale_stock/i18n/sv.po +++ b/addons/sale_stock/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/th.po b/addons/sale_stock/i18n/th.po index 4519eb4df28..58481c17cb5 100644 --- a/addons/sale_stock/i18n/th.po +++ b/addons/sale_stock/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/tlh.po b/addons/sale_stock/i18n/tlh.po index a4aa49ad654..8f829b12ed0 100644 --- a/addons/sale_stock/i18n/tlh.po +++ b/addons/sale_stock/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/tr.po b/addons/sale_stock/i18n/tr.po index 892e1501c2c..70366427efe 100644 --- a/addons/sale_stock/i18n/tr.po +++ b/addons/sale_stock/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/uk.po b/addons/sale_stock/i18n/uk.po index d83ec81ccca..39138ac6908 100644 --- a/addons/sale_stock/i18n/uk.po +++ b/addons/sale_stock/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/vi.po b/addons/sale_stock/i18n/vi.po index 02eb6a99273..21c3dc04b74 100644 --- a/addons/sale_stock/i18n/vi.po +++ b/addons/sale_stock/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:49+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/zh_CN.po b/addons/sale_stock/i18n/zh_CN.po index 25d13923fed..d8a605cd57b 100644 --- a/addons/sale_stock/i18n/zh_CN.po +++ b/addons/sale_stock/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/zh_TW.po b/addons/sale_stock/i18n/zh_TW.po index 6c9641397cc..6b14753e3fd 100644 --- a/addons/sale_stock/i18n/zh_TW.po +++ b/addons/sale_stock/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:50+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:32+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/sale_stock.py b/addons/sale_stock/sale_stock.py index 26d9d80f13e..f90aecac184 100644 --- a/addons/sale_stock/sale_stock.py +++ b/addons/sale_stock/sale_stock.py @@ -21,7 +21,6 @@ ############################################################################## from datetime import datetime, timedelta from openerp.tools import DEFAULT_SERVER_DATE_FORMAT, DEFAULT_SERVER_DATETIME_FORMAT, DATETIME_FORMATS_MAP, float_compare -from dateutil.relativedelta import relativedelta from openerp.osv import fields, osv from openerp.tools.translate import _ import pytz @@ -257,7 +256,7 @@ class sale_order(osv.osv): if tz_name: utc = pytz.timezone('UTC') context_tz = pytz.timezone(tz_name) - user_datetime = user_date + relativedelta(hours=12.0) + user_datetime = user_date + timedelta(hours=12.0) local_timestamp = context_tz.localize(user_datetime, is_dst=False) user_datetime = local_timestamp.astimezone(utc) return user_datetime.strftime(DEFAULT_SERVER_DATETIME_FORMAT) @@ -379,8 +378,9 @@ class sale_order(osv.osv): return True def _get_date_planned(self, cr, uid, order, line, start_date, context=None): + """Compute the Stock Move date for the Sale Order Line""" start_date = self.date_to_datetime(cr, uid, start_date, context) - date_planned = datetime.strptime(start_date, DEFAULT_SERVER_DATETIME_FORMAT) + relativedelta(days=line.delay or 0.0) + date_planned = datetime.strptime(start_date, DEFAULT_SERVER_DATETIME_FORMAT) + timedelta(days=line.delay or 0.0) date_planned = (date_planned - timedelta(days=order.company_id.security_lead)).strftime(DEFAULT_SERVER_DATETIME_FORMAT) return date_planned diff --git a/addons/share/i18n/ar.po b/addons/share/i18n/ar.po index 65391223108..90d7efe4365 100644 --- a/addons/share/i18n/ar.po +++ b/addons/share/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/bg.po b/addons/share/i18n/bg.po index 7e944c36a62..8e3f6285061 100644 --- a/addons/share/i18n/bg.po +++ b/addons/share/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/bs.po b/addons/share/i18n/bs.po index 8f6d89afafc..337cbd52afe 100644 --- a/addons/share/i18n/bs.po +++ b/addons/share/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/ca.po b/addons/share/i18n/ca.po index 64d7ece0523..6684da3c0f1 100644 --- a/addons/share/i18n/ca.po +++ b/addons/share/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/cs.po b/addons/share/i18n/cs.po index 2419c3d1842..882a6699e95 100644 --- a/addons/share/i18n/cs.po +++ b/addons/share/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Language: Czech\n" #. module: share diff --git a/addons/share/i18n/da.po b/addons/share/i18n/da.po index 25978250463..b3bb2469eda 100644 --- a/addons/share/i18n/da.po +++ b/addons/share/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/de.po b/addons/share/i18n/de.po index 97b52e5e78a..d01c73d8659 100644 --- a/addons/share/i18n/de.po +++ b/addons/share/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/es.po b/addons/share/i18n/es.po index 44383fb41ae..6039d474598 100644 --- a/addons/share/i18n/es.po +++ b/addons/share/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/es_CR.po b/addons/share/i18n/es_CR.po index 08aa113c472..c3721fb6050 100644 --- a/addons/share/i18n/es_CR.po +++ b/addons/share/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: share diff --git a/addons/share/i18n/et.po b/addons/share/i18n/et.po index 68a54d75f66..6c18748a587 100644 --- a/addons/share/i18n/et.po +++ b/addons/share/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/fi.po b/addons/share/i18n/fi.po index 43aec892500..b36d9a6dd83 100644 --- a/addons/share/i18n/fi.po +++ b/addons/share/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/fr.po b/addons/share/i18n/fr.po index a93ddfe76ac..fbfe560bed9 100644 --- a/addons/share/i18n/fr.po +++ b/addons/share/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/gl.po b/addons/share/i18n/gl.po index cce374ff6b9..e8f21035ebe 100644 --- a/addons/share/i18n/gl.po +++ b/addons/share/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/he.po b/addons/share/i18n/he.po index 71aed93ffe2..c204a2b3646 100644 --- a/addons/share/i18n/he.po +++ b/addons/share/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/hr.po b/addons/share/i18n/hr.po index e905b1e2f08..ddc6088b886 100644 --- a/addons/share/i18n/hr.po +++ b/addons/share/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/hu.po b/addons/share/i18n/hu.po index 26c21b0b76c..a3dd8728b99 100644 --- a/addons/share/i18n/hu.po +++ b/addons/share/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/it.po b/addons/share/i18n/it.po index 8695f74426f..031a76b3e4e 100644 --- a/addons/share/i18n/it.po +++ b/addons/share/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/ja.po b/addons/share/i18n/ja.po index 6acb6e7a747..41e4821c603 100644 --- a/addons/share/i18n/ja.po +++ b/addons/share/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/lt.po b/addons/share/i18n/lt.po index a2ba32fb40b..4c632c4c4e7 100644 --- a/addons/share/i18n/lt.po +++ b/addons/share/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/mk.po b/addons/share/i18n/mk.po index aed2da683f0..56c8d969912 100644 --- a/addons/share/i18n/mk.po +++ b/addons/share/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/mn.po b/addons/share/i18n/mn.po index 9cdf7b64ae0..c2aafa30cf2 100644 --- a/addons/share/i18n/mn.po +++ b/addons/share/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/nl.po b/addons/share/i18n/nl.po index fdeabcbc13b..818141421d5 100644 --- a/addons/share/i18n/nl.po +++ b/addons/share/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:33+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/pl.po b/addons/share/i18n/pl.po index ea06cd015e3..27f32378cde 100644 --- a/addons/share/i18n/pl.po +++ b/addons/share/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/pt.po b/addons/share/i18n/pt.po index bf6d0114c49..5074ab58751 100644 --- a/addons/share/i18n/pt.po +++ b/addons/share/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/pt_BR.po b/addons/share/i18n/pt_BR.po index f6b6bf72299..475c2c123b7 100644 --- a/addons/share/i18n/pt_BR.po +++ b/addons/share/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/ro.po b/addons/share/i18n/ro.po index e23c42cfd11..ade0e062aff 100644 --- a/addons/share/i18n/ro.po +++ b/addons/share/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/ru.po b/addons/share/i18n/ru.po index 7694c3546a9..2ca547e743a 100644 --- a/addons/share/i18n/ru.po +++ b/addons/share/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/sl.po b/addons/share/i18n/sl.po index 8faf3f72a4c..2d6713bfbda 100644 --- a/addons/share/i18n/sl.po +++ b/addons/share/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/sv.po b/addons/share/i18n/sv.po index c0b13d48e32..c57a64bc64e 100644 --- a/addons/share/i18n/sv.po +++ b/addons/share/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/th.po b/addons/share/i18n/th.po index d9ecba94b17..3e80545dc2b 100644 --- a/addons/share/i18n/th.po +++ b/addons/share/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/tr.po b/addons/share/i18n/tr.po index 0a906820ccc..56c5a152bec 100644 --- a/addons/share/i18n/tr.po +++ b/addons/share/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/zh_CN.po b/addons/share/i18n/zh_CN.po index e48a7466e8b..9c076bf4b0e 100644 --- a/addons/share/i18n/zh_CN.po +++ b/addons/share/i18n/zh_CN.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-09 05:00+0000\n" -"Last-Translator: sum1201 \n" +"PO-Revision-Date: 2014-03-16 16:41+0000\n" +"Last-Translator: Victor Yu \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 @@ -76,6 +76,8 @@ msgid "" " %s\n" "\n" msgstr "" +"附件没弄好,你可以在OpenERP服务器上查看: %s\n" +"\n" #. module: share #: model:ir.module.category,name:share.module_category_share @@ -147,7 +149,7 @@ msgstr "共享URL" #: code:addons/share/wizard/share_wizard.py:881 #, python-format msgid "These are your credentials to access this protected area:\n" -msgstr "" +msgstr "这是你访问这个保护区域的凭证:\n" #. module: share #: view:share.wizard:0 @@ -173,7 +175,7 @@ msgstr "" #, python-format msgid "" "Please indicate the emails of the persons to share with, one per line." -msgstr "" +msgstr "请标明分享的用户电子邮箱,每行一个。" #. module: share #: help:share.wizard,domain:0 @@ -189,7 +191,7 @@ msgstr "下一个" #: code:addons/share/wizard/share_wizard.py:662 #, python-format msgid "Action and Access Mode are required to create a shared access." -msgstr "" +msgstr "操作和访问模式都需要要创建一个共享入口。" #. module: share #: code:addons/share/wizard/share_wizard.py:850 @@ -256,7 +258,7 @@ msgstr "非共享组" msgid "" "An email notification with instructions has been sent to the following " "people:" -msgstr "" +msgstr "带有操作说明的邮件通知已经发送到以下人了:" #. module: share #: code:addons/share/wizard/share_wizard.py:77 @@ -273,6 +275,8 @@ msgid "" "Sales, HR, etc.)\n" "It is open source and can be found on http://www.openerp.com." msgstr "" +"OpenERP是强大的、用户友好的商业应用套装(CRM,销售、人事、等)\n" +"而且是开源的,可以在 http://www.openerp.com 找到并下载。" #. module: share #: field:share.wizard,action_id:0 @@ -282,7 +286,7 @@ msgstr "共享操作" #. module: share #: help:share.wizard,record_name:0 msgid "Name of the shared record, if sharing a precise record" -msgstr "" +msgstr "如果共享一个精确记录,记录下分享名" #. module: share #: field:res.users,share:0 @@ -337,7 +341,7 @@ msgstr "创建新的" #. module: share #: help:share.wizard,name:0 msgid "Title for the share (displayed to users as menu and shortcut name)" -msgstr "" +msgstr "共享标题(显示给用户的菜单和快捷方式的名称)" #. module: share #: code:addons/share/wizard/share_wizard.py:636 @@ -348,7 +352,7 @@ msgstr "创建用户 %s (%s )间接共享过滤器,在用户组 %s" #. module: share #: help:share.wizard,share_root_url:0 msgid "Main access page for users that are granted shared access" -msgstr "" +msgstr "用户主要访问的页面被授权共享访问" #. module: share #: code:addons/share/wizard/share_wizard.py:206 @@ -356,7 +360,7 @@ msgstr "" msgid "" "You must configure your email address in the user preferences before using " "the Share button." -msgstr "" +msgstr "在使用分享按钮前,你必须在用户首选项处配置你的电子邮件。" #. module: share #: model:res.groups,name:share.group_share_user @@ -387,7 +391,7 @@ msgstr "数据库" #. module: share #: view:share.wizard:0 msgid "Share with these People (one email per line)" -msgstr "" +msgstr "与这些人分享(每行一个电子邮件)" #. module: share #: field:share.wizard,domain:0 @@ -409,7 +413,7 @@ msgstr "简述" #: help:share.wizard,embed_code:0 msgid "" "Embed this code in your documents to provide a link to the shared document." -msgstr "" +msgstr "在你的文档中嵌入下列代码以提供到分享文档的连接。" #. module: share #: code:addons/share/wizard/share_wizard.py:513 @@ -431,7 +435,7 @@ msgstr "共享你的单据" #. module: share #: view:share.wizard:0 msgid "Or insert the following code where you want to embed your documents" -msgstr "" +msgstr "或者在你想要嵌入你的文档时,插入下列代码" #. module: share #: code:addons/share/wizard/share_wizard.py:886 @@ -439,7 +443,7 @@ msgstr "" msgid "" "The documents have been automatically added to your current OpenERP " "documents.\n" -msgstr "" +msgstr "一份文档已经被自动增加到你现在的OpenERP文档中了。\n" #. module: share #: model:ir.model,name:share.model_share_wizard_result_line diff --git a/addons/share/res_users.py b/addons/share/res_users.py index 30200133f8e..9c9ae0034e2 100644 --- a/addons/share/res_users.py +++ b/addons/share/res_users.py @@ -19,6 +19,32 @@ # ############################################################################## from openerp.osv import fields, osv +from openerp import SUPERUSER_ID + +class res_users(osv.osv): + _name = 'res.users' + _inherit = 'res.users' + + def _is_share(self, cr, uid, ids, name, args, context=None): + res = {} + for user in self.browse(cr, uid, ids, context=context): + res[user.id] = not self.has_group(cr, user.id, 'base.group_user') + return res + + def _get_users_from_group(self, cr, uid, ids, context=None): + result = set() + for group in self.pool['res.groups'].browse(cr, uid, ids, context=context): + result.update(user.id for user in group.users) + return list(result) + + _columns = { + 'share': fields.function(_is_share, string='Share User', type='boolean', + store={ + 'res.users': (lambda self, cr, uid, ids, c={}: ids, None, 50), + 'res.groups': (_get_users_from_group, None, 50), + }, help="External user with limited access, created only for the purpose of sharing data."), + } + class res_groups(osv.osv): _name = "res.groups" @@ -28,6 +54,13 @@ class res_groups(osv.osv): help="Group created to set access rights for sharing data with some users.") } + def init(self, cr): + # force re-generation of the user groups view without the shared groups + self.update_user_groups_view(cr, SUPERUSER_ID) + parent_class = super(res_groups, self) + if hasattr(parent_class, 'init'): + parent_class.init(cr) + def get_application_groups(self, cr, uid, domain=None, context=None): if domain is None: domain = [] @@ -35,12 +68,5 @@ class res_groups(osv.osv): return super(res_groups, self).get_application_groups(cr, uid, domain=domain, context=context) -class res_users(osv.osv): - _name = 'res.users' - _inherit = 'res.users' - _columns = { - 'share': fields.boolean('Share User', readonly=True, - help="External user with limited access, created only for the purpose of sharing data.") - } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/share/share_data.xml b/addons/share/share_data.xml index aba154a6403..c64a9099721 100644 --- a/addons/share/share_data.xml +++ b/addons/share/share_data.xml @@ -3,7 +3,6 @@ - diff --git a/addons/share/wizard/share_wizard.py b/addons/share/wizard/share_wizard.py index 22b880956cc..551b08d02cf 100644 --- a/addons/share/wizard/share_wizard.py +++ b/addons/share/wizard/share_wizard.py @@ -258,7 +258,6 @@ class share_wizard(osv.TransientModel): 'name': new_user, 'email': new_user, 'groups_id': [(6,0,[group_id])], - 'share': True, 'company_id': current_user.company_id.id, 'company_ids': [(6, 0, [current_user.company_id.id])], }, context) @@ -276,7 +275,6 @@ class share_wizard(osv.TransientModel): 'password': new_pass, 'name': new_login, 'groups_id': [(6,0,[group_id])], - 'share': True, 'company_id': current_user.company_id.id, 'company_ids': [(6, 0, [current_user.company_id.id])], }, context) @@ -906,7 +904,7 @@ class share_result_line(osv.osv_memory): 'login': fields.related('user_id', 'login', string='Login', type='char', size=64, required=True, readonly=True), 'password': fields.char('Password', size=64, readonly=True), 'share_url': fields.function(_share_url, string='Share URL', type='char', size=512), - 'share_wizard_id': fields.many2one('share.wizard', 'Share Wizard', required=True), + 'share_wizard_id': fields.many2one('share.wizard', 'Share Wizard', required=True, ondelete='cascade'), 'newly_created': fields.boolean('Newly created', readonly=True), } _defaults = { diff --git a/addons/stock/i18n/ar.po b/addons/stock/i18n/ar.po index e79e4ecfafa..ffbf689331e 100644 --- a/addons/stock/i18n/ar.po +++ b/addons/stock/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/bg.po b/addons/stock/i18n/bg.po index d4c02a2c4f2..0e7fcc52161 100644 --- a/addons/stock/i18n/bg.po +++ b/addons/stock/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/bs.po b/addons/stock/i18n/bs.po index 033e19e499a..8861a959f5d 100644 --- a/addons/stock/i18n/bs.po +++ b/addons/stock/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ca.po b/addons/stock/i18n/ca.po index 71dc2aa7aea..3b304db75a9 100644 --- a/addons/stock/i18n/ca.po +++ b/addons/stock/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/cs.po b/addons/stock/i18n/cs.po index 1f76dd86885..12eddf4c458 100644 --- a/addons/stock/i18n/cs.po +++ b/addons/stock/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Language: Czech\n" #. module: stock diff --git a/addons/stock/i18n/da.po b/addons/stock/i18n/da.po index 20c12e04a9c..c2f68f9d1e7 100644 --- a/addons/stock/i18n/da.po +++ b/addons/stock/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/de.po b/addons/stock/i18n/de.po index b84d949d00c..9dc00808b8a 100644 --- a/addons/stock/i18n/de.po +++ b/addons/stock/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:51+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/el.po b/addons/stock/i18n/el.po index 2fcb5ac64c6..57d0a09b466 100644 --- a/addons/stock/i18n/el.po +++ b/addons/stock/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:51+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/stock/i18n/es.po b/addons/stock/i18n/es.po index 54ce9e1aaa0..0b909925347 100644 --- a/addons/stock/i18n/es.po +++ b/addons/stock/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:53+0000\n" +"X-Generator: Launchpad (build 16967)\n" #~ msgid "Stock Management" #~ msgstr "Gestión de inventario" diff --git a/addons/stock/i18n/es_AR.po b/addons/stock/i18n/es_AR.po index 249e485f5b4..efbfc9fe34e 100644 --- a/addons/stock/i18n/es_AR.po +++ b/addons/stock/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:24+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:54+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_BO.po b/addons/stock/i18n/es_BO.po index f64f8be8f00..dea520a087c 100644 --- a/addons/stock/i18n/es_BO.po +++ b/addons/stock/i18n/es_BO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:24+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:54+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_CL.po b/addons/stock/i18n/es_CL.po index 5733d45653d..92b1b7039f1 100644 --- a/addons/stock/i18n/es_CL.po +++ b/addons/stock/i18n/es_CL.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:24+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:54+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_CR.po b/addons/stock/i18n/es_CR.po index fc683af6470..87c61a2a18d 100644 --- a/addons/stock/i18n/es_CR.po +++ b/addons/stock/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:54+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: stock diff --git a/addons/stock/i18n/es_DO.po b/addons/stock/i18n/es_DO.po index 65970d6a315..e6e82de9970 100644 --- a/addons/stock/i18n/es_DO.po +++ b/addons/stock/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:24+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:54+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_EC.po b/addons/stock/i18n/es_EC.po index eb240b7aa70..2c638700e9f 100644 --- a/addons/stock/i18n/es_EC.po +++ b/addons/stock/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_MX.po b/addons/stock/i18n/es_MX.po index 30aa04222c5..a2570b191ef 100644 --- a/addons/stock/i18n/es_MX.po +++ b/addons/stock/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_PE.po b/addons/stock/i18n/es_PE.po index b5c626cd8f6..8cc154cff84 100644 --- a/addons/stock/i18n/es_PE.po +++ b/addons/stock/i18n/es_PE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_VE.po b/addons/stock/i18n/es_VE.po index cefbbdc348c..d3828cd79a7 100644 --- a/addons/stock/i18n/es_VE.po +++ b/addons/stock/i18n/es_VE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:24+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:54+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/et.po b/addons/stock/i18n/et.po index 16186d53ee1..a43904660d2 100644 --- a/addons/stock/i18n/et.po +++ b/addons/stock/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:51+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/fi.po b/addons/stock/i18n/fi.po index dfa3ff37da8..7f9b440adb1 100644 --- a/addons/stock/i18n/fi.po +++ b/addons/stock/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:51+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/fr.po b/addons/stock/i18n/fr.po index 81f3fb7707d..a7695cb2f1c 100644 --- a/addons/stock/i18n/fr.po +++ b/addons/stock/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:51+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.move,product_uos_qty:0 @@ -5334,7 +5334,7 @@ msgstr "Optionnel : mouvement de stock suivant quand il est enchainé." #. module: stock #: view:stock.picking.out:0 msgid "Print Delivery Slip" -msgstr "Imprimer le bordereau de livraison" +msgstr "Imprimer le bon de préparation" #. module: stock #: view:report.stock.inventory:0 diff --git a/addons/stock/i18n/gl.po b/addons/stock/i18n/gl.po index 3a456a357f2..fe72be0e4a8 100644 --- a/addons/stock/i18n/gl.po +++ b/addons/stock/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:51+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/hr.po b/addons/stock/i18n/hr.po index cdf0ffbb944..4042b88ca59 100644 --- a/addons/stock/i18n/hr.po +++ b/addons/stock/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:53+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -769,7 +769,7 @@ msgstr "Additional Reference" #. module: stock #: view:stock.partial.picking.line:0 msgid "Stock Picking Line" -msgstr "Stavka primke" +msgstr "Stavka skladišnog dokumenta" #. module: stock #: field:stock.location,complete_name:0 @@ -1056,7 +1056,7 @@ msgstr "Budući P&L" #: model:ir.ui.menu,name:stock.menu_action_picking_tree4 #: view:stock.picking.in:0 msgid "Incoming Shipments" -msgstr "Primke" +msgstr "Pošiljke u dolasku" #. module: stock #: view:report.stock.inventory:0 @@ -3311,10 +3311,10 @@ msgid "" " " msgstr "" "

    \n" -" Pritisnite za kreiranje primke ovog proizvoda. \n" +" Pritisnite za kreiranje prijema ovog proizvoda. \n" "

    \n" -" Ovjde možete pronaći povijest svih primki povezanih sa\n" -" ovim proizvodom, kao i sve buduće primke koje očekujete\n" +" Ovjde možete pronaći povijest svih prijema povezanih sa\n" +" ovim proizvodom, kao i sve buduće prijeme koje očekujete\n" " od Vaših dobavljača.\n" "

    \n" " " @@ -3936,7 +3936,7 @@ msgstr "Datumi inventura" #: model:ir.actions.act_window,name:stock.action_receive_move #: view:product.product:0 msgid "Receptions" -msgstr "Primke" +msgstr "Prijemi" #. module: stock #: view:report.stock.move:0 diff --git a/addons/stock/i18n/hu.po b/addons/stock/i18n/hu.po index 48523f67208..733640762fa 100644 --- a/addons/stock/i18n/hu.po +++ b/addons/stock/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:51+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/id.po b/addons/stock/i18n/id.po index 9c06fcd8bd2..c911ecfd042 100644 --- a/addons/stock/i18n/id.po +++ b/addons/stock/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:51+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/it.po b/addons/stock/i18n/it.po index e354108ac65..fee1b898d93 100644 --- a/addons/stock/i18n/it.po +++ b/addons/stock/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:21+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:51+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -4886,7 +4886,7 @@ msgstr "" #. module: stock #: view:stock.picking.out:0 msgid "Print Delivery Slip" -msgstr "Stampa Ordine di Consegna" +msgstr "Stampa Ordine di Prelievo" #. module: stock #: view:report.stock.inventory:0 diff --git a/addons/stock/i18n/ja.po b/addons/stock/i18n/ja.po index 3eb922b9902..fde83ae11c9 100644 --- a/addons/stock/i18n/ja.po +++ b/addons/stock/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:52+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -914,7 +914,7 @@ msgstr "" #: code:addons/stock/product.py:448 #, python-format msgid "Future Receptions" -msgstr "将来の受取" +msgstr "入荷予定" #. module: stock #: selection:stock.move,priority:0 @@ -3313,7 +3313,7 @@ msgstr "請求書を生成したい場合は、集荷リストにパートナを #. module: stock #: view:stock.picking.in:0 msgid "Confirm & Receive" -msgstr "確認と受取り" +msgstr "確認して入荷" #. module: stock #: field:stock.picking,origin:0 diff --git a/addons/stock/i18n/ko.po b/addons/stock/i18n/ko.po index 2f1f88783a9..4080fa25571 100644 --- a/addons/stock/i18n/ko.po +++ b/addons/stock/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:52+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/lt.po b/addons/stock/i18n/lt.po index f3c2ebba88a..b2d0113e321 100644 --- a/addons/stock/i18n/lt.po +++ b/addons/stock/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:52+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: lt\n" #. module: stock diff --git a/addons/stock/i18n/lv.po b/addons/stock/i18n/lv.po index 691ed0830b0..ed55fbfdccc 100644 --- a/addons/stock/i18n/lv.po +++ b/addons/stock/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:52+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/mk.po b/addons/stock/i18n/mk.po index 601d2eccab8..cd42bee712e 100644 --- a/addons/stock/i18n/mk.po +++ b/addons/stock/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:52+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/mn.po b/addons/stock/i18n/mn.po index a04ea718e9d..0aff7124417 100644 --- a/addons/stock/i18n/mn.po +++ b/addons/stock/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:52+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/nb.po b/addons/stock/i18n/nb.po index 68f23ed9f35..9e7fe08ddc8 100644 --- a/addons/stock/i18n/nb.po +++ b/addons/stock/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:52+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/nl.po b/addons/stock/i18n/nl.po index 83be718e32c..7ecf2f36883 100644 --- a/addons/stock/i18n/nl.po +++ b/addons/stock/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -91,7 +91,7 @@ msgstr "Terug traceren" #: field:stock.picking.in,date_done:0 #: field:stock.picking.out,date_done:0 msgid "Date of Transfer" -msgstr "Datum van verzending" +msgstr "Datum van verplaatsing" #. module: stock #: field:product.product,track_outgoing:0 @@ -1106,7 +1106,7 @@ msgstr "Details" #. module: stock #: selection:stock.picking,state:0 msgid "Ready to Transfer" -msgstr "Beschikbaar" +msgstr "Gereed voor verplaatsing" #. module: stock #: report:lot.stock.overview:0 @@ -2092,7 +2092,7 @@ msgstr "Geleverd aantal" #. module: stock #: view:stock.partial.picking:0 msgid "Transfer Products" -msgstr "Verzend producten" +msgstr "Verplaats producten" #. module: stock #: help:product.template,property_stock_inventory:0 @@ -2154,8 +2154,8 @@ msgstr "" " * Wachten op beschikbaarheid: Nog wachtend op de beschikbaarheid " "van de producten\n" "\n" -" * Gereed voor leveren: Producten zijn gereserveerd, wachtend op " -"bevestiging\n" +" * Gereed voor verplaatsing: Producten zijn gereserveerd, " +"wachtend op bevestiging\n" "\n" " * Verwerkt: Is verwerkt, kan niet meer worden aangepast of " "worden geannuleerd \n" @@ -2418,7 +2418,8 @@ msgstr "Bedrag" #: field:stock.config.settings,module_stock_invoice_directly:0 msgid "Create and open the invoice when the user finish a delivery order" msgstr "" -"Maak en open de factuur wanneer de gebruiker klaar is met de uitgaande order" +"Maak en open de factuur wanneer de gebruiker klaar is met de uitgaande " +"levering" #. module: stock #: model:ir.model,name:stock.model_stock_return_picking_memory @@ -2718,7 +2719,7 @@ msgstr "Partijen" #. module: stock #: view:stock.partial.picking:0 msgid "_Transfer" -msgstr "_Doorverbinden" +msgstr "_Verplaatsen" #. module: stock #: selection:report.stock.move,type:0 diff --git a/addons/stock/i18n/nl_BE.po b/addons/stock/i18n/nl_BE.po index 32e913d899f..d8cfa8c33f3 100644 --- a/addons/stock/i18n/nl_BE.po +++ b/addons/stock/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:24+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:54+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/pl.po b/addons/stock/i18n/pl.po index a48dcb8660a..3f8e6b9bb9f 100644 --- a/addons/stock/i18n/pl.po +++ b/addons/stock/i18n/pl.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: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2012-12-22 15:56+0000\n" -"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \n" +"PO-Revision-Date: 2014-04-07 13:08+0000\n" +"Last-Translator: Dariusz Żbikowski (Krokus) \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: 2014-03-04 06:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-04-08 06:18+0000\n" +"X-Generator: Launchpad (build 16976)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -1420,7 +1420,7 @@ msgstr "Zapas fizyczny" #: code:addons/stock/wizard/stock_move.py:214 #, python-format msgid "Processing Error!" -msgstr "" +msgstr "Błąd przetwarzania!" #. module: stock #: help:stock.location,chained_company_id:0 @@ -2623,7 +2623,7 @@ msgstr "Ustaw na projekt" #: model:ir.actions.act_window,name:stock.action_stock_journal_form #: model:ir.ui.menu,name:stock.menu_action_stock_journal_form msgid "Stock Journals" -msgstr "Dzienniki mogazynowe" +msgstr "Dzienniki magazynowe" #. module: stock #: view:product.product:0 diff --git a/addons/stock/i18n/pt.po b/addons/stock/i18n/pt.po index 6dfaa3425a3..dcec43db957 100644 --- a/addons/stock/i18n/pt.po +++ b/addons/stock/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:22+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:52+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/pt_BR.po b/addons/stock/i18n/pt_BR.po index a3f4a1dffe6..791fca12364 100644 --- a/addons/stock/i18n/pt_BR.po +++ b/addons/stock/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:24+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:54+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ro.po b/addons/stock/i18n/ro.po index 13d22207925..5f4a82ec339 100644 --- a/addons/stock/i18n/ro.po +++ b/addons/stock/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:52+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ru.po b/addons/stock/i18n/ru.po index d76879bfc49..b2132e61b24 100644 --- a/addons/stock/i18n/ru.po +++ b/addons/stock/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:53+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sl.po b/addons/stock/i18n/sl.po index cce818ded66..0e69794ccc3 100644 --- a/addons/stock/i18n/sl.po +++ b/addons/stock/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:53+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sq.po b/addons/stock/i18n/sq.po index b621582d642..9f233cbff64 100644 --- a/addons/stock/i18n/sq.po +++ b/addons/stock/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:50+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sr.po b/addons/stock/i18n/sr.po index f7541892a2a..30fc4a9add4 100644 --- a/addons/stock/i18n/sr.po +++ b/addons/stock/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:53+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sr@latin.po b/addons/stock/i18n/sr@latin.po index 6f36a97bde1..08ac4f943a2 100644 --- a/addons/stock/i18n/sr@latin.po +++ b/addons/stock/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sv.po b/addons/stock/i18n/sv.po index 8c04c278c51..f4d6907a6be 100644 --- a/addons/stock/i18n/sv.po +++ b/addons/stock/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:53+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/th.po b/addons/stock/i18n/th.po index 6907e74f86b..4f7da07a760 100644 --- a/addons/stock/i18n/th.po +++ b/addons/stock/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:53+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/tlh.po b/addons/stock/i18n/tlh.po index 6221d099442..31e10230752 100644 --- a/addons/stock/i18n/tlh.po +++ b/addons/stock/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:53+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/tr.po b/addons/stock/i18n/tr.po index eff152d5dbf..2e1f1caaa4b 100644 --- a/addons/stock/i18n/tr.po +++ b/addons/stock/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:24+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:53+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -39,7 +39,7 @@ msgstr "" #. module: stock #: model:ir.model,name:stock.model_stock_move_split_lines msgid "Stock move Split lines" -msgstr "Stok hareketi Bölünmüş satırları" +msgstr "Stok hareketi Bölünmüş Satırları" #. module: stock #: help:product.category,property_stock_account_input_categ:0 @@ -51,7 +51,7 @@ msgid "" "product" msgstr "" "Gerçek-zamanlı envanter değerlendirmesi yaparken, gelen tüm stokların " -"hareketlerine karşılık gelen ait öğe günlükleri bu hesaba işlenecektir, " +"hareketlerine karşılık gelen ait öğe yevmiyeleri bu hesaba işlenecektir, " "kaynak konumda özel bir değerlendirme hesabı yoksa. Bu kategorideki ürünler " "için bu varsayılan değerdir. Her ürüne doğrudan da ayarlanabilir." @@ -381,7 +381,7 @@ msgstr "Uyarı!" #. module: stock #: field:stock.invoice.onshipping,group:0 msgid "Group by partner" -msgstr "Grupla partner ile" +msgstr "Grupla iş ortağı ile" #. module: stock #: help:stock.picking,move_type:0 @@ -401,7 +401,7 @@ msgstr "Aynı anda kısmen veya tüm teslim edilecek malların belirtir" #: field:stock.picking.in,partner_id:0 #: field:stock.picking.out,partner_id:0 msgid "Partner" -msgstr "Partner" +msgstr "İş Ortağı" #. module: stock #: field:stock.config.settings,module_claim_from_delivery:0 @@ -789,7 +789,7 @@ msgstr "İşlenmiş Envanterler" #. module: stock #: field:stock.move.split.lines,wizard_exist_id:0 msgid "Parent Wizard (for existing lines)" -msgstr "Ana Sihirbaz (varolan satırlar için=" +msgstr "Ana Sihirbaz (varolan satırlar için)" #. module: stock #: view:report.stock.move:0 @@ -1167,7 +1167,7 @@ msgstr "_İptal" #. module: stock #: field:report.stock.move,day_diff:0 msgid "Execution Lead Time (Days)" -msgstr "İcra Tamamlama Süresi (Gün)" +msgstr "Uygulama Tamamlama Süresi (Gün)" #. module: stock #: model:ir.model,name:stock.model_stock_partial_move @@ -1382,7 +1382,7 @@ msgid "" "In order to cancel this inventory, you must first unpost related journal " "entries." msgstr "" -"Bu envanteri silmek için önce ilişkili günlük girişlerinin işlenmesini " +"Bu envanteri silmek için önce ilişkili yevmiye girişlerinin işlenmesini " "kaldırmalısınız." #. module: stock @@ -1519,11 +1519,11 @@ msgid "" " " msgstr "" "

    \n" -" Yeni bir günlük oluşturmak için tıklayın. \n" +" Yeni bir yevmiye oluşturmak için tıklayın. \n" "

    \n" -" Stok günlük sistemi her stok hareketini, yürütülecek \n" +" Stok yevmiye sistemi her stok hareketini, yürütülecek \n" " işlemin ya da bu işlemi yürütecek işçi/takım türüne \n" -" göre belirli bir günlüğe atar. Stok günlüğü örnekleri \n" +" göre belirli bir yevmiyeye atar. Stok yevmiyesi örnekleri \n" " şunlar olabilir: kalite kontrol, toplama listeleri,\n" " paketleme, vb..\n" "\n" @@ -2343,7 +2343,7 @@ msgid "" "This stock location will be used, instead of the default one, as the source " "location for goods you receive from the current partner" msgstr "" -"Mevcut ortaktan aldığınız malların kaynak lkonumu olarak varsayılan yerine " +"Mevcut iş ortaktan aldığınız malların kaynak konumu olarak varsayılan yerine " "bu stok konumu kullanılacaktır" #. module: stock @@ -2778,7 +2778,7 @@ msgid "" "Cannot create Journal Entry, Output Account of this product and Valuation " "account on category of this product are same." msgstr "" -"Günlük Kaydı oluşturulamıyor, Bu ürünün Çıkış Hesabı ve bu ürünün " +"Yevmiye Kaydı oluşturulamıyor, Bu ürünün Çıkış Hesabı ve bu ürünün " "kategorisindeki Değerleme hesabı aynıdır." #. module: stock @@ -2962,8 +2962,8 @@ msgid "" "Cannot create Journal Entry, Input Account of this product and Valuation " "account on category of this product are same." msgstr "" -"Günlük Kaydı oluşturulamıyor, Bu ürünün Giriş Hesabı ve bu ürünün " -"kategorisindeki Değerleme hesabı aynıdır." +"Yevmiye Kaydı oluşturulamıyor, Bu ürünün Giriş Hesabı ve bu ürünün " +"kategorisindeki değerleme hesabı aynıdır." #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_unit_measure_stock @@ -4114,7 +4114,7 @@ msgid "" "on each product" msgstr "" "Gerçek-zamanlı envanter değerlemesi yaparken, hedef konuma özel bir " -"değerleme hesabı ayarlanmadıkça, çıkan tüm stok hareketlerinin günlük " +"değerleme hesabı ayarlanmadıkça, çıkan tüm stok hareketlerinin yevmiye " "öğeleri bu hesaba işlenecektir. Bu, bu kategorideki tüm ürünler için " "varsayılan değerdir. Aynı zamanda her ürünü de doğrudan ayarlanabilir." @@ -4192,7 +4192,7 @@ msgstr "Onaylanmış Teslimat Siparişleri" #: field:stock.partial.move,picking_id:0 #: field:stock.partial.picking,picking_id:0 msgid "Picking" -msgstr "SeçimListesi" +msgstr "Seçim Listesi" #. module: stock #: code:addons/stock/wizard/stock_invoice_onshipping.py:96 @@ -4908,7 +4908,7 @@ msgstr "Önek" #: view:stock.move:0 #: view:stock.move.split:0 msgid "Split in Serial Numbers" -msgstr "Seri Numaralarına Göre ayır" +msgstr "Seri Numaralarına Göre Ayır" #. module: stock #: help:product.template,property_stock_account_input:0 @@ -4919,7 +4919,7 @@ msgid "" "product, the one from the product category is used." msgstr "" "Gerçek zamanlı envanter değerlemesi yaparken, gelen bütün stok " -"hareketlerinin karşıt günlük maddeleri, kaynak konumda özel bir değerleme " +"hareketlerinin karşıt yevmiye maddeleri, kaynak konumda özel bir değerleme " "hesabı tanımlanıncaya kadar bu hesaba işlenecektir. Ürüne tanımlanmamışsa, " "ürün kategorisinden bir tane kullanılır." diff --git a/addons/stock/i18n/uk.po b/addons/stock/i18n/uk.po index fa65cd85b17..978307f6f5d 100644 --- a/addons/stock/i18n/uk.po +++ b/addons/stock/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:24+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:54+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/vi.po b/addons/stock/i18n/vi.po index bb88651b2b1..d050509fbf0 100644 --- a/addons/stock/i18n/vi.po +++ b/addons/stock/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:24+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:54+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/zh_CN.po b/addons/stock/i18n/zh_CN.po index 79895d26581..825caf3a9a7 100644 --- a/addons/stock/i18n/zh_CN.po +++ b/addons/stock/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/zh_TW.po b/addons/stock/i18n/zh_TW.po index 3dff05d93de..868ae0f83dd 100644 --- a/addons/stock/i18n/zh_TW.po +++ b/addons/stock/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:54+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -3310,6 +3310,13 @@ msgid "" "

    \n" " " msgstr "" +"

    \n" +" 點擊增加一個追蹤號碼。\n" +"

    \n" +" 這是您所有的包裹清單。當您選擇一個「包裹」,\n" +" 即可讀取這個包裹內含產品的上下游追溯資料。\n" +"

    \n" +" " #. module: stock #: code:addons/stock/stock.py:2545 @@ -3399,26 +3406,26 @@ msgstr "倉庫" #. module: stock #: field:stock.journal,user_id:0 msgid "Responsible" -msgstr "" +msgstr "負責人" #. module: stock #: view:stock.move:0 msgid "Process Entirely" -msgstr "" +msgstr "全部處理" #. module: stock #: help:product.template,property_stock_procurement:0 msgid "" "This stock location will be used, instead of the default one, as the source " "location for stock moves generated by procurements." -msgstr "" +msgstr "此倉位將會替代預設倉位,用在因採購而產生的庫存調動的來源倉位。" #. module: stock #: model:ir.actions.act_window,name:stock.action_stock_inventory_report #: model:ir.ui.menu,name:stock.menu_action_stock_inventory_report #: view:report.stock.inventory:0 msgid "Inventory Analysis" -msgstr "" +msgstr "庫存分析" #. module: stock #: field:stock.invoice.onshipping,journal_id:0 @@ -3435,7 +3442,7 @@ msgstr "庫存" #: code:addons/stock/wizard/stock_return_picking.py:226 #, python-format msgid "Returned Picking" -msgstr "" +msgstr "退貨提貨" #. module: stock #: model:ir.model,name:stock.model_product_product @@ -3481,37 +3488,45 @@ msgid "" "

    \n" " " msgstr "" +"

    \n" +" 點擊開始進行盤點。 \n" +"

    \n" +" 定期盤點是使用在計算每個倉位的可用產品數量。\n" +" 您可每年執行年度盤點時使用或在您需要調整某 一\n" +" 產品的庫存水平的時候。\n" +"

    \n" +" " #. module: stock #: view:stock.return.picking:0 msgid "Return" -msgstr "" +msgstr "退貨" #. module: stock #: field:stock.return.picking,invoice_state:0 msgid "Invoicing" -msgstr "" +msgstr "發票開立" #. module: stock #: view:stock.picking:0 msgid "Assigned Internal Moves" -msgstr "" +msgstr "指定的內部調動" #. module: stock #: code:addons/stock/stock.py:804 #, python-format msgid "You cannot process picking without stock moves." -msgstr "" +msgstr "沒有庫存調動,您不能進行提貨。" #. module: stock #: field:stock.production.lot,move_ids:0 msgid "Moves for this serial number" -msgstr "" +msgstr "該序號的庫存調動" #. module: stock #: field:stock.move,product_uos:0 msgid "Product UOS" -msgstr "" +msgstr "貨品銷售計量單位" #. module: stock #: field:stock.location,posz:0 @@ -3543,7 +3558,7 @@ msgstr "走廊 (X)" #. module: stock #: field:stock.config.settings,group_stock_packaging:0 msgid "Allow to define several packaging methods on products" -msgstr "" +msgstr "允許產品定義多種包裝方式" #. module: stock #: model:stock.location,name:stock.stock_location_7 @@ -3566,12 +3581,12 @@ msgstr "各分類產品" #: selection:stock.picking.in,state:0 #: selection:stock.picking.out,state:0 msgid "Waiting Another Operation" -msgstr "" +msgstr "正在等待其它作業" #. module: stock #: view:stock.location:0 msgid "Supplier Locations" -msgstr "" +msgstr "供應商倉位" #. module: stock #: field:stock.partial.move.line,wizard_id:0 @@ -3583,7 +3598,7 @@ msgstr "精靈" #. module: stock #: view:report.stock.move:0 msgid "Completed Stock-Moves" -msgstr "" +msgstr "已完成的庫存調動" #. module: stock #: model:ir.actions.act_window,name:stock.action_view_stock_location_product @@ -3594,7 +3609,7 @@ msgstr "各地點產品" #. module: stock #: view:stock.config.settings:0 msgid "Logistic" -msgstr "" +msgstr "物流" #. module: stock #: model:ir.actions.act_window,help:stock.action_location_form @@ -3624,6 +3639,20 @@ msgid "" "

    \n" " " msgstr "" +"

    \n" +" 點擊新增倉位。\n" +"

    \n" +" 依您的倉庫架構及公司組織定義您的倉位。 OpenERP 能夠管理實\n" +" 際倉位 (倉庫、貨架、箱等等)、業務夥伴倉位(客戶、供應商。)及\n" +" 作為庫存作業對應的虛擬庫位,例如生產製造消耗、盤點作業等\n" +" 等。\n" +"

    \n" +" 在 OpenERP 中的每一個庫存作業都是將產品從一個倉位移動到另\n" +" 外一個。舉例來說,假如您由供應商收到產品, OpenERP 會將產\n" +" 品由供應商倉位移動到庫存倉位。每張報表都能在實際、夥伴或虛\n" +" 擬倉位完成。\n" +"

    \n" +" " #. module: stock #: field:stock.fill.inventory,recursive:0 @@ -3645,7 +3674,7 @@ msgstr "" #. module: stock #: field:stock.tracking,name:0 msgid "Pack Reference" -msgstr "" +msgstr "包裹編號" #. module: stock #: view:report.stock.move:0 @@ -3659,27 +3688,27 @@ msgstr "來源地點" #. module: stock #: view:product.template:0 msgid "Accounting Entries" -msgstr "" +msgstr "會計分錄" #. module: stock #: model:res.groups,name:stock.group_stock_manager msgid "Manager" -msgstr "" +msgstr "主管" #. module: stock #: model:stock.location,name:stock.stock_location_intermediatelocation0 msgid "Internal Shippings" -msgstr "" +msgstr "內部運送" #. module: stock #: field:stock.change.standard.price,enable_stock_in_out_acc:0 msgid "Enable Related Account" -msgstr "" +msgstr "啟動相關科目" #. module: stock #: field:stock.location.product,type:0 msgid "Analyse Type" -msgstr "" +msgstr "分析類型" #. module: stock #: model:ir.actions.act_window,help:stock.action_picking_tree4 @@ -3695,6 +3724,13 @@ msgid "" "

    \n" " " msgstr "" +"

    \n" +" 點擊以開立收貨單。 \n" +"

    \n" +" 收貨單是您從供應商收到的所有訂單的清單。\n" +" 收貨單包含了依原始採購訂單收貨的產品列表。\n" +"

    \n" +" " #. module: stock #: view:stock.move:0 @@ -3711,7 +3747,7 @@ msgstr "一次過" #. module: stock #: model:ir.actions.act_window,name:stock.act_product_stock_move_open msgid "Inventory Move" -msgstr "" +msgstr "存貨調動" #. module: stock #: code:addons/stock/product.py:476 @@ -3744,35 +3780,35 @@ msgstr "" #: model:ir.actions.act_window,name:stock.action_stock_config_settings #: view:stock.config.settings:0 msgid "Configure Warehouse" -msgstr "" +msgstr "倉庫設定" #. module: stock #: view:stock.picking:0 #: view:stock.picking.in:0 msgid "To Invoice" -msgstr "" +msgstr "待開發票" #. module: stock #: view:stock.return.picking:0 msgid "Return lines" -msgstr "" +msgstr "退貨明細" #. module: stock #: view:stock.inventory:0 msgid "Search Inventory" -msgstr "" +msgstr "搜尋庫存" #. module: stock #: model:ir.model,name:stock.model_report_stock_lines_date #: view:report.stock.lines.date:0 msgid "Dates of Inventories" -msgstr "" +msgstr "盤點日期" #. module: stock #: model:ir.actions.act_window,name:stock.action_receive_move #: view:product.product:0 msgid "Receptions" -msgstr "" +msgstr "接收" #. module: stock #: view:report.stock.move:0 @@ -3782,7 +3818,7 @@ msgstr "總內送量" #. module: stock #: field:report.stock.move,product_qty_out:0 msgid "Out Qty" -msgstr "" +msgstr "出貨數量" #. module: stock #: view:report.stock.inventory:0 @@ -3807,12 +3843,12 @@ msgstr "公司" #: field:stock.move.consume,product_uom:0 #: field:stock.move.scrap,product_uom:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "產品度量單位" #. module: stock #: view:stock.move:0 msgid "Put in current pack" -msgstr "" +msgstr "放入目前的包裹" #. module: stock #: view:stock.inventory:0 @@ -3843,12 +3879,12 @@ msgstr "批次存貨" #: field:stock.report.prodlots,prodlot_id:0 #: field:stock.return.picking.memory,prodlot_id:0 msgid "Serial Number" -msgstr "" +msgstr "序號" #. module: stock #: model:ir.model,name:stock.model_stock_partial_picking msgid "Partial Picking Processing Wizard" -msgstr "" +msgstr "分批提貨處理精靈" #. module: stock #: field:stock.location,icon:0 @@ -3861,7 +3897,7 @@ msgstr "圖示" #: field:stock.partial.picking,hide_tracking:0 #: field:stock.partial.picking.line,tracking:0 msgid "Tracking" -msgstr "" +msgstr "追蹤" #. module: stock #: view:stock.inventory.line.split:0 @@ -3869,7 +3905,7 @@ msgstr "" #: view:stock.move.scrap:0 #: view:stock.split.into:0 msgid "Ok" -msgstr "" +msgstr "確定" #. module: stock #: help:product.category,property_stock_account_output_categ:0 @@ -3887,7 +3923,7 @@ msgstr "" #: field:stock.picking.in,message_ids:0 #: field:stock.picking.out,message_ids:0 msgid "Messages" -msgstr "" +msgstr "訊息" #. module: stock #: model:stock.location,name:stock.stock_location_8 @@ -3930,6 +3966,10 @@ msgid "" "

    \n" " " msgstr "" +"

    \n" +" 點擊定義一個新的倉庫。\n" +"

    \n" +" " #. module: stock #: selection:report.stock.inventory,state:0 @@ -3945,7 +3985,7 @@ msgstr "取消" #. module: stock #: view:stock.picking:0 msgid "Confirmed Delivery Orders" -msgstr "" +msgstr "確認出貨單" #. module: stock #: view:stock.move:0 @@ -3971,7 +4011,7 @@ msgstr "" #. module: stock #: model:stock.location,name:stock.stock_location_shop0 msgid "Your Company, Chicago shop" -msgstr "" +msgstr "您的公司,芝加哥分店" #. module: stock #: selection:report.stock.move,type:0 @@ -3981,7 +4021,7 @@ msgstr "" #: selection:stock.picking.in,type:0 #: selection:stock.picking.out,type:0 msgid "Getting Goods" -msgstr "" +msgstr "收貨" #. module: stock #: help:stock.location,chained_location_type:0 @@ -4004,12 +4044,12 @@ msgstr "" msgid "" "By changing this quantity here, you accept the new quantity as complete: " "OpenERP will not automatically generate a back order." -msgstr "" +msgstr "通過修改此處的數量,視新的數量為已完成: OpenERP 不會自動建立延期交貨單。" #. module: stock #: view:stock.production.lot.revision:0 msgid "Serial Number Revisions" -msgstr "" +msgstr "序號版本" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree @@ -4022,7 +4062,7 @@ msgstr "交貨單" #. module: stock #: view:stock.picking:0 msgid "Delivery orders already processed" -msgstr "" +msgstr "出貨單已處理" #. module: stock #: field:product.template,loc_case:0 @@ -4045,12 +4085,12 @@ msgstr "確認" #. module: stock #: help:stock.location,icon:0 msgid "Icon show in hierarchical tree view" -msgstr "" +msgstr "以階層樹狀檢視時顯示圖示" #. module: stock #: model:ir.actions.act_window,name:stock.action_view_stock_merge_inventories msgid "Merge inventories" -msgstr "" +msgstr "合併實地盤點" #. module: stock #: view:stock.location:0 @@ -4061,27 +4101,27 @@ msgstr "庫存地點" #: help:stock.location,scrap_location:0 msgid "" "Check this box to allow using this location to put scrapped/damaged goods." -msgstr "" +msgstr "勾選選項以允許此倉位存放報廢/損壞貨物。" #. module: stock #: field:stock.picking,message_follower_ids:0 #: field:stock.picking.in,message_follower_ids:0 #: field:stock.picking.out,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "關注者" #. module: stock #: code:addons/stock/stock.py:2634 #, python-format msgid "Cannot consume a move with negative or zero quantity." -msgstr "" +msgstr "調動數量不能為負值或零。" #. module: stock #: help:stock.config.settings,decimal_precision:0 msgid "" "As an example, a decimal precision of 2 will allow weights like: 9.99 kg, " "whereas a decimal precision of 4 will allow weights like: 0.0231 kg." -msgstr "" +msgstr "例如10進位精準度為2將允許重量如9.99公斤,而10進位精準度為4,將允許重量如0.0231公斤。" #. module: stock #: view:report.stock.move:0 @@ -4119,7 +4159,7 @@ msgstr "" #. module: stock #: view:stock.invoice.onshipping:0 msgid "Create invoice" -msgstr "" +msgstr "開立發票" #. module: stock #: view:stock.picking:0 diff --git a/addons/stock/product_view.xml b/addons/stock/product_view.xml index 11f970d6ddb..2efd1c8acbe 100644 --- a/addons/stock/product_view.xml +++ b/addons/stock/product_view.xml @@ -82,7 +82,6 @@
    days
    - diff --git a/addons/stock/stock.py b/addons/stock/stock.py index d48ff80b1c1..7e73d7fcd53 100644 --- a/addons/stock/stock.py +++ b/addons/stock/stock.py @@ -2232,14 +2232,14 @@ class stock_move(osv.osv): if move.picking_id: pickings.add(move.picking_id.id) if move.move_dest_id and move.move_dest_id.state == 'waiting': - self.write(cr, uid, [move.move_dest_id.id], {'state': 'confirmed'}) + self.write(cr, uid, [move.move_dest_id.id], {'state': 'confirmed'}, context=context) if context.get('call_unlink',False) and move.move_dest_id.picking_id: workflow.trg_write(uid, 'stock.picking', move.move_dest_id.picking_id.id, cr) - self.write(cr, uid, ids, {'state': 'cancel', 'move_dest_id': False}) + self.write(cr, uid, ids, {'state': 'cancel', 'move_dest_id': False}, context=context) if not context.get('call_unlink',False): for pick in self.pool.get('stock.picking').browse(cr, uid, list(pickings), context=context): if all(move.state == 'cancel' for move in pick.move_lines): - self.pool.get('stock.picking').write(cr, uid, [pick.id], {'state': 'cancel'}) + self.pool.get('stock.picking').write(cr, uid, [pick.id], {'state': 'cancel'}, context=context) for id in ids: workflow.trg_trigger(uid, 'stock.move', id, cr) diff --git a/addons/stock/stock_view.xml b/addons/stock/stock_view.xml index de76c3e066a..e96652c11aa 100644 --- a/addons/stock/stock_view.xml +++ b/addons/stock/stock_view.xml @@ -792,7 +792,7 @@ - + @@ -926,7 +926,7 @@ - +
    @@ -1053,7 +1053,7 @@ - +
    diff --git a/addons/stock/wizard/stock_change_product_qty.py b/addons/stock/wizard/stock_change_product_qty.py index 01ed6f2409a..cf4099ac3ba 100644 --- a/addons/stock/wizard/stock_change_product_qty.py +++ b/addons/stock/wizard/stock_change_product_qty.py @@ -33,6 +33,10 @@ class stock_change_product_qty(osv.osv_memory): 'prodlot_id': fields.many2one('stock.production.lot', 'Serial Number', domain="[('product_id','=',product_id)]"), 'location_id': fields.many2one('stock.location', 'Location', required=True, domain="[('usage', '=', 'internal')]"), } + _defaults = { + 'new_quantity': 1, + 'product_id': lambda self, cr, uid, ctx: ctx and ctx.get('active_id', False) or False + } def fields_view_get(self, cr, uid, view_id=None, view_type='form', context=None, toolbar=False, submenu=False): if context is None: context = {} @@ -54,20 +58,22 @@ class stock_change_product_qty(osv.osv_memory): @param context: A standard dictionary @return: A dictionary which of fields with values. """ - product_id = context and context.get('active_id', False) or False + res = super(stock_change_product_qty, self).default_get(cr, uid, fields, context=context) - if 'new_quantity' in fields: - res.update({'new_quantity': 1}) - if 'product_id' in fields: - res.update({'product_id': product_id}) if 'location_id' in fields: - try: - model, location_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'stock', 'stock_location_stock') - self.pool.get('stock.location').check_access_rule(cr, uid, [location_id], 'read', context=context) - except (orm.except_orm, ValueError): - location_id = False - res.update({'location_id': location_id}) + location_id = res.get('location_id', False) + if not location_id: + try: + model, location_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'stock', 'stock_location_stock') + except (orm.except_orm, ValueError): + pass + if location_id: + try: + self.pool.get('stock.location').check_access_rule(cr, uid, [location_id], 'read', context=context) + except (orm.except_orm, ValueError): + pass + res['location_id'] = location_id return res def change_product_qty(self, cr, uid, ids, context=None): diff --git a/addons/stock/wizard/stock_move_view.xml b/addons/stock/wizard/stock_move_view.xml index 5dc0d0d824c..f2bc40d9a3f 100644 --- a/addons/stock/wizard/stock_move_view.xml +++ b/addons/stock/wizard/stock_move_view.xml @@ -67,6 +67,7 @@ form form new + {'form_view_ref': False} @@ -124,6 +125,7 @@ form form new + {'form_view_ref': False} diff --git a/addons/stock_invoice_directly/i18n/ar.po b/addons/stock_invoice_directly/i18n/ar.po index a779d24c735..bfbf87b7c0f 100644 --- a/addons/stock_invoice_directly/i18n/ar.po +++ b/addons/stock_invoice_directly/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/bg.po b/addons/stock_invoice_directly/i18n/bg.po index aadf8645a75..f6013c5e436 100644 --- a/addons/stock_invoice_directly/i18n/bg.po +++ b/addons/stock_invoice_directly/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/bs.po b/addons/stock_invoice_directly/i18n/bs.po index 022cb054370..1c07753ea8f 100644 --- a/addons/stock_invoice_directly/i18n/bs.po +++ b/addons/stock_invoice_directly/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ca.po b/addons/stock_invoice_directly/i18n/ca.po index 2d7b0f0ddca..606de8b80b9 100644 --- a/addons/stock_invoice_directly/i18n/ca.po +++ b/addons/stock_invoice_directly/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/cs.po b/addons/stock_invoice_directly/i18n/cs.po index 52fdf20fabb..a7ea1f1fd83 100644 --- a/addons/stock_invoice_directly/i18n/cs.po +++ b/addons/stock_invoice_directly/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/da.po b/addons/stock_invoice_directly/i18n/da.po index 5fa52f98928..99b72479af1 100644 --- a/addons/stock_invoice_directly/i18n/da.po +++ b/addons/stock_invoice_directly/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/de.po b/addons/stock_invoice_directly/i18n/de.po index 1588525c9a8..469f758389a 100644 --- a/addons/stock_invoice_directly/i18n/de.po +++ b/addons/stock_invoice_directly/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/el.po b/addons/stock_invoice_directly/i18n/el.po index 848563b8f91..92897bcb9e0 100644 --- a/addons/stock_invoice_directly/i18n/el.po +++ b/addons/stock_invoice_directly/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/en_GB.po b/addons/stock_invoice_directly/i18n/en_GB.po index dc264396965..cfec4536efd 100644 --- a/addons/stock_invoice_directly/i18n/en_GB.po +++ b/addons/stock_invoice_directly/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es.po b/addons/stock_invoice_directly/i18n/es.po index 0ebca2497dd..1de41194ac5 100644 --- a/addons/stock_invoice_directly/i18n/es.po +++ b/addons/stock_invoice_directly/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es_AR.po b/addons/stock_invoice_directly/i18n/es_AR.po index def1938bd57..dc70f23b0b9 100644 --- a/addons/stock_invoice_directly/i18n/es_AR.po +++ b/addons/stock_invoice_directly/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es_CL.po b/addons/stock_invoice_directly/i18n/es_CL.po index ae6991e8a4e..373450f2ce8 100644 --- a/addons/stock_invoice_directly/i18n/es_CL.po +++ b/addons/stock_invoice_directly/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es_CR.po b/addons/stock_invoice_directly/i18n/es_CR.po index 07f193d9592..00ff4857b04 100644 --- a/addons/stock_invoice_directly/i18n/es_CR.po +++ b/addons/stock_invoice_directly/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/et.po b/addons/stock_invoice_directly/i18n/et.po index 3587cec74ba..320cfdfdbab 100644 --- a/addons/stock_invoice_directly/i18n/et.po +++ b/addons/stock_invoice_directly/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/fi.po b/addons/stock_invoice_directly/i18n/fi.po index d77525dbe23..32f256c2505 100644 --- a/addons/stock_invoice_directly/i18n/fi.po +++ b/addons/stock_invoice_directly/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/fr.po b/addons/stock_invoice_directly/i18n/fr.po index f63188a7c9d..99a75b94a95 100644 --- a/addons/stock_invoice_directly/i18n/fr.po +++ b/addons/stock_invoice_directly/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/gl.po b/addons/stock_invoice_directly/i18n/gl.po index 28c977d15f3..f8c65fdd60d 100644 --- a/addons/stock_invoice_directly/i18n/gl.po +++ b/addons/stock_invoice_directly/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/hr.po b/addons/stock_invoice_directly/i18n/hr.po index a6814ca6129..3e492fba3c7 100644 --- a/addons/stock_invoice_directly/i18n/hr.po +++ b/addons/stock_invoice_directly/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/hu.po b/addons/stock_invoice_directly/i18n/hu.po index a2cb77d0666..82f04afa540 100644 --- a/addons/stock_invoice_directly/i18n/hu.po +++ b/addons/stock_invoice_directly/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/id.po b/addons/stock_invoice_directly/i18n/id.po index 588f76f94b4..83767de90e3 100644 --- a/addons/stock_invoice_directly/i18n/id.po +++ b/addons/stock_invoice_directly/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/it.po b/addons/stock_invoice_directly/i18n/it.po index 22e14bd0f4b..4f9d3c9a3d1 100644 --- a/addons/stock_invoice_directly/i18n/it.po +++ b/addons/stock_invoice_directly/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ja.po b/addons/stock_invoice_directly/i18n/ja.po index f9826fc82ad..eca763165ae 100644 --- a/addons/stock_invoice_directly/i18n/ja.po +++ b/addons/stock_invoice_directly/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ko.po b/addons/stock_invoice_directly/i18n/ko.po index 56811deb532..9abef1257fe 100644 --- a/addons/stock_invoice_directly/i18n/ko.po +++ b/addons/stock_invoice_directly/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/lt.po b/addons/stock_invoice_directly/i18n/lt.po index d9a8be0e8c6..7bf8794d280 100644 --- a/addons/stock_invoice_directly/i18n/lt.po +++ b/addons/stock_invoice_directly/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/lv.po b/addons/stock_invoice_directly/i18n/lv.po index 771e50ac1bf..9b0b10d64c0 100644 --- a/addons/stock_invoice_directly/i18n/lv.po +++ b/addons/stock_invoice_directly/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/mk.po b/addons/stock_invoice_directly/i18n/mk.po index 468c0f75175..2a10258f06e 100644 --- a/addons/stock_invoice_directly/i18n/mk.po +++ b/addons/stock_invoice_directly/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/mn.po b/addons/stock_invoice_directly/i18n/mn.po index 90bb066eda1..2c7e238eb97 100644 --- a/addons/stock_invoice_directly/i18n/mn.po +++ b/addons/stock_invoice_directly/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/nb.po b/addons/stock_invoice_directly/i18n/nb.po index 45724a91fe3..1035a42f895 100644 --- a/addons/stock_invoice_directly/i18n/nb.po +++ b/addons/stock_invoice_directly/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/nl.po b/addons/stock_invoice_directly/i18n/nl.po index cb0518ce1a1..28a0784d359 100644 --- a/addons/stock_invoice_directly/i18n/nl.po +++ b/addons/stock_invoice_directly/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/nl_BE.po b/addons/stock_invoice_directly/i18n/nl_BE.po index 35d6d6a4cad..b848ff96fff 100644 --- a/addons/stock_invoice_directly/i18n/nl_BE.po +++ b/addons/stock_invoice_directly/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/oc.po b/addons/stock_invoice_directly/i18n/oc.po index ba9c5977de0..8559707ec85 100644 --- a/addons/stock_invoice_directly/i18n/oc.po +++ b/addons/stock_invoice_directly/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/pl.po b/addons/stock_invoice_directly/i18n/pl.po index 57af53f12e4..25f7c542f94 100644 --- a/addons/stock_invoice_directly/i18n/pl.po +++ b/addons/stock_invoice_directly/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/pt.po b/addons/stock_invoice_directly/i18n/pt.po index d0f6b0dc0ee..c82aa3b19cf 100644 --- a/addons/stock_invoice_directly/i18n/pt.po +++ b/addons/stock_invoice_directly/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/pt_BR.po b/addons/stock_invoice_directly/i18n/pt_BR.po index 032a3eaecc4..c83791343b2 100644 --- a/addons/stock_invoice_directly/i18n/pt_BR.po +++ b/addons/stock_invoice_directly/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ro.po b/addons/stock_invoice_directly/i18n/ro.po index 5d2201917f0..15cf6cb70c6 100644 --- a/addons/stock_invoice_directly/i18n/ro.po +++ b/addons/stock_invoice_directly/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ru.po b/addons/stock_invoice_directly/i18n/ru.po index 5e58c38f971..df2a60ee987 100644 --- a/addons/stock_invoice_directly/i18n/ru.po +++ b/addons/stock_invoice_directly/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sl.po b/addons/stock_invoice_directly/i18n/sl.po index fbdccdfd998..7a986069b64 100644 --- a/addons/stock_invoice_directly/i18n/sl.po +++ b/addons/stock_invoice_directly/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sq.po b/addons/stock_invoice_directly/i18n/sq.po index 8643ae33fa9..253d0f949ab 100644 --- a/addons/stock_invoice_directly/i18n/sq.po +++ b/addons/stock_invoice_directly/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sr.po b/addons/stock_invoice_directly/i18n/sr.po index c24bcb66020..b74ba226827 100644 --- a/addons/stock_invoice_directly/i18n/sr.po +++ b/addons/stock_invoice_directly/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sr@latin.po b/addons/stock_invoice_directly/i18n/sr@latin.po index 95494a827fe..b8de7e7dedd 100644 --- a/addons/stock_invoice_directly/i18n/sr@latin.po +++ b/addons/stock_invoice_directly/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sv.po b/addons/stock_invoice_directly/i18n/sv.po index 9f1b1ac0df6..54b6e648ae7 100644 --- a/addons/stock_invoice_directly/i18n/sv.po +++ b/addons/stock_invoice_directly/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/tr.po b/addons/stock_invoice_directly/i18n/tr.po index bfaad75162e..c2d7e07167a 100644 --- a/addons/stock_invoice_directly/i18n/tr.po +++ b/addons/stock_invoice_directly/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/uk.po b/addons/stock_invoice_directly/i18n/uk.po index b3d7e55f0ac..9cb79a5c67b 100644 --- a/addons/stock_invoice_directly/i18n/uk.po +++ b/addons/stock_invoice_directly/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/vi.po b/addons/stock_invoice_directly/i18n/vi.po index 2e984de2cdb..45ce47ca970 100644 --- a/addons/stock_invoice_directly/i18n/vi.po +++ b/addons/stock_invoice_directly/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/zh_CN.po b/addons/stock_invoice_directly/i18n/zh_CN.po index 2d0d0311dae..8ea56038569 100644 --- a/addons/stock_invoice_directly/i18n/zh_CN.po +++ b/addons/stock_invoice_directly/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/zh_TW.po b/addons/stock_invoice_directly/i18n/zh_TW.po index da1e13a30e0..28399b97bae 100644 --- a/addons/stock_invoice_directly/i18n/zh_TW.po +++ b/addons/stock_invoice_directly/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:05+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_location/i18n/ar.po b/addons/stock_location/i18n/ar.po index 7da46e6a4fe..1116fc991b8 100644 --- a/addons/stock_location/i18n/ar.po +++ b/addons/stock_location/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/bg.po b/addons/stock_location/i18n/bg.po index fb37d5cdc5c..305a0cbb3e7 100644 --- a/addons/stock_location/i18n/bg.po +++ b/addons/stock_location/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/bs.po b/addons/stock_location/i18n/bs.po index 1e818bd7941..f0625b21aba 100644 --- a/addons/stock_location/i18n/bs.po +++ b/addons/stock_location/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ca.po b/addons/stock_location/i18n/ca.po index 491fc7fd8b8..4dbbae94350 100644 --- a/addons/stock_location/i18n/ca.po +++ b/addons/stock_location/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/cs.po b/addons/stock_location/i18n/cs.po index 341d990a5d3..7ad08f8248c 100644 --- a/addons/stock_location/i18n/cs.po +++ b/addons/stock_location/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/da.po b/addons/stock_location/i18n/da.po index 27f992b2758..4f6b15ae672 100644 --- a/addons/stock_location/i18n/da.po +++ b/addons/stock_location/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/de.po b/addons/stock_location/i18n/de.po index 68f8fc26a76..a42f448a177 100644 --- a/addons/stock_location/i18n/de.po +++ b/addons/stock_location/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/el.po b/addons/stock_location/i18n/el.po index 0335912235b..b816fe9e288 100644 --- a/addons/stock_location/i18n/el.po +++ b/addons/stock_location/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/stock_location/i18n/es.po b/addons/stock_location/i18n/es.po index a09b9f8d87a..a0958376f11 100644 --- a/addons/stock_location/i18n/es.po +++ b/addons/stock_location/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/es_AR.po b/addons/stock_location/i18n/es_AR.po index c3252bb742c..80f6b48dc0c 100644 --- a/addons/stock_location/i18n/es_AR.po +++ b/addons/stock_location/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/es_CL.po b/addons/stock_location/i18n/es_CL.po index d70418811ec..afc69a33a6a 100644 --- a/addons/stock_location/i18n/es_CL.po +++ b/addons/stock_location/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/es_CR.po b/addons/stock_location/i18n/es_CR.po index 2fc11ff2500..12327133bc1 100644 --- a/addons/stock_location/i18n/es_CR.po +++ b/addons/stock_location/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: stock_location diff --git a/addons/stock_location/i18n/et.po b/addons/stock_location/i18n/et.po index 850e2d53e33..aeb3ca404ec 100644 --- a/addons/stock_location/i18n/et.po +++ b/addons/stock_location/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/fi.po b/addons/stock_location/i18n/fi.po index 2dca1430da8..bdfa1255ea4 100644 --- a/addons/stock_location/i18n/fi.po +++ b/addons/stock_location/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/fr.po b/addons/stock_location/i18n/fr.po index 4719a331b96..55eb0b7c2b6 100644 --- a/addons/stock_location/i18n/fr.po +++ b/addons/stock_location/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/gl.po b/addons/stock_location/i18n/gl.po index 6b845ab52ac..9f73fc35ae5 100644 --- a/addons/stock_location/i18n/gl.po +++ b/addons/stock_location/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/hr.po b/addons/stock_location/i18n/hr.po index 4e9fa513d14..0abd5bce36f 100644 --- a/addons/stock_location/i18n/hr.po +++ b/addons/stock_location/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/hu.po b/addons/stock_location/i18n/hu.po index fe2a8137b46..68cbc06a417 100644 --- a/addons/stock_location/i18n/hu.po +++ b/addons/stock_location/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/id.po b/addons/stock_location/i18n/id.po index 76a7cda3bfb..f11f26d9bb4 100644 --- a/addons/stock_location/i18n/id.po +++ b/addons/stock_location/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/it.po b/addons/stock_location/i18n/it.po index 3c65217e6d0..25ba897bf18 100644 --- a/addons/stock_location/i18n/it.po +++ b/addons/stock_location/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ja.po b/addons/stock_location/i18n/ja.po index 30ed58b0607..9b4c3b6596b 100644 --- a/addons/stock_location/i18n/ja.po +++ b/addons/stock_location/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ko.po b/addons/stock_location/i18n/ko.po index cf2d2ddfb16..afe761c7a06 100644 --- a/addons/stock_location/i18n/ko.po +++ b/addons/stock_location/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/lt.po b/addons/stock_location/i18n/lt.po index dfe571624b1..d8a7d55cf3c 100644 --- a/addons/stock_location/i18n/lt.po +++ b/addons/stock_location/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/lv.po b/addons/stock_location/i18n/lv.po index d06765cd0a1..068cca31532 100644 --- a/addons/stock_location/i18n/lv.po +++ b/addons/stock_location/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/mk.po b/addons/stock_location/i18n/mk.po index c8c394c8895..34cd2d3785f 100644 --- a/addons/stock_location/i18n/mk.po +++ b/addons/stock_location/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/mn.po b/addons/stock_location/i18n/mn.po index f5cccafb87f..eb718f8f447 100644 --- a/addons/stock_location/i18n/mn.po +++ b/addons/stock_location/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/nb.po b/addons/stock_location/i18n/nb.po index c0cb2531712..8a9aa8149a6 100644 --- a/addons/stock_location/i18n/nb.po +++ b/addons/stock_location/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/nl.po b/addons/stock_location/i18n/nl.po index 4d5c5477842..19995d2a8d4 100644 --- a/addons/stock_location/i18n/nl.po +++ b/addons/stock_location/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/nl_BE.po b/addons/stock_location/i18n/nl_BE.po index d5bbfc4042d..1dda2577c8e 100644 --- a/addons/stock_location/i18n/nl_BE.po +++ b/addons/stock_location/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/pl.po b/addons/stock_location/i18n/pl.po index a97264cda2f..e6abd60dbf0 100644 --- a/addons/stock_location/i18n/pl.po +++ b/addons/stock_location/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/pt.po b/addons/stock_location/i18n/pt.po index 9ba360c6ce4..a87726f3fb9 100644 --- a/addons/stock_location/i18n/pt.po +++ b/addons/stock_location/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/pt_BR.po b/addons/stock_location/i18n/pt_BR.po index 459ec6ca877..55fcfefd2d9 100644 --- a/addons/stock_location/i18n/pt_BR.po +++ b/addons/stock_location/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ro.po b/addons/stock_location/i18n/ro.po index 7b1fbcf8bdd..0f07556ac57 100644 --- a/addons/stock_location/i18n/ro.po +++ b/addons/stock_location/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ru.po b/addons/stock_location/i18n/ru.po index 9f775dafb2f..c91924bd7a2 100644 --- a/addons/stock_location/i18n/ru.po +++ b/addons/stock_location/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/sl.po b/addons/stock_location/i18n/sl.po index 5b50a66c01a..dc9adb7f578 100644 --- a/addons/stock_location/i18n/sl.po +++ b/addons/stock_location/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/sq.po b/addons/stock_location/i18n/sq.po index 93c3c47780b..8d2ad3075cf 100644 --- a/addons/stock_location/i18n/sq.po +++ b/addons/stock_location/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:01+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/sv.po b/addons/stock_location/i18n/sv.po index 1f9405ae528..9de58f878f4 100644 --- a/addons/stock_location/i18n/sv.po +++ b/addons/stock_location/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/th.po b/addons/stock_location/i18n/th.po index 023eb254a45..532cab085cf 100644 --- a/addons/stock_location/i18n/th.po +++ b/addons/stock_location/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/tlh.po b/addons/stock_location/i18n/tlh.po index 6e89d7bc99b..682eb0c9bb1 100644 --- a/addons/stock_location/i18n/tlh.po +++ b/addons/stock_location/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/tr.po b/addons/stock_location/i18n/tr.po index c646049acc4..cafbf42618f 100644 --- a/addons/stock_location/i18n/tr.po +++ b/addons/stock_location/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/uk.po b/addons/stock_location/i18n/uk.po index 79394a530b2..a072106846d 100644 --- a/addons/stock_location/i18n/uk.po +++ b/addons/stock_location/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/vi.po b/addons/stock_location/i18n/vi.po index 1b55767f645..e68313e4141 100644 --- a/addons/stock_location/i18n/vi.po +++ b/addons/stock_location/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/zh_CN.po b/addons/stock_location/i18n/zh_CN.po index 599a92d5c60..62ba33797e3 100644 --- a/addons/stock_location/i18n/zh_CN.po +++ b/addons/stock_location/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/zh_TW.po b/addons/stock_location/i18n/zh_TW.po index b75354877e1..0ffe93cd48d 100644 --- a/addons/stock_location/i18n/zh_TW.po +++ b/addons/stock_location/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:23+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:02+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_no_autopicking/i18n/ar.po b/addons/stock_no_autopicking/i18n/ar.po index 75a69f29781..3ffa715ddec 100644 --- a/addons/stock_no_autopicking/i18n/ar.po +++ b/addons/stock_no_autopicking/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/bg.po b/addons/stock_no_autopicking/i18n/bg.po index 5a54b0702a7..420b91a47db 100644 --- a/addons/stock_no_autopicking/i18n/bg.po +++ b/addons/stock_no_autopicking/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/bs.po b/addons/stock_no_autopicking/i18n/bs.po index d7019e60af2..d8ad06c5831 100644 --- a/addons/stock_no_autopicking/i18n/bs.po +++ b/addons/stock_no_autopicking/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ca.po b/addons/stock_no_autopicking/i18n/ca.po index 8b18478ebb0..b0f1e969e1b 100644 --- a/addons/stock_no_autopicking/i18n/ca.po +++ b/addons/stock_no_autopicking/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/cs.po b/addons/stock_no_autopicking/i18n/cs.po index 3fcec0d67c5..1bed8667ffb 100644 --- a/addons/stock_no_autopicking/i18n/cs.po +++ b/addons/stock_no_autopicking/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/da.po b/addons/stock_no_autopicking/i18n/da.po index ed043976d56..1be51c1bf63 100644 --- a/addons/stock_no_autopicking/i18n/da.po +++ b/addons/stock_no_autopicking/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/de.po b/addons/stock_no_autopicking/i18n/de.po index 0e4d7cfd46c..977d163b293 100644 --- a/addons/stock_no_autopicking/i18n/de.po +++ b/addons/stock_no_autopicking/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/el.po b/addons/stock_no_autopicking/i18n/el.po index ba0aa200bfb..2262d4c8839 100644 --- a/addons/stock_no_autopicking/i18n/el.po +++ b/addons/stock_no_autopicking/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/stock_no_autopicking/i18n/es.po b/addons/stock_no_autopicking/i18n/es.po index 43e8a5d64f7..bdeb1929444 100644 --- a/addons/stock_no_autopicking/i18n/es.po +++ b/addons/stock_no_autopicking/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/es_AR.po b/addons/stock_no_autopicking/i18n/es_AR.po index f83ec538549..728e2378512 100644 --- a/addons/stock_no_autopicking/i18n/es_AR.po +++ b/addons/stock_no_autopicking/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/es_CL.po b/addons/stock_no_autopicking/i18n/es_CL.po index de26c86704a..a149515cbcd 100644 --- a/addons/stock_no_autopicking/i18n/es_CL.po +++ b/addons/stock_no_autopicking/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/es_CR.po b/addons/stock_no_autopicking/i18n/es_CR.po index 5cc0350b38e..e13e8ab5cf7 100644 --- a/addons/stock_no_autopicking/i18n/es_CR.po +++ b/addons/stock_no_autopicking/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/et.po b/addons/stock_no_autopicking/i18n/et.po index a3983420087..6b6c66ca864 100644 --- a/addons/stock_no_autopicking/i18n/et.po +++ b/addons/stock_no_autopicking/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/fi.po b/addons/stock_no_autopicking/i18n/fi.po index c4a69cbb9eb..04c866e88d8 100644 --- a/addons/stock_no_autopicking/i18n/fi.po +++ b/addons/stock_no_autopicking/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/fr.po b/addons/stock_no_autopicking/i18n/fr.po index 3ae7b06a02c..6f67e88a694 100644 --- a/addons/stock_no_autopicking/i18n/fr.po +++ b/addons/stock_no_autopicking/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/gl.po b/addons/stock_no_autopicking/i18n/gl.po index 793649f49e1..6c5552fd062 100644 --- a/addons/stock_no_autopicking/i18n/gl.po +++ b/addons/stock_no_autopicking/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/hr.po b/addons/stock_no_autopicking/i18n/hr.po index 0bb3091f6f6..797187ecd79 100644 --- a/addons/stock_no_autopicking/i18n/hr.po +++ b/addons/stock_no_autopicking/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/hu.po b/addons/stock_no_autopicking/i18n/hu.po index cdd3fe3d170..6abe41f1a01 100644 --- a/addons/stock_no_autopicking/i18n/hu.po +++ b/addons/stock_no_autopicking/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/id.po b/addons/stock_no_autopicking/i18n/id.po index 4d05f6e4885..6a5c2a47040 100644 --- a/addons/stock_no_autopicking/i18n/id.po +++ b/addons/stock_no_autopicking/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/it.po b/addons/stock_no_autopicking/i18n/it.po index 6668919d30b..6211083dc0d 100644 --- a/addons/stock_no_autopicking/i18n/it.po +++ b/addons/stock_no_autopicking/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ja.po b/addons/stock_no_autopicking/i18n/ja.po index 980a12cf6f8..0c7ad5b567a 100644 --- a/addons/stock_no_autopicking/i18n/ja.po +++ b/addons/stock_no_autopicking/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ko.po b/addons/stock_no_autopicking/i18n/ko.po index d4ade0e3dbb..14658b845fe 100644 --- a/addons/stock_no_autopicking/i18n/ko.po +++ b/addons/stock_no_autopicking/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/lt.po b/addons/stock_no_autopicking/i18n/lt.po index 6626bd7d94b..35cd4860d55 100644 --- a/addons/stock_no_autopicking/i18n/lt.po +++ b/addons/stock_no_autopicking/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/lv.po b/addons/stock_no_autopicking/i18n/lv.po index 897c8dd34b6..c0703c195e0 100644 --- a/addons/stock_no_autopicking/i18n/lv.po +++ b/addons/stock_no_autopicking/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/mk.po b/addons/stock_no_autopicking/i18n/mk.po index c9747ea8531..00f4c9472c5 100644 --- a/addons/stock_no_autopicking/i18n/mk.po +++ b/addons/stock_no_autopicking/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/mn.po b/addons/stock_no_autopicking/i18n/mn.po index 6a32de9b128..2e11d26fe00 100644 --- a/addons/stock_no_autopicking/i18n/mn.po +++ b/addons/stock_no_autopicking/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/nl.po b/addons/stock_no_autopicking/i18n/nl.po index eb9df1b0855..6912c53881f 100644 --- a/addons/stock_no_autopicking/i18n/nl.po +++ b/addons/stock_no_autopicking/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/nl_BE.po b/addons/stock_no_autopicking/i18n/nl_BE.po index d972dc310df..3946345d8e5 100644 --- a/addons/stock_no_autopicking/i18n/nl_BE.po +++ b/addons/stock_no_autopicking/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/oc.po b/addons/stock_no_autopicking/i18n/oc.po index 8fbde6c72e9..9bb12b2e39d 100644 --- a/addons/stock_no_autopicking/i18n/oc.po +++ b/addons/stock_no_autopicking/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/pl.po b/addons/stock_no_autopicking/i18n/pl.po index 1db1cac67dd..79a16a07642 100644 --- a/addons/stock_no_autopicking/i18n/pl.po +++ b/addons/stock_no_autopicking/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/pt.po b/addons/stock_no_autopicking/i18n/pt.po index 94b78f64c47..2f711234429 100644 --- a/addons/stock_no_autopicking/i18n/pt.po +++ b/addons/stock_no_autopicking/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/pt_BR.po b/addons/stock_no_autopicking/i18n/pt_BR.po index 5d067355996..3e3cf939ca4 100644 --- a/addons/stock_no_autopicking/i18n/pt_BR.po +++ b/addons/stock_no_autopicking/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ro.po b/addons/stock_no_autopicking/i18n/ro.po index 7669d37885d..ef4e9c0ab07 100644 --- a/addons/stock_no_autopicking/i18n/ro.po +++ b/addons/stock_no_autopicking/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ru.po b/addons/stock_no_autopicking/i18n/ru.po index 03662b2a565..5f0d6a0a2d2 100644 --- a/addons/stock_no_autopicking/i18n/ru.po +++ b/addons/stock_no_autopicking/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sl.po b/addons/stock_no_autopicking/i18n/sl.po index 4e208e84f19..6584ec838c9 100644 --- a/addons/stock_no_autopicking/i18n/sl.po +++ b/addons/stock_no_autopicking/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sq.po b/addons/stock_no_autopicking/i18n/sq.po index a025f27a3ab..930f25ae977 100644 --- a/addons/stock_no_autopicking/i18n/sq.po +++ b/addons/stock_no_autopicking/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sr@latin.po b/addons/stock_no_autopicking/i18n/sr@latin.po index 3d413c36959..e9b33a11b03 100644 --- a/addons/stock_no_autopicking/i18n/sr@latin.po +++ b/addons/stock_no_autopicking/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sv.po b/addons/stock_no_autopicking/i18n/sv.po index 157be844a7a..c6eebc9c9c5 100644 --- a/addons/stock_no_autopicking/i18n/sv.po +++ b/addons/stock_no_autopicking/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/tlh.po b/addons/stock_no_autopicking/i18n/tlh.po index 1582b95cdc6..5ba3452ebea 100644 --- a/addons/stock_no_autopicking/i18n/tlh.po +++ b/addons/stock_no_autopicking/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/tr.po b/addons/stock_no_autopicking/i18n/tr.po index 5422854063d..1c7f75ef7d7 100644 --- a/addons/stock_no_autopicking/i18n/tr.po +++ b/addons/stock_no_autopicking/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/uk.po b/addons/stock_no_autopicking/i18n/uk.po index 937b7d480ea..1714d328646 100644 --- a/addons/stock_no_autopicking/i18n/uk.po +++ b/addons/stock_no_autopicking/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/vi.po b/addons/stock_no_autopicking/i18n/vi.po index ecfd457a4e8..b1c588fa3f6 100644 --- a/addons/stock_no_autopicking/i18n/vi.po +++ b/addons/stock_no_autopicking/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/zh_CN.po b/addons/stock_no_autopicking/i18n/zh_CN.po index 885847658e4..82d7509e3c8 100644 --- a/addons/stock_no_autopicking/i18n/zh_CN.po +++ b/addons/stock_no_autopicking/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:20+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/zh_TW.po b/addons/stock_no_autopicking/i18n/zh_TW.po index 2e04c78113c..f4725bc37fc 100644 --- a/addons/stock_no_autopicking/i18n/zh_TW.po +++ b/addons/stock_no_autopicking/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:19+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 06:58+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/subscription/__openerp__.py b/addons/subscription/__openerp__.py index b301525eb42..5f8a1d1338b 100644 --- a/addons/subscription/__openerp__.py +++ b/addons/subscription/__openerp__.py @@ -37,7 +37,7 @@ e.g. To have an invoice generated automatically periodically: above. Specify the interval information and partner to be invoice. """, 'author': 'OpenERP SA', - 'depends': [], + 'depends': ['base'], 'data': ['security/subcription_security.xml', 'security/ir.model.access.csv', 'subscription_view.xml'], 'demo': ['subscription_demo.xml',], 'installable': True, diff --git a/addons/subscription/i18n/ar.po b/addons/subscription/i18n/ar.po index 8aca47eeeba..df3936aa1c0 100644 --- a/addons/subscription/i18n/ar.po +++ b/addons/subscription/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/bg.po b/addons/subscription/i18n/bg.po index 3fb5f1e2db1..e1fabf0f141 100644 --- a/addons/subscription/i18n/bg.po +++ b/addons/subscription/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/bs.po b/addons/subscription/i18n/bs.po index 9d3c75ee01a..99451166d2b 100644 --- a/addons/subscription/i18n/bs.po +++ b/addons/subscription/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ca.po b/addons/subscription/i18n/ca.po index ad10d976e60..d4fb0d1743b 100644 --- a/addons/subscription/i18n/ca.po +++ b/addons/subscription/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/cs.po b/addons/subscription/i18n/cs.po index 9eddd45cee6..565b4fa7a3c 100644 --- a/addons/subscription/i18n/cs.po +++ b/addons/subscription/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/da.po b/addons/subscription/i18n/da.po index 3b670856285..724421f6d90 100644 --- a/addons/subscription/i18n/da.po +++ b/addons/subscription/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/de.po b/addons/subscription/i18n/de.po index 848d9ad44ca..77cc7114a4a 100644 --- a/addons/subscription/i18n/de.po +++ b/addons/subscription/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/es.po b/addons/subscription/i18n/es.po index 6933499ab55..811d6bd1626 100644 --- a/addons/subscription/i18n/es.po +++ b/addons/subscription/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/es_AR.po b/addons/subscription/i18n/es_AR.po index 2c2507b7fe0..d90b8777250 100644 --- a/addons/subscription/i18n/es_AR.po +++ b/addons/subscription/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/es_CR.po b/addons/subscription/i18n/es_CR.po index da80fd73bf6..4785088391c 100644 --- a/addons/subscription/i18n/es_CR.po +++ b/addons/subscription/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: \n" #. module: subscription diff --git a/addons/subscription/i18n/et.po b/addons/subscription/i18n/et.po index 4640a315cf5..235960cd91b 100644 --- a/addons/subscription/i18n/et.po +++ b/addons/subscription/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/fi.po b/addons/subscription/i18n/fi.po index 7feb611fc84..2583f94ab74 100644 --- a/addons/subscription/i18n/fi.po +++ b/addons/subscription/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/fr.po b/addons/subscription/i18n/fr.po index 9cbfc5de448..e71e9abd189 100644 --- a/addons/subscription/i18n/fr.po +++ b/addons/subscription/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/gl.po b/addons/subscription/i18n/gl.po index 05a88cfe980..5860d6f56df 100644 --- a/addons/subscription/i18n/gl.po +++ b/addons/subscription/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/hr.po b/addons/subscription/i18n/hr.po index e8053b17d33..2dec6e3ac12 100644 --- a/addons/subscription/i18n/hr.po +++ b/addons/subscription/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/hu.po b/addons/subscription/i18n/hu.po index 4f8e7043b8a..4a8c5142fdf 100644 --- a/addons/subscription/i18n/hu.po +++ b/addons/subscription/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/id.po b/addons/subscription/i18n/id.po index 4d7baf409c5..00e0e8ee898 100644 --- a/addons/subscription/i18n/id.po +++ b/addons/subscription/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/it.po b/addons/subscription/i18n/it.po index 01fad79be03..96fe04d0066 100644 --- a/addons/subscription/i18n/it.po +++ b/addons/subscription/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ja.po b/addons/subscription/i18n/ja.po index 333828c50d7..2b17fcd55cf 100644 --- a/addons/subscription/i18n/ja.po +++ b/addons/subscription/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ko.po b/addons/subscription/i18n/ko.po index 0f5813f67b5..8a09aae3a7b 100644 --- a/addons/subscription/i18n/ko.po +++ b/addons/subscription/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/lt.po b/addons/subscription/i18n/lt.po index 7bd6b466ebc..3524c939994 100644 --- a/addons/subscription/i18n/lt.po +++ b/addons/subscription/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/mk.po b/addons/subscription/i18n/mk.po index 346c8cca048..01eea44adb3 100644 --- a/addons/subscription/i18n/mk.po +++ b/addons/subscription/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/nl.po b/addons/subscription/i18n/nl.po index 448238ea947..c303b1806aa 100644 --- a/addons/subscription/i18n/nl.po +++ b/addons/subscription/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/nl_BE.po b/addons/subscription/i18n/nl_BE.po index 3d6426595e0..9bf2b42b07b 100644 --- a/addons/subscription/i18n/nl_BE.po +++ b/addons/subscription/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/pl.po b/addons/subscription/i18n/pl.po index ad9164ba339..1d17bd0365b 100644 --- a/addons/subscription/i18n/pl.po +++ b/addons/subscription/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/pt.po b/addons/subscription/i18n/pt.po index b04a478ede5..4a2ba257629 100644 --- a/addons/subscription/i18n/pt.po +++ b/addons/subscription/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/pt_BR.po b/addons/subscription/i18n/pt_BR.po index b2a4e0df448..53094aad85b 100644 --- a/addons/subscription/i18n/pt_BR.po +++ b/addons/subscription/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ro.po b/addons/subscription/i18n/ro.po index 4e142ad7bac..d3a354cda43 100644 --- a/addons/subscription/i18n/ro.po +++ b/addons/subscription/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ru.po b/addons/subscription/i18n/ru.po index aca25e3ea9c..3ecd99f78d9 100644 --- a/addons/subscription/i18n/ru.po +++ b/addons/subscription/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/sl.po b/addons/subscription/i18n/sl.po index b6e2c9755d9..c012f590d2e 100644 --- a/addons/subscription/i18n/sl.po +++ b/addons/subscription/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/sq.po b/addons/subscription/i18n/sq.po index 9e6d8c69085..987c1166cc4 100644 --- a/addons/subscription/i18n/sq.po +++ b/addons/subscription/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/sv.po b/addons/subscription/i18n/sv.po index e580fe9f701..9e1698def1e 100644 --- a/addons/subscription/i18n/sv.po +++ b/addons/subscription/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/tlh.po b/addons/subscription/i18n/tlh.po index 45a4c2b5b4f..03d4dd44b6d 100644 --- a/addons/subscription/i18n/tlh.po +++ b/addons/subscription/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/tr.po b/addons/subscription/i18n/tr.po index bd91926c9d1..2d3d43056df 100644 --- a/addons/subscription/i18n/tr.po +++ b/addons/subscription/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/uk.po b/addons/subscription/i18n/uk.po index f59fb5b18c7..40d44702649 100644 --- a/addons/subscription/i18n/uk.po +++ b/addons/subscription/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/vi.po b/addons/subscription/i18n/vi.po index 8fe47701da1..101f34bba6e 100644 --- a/addons/subscription/i18n/vi.po +++ b/addons/subscription/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/zh_CN.po b/addons/subscription/i18n/zh_CN.po index ab614d9c761..dcf261a89f7 100644 --- a/addons/subscription/i18n/zh_CN.po +++ b/addons/subscription/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:26+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/zh_TW.po b/addons/subscription/i18n/zh_TW.po index 7b60020ebb6..0ddc6be1b3b 100644 --- a/addons/subscription/i18n/zh_TW.po +++ b/addons/subscription/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 06:25+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 05:55+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/survey/__init__.py b/addons/survey/__init__.py index 065d64a87e2..0f961ebd110 100644 --- a/addons/survey/__init__.py +++ b/addons/survey/__init__.py @@ -20,7 +20,5 @@ ############################################################################## import survey +import controllers import wizard -import report - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/survey/__openerp__.py b/addons/survey/__openerp__.py index d5e4c3af10c..72b11b0d78b 100644 --- a/addons/survey/__openerp__.py +++ b/addons/survey/__openerp__.py @@ -21,44 +21,39 @@ { 'name': 'Survey', - 'version': '1.0', - 'category': 'Tools', + 'version': '2.0', + 'category': 'Marketing', 'description': """ -This module is used for surveying. -================================== +Create beautiful web surveys and visualize answers +================================================== It depends on the answers or reviews of some questions by different users. A -survey may have multiple pages. Each page may contain multiple questions and each -question may have multiple answers. Different users may give different answers of -question and according to that survey is done. Partners are also sent mails with -user name and password for the invitation of the survey. +survey may have multiple pages. Each page may contain multiple questions and +each question may have multiple answers. Different users may give different +answers of question and according to that survey is done. Partners are also +sent mails with personal token for the invitation of the survey. """, + 'summary': 'Create surveys, collect answers and print statistics', 'author': 'OpenERP SA', - 'depends': ['mail'], + 'website': 'https://www.openerp.com/apps/survey/', + 'depends': ['email_template', 'mail', 'website', 'marketing'], 'data': [ - 'survey_report.xml', - 'survey_data.xml', - 'wizard/survey_selection.xml', - 'wizard/survey_answer.xml', 'security/survey_security.xml', 'security/ir.model.access.csv', - 'survey_view.xml', - 'wizard/survey_print_statistics.xml', - 'wizard/survey_print_answer.xml', - 'wizard/survey_browse_answer.xml', - 'wizard/survey_print.xml', - 'wizard/survey_send_invitation.xml' - ], - 'demo': ['survey_demo.xml'], - 'test': [ - 'test/draft2open2close_survey.yml', - 'test/draft2open2close_request.yml', - 'test/survey_question_type.yml', - 'test/survey_report.yml', + 'views/survey_views.xml', + 'views/survey_templates.xml', + 'views/survey_result.xml', + 'wizard/survey_email_compose_message.xml', + 'data/survey_stages.xml', + 'data/survey_cron.xml' ], + 'demo': ['data/survey_demo_user.xml', + 'data/survey_demo_feedback.xml', + 'data/survey.user_input.csv', + 'data/survey.user_input_line.csv'], 'installable': True, 'auto_install': False, - 'images': ['images/survey_answers.jpeg','images/survey_pages.jpeg','images/surveys.jpeg'], - 'css': ['static/src/css/survey.css','static/css/survey.css'], + 'application': True, + 'sequence': 10, + 'images': [], } -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/survey/controllers/__init__.py b/addons/survey/controllers/__init__.py new file mode 100644 index 00000000000..672df6ec1f9 --- /dev/null +++ b/addons/survey/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-TODAY OpenERP S.A. +# +# 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 . +# +############################################################################## + +import main diff --git a/addons/survey/controllers/main.py b/addons/survey/controllers/main.py new file mode 100644 index 00000000000..a937cd0e826 --- /dev/null +++ b/addons/survey/controllers/main.py @@ -0,0 +1,356 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013-Today OpenERP SA (). +# +# 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 . +# +############################################################################## + +import json +import logging +import werkzeug +from datetime import datetime +from math import ceil + +from openerp import SUPERUSER_ID +from openerp.addons.web import http +from openerp.addons.web.http import request +from openerp.tools.misc import DEFAULT_SERVER_DATETIME_FORMAT as DTF +from openerp.tools.safe_eval import safe_eval + + +_logger = logging.getLogger(__name__) + + +class WebsiteSurvey(http.Controller): + + ## HELPER METHODS ## + + def _check_bad_cases(self, cr, uid, request, survey_obj, survey, user_input_obj, context=None): + # In case of bad survey, redirect to surveys list + if survey_obj.exists(cr, SUPERUSER_ID, survey.id, context=context) == []: + return werkzeug.utils.redirect("/survey/") + + # In case of auth required, block public user + if survey.auth_required and uid == request.registry['website'].get_public_user(cr, uid, context): + return request.website.render("website.403") + + # In case of non open surveys + if survey.stage_id.closed: + return request.website.render("survey.notopen") + + # If there is no pages + if not survey.page_ids: + return request.website.render("survey.nopages") + + # Everything seems to be ok + return None + + def _check_deadline(self, cr, uid, user_input, context=None): + '''Prevent opening of the survey if the deadline has turned out + + ! This will NOT disallow access to users who have already partially filled the survey !''' + if user_input.deadline: + dt_deadline = datetime.strptime(user_input.deadline, DTF) + dt_now = datetime.now() + if dt_now > dt_deadline: # survey is not open anymore + return request.website.render("survey.notopen") + + return None + + ## ROUTES HANDLERS ## + + # Survey start + @http.route(['/survey/start/', + '/survey/start//'], + type='http', auth='public', multilang=True, website=True) + def start_survey(self, survey, token=None, **post): + cr, uid, context = request.cr, request.uid, request.context + survey_obj = request.registry['survey.survey'] + user_input_obj = request.registry['survey.user_input'] + + # Test mode + if token and token == "phantom": + _logger.info("[survey] Phantom mode") + user_input_id = user_input_obj.create(cr, uid, {'survey_id': survey.id, 'test_entry': True}, context=context) + user_input = user_input_obj.browse(cr, uid, [user_input_id], context=context)[0] + data = {'survey': survey, 'page': None, 'token': user_input.token} + return request.website.render('survey.survey_init', data) + # END Test mode + + # Controls if the survey can be displayed + errpage = self._check_bad_cases(cr, uid, request, survey_obj, survey, user_input_obj, context=context) + if errpage: + return errpage + + # Manual surveying + if not token: + user_input_id = user_input_obj.create(cr, uid, {'survey_id': survey.id}, context=context) + user_input = user_input_obj.browse(cr, uid, [user_input_id], context=context)[0] + else: + try: + user_input_id = user_input_obj.search(cr, uid, [('token', '=', token)], context=context)[0] + except IndexError: # Invalid token + return request.website.render("website.403") + else: + user_input = user_input_obj.browse(cr, uid, [user_input_id], context=context)[0] + + # Do not open expired survey + errpage = self._check_deadline(cr, uid, user_input, context=context) + if errpage: + return errpage + + # Select the right page + if user_input.state == 'new': # Intro page + data = {'survey': survey, 'page': None, 'token': user_input.token} + return request.website.render('survey.survey_init', data) + else: + return request.redirect('/survey/fill/%s/%s' % (survey.id, user_input.token)) + + # Survey displaying + @http.route(['/survey/fill//', + '/survey/fill///'], + type='http', auth='public', multilang=True, website=True) + def fill_survey(self, survey, token, prev=None, **post): + '''Display and validates a survey''' + cr, uid, context = request.cr, request.uid, request.context + survey_obj = request.registry['survey.survey'] + user_input_obj = request.registry['survey.user_input'] + + # Controls if the survey can be displayed + errpage = self._check_bad_cases(cr, uid, request, survey_obj, survey, user_input_obj, context=context) + if errpage: + return errpage + + # Load the user_input + try: + user_input_id = user_input_obj.search(cr, uid, [('token', '=', token)])[0] + except IndexError: # Invalid token + return request.website.render("website.403") + else: + user_input = user_input_obj.browse(cr, uid, [user_input_id], context=context)[0] + + # Do not display expired survey (even if some pages have already been + # displayed -- There's a time for everything!) + errpage = self._check_deadline(cr, uid, user_input, context=context) + if errpage: + return errpage + + # Select the right page + if user_input.state == 'new': # First page + page, page_nr, last = survey_obj.next_page(cr, uid, user_input, 0, go_back=False, context=context) + data = {'survey': survey, 'page': page, 'page_nr': page_nr, 'token': user_input.token} + if last: + data.update({'last': True}) + return request.website.render('survey.survey', data) + elif user_input.state == 'done': # Display success message + return request.website.render('survey.sfinished', {'survey': survey, + 'token': token, + 'user_input': user_input}) + elif user_input.state == 'skip': + flag = (True if prev and prev == 'prev' else False) + page, page_nr, last = survey_obj.next_page(cr, uid, user_input, user_input.last_displayed_page_id.id, go_back=flag, context=context) + data = {'survey': survey, 'page': page, 'page_nr': page_nr, 'token': user_input.token} + if last: + data.update({'last': True}) + return request.website.render('survey.survey', data) + else: + return request.website.render("website.403") + + # AJAX prefilling of a survey + @http.route(['/survey/prefill//', + '/survey/prefill///'], + type='http', auth='public', multilang=True, website=True) + def prefill(self, survey, token, page=None, **post): + cr, uid, context = request.cr, request.uid, request.context + user_input_line_obj = request.registry['survey.user_input_line'] + ret = {} + + # Fetch previous answers + if page: + ids = user_input_line_obj.search(cr, uid, [('user_input_id.token', '=', token), ('page_id', '=', page.id)], context=context) + else: + ids = user_input_line_obj.search(cr, uid, [('user_input_id.token', '=', token)], context=context) + previous_answers = user_input_line_obj.browse(cr, uid, ids, context=context) + + # Return non empty answers in a JSON compatible format + for answer in previous_answers: + if not answer.skipped: + answer_tag = '%s_%s_%s' % (answer.survey_id.id, answer.page_id.id, answer.question_id.id) + answer_value = None + if answer.answer_type == 'free_text': + answer_value = answer.value_free_text + elif answer.answer_type == 'text' and answer.question_id.type == 'textbox': + answer_value = answer.value_text + elif answer.answer_type == 'text' and answer.question_id.type != 'textbox': + # here come comment answers for matrices, simple choice and multiple choice + answer_tag = "%s_%s" % (answer_tag, 'comment') + answer_value = answer.value_text + elif answer.answer_type == 'number': + answer_value = answer.value_number.__str__() + elif answer.answer_type == 'date': + answer_value = answer.value_date + elif answer.answer_type == 'suggestion' and not answer.value_suggested_row: + answer_value = answer.value_suggested.id + elif answer.answer_type == 'suggestion' and answer.value_suggested_row: + answer_tag = "%s_%s" % (answer_tag, answer.value_suggested_row.id) + answer_value = answer.value_suggested.id + if answer_value: + dict_soft_update(ret, answer_tag, answer_value) + else: + _logger.warning("[survey] No answer has been found for question %s marked as non skipped" % answer_tag) + return json.dumps(ret) + + # AJAX submission of a page + @http.route(['/survey/submit/'], + type='http', auth='public', multilang=True, website=True) + def submit(self, survey, **post): + _logger.debug('Incoming data: %s', post) + page_id = int(post['page_id']) + cr, uid, context = request.cr, request.uid, request.context + survey_obj = request.registry['survey.survey'] + questions_obj = request.registry['survey.question'] + questions_ids = questions_obj.search(cr, uid, [('page_id', '=', page_id)], context=context) + questions = questions_obj.browse(cr, uid, questions_ids, context=context) + + # Answer validation + errors = {} + for question in questions: + answer_tag = "%s_%s_%s" % (survey.id, page_id, question.id) + errors.update(questions_obj.validate_question(cr, uid, question, post, answer_tag, context=context)) + + ret = {} + if (len(errors) != 0): + # Return errors messages to webpage + ret['errors'] = errors + else: + # Store answers into database + user_input_obj = request.registry['survey.user_input'] + + user_input_line_obj = request.registry['survey.user_input_line'] + try: + user_input_id = user_input_obj.search(cr, uid, [('token', '=', post['token'])], context=context)[0] + except KeyError: # Invalid token + return request.website.render("website.403") + for question in questions: + answer_tag = "%s_%s_%s" % (survey.id, page_id, question.id) + user_input_line_obj.save_lines(cr, uid, user_input_id, question, post, answer_tag, context=context) + + user_input = user_input_obj.browse(cr, uid, user_input_id, context=context) + go_back = post['button_submit'] == 'previous' + next_page, _, last = survey_obj.next_page(cr, uid, user_input, page_id, go_back=go_back, context=context) + vals = {'last_displayed_page_id': page_id} + if next_page is None and not go_back: + vals.update({'state': 'done'}) + else: + vals.update({'state': 'skip'}) + user_input_obj.write(cr, uid, user_input_id, vals, context=context) + ret['redirect'] = '/survey/fill/%s/%s' % (survey.id, post['token']) + if go_back: + ret['redirect'] += '/prev' + return json.dumps(ret) + + # Printing routes + @http.route(['/survey/print/', + '/survey/print//'], + type='http', auth='user', multilang=True, website=True) + def print_survey(self, survey, token=None, **post): + '''Display an survey in printable view; if is set, it will + grab the answers of the user_input_id that has .''' + return request.website.render('survey.survey_print', + {'survey': survey, + 'token': token, + 'page_nr': 0}) + + @http.route(['/survey/results/'], + type='http', auth='user', multilang=True, website=True) + def survey_reporting(self, survey, token=None, **post): + '''Display survey Results & Statistics for given survey.''' + result_template, current_filters, filter_display_data, filter_finish = 'survey.result', [], [], False + survey_obj = request.registry['survey.survey'] + if not survey.user_input_ids or not [input_id.id for input_id in survey.user_input_ids if input_id.state != 'new']: + result_template = 'survey.no_result' + if 'finished' in post: + post.pop('finished') + filter_finish = True + if post or filter_finish: + filter_data = self.get_filter_data(post) + current_filters = survey_obj.filter_input_ids(request.cr, request.uid, filter_data, filter_finish, context=request.context) + filter_display_data = survey_obj.get_filter_display_data(request.cr, request.uid, filter_data, context=request.context) + return request.website.render(result_template, + {'survey_dict': self.prepare_result_dict(survey, current_filters), + 'page_range': self.page_range, + 'current_filters': current_filters, + 'filter_display_data': filter_display_data, + 'filter_finish': filter_finish + }) + + def prepare_result_dict(self,survey, current_filters=[]): + """Returns dictionary having values for rendering template""" + survey_obj = request.registry['survey.survey'] + result = {'survey':survey, 'page_ids': []} + for page in survey.page_ids: + page_dict = {'page': page, 'question_ids': []} + for question in page.question_ids: + question_dict = {'question':question, 'input_summary':survey_obj.get_input_summary(request.cr, request.uid, question, current_filters, context=request.context), 'prepare_result':survey_obj.prepare_result(request.cr, request.uid, question, current_filters, context=request.context), 'graph_data': self.get_graph_data(question, current_filters)} + page_dict['question_ids'].append(question_dict) + result['page_ids'].append(page_dict) + return result + + def get_filter_data(self, post): + """Returns data used for filtering the result""" + filters = [] + for ids in post: + #if user add some random data in query URI, ignore it + try: + row_id, answer_id = ids.split(',') + filters.append({'row_id': int(row_id), 'answer_id': int(answer_id)}) + except: + return filters + return filters + + def page_range(self, total_record, limit): + '''Returns number of pages required for pagination''' + total = ceil(total_record / float(limit)) + return range(1, int(total + 1)) + + def get_graph_data(self, question, current_filters=[]): + '''Returns formatted data required by graph library on basis of filter''' + survey_obj = request.registry['survey.survey'] + result = [] + if question.type == 'multiple_choice': + result.append({'key': str(question.question), + 'values': survey_obj.prepare_result(request.cr, request.uid, question, current_filters, context=request.context)}) + if question.type == 'simple_choice': + result = survey_obj.prepare_result(request.cr, request.uid, question, current_filters, context=request.context) + if question.type == 'matrix': + data = survey_obj.prepare_result(request.cr, request.uid, question, current_filters, context=request.context) + for answer in data['answers']: + values = [] + for res in data['result']: + if res[1] == answer: + values.append({'text': data['rows'][res[0]], 'count': data['result'][res]}) + result.append({'key': data['answers'].get(answer), 'values': values}) + return json.dumps(result) + +def dict_soft_update(dictionary, key, value): + ''' Insert the pair : into the . If is + already present, this function will append to the list of + existing data (instead of erasing it) ''' + if key in dictionary: + dictionary[key].append(value) + else: + dictionary.update({key: [value]}) diff --git a/addons/survey/data/survey.user_input.csv b/addons/survey/data/survey.user_input.csv new file mode 100644 index 00000000000..7af2096bb88 --- /dev/null +++ b/addons/survey/data/survey.user_input.csv @@ -0,0 +1,7 @@ +id,survey_id:id,state +ui1,feedback_form,done +ui2,feedback_form,done +ui3,feedback_form,done +ui4,feedback_form,skip +ui5,feedback_form,skip +ui6,feedback_form,new diff --git a/addons/survey/data/survey.user_input_line.csv b/addons/survey/data/survey.user_input_line.csv new file mode 100644 index 00000000000..58b67969d5a --- /dev/null +++ b/addons/survey/data/survey.user_input_line.csv @@ -0,0 +1,125 @@ +id,user_input_id:id,question_id:id,skipped,answer_type,value_text,value_number,value_date,value_free_text,value_suggested:id,value_suggested_row:id +uil_1,ui1,feedback_1_1,,suggestion,,,,,choice_1_1_1, +uil_2,ui1,feedback_1_2,,suggestion,,,,,choice_1_2_2, +uil_3,ui1,feedback_2_1,,suggestion,,,,,fcol_2_1_2,frow_2_1_1 +uil_4,ui1,feedback_2_1,,suggestion,,,,,fcol_2_1_3,frow_2_1_2 +uil_5,ui1,feedback_2_1,,suggestion,,,,,fcol_2_1_4,frow_2_1_3 +uil_6,ui1,feedback_2_1,,suggestion,,,,,fcol_2_1_1,frow_2_1_4 +uil_7,ui1,feedback_2_1,,suggestion,,,,,fcol_2_1_2,frow_2_1_5 +uil_8,ui1,feedback_2_2,,suggestion,,,,,fcol_2_2_4,frow_2_2_1 +uil_9,ui1,feedback_2_2,,suggestion,,,,,fcol_2_2_1,frow_2_2_2 +uil_10,ui1,feedback_2_2,,suggestion,,,,,fcol_2_2_2,frow_2_2_3 +uil_11,ui1,feedback_2_2,,suggestion,,,,,fcol_2_2_3,frow_2_2_4 +uil_12,ui1,feedback_2_2,,suggestion,,,,,fcol_2_2_4,frow_2_2_5 +uil_13,ui1,feedback_2_3,,free_text,,,,It is very difficult to understand,, +uil_14,ui1,feedback_2_4,,suggestion,,,,,choice_2_4_1, +uil_15,ui1,feedback_2_4,,suggestion,,,,,choice_2_4_2, +uil_16,ui1,feedback_2_5,,suggestion,,,,,fcol_2_5_3,frow_2_5_1 +uil_17,ui1,feedback_2_5,,suggestion,,,,,fcol_2_5_4,frow_2_5_2 +uil_18,ui1,feedback_2_5,,suggestion,,,,,fcol_2_5_1,frow_2_5_3 +uil_19,ui1,feedback_2_5,,suggestion,,,,,fcol_2_5_2,frow_2_5_4 +uil_20,ui1,feedback_2_5,,suggestion,,,,,fcol_2_5_3,frow_2_5_5 +uil_21,ui1,feedback_2_6,,suggestion,,,,,choice_2_6_2, +uil_22,ui1,feedback_2_7,,suggestion,,,,,fcol_2_7_2,frow_2_7_1 +uil_23,ui1,feedback_2_7,,suggestion,,,,,fcol_2_7_3,frow_2_7_2 +uil_24,ui1,feedback_2_7,,suggestion,,,,,fcol_2_7_4,frow_2_7_3 +uil_25,ui1,feedback_2_7,,suggestion,,,,,fcol_2_7_1,frow_2_7_4 +uil_26,ui1,feedback_3_1,,suggestion,,,,,choice_3_1_1, +uil_27,ui1,feedback_3_1,,suggestion,,,,,choice_3_1_5, +uil_28,ui1,feedback_3_2,,free_text,,,,Accept merge proposals more quickly,, +uil_29,ui1,feedback_3_3,,free_text,,,,Pay them!,, +uil_30,ui1,feedback_4_1,,suggestion,,,,,choice_4_1_2, +uil_31,ui1,feedback_4_1,,suggestion,,,,,choice_4_1_3, +uil_32,ui1,feedback_4_1,,suggestion,,,,,choice_4_1_4, +uil_33,ui2,feedback_1_1,,suggestion,,,,,choice_1_1_3, +uil_34,ui2,feedback_1_2,,suggestion,,,,,choice_1_2_3, +uil_35,ui2,feedback_2_1,,suggestion,,,,,fcol_2_1_3,frow_2_1_1 +uil_36,ui2,feedback_2_1,,suggestion,,,,,fcol_2_1_4,frow_2_1_2 +uil_37,ui2,feedback_2_1,,suggestion,,,,,fcol_2_1_1,frow_2_1_3 +uil_38,ui2,feedback_2_1,,suggestion,,,,,fcol_2_1_2,frow_2_1_4 +uil_39,ui2,feedback_2_1,,suggestion,,,,,fcol_2_1_3,frow_2_1_5 +uil_40,ui2,feedback_2_2,,suggestion,,,,,fcol_2_2_3,frow_2_2_1 +uil_41,ui2,feedback_2_2,,suggestion,,,,,fcol_2_2_4,frow_2_2_2 +uil_42,ui2,feedback_2_2,,suggestion,,,,,fcol_2_2_1,frow_2_2_3 +uil_43,ui2,feedback_2_2,,suggestion,,,,,fcol_2_2_2,frow_2_2_4 +uil_44,ui2,feedback_2_2,,suggestion,,,,,fcol_2_2_3,frow_2_2_5 +uil_45,ui2,feedback_2_3,,free_text,,,,I prefer a command-line tool,, +uil_46,ui2,feedback_2_4,,suggestion,,,,,choice_2_4_3, +uil_47,ui2,feedback_2_4,,suggestion,,,,,choice_2_4_1, +uil_48,ui2,feedback_2_5,,suggestion,,,,,fcol_2_5_4,frow_2_5_1 +uil_49,ui2,feedback_2_5,,suggestion,,,,,fcol_2_5_1,frow_2_5_2 +uil_50,ui2,feedback_2_5,,suggestion,,,,,fcol_2_5_2,frow_2_5_3 +uil_51,ui2,feedback_2_5,,suggestion,,,,,fcol_2_5_3,frow_2_5_4 +uil_52,ui2,feedback_2_5,,suggestion,,,,,fcol_2_5_4,frow_2_5_5 +uil_53,ui2,feedback_2_6,,suggestion,,,,,choice_2_6_1, +uil_54,ui2,feedback_2_7,,suggestion,,,,,fcol_2_7_3,frow_2_7_1 +uil_55,ui2,feedback_2_7,,suggestion,,,,,fcol_2_7_4,frow_2_7_2 +uil_56,ui2,feedback_2_7,,suggestion,,,,,fcol_2_7_1,frow_2_7_3 +uil_57,ui2,feedback_2_7,,suggestion,,,,,fcol_2_7_2,frow_2_7_4 +uil_58,ui2,feedback_3_1,,suggestion,,,,,choice_3_1_2, +uil_59,ui2,feedback_3_1,,suggestion,,,,,choice_3_1_3, +uil_60,ui2,feedback_3_1,,suggestion,,,,,choice_3_1_4, +uil_61,ui2,feedback_3_2,,free_text,,,,Reward most engaged contributors,, +uil_62,ui2,feedback_3_3,,free_text,,,,Launch OpenERP hackhatons,, +uil_63,ui2,feedback_4_1,,suggestion,,,,,choice_4_1_1, +uil_64,ui2,feedback_4_1,,suggestion,,,,,choice_4_1_2, +uil_65,ui2,feedback_4_1,,suggestion,,,,,choice_4_1_3, +uil_66,ui3,feedback_1_1,,suggestion,,,,,choice_1_1_1, +uil_67,ui3,feedback_1_2,,suggestion,,,,,choice_1_2_2, +uil_68,ui3,feedback_2_1,,suggestion,,,,,fcol_2_1_2,frow_2_1_1 +uil_69,ui3,feedback_2_1,,suggestion,,,,,fcol_2_1_3,frow_2_1_2 +uil_70,ui3,feedback_2_1,,suggestion,,,,,fcol_2_1_4,frow_2_1_3 +uil_71,ui3,feedback_2_1,,suggestion,,,,,fcol_2_1_1,frow_2_1_4 +uil_72,ui3,feedback_2_1,,suggestion,,,,,fcol_2_1_2,frow_2_1_5 +uil_73,ui3,feedback_2_2,,suggestion,,,,,fcol_2_2_4,frow_2_2_1 +uil_74,ui3,feedback_2_2,,suggestion,,,,,fcol_2_2_1,frow_2_2_2 +uil_75,ui3,feedback_2_2,,suggestion,,,,,fcol_2_2_2,frow_2_2_3 +uil_76,ui3,feedback_2_2,,suggestion,,,,,fcol_2_2_3,frow_2_2_4 +uil_77,ui3,feedback_2_2,,suggestion,,,,,fcol_2_2_4,frow_2_2_5 +uil_78,ui3,feedback_2_3,,free_text,,,,I prefer a command-line tool,, +uil_79,ui3,feedback_2_4,,suggestion,,,,,choice_2_4_1, +uil_80,ui3,feedback_2_4,,suggestion,,,,,choice_2_4_2, +uil_81,ui3,feedback_2_5,,suggestion,,,,,fcol_2_5_3,frow_2_5_1 +uil_82,ui3,feedback_2_5,,suggestion,,,,,fcol_2_5_4,frow_2_5_2 +uil_83,ui3,feedback_2_5,,suggestion,,,,,fcol_2_5_1,frow_2_5_3 +uil_84,ui3,feedback_2_5,,suggestion,,,,,fcol_2_5_2,frow_2_5_4 +uil_85,ui3,feedback_2_5,,suggestion,,,,,fcol_2_5_3,frow_2_5_5 +uil_86,ui3,feedback_2_6,,suggestion,,,,,choice_2_6_2, +uil_87,ui3,feedback_2_7,,suggestion,,,,,fcol_2_7_2,frow_2_7_1 +uil_88,ui3,feedback_2_7,,suggestion,,,,,fcol_2_7_3,frow_2_7_2 +uil_89,ui3,feedback_2_7,,suggestion,,,,,fcol_2_7_4,frow_2_7_3 +uil_90,ui3,feedback_2_7,,suggestion,,,,,fcol_2_7_1,frow_2_7_4 +uil_91,ui3,feedback_3_1,,suggestion,,,,,choice_3_1_1, +uil_92,ui3,feedback_3_1,,suggestion,,,,,choice_3_1_5, +uil_93,ui3,feedback_3_2,,free_text,,,,Reward most engaged contributors,, +uil_94,ui3,feedback_3_3,,free_text,,,,Launch OpenERP hackhatons,, +uil_95,ui3,feedback_4_1,,suggestion,,,,,choice_4_1_2, +uil_96,ui3,feedback_4_1,,suggestion,,,,,choice_4_1_3, +uil_97,ui3,feedback_4_1,,suggestion,,,,,choice_4_1_4, +uil_98,ui4,feedback_1_1,,suggestion,,,,,choice_1_1_2, +uil_99,ui4,feedback_1_2,,suggestion,,,,,choice_1_2_3, +uil_100,ui4,feedback_2_1,,suggestion,,,,,fcol_2_1_1,frow_2_1_1 +uil_101,ui4,feedback_2_1,,suggestion,,,,,fcol_2_1_2,frow_2_1_2 +uil_102,ui4,feedback_2_1,,suggestion,,,,,fcol_2_1_3,frow_2_1_3 +uil_103,ui4,feedback_2_1,,suggestion,,,,,fcol_2_1_4,frow_2_1_4 +uil_104,ui4,feedback_2_1,,suggestion,,,,,fcol_2_1_1,frow_2_1_5 +uil_105,ui4,feedback_2_2,,suggestion,,,,,fcol_2_2_4,frow_2_2_1 +uil_106,ui4,feedback_2_2,,suggestion,,,,,fcol_2_2_1,frow_2_2_2 +uil_107,ui4,feedback_2_2,,suggestion,,,,,fcol_2_2_2,frow_2_2_3 +uil_108,ui4,feedback_2_2,,suggestion,,,,,fcol_2_2_3,frow_2_2_4 +uil_109,ui4,feedback_2_2,,suggestion,,,,,fcol_2_2_4,frow_2_2_5 +uil_110,ui4,feedback_2_3,,free_text,,,,A more graphical tool would be useful.,, +uil_111,ui4,feedback_2_4,,suggestion,,,,,choice_2_4_2, +uil_112,ui4,feedback_2_4,,suggestion,,,,,choice_2_4_3, +uil_113,ui4,feedback_2_5,,suggestion,,,,,fcol_2_5_3,frow_2_5_1 +uil_114,ui4,feedback_2_5,,suggestion,,,,,fcol_2_5_4,frow_2_5_2 +uil_115,ui4,feedback_2_5,,suggestion,,,,,fcol_2_5_1,frow_2_5_3 +uil_116,ui4,feedback_2_5,,suggestion,,,,,fcol_2_5_2,frow_2_5_4 +uil_117,ui4,feedback_2_5,,suggestion,,,,,fcol_2_5_3,frow_2_5_5 +uil_118,ui4,feedback_2_6,,suggestion,,,,,choice_2_6_1, +uil_119,ui4,feedback_2_7,,suggestion,,,,,fcol_2_7_2,frow_2_7_1 +uil_120,ui4,feedback_2_7,,suggestion,,,,,fcol_2_7_3,frow_2_7_2 +uil_121,ui4,feedback_2_7,,suggestion,,,,,fcol_2_7_4,frow_2_7_3 +uil_122,ui4,feedback_2_7,,suggestion,,,,,fcol_2_7_1,frow_2_7_4 +uil_123,ui5,feedback_1_1,,suggestion,,,,,choice_1_1_1, +uil_124,ui5,feedback_1_2,,suggestion,,,,,choice_1_2_2, diff --git a/addons/survey/data/survey_cron.xml b/addons/survey/data/survey_cron.xml new file mode 100644 index 00000000000..7f22bbcb5ff --- /dev/null +++ b/addons/survey/data/survey_cron.xml @@ -0,0 +1,19 @@ + + + + + + Run Clean empty surveys + + + 1 + hours + -1 + + + + + + + diff --git a/addons/survey/data/survey_demo_feedback.xml b/addons/survey/data/survey_demo_feedback.xml new file mode 100644 index 00000000000..7b59bde24e4 --- /dev/null +++ b/addons/survey/data/survey_demo_feedback.xml @@ -0,0 +1,441 @@ + + + + + + User Feedback Form + + + + <p>This survey should take less than five minutes.</p> + <p></p> + + + + About your OpenERP usage + + 1 + <p></p> + + + + 1 + Are you using OpenERP on a daily basis? + simple_choice + dropdown + + + + + 1 + Yes, I use a version < 7.0 + + + + 2 + Yes, I use the 7.0 version, installed locally + + + + 3 + Yes, I use the online version of OpenERP + + + + 4 + No, I just tested it + + + + 2 + Which modules are you using/testing? + multiple_choice + 4 + + + + + 1 + Sales Management + + + + 2 + Purchases Management + + + + 3 + Financial Management + + + + 4 + CRM + + + + 5 + Project Management + + + + 6 + Human Ressources + + + + Ergonomy and ease of use + + 2 + <p>These questions relate to the ergonomy and ease of use of OpenERP. Try to remind your firsts days on OpenERP and +what have been your difficulties.</p> + + + + 1 + What do you think about the documentation available on doc.openerp.com? + matrix + simple + + + + + 1 + Totally disagree + + + + 2 + Disagree + + + + 3 + Agree + + + + 4 + Totally agree + + + + 1 + It is up-to-date + + + + 2 + It helps in the beginning + + + + 3 + I use the contextual help in OpenERP + + + + 4 + It is complete + + + + 5 + It is clear + + + + 2 + What do you think about the process views of OpenERP, available in the web client ? + matrix + simple + + + + + 1 + Totally disagree + + + + 2 + Disagree + + + + 3 + Agree + + + + 4 + Totally agree + + + + 1 + They help new users to understand OpenERP + + + + 2 + They are clean and correct + + + + 3 + They are useful on a daily usage + + + + 4 + A process is defined for all enterprise flows + + + + 5 + It's easy to find the process you need + + + + 3 + Do you have suggestions on how to improve the process view ? + free_text + + + + 4 + What do you think about the structure of the menus? + multiple_choice + 4 + + + + + 1 + The current menu structure is good + + + + 2 + It can be improved + + + + 3 + There are too much menus, it's complex to understand + + + + 5 + What do you think about the groups of users? + matrix + simple + + + + + 1 + Totally disagree + + + + 2 + Disagree + + + + 3 + Agree + + + + 4 + Totally agree + + + + 1 + The security rules defined on groups are useful + + + + 2 + Those security rules are standard and can be used out-of-the-box in most cases + + + + 3 + The 'Usability/Extended View' group helps in daily work + + + + 4 + The 'Usability/Extended View' group hides only optional fields + + + + 5 + The groups set on menu items are relevant + + + + 6 + What do you think about the structure of the menus? + simple_choice + columns + 4 + + + + + 1 + There are too many groups defined, security is too complex to set + + + + 2 + There are too few groups defined, security isn't accurate enough + + + + 3 + The number of groups is good + + + + 7 + What do you think about configuration wizards? + matrix + simple + + + + + 1 + Totally disagree + + + + 2 + Disagree + + + + 3 + Agree + + + + 4 + Totally agree + + + + 1 + Descriptions and help tooltips are clear enough + + + + 2 + Configuration wizard exists for each important setting + + + + 3 + Extra modules proposed are relevant + + + + 4 + Running the configuration wizards is a good way to spare time + + + + Community and contributors + + 3 + <p></p> + + + + 1 + How do you contribute or plan to contribute to OpenERP? + multiple_choice + 6 + + + + + 1 + I participate to discussion and forums + + + + 2 + I'd like to contribute but I don't know how? + + + + 3 + I develop new features + + + + 4 + I help to translate + + + + 5 + I write documentations + + + + 2 + Do you have a proposition to help people to contribute? + free_text + + + + 3 + Do you have a proposition to attract new contributors? + free_text + + + + Questions for developers + + 4 + <p>If you do not contribute or develop in OpenERP, skip this page.</p> + + + + 1 + Where do you develop your new features? + multiple_choice + 6 + + + + 1 + I use Launchpad, like all official OpenERP projects + + + + 2 + I use another repository system (SourceForge...) + + + + 3 + I host them on my own website + + + + 4 + I do not publish my developments + + + diff --git a/addons/survey/data/survey_demo_user.xml b/addons/survey/data/survey_demo_user.xml new file mode 100644 index 00000000000..26a60c8b2c5 --- /dev/null +++ b/addons/survey/data/survey_demo_user.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/addons/survey/data/survey_stages.xml b/addons/survey/data/survey_stages.xml new file mode 100644 index 00000000000..33522d8d3fe --- /dev/null +++ b/addons/survey/data/survey_stages.xml @@ -0,0 +1,30 @@ + + + + + + Draft + + + + + + In progress + + + + + + Closed + + + + + + Permanent + + + + + + diff --git a/addons/survey/i18n/ar.po b/addons/survey/i18n/ar.po index 5bf6403b62d..5f92a59e291 100644 --- a/addons/survey/i18n/ar.po +++ b/addons/survey/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/bg.po b/addons/survey/i18n/bg.po index eb7df89dbda..19f20d55e16 100644 --- a/addons/survey/i18n/bg.po +++ b/addons/survey/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/ca.po b/addons/survey/i18n/ca.po index 118e78c39f1..79560eab870 100644 --- a/addons/survey/i18n/ca.po +++ b/addons/survey/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/cs.po b/addons/survey/i18n/cs.po index baaa66e6d75..a0d2080d759 100644 --- a/addons/survey/i18n/cs.po +++ b/addons/survey/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/da.po b/addons/survey/i18n/da.po index 3336875d93d..7f40be81a8c 100644 --- a/addons/survey/i18n/da.po +++ b/addons/survey/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/de.po b/addons/survey/i18n/de.po index 566f47428cc..2564b0d02c7 100644 --- a/addons/survey/i18n/de.po +++ b/addons/survey/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/es.po b/addons/survey/i18n/es.po index 38508af3478..9bfb44b6707 100644 --- a/addons/survey/i18n/es.po +++ b/addons/survey/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/es_CR.po b/addons/survey/i18n/es_CR.po index 62ba475f228..41c9893280b 100644 --- a/addons/survey/i18n/es_CR.po +++ b/addons/survey/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: survey diff --git a/addons/survey/i18n/es_MX.po b/addons/survey/i18n/es_MX.po deleted file mode 100644 index 7c1c9bbbad1..00000000000 --- a/addons/survey/i18n/es_MX.po +++ /dev/null @@ -1,1914 +0,0 @@ -# Spanish 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: 2011-01-11 11:16+0000\n" -"PO-Revision-Date: 2011-01-18 18:43+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\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: 2011-09-05 05:45+0000\n" -"X-Generator: Launchpad (build 13830)\n" - -#. module: survey -#: view:survey.print:0 -#: view:survey.print.answer:0 -msgid "Print Option" -msgstr "Opción imprimir" - -#. module: survey -#: code:addons/survey/survey.py:422 -#, python-format -msgid "" -"Minimum Required Answer you entered is " -"greater than the number of answer. " -"Please use a number that is smaller than %d." -msgstr "" -"El número mínimo de respuestas requeridas que ha introducido es mayor que el " -"número de respuestas. Por favor, use un número menor que %d." - -#. module: survey -#: view:survey.question.wiz:0 -msgid "Your Messages" -msgstr "Sus mensajes" - -#. module: survey -#: field:survey.question,comment_valid_type:0 -#: field:survey.question,validation_type:0 -msgid "Text Validation" -msgstr "Validación del texto" - -#. module: survey -#: code:addons/survey/survey.py:434 -#, python-format -msgid "" -"Maximum Required Answer you entered for " -"your maximum is greater than the number of answer. " -" Please use a number that is smaller than %d." -msgstr "" -"El número máximo de respuestas requeridas que ha introducido para su máximo " -"es mayor que el número de respuestas. Por favor, use un número menor que %d." - -#. module: survey -#: view:survey:0 -#: field:survey,invited_user_ids:0 -msgid "Invited User" -msgstr "Usuario invitado" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Character" -msgstr "Carácter" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_form1 -#: model:ir.ui.menu,name:survey.menu_print_survey_form -#: model:ir.ui.menu,name:survey.menu_reporting -#: model:ir.ui.menu,name:survey.menu_survey_form -#: model:ir.ui.menu,name:survey.menu_surveys -msgid "Surveys" -msgstr "Encuestas" - -#. module: survey -#: view:survey:0 -msgid "Set to draft" -msgstr "Cambiar a borrador" - -#. module: survey -#: field:survey.question,in_visible_answer_type:0 -msgid "Is Answer Type Invisible?" -msgstr "¿La respuesta es de tipo invisible?" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -#: view:survey.request:0 -msgid "Group By..." -msgstr "Agrupar por..." - -#. module: survey -#: view:survey.send.invitation.log:0 -msgid "Results :" -msgstr "Resultados :" - -#. module: survey -#: view:survey.request:0 -msgid "Survey Request" -msgstr "Solicitud de encuesta" - -#. module: survey -#: selection:survey.question,required_type:0 -msgid "A Range" -msgstr "Un rango" - -#. module: survey -#: view:survey.response.line:0 -msgid "Table Answer" -msgstr "Tabla de respuesta" - -#. module: survey -#: field:survey.history,date:0 -msgid "Date started" -msgstr "Fecha de inicio" - -#. module: survey -#: field:survey,history:0 -msgid "History Lines" -msgstr "Líneas histórico" - -#. module: survey -#: code:addons/survey/survey.py:448 -#, python-format -msgid "" -"You must enter one or more menu choices in " -"column heading (white spaces not allowed)" -msgstr "" -"Debe introducir una o más opciones de menú en la cabecera de columna (no se " -"permiten espacios en blanco)" - -#. module: survey -#: field:survey.question.column.heading,in_visible_menu_choice:0 -msgid "Is Menu Choice Invisible??" -msgstr "¿La opción de menú es invisible?" - -#. module: survey -#: field:survey.send.invitation,mail:0 -msgid "Body" -msgstr "Cuerpo" - -#. module: survey -#: field:survey.question,allow_comment:0 -msgid "Allow Comment Field" -msgstr "Permitir campo comentario" - -#. module: survey -#: selection:survey.print,paper_size:0 -#: selection:survey.print.answer,paper_size:0 -msgid "A4 (210mm x 297mm)" -msgstr "A4 (210mm x 297mm)" - -#. module: survey -#: field:survey.question,comment_maximum_date:0 -#: field:survey.question,validation_maximum_date:0 -msgid "Maximum date" -msgstr "Fecha Máxima" - -#. module: survey -#: field:survey.question,in_visible_menu_choice:0 -msgid "Is Menu Choice Invisible?" -msgstr "¿La opción de menú es invisible?" - -#. module: survey -#: view:survey:0 -msgid "Completed" -msgstr "Completada" - -#. module: survey -#: selection:survey.question,required_type:0 -msgid "Exactly" -msgstr "Exactamente" - -#. module: survey -#: view:survey:0 -msgid "Open Date" -msgstr "Fecha de Inicio" - -#. module: survey -#: view:survey.request:0 -msgid "Set to Draft" -msgstr "Cambiar a borrador" - -#. module: survey -#: field:survey.question,is_comment_require:0 -msgid "Add Comment Field" -msgstr "Campo para agregar comentario" - -#. module: survey -#: code:addons/survey/survey.py:401 -#, python-format -msgid "" -"#Required Answer you entered is greater " -"than the number of answer. Please use a " -"number that is smaller than %d." -msgstr "" -"Número de respuestas requeridas que ha escrito es mayor que el número de " -"respuestas. Introduzca un número menor que %d." - -#. module: survey -#: field:survey.question,tot_resp:0 -msgid "Total Answer" -msgstr "Total respuesta" - -#. module: survey -#: field:survey.tbl.column.heading,name:0 -msgid "Row Number" -msgstr "Número de Fila" - -#. module: survey -#: model:ir.model,name:survey.model_survey_name_wiz -msgid "survey.name.wiz" -msgstr "encuesta.nombre.asist" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_question_form -msgid "Survey Questions" -msgstr "Preguntas de las encuestas" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Matrix of Choices (Only One Answers Per Row)" -msgstr "Matriz de selección (solamente una respuesta por fila)" - -#. module: survey -#: code:addons/survey/survey.py:475 -#, python-format -msgid "" -"Maximum Required Answer you entered for your maximum is greater than the " -"number of answer. Please use a number that is smaller than %d." -msgstr "" -"El número máximo de respuestas requeridas que ha introducido para su máximo " -"es mayor que el número de respuestas. Por favor, use un número menor que %d." - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_question_message -#: model:ir.model,name:survey.model_survey_question -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Survey Question" -msgstr "Pregunta de la encuesta" - -#. module: survey -#: view:survey.question.column.heading:0 -msgid "Use if question type is rating_scale" -msgstr "Utilizar si la pregunta es de tipo calificación_escala" - -#. module: survey -#: field:survey.print,page_number:0 -#: field:survey.print.answer,page_number:0 -msgid "Include Page Number" -msgstr "Incluir número de página" - -#. module: survey -#: view:survey.page:0 -#: view:survey.question:0 -#: view:survey.send.invitation.log:0 -msgid "Ok" -msgstr "Aceptar" - -#. module: survey -#: field:survey.page,title:0 -msgid "Page Title" -msgstr "Título de la página" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_define_survey -msgid "Define Surveys" -msgstr "Definir encuestas" - -#. module: survey -#: model:ir.model,name:survey.model_survey_history -msgid "Survey History" -msgstr "Histórico encuestas" - -#. module: survey -#: field:survey.response.answer,comment:0 -#: field:survey.response.line,comment:0 -msgid "Notes" -msgstr "Notas" - -#. module: survey -#: view:survey:0 -#: view:survey.request:0 -msgid "Search Survey" -msgstr "Buscar encuesta" - -#. module: survey -#: field:survey.response.answer,answer:0 -#: field:survey.tbl.column.heading,value:0 -msgid "Value" -msgstr "Valor" - -#. module: survey -#: field:survey.question,column_heading_ids:0 -msgid " Column heading" -msgstr " Cabecera columna" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_run_survey_form -msgid "Answer a Survey" -msgstr "Responder una encuesta" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:92 -#, python-format -msgid "Error!" -msgstr "¡Error!" - -#. module: survey -#: field:survey,tot_comp_survey:0 -msgid "Total Completed Survey" -msgstr "Total encuestas completadas" - -#. module: survey -#: view:survey.response.answer:0 -msgid "(Use Only Question Type is matrix_of_drop_down_menus)" -msgstr "(usar sólo cuando el tipo de pregunta sea matrix_of_drop_down_menus)" - -#. module: survey -#: model:ir.actions.report.xml,name:survey.survey_analysis -msgid "Survey Statistics" -msgstr "Estadísticas encuestas" - -#. module: survey -#: selection:survey,state:0 -#: view:survey.request:0 -#: selection:survey.request,state:0 -msgid "Cancelled" -msgstr "Cancelada" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Rating Scale" -msgstr "Escala de calificación" - -#. module: survey -#: field:survey.question,comment_field_type:0 -msgid "Comment Field Type" -msgstr "Campo tipo comentario" - -#. module: survey -#: code:addons/survey/survey.py:375 -#: code:addons/survey/survey.py:387 -#: code:addons/survey/survey.py:401 -#: code:addons/survey/survey.py:406 -#: code:addons/survey/survey.py:416 -#: code:addons/survey/survey.py:422 -#: code:addons/survey/survey.py:428 -#: code:addons/survey/survey.py:434 -#: code:addons/survey/survey.py:438 -#: code:addons/survey/survey.py:444 -#: code:addons/survey/survey.py:448 -#: code:addons/survey/survey.py:458 -#: code:addons/survey/survey.py:462 -#: code:addons/survey/survey.py:467 -#: code:addons/survey/survey.py:473 -#: code:addons/survey/survey.py:475 -#: code:addons/survey/survey.py:477 -#: code:addons/survey/survey.py:482 -#: code:addons/survey/survey.py:484 -#: code:addons/survey/survey.py:642 -#: code:addons/survey/wizard/survey_answer.py:124 -#: code:addons/survey/wizard/survey_answer.py:131 -#: code:addons/survey/wizard/survey_answer.py:700 -#: code:addons/survey/wizard/survey_answer.py:739 -#: code:addons/survey/wizard/survey_answer.py:759 -#: code:addons/survey/wizard/survey_answer.py:788 -#: code:addons/survey/wizard/survey_answer.py:793 -#: code:addons/survey/wizard/survey_answer.py:801 -#: code:addons/survey/wizard/survey_answer.py:812 -#: code:addons/survey/wizard/survey_answer.py:821 -#: code:addons/survey/wizard/survey_answer.py:826 -#: code:addons/survey/wizard/survey_answer.py:900 -#: code:addons/survey/wizard/survey_answer.py:936 -#: code:addons/survey/wizard/survey_answer.py:954 -#: code:addons/survey/wizard/survey_answer.py:982 -#: code:addons/survey/wizard/survey_answer.py:985 -#: code:addons/survey/wizard/survey_answer.py:988 -#: code:addons/survey/wizard/survey_answer.py:1000 -#: code:addons/survey/wizard/survey_answer.py:1007 -#: code:addons/survey/wizard/survey_answer.py:1010 -#: code:addons/survey/wizard/survey_selection.py:134 -#: code:addons/survey/wizard/survey_selection.py:138 -#: code:addons/survey/wizard/survey_send_invitation.py:74 -#, python-format -msgid "Warning !" -msgstr "¡ Advertencia !" - -#. module: survey -#: selection:survey.question,comment_field_type:0 -msgid "Single Line Of Text" -msgstr "Única línea de texto" - -#. module: survey -#: view:survey.send.invitation:0 -#: field:survey.send.invitation,send_mail_existing:0 -msgid "Send Reminder for Existing User" -msgstr "Enviar recordatorio para usuario existente" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Multiple Choice (Multiple Answer)" -msgstr "Selección múltiple (mútiples respuestas)" - -#. module: survey -#: view:survey:0 -msgid "Edit Survey" -msgstr "Editar encuesta" - -#. module: survey -#: view:survey.response.line:0 -msgid "Survey Answer Line" -msgstr "Líne de respuesta encuesta" - -#. module: survey -#: field:survey.question.column.heading,menu_choice:0 -msgid "Menu Choice" -msgstr "Selección Menú" - -#. module: survey -#: selection:survey.question,required_type:0 -msgid "At Most" -msgstr "Como máximo" - -#. module: survey -#: field:survey.question,is_validation_require:0 -msgid "Validate Text" -msgstr "Validar texto" - -#. module: survey -#: field:survey.response.line,single_text:0 -msgid "Text" -msgstr "Texto" - -#. module: survey -#: constraint:res.users:0 -msgid "The chosen company is not in the allowed companies for this user" -msgstr "" -"La compañía seleccionada no está en las compañías permitidas para este " -"usuario" - -#. module: survey -#: selection:survey.print,paper_size:0 -#: selection:survey.print.answer,paper_size:0 -msgid "Letter (8.5\" x 11\")" -msgstr "Carta (8.5\" x 11\")" - -#. module: survey -#: view:survey:0 -#: field:survey,responsible_id:0 -msgid "Responsible" -msgstr "Responsable" - -#. module: survey -#: model:ir.model,name:survey.model_survey_request -msgid "survey.request" -msgstr "solicitud.encuesta" - -#. module: survey -#: field:survey.send.invitation,mail_subject:0 -#: field:survey.send.invitation,mail_subject_existing:0 -msgid "Subject" -msgstr "Asunto" - -#. module: survey -#: field:survey.question,comment_maximum_float:0 -#: field:survey.question,validation_maximum_float:0 -msgid "Maximum decimal number" -msgstr "Máximo número de decimales" - -#. module: survey -#: view:survey.request:0 -msgid "Late" -msgstr "Retrasado" - -#. module: survey -#: sql_constraint:res.users:0 -msgid "You can not have two users with the same login !" -msgstr "¡No puede tener dos usuarios con el mismo identificador de usuario!" - -#. module: survey -#: field:survey.send.invitation,mail_from:0 -msgid "From" -msgstr "De" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Don't Validate Comment Text." -msgstr "No validar texto de comentario" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Must Be A Whole Number" -msgstr "Debe ser un número entero" - -#. module: survey -#: field:survey.answer,question_id:0 -#: field:survey.page,question_ids:0 -#: field:survey.question,question:0 -#: field:survey.question.column.heading,question_id:0 -#: field:survey.response.line,question_id:0 -msgid "Question" -msgstr "Pregunta" - -#. module: survey -#: view:survey.page:0 -msgid "Search Survey Page" -msgstr "Buscar página de la encuesta" - -#. module: survey -#: view:survey.send.invitation:0 -msgid "Send" -msgstr "Enviar" - -#. module: survey -#: field:survey.question.wiz,name:0 -msgid "Number" -msgstr "Número" - -#. module: survey -#: code:addons/survey/survey.py:444 -#, python-format -msgid "" -"You must enter one or more menu choices in " -"column heading" -msgstr "" -"Debe introducir una o más opciones de menú en el encabezado de la columna" - -#. module: survey -#: model:ir.actions.act_window,help:survey.action_survey_form1 -msgid "" -"You can create survey for different purposes: recruitment interviews, " -"employee's periodical evaluations, marketing campaigns, etc. A survey is " -"made of pages containing questions of several types: text, multiple choices, " -"etc. You can edit survey manually or click on the 'Edit Survey' for a " -"WYSIWYG interface." -msgstr "" -"Puede crear encuestas para diferentes propósitos: entrevistas de selección " -"de personal, evaluaciones periódicas de los empleados, campañas de " -"marketing, etc. Una encuesta se compone de páginas que contienen preguntas " -"de varios tipos: texto, opciones múltiples, etc. Puede editar la encuesta " -"manualmente o hacer clic en \"Editar encuesta” para una interfaz WYSIWYG." - -#. module: survey -#: view:survey:0 -#: view:survey.request:0 -#: field:survey.request,state:0 -msgid "State" -msgstr "Estado" - -#. module: survey -#: view:survey.request:0 -msgid "Evaluation Plan Phase" -msgstr "Fase del plan de evaluación" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Between" -msgstr "Entre" - -#. module: survey -#: view:survey.print:0 -#: view:survey.print.answer:0 -#: view:survey.print.statistics:0 -msgid "Print" -msgstr "Imprimir" - -#. module: survey -#: field:survey.question,make_comment_field:0 -msgid "Make Comment Field an Answer Choice" -msgstr "Hacer campo comentario como opción de respuesta" - -#. module: survey -#: view:survey:0 -#: field:survey,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Email" -msgstr "Email" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_answer_surveys -msgid "Answer Surveys" -msgstr "Reponder encuestas" - -#. module: survey -#: selection:survey.response,state:0 -msgid "Not Finished" -msgstr "No teminado" - -#. module: survey -#: view:survey.print:0 -msgid "Survey Print" -msgstr "Imprimir encuesta" - -#. module: survey -#: view:survey.send.invitation:0 -msgid "Select Partner" -msgstr "Seleccionar empresa" - -#. module: survey -#: field:survey.question,type:0 -msgid "Question Type" -msgstr "Tipo pregunta" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:131 -#, python-format -msgid "You can not answer this survey more than %s times" -msgstr "No puede responder a esta encuesta más de '%s' veces" - -#. module: survey -#: model:ir.actions.act_window,name:survey.act_survey_answer -msgid "Answers" -msgstr "Respuestas" - -#. module: survey -#: model:ir.module.module,description:survey.module_meta_information -msgid "" -"\n" -" This module is used for surveying. It depends on the answers or reviews " -"of some questions by different users.\n" -" A survey may have multiple pages. Each page may contain multiple " -"questions and each question may have multiple answers.\n" -" Different users may give different answers of question and according to " -"that survey is done. \n" -" Partners are also sent mails with user name and password for the " -"invitation of the survey\n" -" " -msgstr "" -"\n" -" Este módulo se usa para realizar encuestas. Se basa en las respuestas o " -"comentarios de los usuarios a varias preguntas.\n" -" Una encuesta puede tener varias páginas. Cada página puede contener " -"múltiples preguntas y cada pregunta puede tener varias respuestas.\n" -" Diferentes usuarios pueden dar diferentes respuestas a la pregunta de " -"acuerdo a como esté confeccionada la encuesta.\n" -" También se puede invitar a las empresas a responder una encuesta, " -"enviándoles correos electrónicos con nombre de usuario y contraseña.\n" -" " - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:124 -#, python-format -msgid "You can not answer because the survey is not open" -msgstr "No puede responder porque la encuesta no está abierta" - -#. module: survey -#: selection:survey.response,response_type:0 -msgid "Link" -msgstr "Vínculo" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_type_form -#: model:ir.model,name:survey.model_survey_type -#: view:survey.type:0 -msgid "Survey Type" -msgstr "Tipo de encuesta" - -#. module: survey -#: field:survey.page,sequence:0 -msgid "Page Nr" -msgstr "Nº página" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -#: field:survey.question,descriptive_text:0 -#: selection:survey.question,type:0 -msgid "Descriptive Text" -msgstr "Texto descriptivo" - -#. module: survey -#: field:survey.question,minimum_req_ans:0 -msgid "Minimum Required Answer" -msgstr "Respuesta mínima requerida" - -#. module: survey -#: code:addons/survey/survey.py:484 -#, python-format -msgid "" -"You must enter one or more menu choices in column heading (white spaces not " -"allowed)" -msgstr "" -"Debe introducir una o más opciones de menú en el encabezado de la columna " -"(espacios en blanco no está permitidos)" - -#. module: survey -#: field:survey.question,req_error_msg:0 -msgid "Error Message" -msgstr "Mensaje de error" - -#. module: survey -#: code:addons/survey/survey.py:482 -#, python-format -msgid "You must enter one or more menu choices in column heading" -msgstr "Debe introducir una o más opciones de menú en la cabecera de columna" - -#. module: survey -#: field:survey.request,date_deadline:0 -msgid "Deadline date" -msgstr "Fecha límite" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Must Be A Date" -msgstr "Debe ser una fecha" - -#. module: survey -#: model:ir.model,name:survey.model_survey_print -msgid "survey.print" -msgstr "encuesta.imprimir" - -#. module: survey -#: view:survey.question.column.heading:0 -#: field:survey.question.column.heading,title:0 -msgid "Column Heading" -msgstr "Cabecera columna" - -#. module: survey -#: field:survey.question,is_require_answer:0 -msgid "Require Answer to Question" -msgstr "Respuesta obligatoria a la pregunta" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_request_tree -#: model:ir.ui.menu,name:survey.menu_survey_type_form1 -msgid "Survey Requests" -msgstr "Solicitudes de encuestas" - -#. module: survey -#: code:addons/survey/survey.py:375 -#: code:addons/survey/survey.py:462 -#, python-format -msgid "You must enter one or more column heading." -msgstr "Debe introducir una o más cabeceras de columna." - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:759 -#: code:addons/survey/wizard/survey_answer.py:954 -#, python-format -msgid "Please enter an integer value" -msgstr "Por favor introduzca un valor numérico entero" - -#. module: survey -#: model:ir.model,name:survey.model_survey_browse_answer -msgid "survey.browse.answer" -msgstr "encuesta.explorar.respuestas" - -#. module: survey -#: selection:survey.question,comment_field_type:0 -msgid "Paragraph of Text" -msgstr "Párrafo de texto" - -#. module: survey -#: code:addons/survey/survey.py:428 -#, python-format -msgid "" -"Maximum Required Answer you entered for " -"your maximum is greater than the number of answer. " -" Please use a number that is smaller than %d." -msgstr "" -"El número máximo de respuestas requeridas que ha introducido para su máximo " -"es mayor que el número de respuestas. Por favor, use un número menor que %d." - -#. module: survey -#: view:survey.request:0 -msgid "Watting Answer" -msgstr "Esperando respuesta" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "When the question is not answered, display this error message:" -msgstr "" -"Cuando la respuesta no sea contestada, mostrar este mensaje de error:" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Options" -msgstr "Opciones" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_browse_survey_response -msgid "Browse Answers" -msgstr "Buscar respuestas" - -#. module: survey -#: field:survey.response.answer,comment_field:0 -#: view:survey.response.line:0 -msgid "Comment" -msgstr "Comentario" - -#. module: survey -#: model:ir.model,name:survey.model_survey_answer -#: model:ir.model,name:survey.model_survey_response_answer -#: view:survey.answer:0 -#: view:survey.response:0 -#: view:survey.response.answer:0 -#: view:survey.response.line:0 -msgid "Survey Answer" -msgstr "Respuesta encuesta" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Selection" -msgstr "Selección" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_browse_survey_response -#: view:survey:0 -msgid "Answer Survey" -msgstr "Responder encuesta" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Comment Field" -msgstr "Campo comentario" - -#. module: survey -#: selection:survey.response,response_type:0 -msgid "Manually" -msgstr "Manualmente" - -#. module: survey -#: help:survey,responsible_id:0 -msgid "User responsible for survey" -msgstr "Usuario responsable de la encuesta." - -#. module: survey -#: field:survey.question,comment_column:0 -msgid "Add comment column in matrix" -msgstr "Añadir columna de comentarios en la matriz" - -#. module: survey -#: field:survey.answer,response:0 -msgid "#Answer" -msgstr "#Respuesta" - -#. module: survey -#: field:survey.print,without_pagebreak:0 -#: field:survey.print.answer,without_pagebreak:0 -msgid "Print Without Page Breaks" -msgstr "Imprimir sin saltos de página" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "When the comment is an invalid format, display this error message" -msgstr "" -"Mostrar este mensaje de error cuando el comentario esté en un formato no " -"válido" - -#. module: survey -#: code:addons/survey/wizard/survey_selection.py:138 -#, python-format -msgid "" -"You can not give more response. Please contact the author of this survey for " -"further assistance." -msgstr "" -"No puede dar más respuestas. Póngase en contacto con el autor de esta " -"encuesta para obtener más ayuda." - -#. module: survey -#: model:ir.actions.act_window,name:survey.act_survey_page_question -#: model:ir.actions.act_window,name:survey.act_survey_question -msgid "Questions" -msgstr "Preguntas" - -#. module: survey -#: help:survey,response_user:0 -msgid "Set to one if you require only one Answer per user" -msgstr "Establecer a uno si sólo requiere una respuesta por usuario." - -#. module: survey -#: field:survey,users:0 -msgid "Users" -msgstr "Usuarios" - -#. module: survey -#: view:survey.send.invitation:0 -msgid "Message" -msgstr "Mensaje" - -#. module: survey -#: view:survey:0 -#: view:survey.request:0 -msgid "MY" -msgstr "MI" - -#. module: survey -#: field:survey.question,maximum_req_ans:0 -msgid "Maximum Required Answer" -msgstr "Máximas respuestas requeridas" - -#. module: survey -#: field:survey.name.wiz,page_no:0 -msgid "Page Number" -msgstr "Número de página" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:92 -#, python-format -msgid "Cannot locate survey for the question wizard!" -msgstr "¡No se pudo localizar la encuesta para el asistente de preguntas!" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "and" -msgstr "y" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_print_statistics -#: view:survey.print.statistics:0 -msgid "Survey Print Statistics" -msgstr "Imprimir estadísticas de encuestas" - -#. module: survey -#: field:survey.send.invitation.log,note:0 -msgid "Log" -msgstr "Registro (Log)" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "When the choices do not add up correctly, display this error message" -msgstr "" -"Mostrar este mensaje de error cuando las selecciones no totalicen " -"correctamente" - -#. module: survey -#: field:survey,date_close:0 -msgid "Survey Close Date" -msgstr "Fecha de cierre encuestas" - -#. module: survey -#: field:survey,date_open:0 -msgid "Survey Open Date" -msgstr "Fecha apertura de encuesta" - -#. module: survey -#: field:survey.question.column.heading,in_visible_rating_weight:0 -msgid "Is Rating Scale Invisible ??" -msgstr "¿La escala de calificación es invisible?" - -#. module: survey -#: view:survey.browse.answer:0 -#: view:survey.name.wiz:0 -msgid "Start" -msgstr "Inicio" - -#. module: survey -#: code:addons/survey/survey.py:477 -#, python-format -msgid "Maximum Required Answer is greater than Minimum Required Answer" -msgstr "" -"El número máximo de respuestas requeridas es mayor que el mínimo de " -"respuestas requeridas." - -#. module: survey -#: field:survey.question,comment_maximum_no:0 -#: field:survey.question,validation_maximum_no:0 -msgid "Maximum number" -msgstr "Número máximo" - -#. module: survey -#: selection:survey,state:0 -#: selection:survey.request,state:0 -#: selection:survey.response.line,state:0 -msgid "Draft" -msgstr "Borrador" - -#. module: survey -#: model:ir.model,name:survey.model_survey_print_statistics -msgid "survey.print.statistics" -msgstr "encuesta.imprimir.estadisticas" - -#. module: survey -#: selection:survey,state:0 -msgid "Closed" -msgstr "Cerrada" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Matrix of Drop-down Menus" -msgstr "Matriz de menús desplegables" - -#. module: survey -#: view:survey:0 -#: field:survey.answer,answer:0 -#: field:survey.name.wiz,response:0 -#: view:survey.page:0 -#: view:survey.print.answer:0 -#: field:survey.print.answer,response_ids:0 -#: view:survey.question:0 -#: field:survey.question,answer_choice_ids:0 -#: field:survey.request,response:0 -#: field:survey.response,question_ids:0 -#: field:survey.response.answer,answer_id:0 -#: field:survey.response.answer,response_id:0 -#: view:survey.response.line:0 -#: field:survey.response.line,response_answer_ids:0 -#: field:survey.response.line,response_id:0 -#: field:survey.response.line,response_table_ids:0 -#: field:survey.send.invitation,partner_ids:0 -#: field:survey.tbl.column.heading,response_table_id:0 -msgid "Answer" -msgstr "Respuesta" - -#. module: survey -#: field:survey,max_response_limit:0 -msgid "Maximum Answer Limit" -msgstr "Límite máximo de respuesta" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_act_view_survey_send_invitation -msgid "Send Invitations" -msgstr "Enviar invitaciones" - -#. module: survey -#: field:survey.name.wiz,store_ans:0 -msgid "Store Answer" -msgstr "Guardar respuesta" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Date and Time" -msgstr "Fecha y hora" - -#. module: survey -#: field:survey,state:0 -#: field:survey.response,state:0 -#: field:survey.response.line,state:0 -msgid "Status" -msgstr "Estado" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_print -msgid "Print Survey" -msgstr "Imprimir encuesta" - -#. module: survey -#: field:survey,send_response:0 -msgid "E-mail Notification on Answer" -msgstr "Email de notificación sobre la respuesta" - -#. module: survey -#: field:survey.response.answer,value_choice:0 -msgid "Value Choice" -msgstr "Valor selección" - -#. module: survey -#: view:survey:0 -msgid "Started" -msgstr "Iniciada" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_print_answer -#: view:survey:0 -#: view:survey.print.answer:0 -msgid "Print Answer" -msgstr "Imprimir respuesta" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Multiple Textboxes" -msgstr "Campos de texto múltiples" - -#. module: survey -#: selection:survey.print,orientation:0 -#: selection:survey.print.answer,orientation:0 -msgid "Landscape(Horizontal)" -msgstr "Horizontal" - -#. module: survey -#: field:survey.question,no_of_rows:0 -msgid "No of Rows" -msgstr "Nº de columnas" - -#. module: survey -#: view:survey:0 -#: view:survey.name.wiz:0 -msgid "Survey Details" -msgstr "Detalles encuesta" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Multiple Textboxes With Different Type" -msgstr "Campos de texto múltiples con tipo diferente" - -#. module: survey -#: view:survey.question.column.heading:0 -msgid "Menu Choices (each choice on separate lines)" -msgstr "Opciones de menú (cada opción en líneas separadas)" - -#. module: survey -#: field:survey.response,response_type:0 -msgid "Answer Type" -msgstr "Tipo respuesta" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Validation" -msgstr "Validación" - -#. module: survey -#: view:survey.request:0 -#: selection:survey.request,state:0 -msgid "Waiting Answer" -msgstr "Esperando respuesta" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Must Be A Decimal Number" -msgstr "Debe ser un número decimal" - -#. module: survey -#: field:res.users,survey_id:0 -msgid "Groups" -msgstr "Grupos" - -#. module: survey -#: selection:survey.answer,type:0 -#: selection:survey.question,type:0 -msgid "Date" -msgstr "Fecha" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Integer" -msgstr "Entero" - -#. module: survey -#: model:ir.model,name:survey.model_survey_send_invitation -msgid "survey.send.invitation" -msgstr "encuesta.enviar.invitacion" - -#. module: survey -#: field:survey.history,user_id:0 -#: view:survey.request:0 -#: field:survey.request,user_id:0 -#: field:survey.response,user_id:0 -msgid "User" -msgstr "Usuario" - -#. module: survey -#: field:survey.name.wiz,transfer:0 -msgid "Page Transfer" -msgstr "Página de transferencia" - -#. module: survey -#: selection:survey.response.line,state:0 -msgid "Skiped" -msgstr "Omitido" - -#. module: survey -#: field:survey.print,paper_size:0 -#: field:survey.print.answer,paper_size:0 -msgid "Paper Size" -msgstr "Tamaño del papel" - -#. module: survey -#: field:survey.response.answer,column_id:0 -#: field:survey.tbl.column.heading,column_id:0 -msgid "Column" -msgstr "Columna" - -#. module: survey -#: model:ir.model,name:survey.model_survey_tbl_column_heading -msgid "survey.tbl.column.heading" -msgstr "encuesta.tbl.columna.cabecera" - -#. module: survey -#: model:ir.model,name:survey.model_survey_response_line -msgid "Survey Response Line" -msgstr "Línea de respuesta de encuesta" - -#. module: survey -#: code:addons/survey/wizard/survey_selection.py:134 -#, python-format -msgid "You can not give response for this survey more than %s times" -msgstr "No puede responder esta encuesta más de %s veces" - -#. module: survey -#: model:ir.actions.report.xml,name:survey.report_survey_form -#: model:ir.model,name:survey.model_survey -#: view:survey:0 -#: view:survey.browse.answer:0 -#: field:survey.browse.answer,survey_id:0 -#: field:survey.history,survey_id:0 -#: view:survey.name.wiz:0 -#: field:survey.name.wiz,survey_id:0 -#: view:survey.page:0 -#: field:survey.page,survey_id:0 -#: view:survey.print:0 -#: field:survey.print,survey_ids:0 -#: field:survey.print.statistics,survey_ids:0 -#: field:survey.question,survey:0 -#: view:survey.request:0 -#: field:survey.request,survey_id:0 -#: field:survey.response,survey_id:0 -msgid "Survey" -msgstr "Encuesta" - -#. module: survey -#: field:survey.question,in_visible_rating_weight:0 -msgid "Is Rating Scale Invisible?" -msgstr "¿La escala de calificación es invisible?" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Numerical Textboxes" -msgstr "Campos de texto numéricos" - -#. module: survey -#: model:ir.model,name:survey.model_survey_question_wiz -msgid "survey.question.wiz" -msgstr "enquesta.pregunta.asist" - -#. module: survey -#: view:survey:0 -msgid "History" -msgstr "Historial" - -#. module: survey -#: help:survey.browse.answer,response_id:0 -msgid "" -"If this field is empty, all answers of the selected survey will be print." -msgstr "" -"Si este campo está vacío, se imprimirán todas las respuestas de la encuesta " -"seleccionada." - -#. module: survey -#: field:survey.type,code:0 -msgid "Code" -msgstr "Código" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_print_survey_statistics -msgid "Surveys Statistics" -msgstr "Estadísticas de encuestas" - -#. module: survey -#: field:survey.print,orientation:0 -#: field:survey.print.answer,orientation:0 -msgid "Orientation" -msgstr "Orientación" - -#. module: survey -#: view:survey:0 -#: view:survey.answer:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Seq" -msgstr "Secuencia" - -#. module: survey -#: field:survey.request,email:0 -msgid "E-mail" -msgstr "Email" - -#. module: survey -#: field:survey.question,comment_minimum_no:0 -#: field:survey.question,validation_minimum_no:0 -msgid "Minimum number" -msgstr "Número mínimo" - -#. module: survey -#: field:survey.question,req_ans:0 -msgid "#Required Answer" -msgstr "Nº de respuestas requeridas" - -#. module: survey -#: field:survey.answer,sequence:0 -#: field:survey.question,sequence:0 -msgid "Sequence" -msgstr "Secuencia" - -#. module: survey -#: field:survey.question,comment_label:0 -msgid "Field Label" -msgstr "Etiqueta del campo" - -#. module: survey -#: view:survey:0 -msgid "Other" -msgstr "Otros" - -#. module: survey -#: view:survey.request:0 -#: selection:survey.request,state:0 -msgid "Done" -msgstr "Realizado" - -#. module: survey -#: view:survey:0 -msgid "Test Survey" -msgstr "Probar encuesta" - -#. module: survey -#: field:survey.question,rating_allow_one_column_require:0 -msgid "Allow Only One Answer per Column (Forced Ranking)" -msgstr "Permitir una sóla respuesta por columna (clasificación forzada)" - -#. module: survey -#: view:survey:0 -#: view:survey.browse.answer:0 -#: view:survey.name.wiz:0 -#: view:survey.print:0 -#: view:survey.print.answer:0 -#: view:survey.print.statistics:0 -#: view:survey.send.invitation:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: survey -#: view:survey:0 -msgid "Close" -msgstr "Cerrar" - -#. module: survey -#: field:survey.question,comment_minimum_float:0 -#: field:survey.question,validation_minimum_float:0 -msgid "Minimum decimal number" -msgstr "Número decimal mínimo" - -#. module: survey -#: view:survey:0 -#: selection:survey,state:0 -msgid "Open" -msgstr "Abrir" - -#. module: survey -#: field:survey,tot_start_survey:0 -msgid "Total Started Survey" -msgstr "Total encuestas empezadas" - -#. module: survey -#: code:addons/survey/survey.py:467 -#, python-format -msgid "" -"#Required Answer you entered is greater than the number of answer. Please " -"use a number that is smaller than %d." -msgstr "" -"El número de respuestas requeridas que ha escrito es mayor que el número de " -"respuestas. Introduzca un número menor que %d." - -#. module: survey -#: help:survey,max_response_limit:0 -msgid "Set to one if survey is answerable only once" -msgstr "Establecer a uno si la encuesta sólo puede responderse una vez." - -#. module: survey -#: selection:survey.response,state:0 -msgid "Finished " -msgstr "Terminado " - -#. module: survey -#: model:ir.model,name:survey.model_survey_question_column_heading -msgid "Survey Question Column Heading" -msgstr "Cabecera de columna de pregunta de encuesta" - -#. module: survey -#: field:survey.answer,average:0 -msgid "#Avg" -msgstr "#Prom." - -#. module: survey -#: selection:survey.question,type:0 -msgid "Matrix of Choices (Multiple Answers Per Row)" -msgstr "Matriz de opciones (múltiples respuestas por fila)" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_name -msgid "Give Survey Answer" -msgstr "Responder encuesta" - -#. module: survey -#: model:ir.model,name:survey.model_res_users -msgid "res.users" -msgstr "res.usuarios" - -#. module: survey -#: view:survey:0 -msgid "Current" -msgstr "Actual" - -#. module: survey -#: selection:survey.response.line,state:0 -msgid "Answered" -msgstr "Contestadas" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:433 -#, python-format -msgid "Complete Survey Answer" -msgstr "Respuesta completa de la encuesta" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Comment/Essay Box" -msgstr "Campo de comentarios/redacción" - -#. module: survey -#: field:survey.answer,type:0 -msgid "Type of Answer" -msgstr "Tipo de respuesta" - -#. module: survey -#: field:survey.question,required_type:0 -msgid "Respondent must answer" -msgstr "El encuestado debe responder" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_send_invitation -#: view:survey.send.invitation:0 -msgid "Send Invitation" -msgstr "Enviar invitación" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:793 -#, python-format -msgid "You cannot select the same answer more than one time" -msgstr "No se puede seleccionar la misma respuesta más de una vez" - -#. module: survey -#: view:survey.question:0 -msgid "Search Question" -msgstr "Buscar pregunta" - -#. module: survey -#: field:survey,title:0 -msgid "Survey Title" -msgstr "Título de la encuesta" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Single Textbox" -msgstr "Campo de texto único" - -#. module: survey -#: field:survey,note:0 -#: field:survey.name.wiz,note:0 -#: view:survey.page:0 -#: field:survey.page,note:0 -#: view:survey.response.line:0 -msgid "Description" -msgstr "Descripción" - -#. module: survey -#: view:survey.name.wiz:0 -msgid "Select Survey" -msgstr "Seleccionar encuesta" - -#. module: survey -#: selection:survey.question,required_type:0 -msgid "At Least" -msgstr "Al menos" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_send_invitation_log -#: model:ir.model,name:survey.model_survey_send_invitation_log -msgid "survey.send.invitation.log" -msgstr "encuesta.enviar.invitacion.registro" - -#. module: survey -#: selection:survey.print,orientation:0 -#: selection:survey.print.answer,orientation:0 -msgid "Portrait(Vertical)" -msgstr "Retrato (Vertical)" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Must Be Specific Length" -msgstr "Debe ser de longitud específica" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: field:survey.question,page_id:0 -msgid "Survey Page" -msgstr "Página de la encuesta" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Required Answer" -msgstr "Respuesta requerida" - -#. module: survey -#: code:addons/survey/survey.py:473 -#, python-format -msgid "" -"Minimum Required Answer you entered is greater than the number of answer. " -"Please use a number that is smaller than %d." -msgstr "" -"El mínimo de respuestas requeridas que ha introducido es mayor que el número " -"de respuestas. Por favor, use un número menor que %d." - -#. module: survey -#: code:addons/survey/survey.py:458 -#, python-format -msgid "You must enter one or more answer." -msgstr "Debe dar una o más respuestas." - -#. module: survey -#: model:ir.actions.report.xml,name:survey.survey_browse_response -#: field:survey.browse.answer,response_id:0 -msgid "Survey Answers" -msgstr "Respuestas encuesta" - -#. module: survey -#: view:survey.browse.answer:0 -msgid "Select Survey and Related Answer" -msgstr "Seleccione encuesta y respuesta relacionada" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_print_survey_answer -msgid "Surveys Answers" -msgstr "Respuestas encuestas" - -#. module: survey -#: model:ir.actions.act_window,name:survey.act_survey_pages -msgid "Pages" -msgstr "Páginas" - -#. module: survey -#: code:addons/survey/survey.py:406 -#, python-format -msgid "" -"#Required Answer you entered is greater " -"than the number of answer. Please use a " -"number that is smaller than %d." -msgstr "" -"El número de respuestas requeridas que ha introducido es mayor que el número " -"de respuestas. Utilice un número menor que %d." - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:985 -#, python-format -msgid "You cannot select same answer more than one time'" -msgstr "No puede seleccionar la misma respuesta más de una vez" - -#. module: survey -#: selection:survey.print,paper_size:0 -#: selection:survey.print.answer,paper_size:0 -msgid "Legal (8.5\" x 14\")" -msgstr "Legal (8.5\" x 14\")" - -#. module: survey -#: field:survey.type,name:0 -msgid "Name" -msgstr "Nombre" - -#. module: survey -#: view:survey.page:0 -msgid "#Questions" -msgstr "#Preguntas" - -#. module: survey -#: model:ir.model,name:survey.model_survey_response -msgid "survey.response" -msgstr "encuesta.respuesta" - -#. module: survey -#: field:survey.question,comment_valid_err_msg:0 -#: field:survey.question,make_comment_field_err_msg:0 -#: field:survey.question,numeric_required_sum_err_msg:0 -#: field:survey.question,validation_valid_err_msg:0 -msgid "Error message" -msgstr "Mensaje de error" - -#. module: survey -#: model:ir.module.module,shortdesc:survey.module_meta_information -msgid "Survey Module" -msgstr "Módulo encuestas" - -#. module: survey -#: view:survey.send.invitation:0 -#: field:survey.send.invitation,send_mail:0 -msgid "Send Mail for New User" -msgstr "Enviar email para nuevo usuario" - -#. module: survey -#: code:addons/survey/survey.py:387 -#, python-format -msgid "You must enter one or more Answer." -msgstr "Debe introducir una o más respuestas" - -#. module: survey -#: code:addons/survey/survey.py:416 -#, python-format -msgid "" -"Minimum Required Answer you entered is " -"greater than the number of answer. Please " -"use a number that is smaller than %d." -msgstr "" -"El mínimo de respuestas requeridas que ha introducido es mayor que el número " -"de respuestas. Por favor, use un número menor que %d." - -#. module: survey -#: field:survey.answer,menu_choice:0 -msgid "Menu Choices" -msgstr "Opciones de menú" - -#. module: survey -#: field:survey,page_ids:0 -#: view:survey.question:0 -#: field:survey.response.line,page_id:0 -msgid "Page" -msgstr "Página" - -#. module: survey -#: code:addons/survey/survey.py:438 -#, python-format -msgid "" -"Maximum Required Answer is greater than " -"Minimum Required Answer" -msgstr "" -"El máximo de respuestas requeridas es menor que el mínimo de respuestas " -"requeridas" - -#. module: survey -#: view:survey.send.invitation.log:0 -msgid "User creation" -msgstr "Creación usuario" - -#. module: survey -#: selection:survey.question,required_type:0 -msgid "All" -msgstr "Todos" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Must Be An Email Address" -msgstr "Debe ser una dirección de email" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Multiple Choice (Only One Answer)" -msgstr "Selección múltiple (sólo una respuesta)" - -#. module: survey -#: field:survey.answer,in_visible_answer_type:0 -msgid "Is Answer Type Invisible??" -msgstr "¿El tipo de respuesta es invisible?" - -#. module: survey -#: model:ir.model,name:survey.model_survey_print_answer -msgid "survey.print.answer" -msgstr "encuesta.imprimir.respuesta" - -#. module: survey -#: view:survey.answer:0 -msgid "Menu Choices (each choice on separate by lines)" -msgstr "Opciones de menú (cada opción en líneas separadas)" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Float" -msgstr "Número flotante" - -#. module: survey -#: view:survey.response.line:0 -msgid "Single Textboxes" -msgstr "Campos de texto únicos" - -#. module: survey -#: code:addons/survey/wizard/survey_send_invitation.py:74 -#, python-format -msgid "%sSurvey is not in open state" -msgstr "%s encuesta no está en estado abierto" - -#. module: survey -#: field:survey.question.column.heading,rating_weight:0 -msgid "Weight" -msgstr "Peso" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Date & Time" -msgstr "Fecha y hora" - -#. module: survey -#: field:survey.response,date_create:0 -#: field:survey.response.line,date_create:0 -msgid "Create Date" -msgstr "Fecha creación" - -#. module: survey -#: field:survey.question,column_name:0 -msgid "Column Name" -msgstr "Nombre de columna" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_page_form -#: model:ir.model,name:survey.model_survey_page -#: model:ir.ui.menu,name:survey.menu_survey_page_form1 -#: view:survey.page:0 -msgid "Survey Pages" -msgstr "Páginas encuesta" - -#. module: survey -#: field:survey.question,numeric_required_sum:0 -msgid "Sum of all choices" -msgstr "Suma de todas las elecciones" - -#. module: survey -#: selection:survey.question,type:0 -#: view:survey.response.line:0 -msgid "Table" -msgstr "Tabla" - -#. module: survey -#: code:addons/survey/survey.py:642 -#, python-format -msgid "You cannot duplicate the resource!" -msgstr "¡No puede duplicar el recurso!" - -#. module: survey -#: field:survey.question,comment_minimum_date:0 -#: field:survey.question,validation_minimum_date:0 -msgid "Minimum date" -msgstr "Fecha mínima" - -#. module: survey -#: field:survey,response_user:0 -msgid "Maximum Answer per User" -msgstr "Máximas respuestas por usuario" - -#. module: survey -#: field:survey.name.wiz,page:0 -msgid "Page Position" -msgstr "Posición página" - -#~ msgid "All Questions" -#~ msgstr "Todas las preguntas" - -#~ msgid "Give Survey Response" -#~ msgstr "Responder la encuesta" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nombre de modelo inválido en la definición de acción." - -#~ msgid "Survey Analysis Report" -#~ msgstr "Informe de análisis de encuestas" - -#~ msgid "Total Response" -#~ msgstr "Respuesta total" - -#~ msgid "Set to one if you require only one response per user" -#~ msgstr "Establecer a uno si sólo necesita una respuesta por usuario" - -#~ msgid "Users Details" -#~ msgstr "Detalles usuarios" - -#~ msgid "Partner" -#~ msgstr "Empresa" - -#~ msgid "Skip" -#~ msgstr "Saltar" - -#~ msgid "New Survey Question" -#~ msgstr "Nueva pregunta de encuesta" - -#~ msgid "Maximum Response Limit" -#~ msgstr "Límite respuesta máxima" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "¡XML no válido para la estructura de la vista!" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " -#~ "especial!" - -#~ msgid "Configuration" -#~ msgstr "Configuración" - -#~ msgid "_Ok" -#~ msgstr "_Aceptar" - -#~ msgid "Page :-" -#~ msgstr "Página :-" - -#~ msgid "#Response" -#~ msgstr "#Respuesta" - -#~ msgid "Response Summary" -#~ msgstr "Resumen respuesta" - -#~ msgid "Response Type" -#~ msgstr "Tipo respuesta" - -#, python-format -#~ msgid "Error !" -#~ msgstr "¡Error!" - -#~ msgid "New Survey" -#~ msgstr "Nueva encuesta" - -#~ msgid "Response" -#~ msgstr "Respuesta" - -#~ msgid "Modify Date" -#~ msgstr "Fecha modificada" - -#~ msgid "Answered Question" -#~ msgstr "Pregunta respondida" - -#~ msgid "All Surveys" -#~ msgstr "Todas las encuentas" - -#~ msgid "" -#~ "\n" -#~ " This module is used for surveing. It depends on the answers or reviews " -#~ "of some questions by different users.\n" -#~ " A survey may have multiple pages. Each page may contain multiple " -#~ "questions and each question may have multiple answers.\n" -#~ " Different users may give different answers of question and according to " -#~ "that survey is done. \n" -#~ " Partners are also sent mails with user name and password for the " -#~ "invitation of the survey\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ " Este módulo es utilizado para realizar encuestas. Depende de las " -#~ "respuestas o revisión de alguna preguntas por distintos usuarios\n" -#~ " Una encuesta puede tener múltiples páginas. Cada página puede contener " -#~ "distintas preguntas y cada pregunta puede tener múltiples respuestas.\n" -#~ " Distintos usuarios pueden dar distintas respuestas a las preguntas en " -#~ "función de la encuesta realizada \n" -#~ " También se pueden enviar correos a las empresas con nombre de usuario y " -#~ "password con una invitación a realizar la encuesta.\n" -#~ " " - -#~ msgid "All Survey Questions" -#~ msgstr "Todas las preguntas de encuestas" - -#~ msgid "All Survey Pages" -#~ msgstr "Todas páginas de encuesta" - -#~ msgid "Total Started Survey :-" -#~ msgstr "Total encuestas iniciadas :-" - -#~ msgid "Survey Management" -#~ msgstr "Gestión de encuestas" - -#~ msgid "Survey Response" -#~ msgstr "Respuesta encuesta" - -#, python-format -#~ msgid "'\" + que_rec[0]['question'] + \"' This question requires an answer." -#~ msgstr "" -#~ "Copy text \t\r\n" -#~ "'\" + que_rec[0]['question'] + \"' Esta pregunta requiere una respuesta" - -#~ msgid "New Survey Page" -#~ msgstr "Nueva página de encuesta" - -#~ msgid "Survey Title :-" -#~ msgstr "Título encuesta :-" - -#~ msgid "Response Percentage" -#~ msgstr "Porcentaje respuesta" - -#~ msgid "%" -#~ msgstr "%" - -#~ msgid "Total Completed Survey :-" -#~ msgstr "Total encuesta completada :-" - -#, python-format -#~ msgid "Attention!" -#~ msgstr "¡Atención!" - -#~ msgid "Response Count" -#~ msgstr "Cuenta respuestas" - -#~ msgid "Maximum Response per User" -#~ msgstr "Máximas respuestas por usuario" diff --git a/addons/survey/i18n/es_VE.po b/addons/survey/i18n/es_VE.po deleted file mode 100644 index 7c1c9bbbad1..00000000000 --- a/addons/survey/i18n/es_VE.po +++ /dev/null @@ -1,1914 +0,0 @@ -# Spanish 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: 2011-01-11 11:16+0000\n" -"PO-Revision-Date: 2011-01-18 18:43+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\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: 2011-09-05 05:45+0000\n" -"X-Generator: Launchpad (build 13830)\n" - -#. module: survey -#: view:survey.print:0 -#: view:survey.print.answer:0 -msgid "Print Option" -msgstr "Opción imprimir" - -#. module: survey -#: code:addons/survey/survey.py:422 -#, python-format -msgid "" -"Minimum Required Answer you entered is " -"greater than the number of answer. " -"Please use a number that is smaller than %d." -msgstr "" -"El número mínimo de respuestas requeridas que ha introducido es mayor que el " -"número de respuestas. Por favor, use un número menor que %d." - -#. module: survey -#: view:survey.question.wiz:0 -msgid "Your Messages" -msgstr "Sus mensajes" - -#. module: survey -#: field:survey.question,comment_valid_type:0 -#: field:survey.question,validation_type:0 -msgid "Text Validation" -msgstr "Validación del texto" - -#. module: survey -#: code:addons/survey/survey.py:434 -#, python-format -msgid "" -"Maximum Required Answer you entered for " -"your maximum is greater than the number of answer. " -" Please use a number that is smaller than %d." -msgstr "" -"El número máximo de respuestas requeridas que ha introducido para su máximo " -"es mayor que el número de respuestas. Por favor, use un número menor que %d." - -#. module: survey -#: view:survey:0 -#: field:survey,invited_user_ids:0 -msgid "Invited User" -msgstr "Usuario invitado" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Character" -msgstr "Carácter" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_form1 -#: model:ir.ui.menu,name:survey.menu_print_survey_form -#: model:ir.ui.menu,name:survey.menu_reporting -#: model:ir.ui.menu,name:survey.menu_survey_form -#: model:ir.ui.menu,name:survey.menu_surveys -msgid "Surveys" -msgstr "Encuestas" - -#. module: survey -#: view:survey:0 -msgid "Set to draft" -msgstr "Cambiar a borrador" - -#. module: survey -#: field:survey.question,in_visible_answer_type:0 -msgid "Is Answer Type Invisible?" -msgstr "¿La respuesta es de tipo invisible?" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -#: view:survey.request:0 -msgid "Group By..." -msgstr "Agrupar por..." - -#. module: survey -#: view:survey.send.invitation.log:0 -msgid "Results :" -msgstr "Resultados :" - -#. module: survey -#: view:survey.request:0 -msgid "Survey Request" -msgstr "Solicitud de encuesta" - -#. module: survey -#: selection:survey.question,required_type:0 -msgid "A Range" -msgstr "Un rango" - -#. module: survey -#: view:survey.response.line:0 -msgid "Table Answer" -msgstr "Tabla de respuesta" - -#. module: survey -#: field:survey.history,date:0 -msgid "Date started" -msgstr "Fecha de inicio" - -#. module: survey -#: field:survey,history:0 -msgid "History Lines" -msgstr "Líneas histórico" - -#. module: survey -#: code:addons/survey/survey.py:448 -#, python-format -msgid "" -"You must enter one or more menu choices in " -"column heading (white spaces not allowed)" -msgstr "" -"Debe introducir una o más opciones de menú en la cabecera de columna (no se " -"permiten espacios en blanco)" - -#. module: survey -#: field:survey.question.column.heading,in_visible_menu_choice:0 -msgid "Is Menu Choice Invisible??" -msgstr "¿La opción de menú es invisible?" - -#. module: survey -#: field:survey.send.invitation,mail:0 -msgid "Body" -msgstr "Cuerpo" - -#. module: survey -#: field:survey.question,allow_comment:0 -msgid "Allow Comment Field" -msgstr "Permitir campo comentario" - -#. module: survey -#: selection:survey.print,paper_size:0 -#: selection:survey.print.answer,paper_size:0 -msgid "A4 (210mm x 297mm)" -msgstr "A4 (210mm x 297mm)" - -#. module: survey -#: field:survey.question,comment_maximum_date:0 -#: field:survey.question,validation_maximum_date:0 -msgid "Maximum date" -msgstr "Fecha Máxima" - -#. module: survey -#: field:survey.question,in_visible_menu_choice:0 -msgid "Is Menu Choice Invisible?" -msgstr "¿La opción de menú es invisible?" - -#. module: survey -#: view:survey:0 -msgid "Completed" -msgstr "Completada" - -#. module: survey -#: selection:survey.question,required_type:0 -msgid "Exactly" -msgstr "Exactamente" - -#. module: survey -#: view:survey:0 -msgid "Open Date" -msgstr "Fecha de Inicio" - -#. module: survey -#: view:survey.request:0 -msgid "Set to Draft" -msgstr "Cambiar a borrador" - -#. module: survey -#: field:survey.question,is_comment_require:0 -msgid "Add Comment Field" -msgstr "Campo para agregar comentario" - -#. module: survey -#: code:addons/survey/survey.py:401 -#, python-format -msgid "" -"#Required Answer you entered is greater " -"than the number of answer. Please use a " -"number that is smaller than %d." -msgstr "" -"Número de respuestas requeridas que ha escrito es mayor que el número de " -"respuestas. Introduzca un número menor que %d." - -#. module: survey -#: field:survey.question,tot_resp:0 -msgid "Total Answer" -msgstr "Total respuesta" - -#. module: survey -#: field:survey.tbl.column.heading,name:0 -msgid "Row Number" -msgstr "Número de Fila" - -#. module: survey -#: model:ir.model,name:survey.model_survey_name_wiz -msgid "survey.name.wiz" -msgstr "encuesta.nombre.asist" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_question_form -msgid "Survey Questions" -msgstr "Preguntas de las encuestas" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Matrix of Choices (Only One Answers Per Row)" -msgstr "Matriz de selección (solamente una respuesta por fila)" - -#. module: survey -#: code:addons/survey/survey.py:475 -#, python-format -msgid "" -"Maximum Required Answer you entered for your maximum is greater than the " -"number of answer. Please use a number that is smaller than %d." -msgstr "" -"El número máximo de respuestas requeridas que ha introducido para su máximo " -"es mayor que el número de respuestas. Por favor, use un número menor que %d." - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_question_message -#: model:ir.model,name:survey.model_survey_question -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Survey Question" -msgstr "Pregunta de la encuesta" - -#. module: survey -#: view:survey.question.column.heading:0 -msgid "Use if question type is rating_scale" -msgstr "Utilizar si la pregunta es de tipo calificación_escala" - -#. module: survey -#: field:survey.print,page_number:0 -#: field:survey.print.answer,page_number:0 -msgid "Include Page Number" -msgstr "Incluir número de página" - -#. module: survey -#: view:survey.page:0 -#: view:survey.question:0 -#: view:survey.send.invitation.log:0 -msgid "Ok" -msgstr "Aceptar" - -#. module: survey -#: field:survey.page,title:0 -msgid "Page Title" -msgstr "Título de la página" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_define_survey -msgid "Define Surveys" -msgstr "Definir encuestas" - -#. module: survey -#: model:ir.model,name:survey.model_survey_history -msgid "Survey History" -msgstr "Histórico encuestas" - -#. module: survey -#: field:survey.response.answer,comment:0 -#: field:survey.response.line,comment:0 -msgid "Notes" -msgstr "Notas" - -#. module: survey -#: view:survey:0 -#: view:survey.request:0 -msgid "Search Survey" -msgstr "Buscar encuesta" - -#. module: survey -#: field:survey.response.answer,answer:0 -#: field:survey.tbl.column.heading,value:0 -msgid "Value" -msgstr "Valor" - -#. module: survey -#: field:survey.question,column_heading_ids:0 -msgid " Column heading" -msgstr " Cabecera columna" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_run_survey_form -msgid "Answer a Survey" -msgstr "Responder una encuesta" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:92 -#, python-format -msgid "Error!" -msgstr "¡Error!" - -#. module: survey -#: field:survey,tot_comp_survey:0 -msgid "Total Completed Survey" -msgstr "Total encuestas completadas" - -#. module: survey -#: view:survey.response.answer:0 -msgid "(Use Only Question Type is matrix_of_drop_down_menus)" -msgstr "(usar sólo cuando el tipo de pregunta sea matrix_of_drop_down_menus)" - -#. module: survey -#: model:ir.actions.report.xml,name:survey.survey_analysis -msgid "Survey Statistics" -msgstr "Estadísticas encuestas" - -#. module: survey -#: selection:survey,state:0 -#: view:survey.request:0 -#: selection:survey.request,state:0 -msgid "Cancelled" -msgstr "Cancelada" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Rating Scale" -msgstr "Escala de calificación" - -#. module: survey -#: field:survey.question,comment_field_type:0 -msgid "Comment Field Type" -msgstr "Campo tipo comentario" - -#. module: survey -#: code:addons/survey/survey.py:375 -#: code:addons/survey/survey.py:387 -#: code:addons/survey/survey.py:401 -#: code:addons/survey/survey.py:406 -#: code:addons/survey/survey.py:416 -#: code:addons/survey/survey.py:422 -#: code:addons/survey/survey.py:428 -#: code:addons/survey/survey.py:434 -#: code:addons/survey/survey.py:438 -#: code:addons/survey/survey.py:444 -#: code:addons/survey/survey.py:448 -#: code:addons/survey/survey.py:458 -#: code:addons/survey/survey.py:462 -#: code:addons/survey/survey.py:467 -#: code:addons/survey/survey.py:473 -#: code:addons/survey/survey.py:475 -#: code:addons/survey/survey.py:477 -#: code:addons/survey/survey.py:482 -#: code:addons/survey/survey.py:484 -#: code:addons/survey/survey.py:642 -#: code:addons/survey/wizard/survey_answer.py:124 -#: code:addons/survey/wizard/survey_answer.py:131 -#: code:addons/survey/wizard/survey_answer.py:700 -#: code:addons/survey/wizard/survey_answer.py:739 -#: code:addons/survey/wizard/survey_answer.py:759 -#: code:addons/survey/wizard/survey_answer.py:788 -#: code:addons/survey/wizard/survey_answer.py:793 -#: code:addons/survey/wizard/survey_answer.py:801 -#: code:addons/survey/wizard/survey_answer.py:812 -#: code:addons/survey/wizard/survey_answer.py:821 -#: code:addons/survey/wizard/survey_answer.py:826 -#: code:addons/survey/wizard/survey_answer.py:900 -#: code:addons/survey/wizard/survey_answer.py:936 -#: code:addons/survey/wizard/survey_answer.py:954 -#: code:addons/survey/wizard/survey_answer.py:982 -#: code:addons/survey/wizard/survey_answer.py:985 -#: code:addons/survey/wizard/survey_answer.py:988 -#: code:addons/survey/wizard/survey_answer.py:1000 -#: code:addons/survey/wizard/survey_answer.py:1007 -#: code:addons/survey/wizard/survey_answer.py:1010 -#: code:addons/survey/wizard/survey_selection.py:134 -#: code:addons/survey/wizard/survey_selection.py:138 -#: code:addons/survey/wizard/survey_send_invitation.py:74 -#, python-format -msgid "Warning !" -msgstr "¡ Advertencia !" - -#. module: survey -#: selection:survey.question,comment_field_type:0 -msgid "Single Line Of Text" -msgstr "Única línea de texto" - -#. module: survey -#: view:survey.send.invitation:0 -#: field:survey.send.invitation,send_mail_existing:0 -msgid "Send Reminder for Existing User" -msgstr "Enviar recordatorio para usuario existente" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Multiple Choice (Multiple Answer)" -msgstr "Selección múltiple (mútiples respuestas)" - -#. module: survey -#: view:survey:0 -msgid "Edit Survey" -msgstr "Editar encuesta" - -#. module: survey -#: view:survey.response.line:0 -msgid "Survey Answer Line" -msgstr "Líne de respuesta encuesta" - -#. module: survey -#: field:survey.question.column.heading,menu_choice:0 -msgid "Menu Choice" -msgstr "Selección Menú" - -#. module: survey -#: selection:survey.question,required_type:0 -msgid "At Most" -msgstr "Como máximo" - -#. module: survey -#: field:survey.question,is_validation_require:0 -msgid "Validate Text" -msgstr "Validar texto" - -#. module: survey -#: field:survey.response.line,single_text:0 -msgid "Text" -msgstr "Texto" - -#. module: survey -#: constraint:res.users:0 -msgid "The chosen company is not in the allowed companies for this user" -msgstr "" -"La compañía seleccionada no está en las compañías permitidas para este " -"usuario" - -#. module: survey -#: selection:survey.print,paper_size:0 -#: selection:survey.print.answer,paper_size:0 -msgid "Letter (8.5\" x 11\")" -msgstr "Carta (8.5\" x 11\")" - -#. module: survey -#: view:survey:0 -#: field:survey,responsible_id:0 -msgid "Responsible" -msgstr "Responsable" - -#. module: survey -#: model:ir.model,name:survey.model_survey_request -msgid "survey.request" -msgstr "solicitud.encuesta" - -#. module: survey -#: field:survey.send.invitation,mail_subject:0 -#: field:survey.send.invitation,mail_subject_existing:0 -msgid "Subject" -msgstr "Asunto" - -#. module: survey -#: field:survey.question,comment_maximum_float:0 -#: field:survey.question,validation_maximum_float:0 -msgid "Maximum decimal number" -msgstr "Máximo número de decimales" - -#. module: survey -#: view:survey.request:0 -msgid "Late" -msgstr "Retrasado" - -#. module: survey -#: sql_constraint:res.users:0 -msgid "You can not have two users with the same login !" -msgstr "¡No puede tener dos usuarios con el mismo identificador de usuario!" - -#. module: survey -#: field:survey.send.invitation,mail_from:0 -msgid "From" -msgstr "De" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Don't Validate Comment Text." -msgstr "No validar texto de comentario" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Must Be A Whole Number" -msgstr "Debe ser un número entero" - -#. module: survey -#: field:survey.answer,question_id:0 -#: field:survey.page,question_ids:0 -#: field:survey.question,question:0 -#: field:survey.question.column.heading,question_id:0 -#: field:survey.response.line,question_id:0 -msgid "Question" -msgstr "Pregunta" - -#. module: survey -#: view:survey.page:0 -msgid "Search Survey Page" -msgstr "Buscar página de la encuesta" - -#. module: survey -#: view:survey.send.invitation:0 -msgid "Send" -msgstr "Enviar" - -#. module: survey -#: field:survey.question.wiz,name:0 -msgid "Number" -msgstr "Número" - -#. module: survey -#: code:addons/survey/survey.py:444 -#, python-format -msgid "" -"You must enter one or more menu choices in " -"column heading" -msgstr "" -"Debe introducir una o más opciones de menú en el encabezado de la columna" - -#. module: survey -#: model:ir.actions.act_window,help:survey.action_survey_form1 -msgid "" -"You can create survey for different purposes: recruitment interviews, " -"employee's periodical evaluations, marketing campaigns, etc. A survey is " -"made of pages containing questions of several types: text, multiple choices, " -"etc. You can edit survey manually or click on the 'Edit Survey' for a " -"WYSIWYG interface." -msgstr "" -"Puede crear encuestas para diferentes propósitos: entrevistas de selección " -"de personal, evaluaciones periódicas de los empleados, campañas de " -"marketing, etc. Una encuesta se compone de páginas que contienen preguntas " -"de varios tipos: texto, opciones múltiples, etc. Puede editar la encuesta " -"manualmente o hacer clic en \"Editar encuesta” para una interfaz WYSIWYG." - -#. module: survey -#: view:survey:0 -#: view:survey.request:0 -#: field:survey.request,state:0 -msgid "State" -msgstr "Estado" - -#. module: survey -#: view:survey.request:0 -msgid "Evaluation Plan Phase" -msgstr "Fase del plan de evaluación" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Between" -msgstr "Entre" - -#. module: survey -#: view:survey.print:0 -#: view:survey.print.answer:0 -#: view:survey.print.statistics:0 -msgid "Print" -msgstr "Imprimir" - -#. module: survey -#: field:survey.question,make_comment_field:0 -msgid "Make Comment Field an Answer Choice" -msgstr "Hacer campo comentario como opción de respuesta" - -#. module: survey -#: view:survey:0 -#: field:survey,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Email" -msgstr "Email" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_answer_surveys -msgid "Answer Surveys" -msgstr "Reponder encuestas" - -#. module: survey -#: selection:survey.response,state:0 -msgid "Not Finished" -msgstr "No teminado" - -#. module: survey -#: view:survey.print:0 -msgid "Survey Print" -msgstr "Imprimir encuesta" - -#. module: survey -#: view:survey.send.invitation:0 -msgid "Select Partner" -msgstr "Seleccionar empresa" - -#. module: survey -#: field:survey.question,type:0 -msgid "Question Type" -msgstr "Tipo pregunta" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:131 -#, python-format -msgid "You can not answer this survey more than %s times" -msgstr "No puede responder a esta encuesta más de '%s' veces" - -#. module: survey -#: model:ir.actions.act_window,name:survey.act_survey_answer -msgid "Answers" -msgstr "Respuestas" - -#. module: survey -#: model:ir.module.module,description:survey.module_meta_information -msgid "" -"\n" -" This module is used for surveying. It depends on the answers or reviews " -"of some questions by different users.\n" -" A survey may have multiple pages. Each page may contain multiple " -"questions and each question may have multiple answers.\n" -" Different users may give different answers of question and according to " -"that survey is done. \n" -" Partners are also sent mails with user name and password for the " -"invitation of the survey\n" -" " -msgstr "" -"\n" -" Este módulo se usa para realizar encuestas. Se basa en las respuestas o " -"comentarios de los usuarios a varias preguntas.\n" -" Una encuesta puede tener varias páginas. Cada página puede contener " -"múltiples preguntas y cada pregunta puede tener varias respuestas.\n" -" Diferentes usuarios pueden dar diferentes respuestas a la pregunta de " -"acuerdo a como esté confeccionada la encuesta.\n" -" También se puede invitar a las empresas a responder una encuesta, " -"enviándoles correos electrónicos con nombre de usuario y contraseña.\n" -" " - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:124 -#, python-format -msgid "You can not answer because the survey is not open" -msgstr "No puede responder porque la encuesta no está abierta" - -#. module: survey -#: selection:survey.response,response_type:0 -msgid "Link" -msgstr "Vínculo" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_type_form -#: model:ir.model,name:survey.model_survey_type -#: view:survey.type:0 -msgid "Survey Type" -msgstr "Tipo de encuesta" - -#. module: survey -#: field:survey.page,sequence:0 -msgid "Page Nr" -msgstr "Nº página" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -#: field:survey.question,descriptive_text:0 -#: selection:survey.question,type:0 -msgid "Descriptive Text" -msgstr "Texto descriptivo" - -#. module: survey -#: field:survey.question,minimum_req_ans:0 -msgid "Minimum Required Answer" -msgstr "Respuesta mínima requerida" - -#. module: survey -#: code:addons/survey/survey.py:484 -#, python-format -msgid "" -"You must enter one or more menu choices in column heading (white spaces not " -"allowed)" -msgstr "" -"Debe introducir una o más opciones de menú en el encabezado de la columna " -"(espacios en blanco no está permitidos)" - -#. module: survey -#: field:survey.question,req_error_msg:0 -msgid "Error Message" -msgstr "Mensaje de error" - -#. module: survey -#: code:addons/survey/survey.py:482 -#, python-format -msgid "You must enter one or more menu choices in column heading" -msgstr "Debe introducir una o más opciones de menú en la cabecera de columna" - -#. module: survey -#: field:survey.request,date_deadline:0 -msgid "Deadline date" -msgstr "Fecha límite" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Must Be A Date" -msgstr "Debe ser una fecha" - -#. module: survey -#: model:ir.model,name:survey.model_survey_print -msgid "survey.print" -msgstr "encuesta.imprimir" - -#. module: survey -#: view:survey.question.column.heading:0 -#: field:survey.question.column.heading,title:0 -msgid "Column Heading" -msgstr "Cabecera columna" - -#. module: survey -#: field:survey.question,is_require_answer:0 -msgid "Require Answer to Question" -msgstr "Respuesta obligatoria a la pregunta" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_request_tree -#: model:ir.ui.menu,name:survey.menu_survey_type_form1 -msgid "Survey Requests" -msgstr "Solicitudes de encuestas" - -#. module: survey -#: code:addons/survey/survey.py:375 -#: code:addons/survey/survey.py:462 -#, python-format -msgid "You must enter one or more column heading." -msgstr "Debe introducir una o más cabeceras de columna." - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:759 -#: code:addons/survey/wizard/survey_answer.py:954 -#, python-format -msgid "Please enter an integer value" -msgstr "Por favor introduzca un valor numérico entero" - -#. module: survey -#: model:ir.model,name:survey.model_survey_browse_answer -msgid "survey.browse.answer" -msgstr "encuesta.explorar.respuestas" - -#. module: survey -#: selection:survey.question,comment_field_type:0 -msgid "Paragraph of Text" -msgstr "Párrafo de texto" - -#. module: survey -#: code:addons/survey/survey.py:428 -#, python-format -msgid "" -"Maximum Required Answer you entered for " -"your maximum is greater than the number of answer. " -" Please use a number that is smaller than %d." -msgstr "" -"El número máximo de respuestas requeridas que ha introducido para su máximo " -"es mayor que el número de respuestas. Por favor, use un número menor que %d." - -#. module: survey -#: view:survey.request:0 -msgid "Watting Answer" -msgstr "Esperando respuesta" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "When the question is not answered, display this error message:" -msgstr "" -"Cuando la respuesta no sea contestada, mostrar este mensaje de error:" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Options" -msgstr "Opciones" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_browse_survey_response -msgid "Browse Answers" -msgstr "Buscar respuestas" - -#. module: survey -#: field:survey.response.answer,comment_field:0 -#: view:survey.response.line:0 -msgid "Comment" -msgstr "Comentario" - -#. module: survey -#: model:ir.model,name:survey.model_survey_answer -#: model:ir.model,name:survey.model_survey_response_answer -#: view:survey.answer:0 -#: view:survey.response:0 -#: view:survey.response.answer:0 -#: view:survey.response.line:0 -msgid "Survey Answer" -msgstr "Respuesta encuesta" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Selection" -msgstr "Selección" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_browse_survey_response -#: view:survey:0 -msgid "Answer Survey" -msgstr "Responder encuesta" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Comment Field" -msgstr "Campo comentario" - -#. module: survey -#: selection:survey.response,response_type:0 -msgid "Manually" -msgstr "Manualmente" - -#. module: survey -#: help:survey,responsible_id:0 -msgid "User responsible for survey" -msgstr "Usuario responsable de la encuesta." - -#. module: survey -#: field:survey.question,comment_column:0 -msgid "Add comment column in matrix" -msgstr "Añadir columna de comentarios en la matriz" - -#. module: survey -#: field:survey.answer,response:0 -msgid "#Answer" -msgstr "#Respuesta" - -#. module: survey -#: field:survey.print,without_pagebreak:0 -#: field:survey.print.answer,without_pagebreak:0 -msgid "Print Without Page Breaks" -msgstr "Imprimir sin saltos de página" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "When the comment is an invalid format, display this error message" -msgstr "" -"Mostrar este mensaje de error cuando el comentario esté en un formato no " -"válido" - -#. module: survey -#: code:addons/survey/wizard/survey_selection.py:138 -#, python-format -msgid "" -"You can not give more response. Please contact the author of this survey for " -"further assistance." -msgstr "" -"No puede dar más respuestas. Póngase en contacto con el autor de esta " -"encuesta para obtener más ayuda." - -#. module: survey -#: model:ir.actions.act_window,name:survey.act_survey_page_question -#: model:ir.actions.act_window,name:survey.act_survey_question -msgid "Questions" -msgstr "Preguntas" - -#. module: survey -#: help:survey,response_user:0 -msgid "Set to one if you require only one Answer per user" -msgstr "Establecer a uno si sólo requiere una respuesta por usuario." - -#. module: survey -#: field:survey,users:0 -msgid "Users" -msgstr "Usuarios" - -#. module: survey -#: view:survey.send.invitation:0 -msgid "Message" -msgstr "Mensaje" - -#. module: survey -#: view:survey:0 -#: view:survey.request:0 -msgid "MY" -msgstr "MI" - -#. module: survey -#: field:survey.question,maximum_req_ans:0 -msgid "Maximum Required Answer" -msgstr "Máximas respuestas requeridas" - -#. module: survey -#: field:survey.name.wiz,page_no:0 -msgid "Page Number" -msgstr "Número de página" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:92 -#, python-format -msgid "Cannot locate survey for the question wizard!" -msgstr "¡No se pudo localizar la encuesta para el asistente de preguntas!" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "and" -msgstr "y" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_print_statistics -#: view:survey.print.statistics:0 -msgid "Survey Print Statistics" -msgstr "Imprimir estadísticas de encuestas" - -#. module: survey -#: field:survey.send.invitation.log,note:0 -msgid "Log" -msgstr "Registro (Log)" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "When the choices do not add up correctly, display this error message" -msgstr "" -"Mostrar este mensaje de error cuando las selecciones no totalicen " -"correctamente" - -#. module: survey -#: field:survey,date_close:0 -msgid "Survey Close Date" -msgstr "Fecha de cierre encuestas" - -#. module: survey -#: field:survey,date_open:0 -msgid "Survey Open Date" -msgstr "Fecha apertura de encuesta" - -#. module: survey -#: field:survey.question.column.heading,in_visible_rating_weight:0 -msgid "Is Rating Scale Invisible ??" -msgstr "¿La escala de calificación es invisible?" - -#. module: survey -#: view:survey.browse.answer:0 -#: view:survey.name.wiz:0 -msgid "Start" -msgstr "Inicio" - -#. module: survey -#: code:addons/survey/survey.py:477 -#, python-format -msgid "Maximum Required Answer is greater than Minimum Required Answer" -msgstr "" -"El número máximo de respuestas requeridas es mayor que el mínimo de " -"respuestas requeridas." - -#. module: survey -#: field:survey.question,comment_maximum_no:0 -#: field:survey.question,validation_maximum_no:0 -msgid "Maximum number" -msgstr "Número máximo" - -#. module: survey -#: selection:survey,state:0 -#: selection:survey.request,state:0 -#: selection:survey.response.line,state:0 -msgid "Draft" -msgstr "Borrador" - -#. module: survey -#: model:ir.model,name:survey.model_survey_print_statistics -msgid "survey.print.statistics" -msgstr "encuesta.imprimir.estadisticas" - -#. module: survey -#: selection:survey,state:0 -msgid "Closed" -msgstr "Cerrada" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Matrix of Drop-down Menus" -msgstr "Matriz de menús desplegables" - -#. module: survey -#: view:survey:0 -#: field:survey.answer,answer:0 -#: field:survey.name.wiz,response:0 -#: view:survey.page:0 -#: view:survey.print.answer:0 -#: field:survey.print.answer,response_ids:0 -#: view:survey.question:0 -#: field:survey.question,answer_choice_ids:0 -#: field:survey.request,response:0 -#: field:survey.response,question_ids:0 -#: field:survey.response.answer,answer_id:0 -#: field:survey.response.answer,response_id:0 -#: view:survey.response.line:0 -#: field:survey.response.line,response_answer_ids:0 -#: field:survey.response.line,response_id:0 -#: field:survey.response.line,response_table_ids:0 -#: field:survey.send.invitation,partner_ids:0 -#: field:survey.tbl.column.heading,response_table_id:0 -msgid "Answer" -msgstr "Respuesta" - -#. module: survey -#: field:survey,max_response_limit:0 -msgid "Maximum Answer Limit" -msgstr "Límite máximo de respuesta" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_act_view_survey_send_invitation -msgid "Send Invitations" -msgstr "Enviar invitaciones" - -#. module: survey -#: field:survey.name.wiz,store_ans:0 -msgid "Store Answer" -msgstr "Guardar respuesta" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Date and Time" -msgstr "Fecha y hora" - -#. module: survey -#: field:survey,state:0 -#: field:survey.response,state:0 -#: field:survey.response.line,state:0 -msgid "Status" -msgstr "Estado" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_print -msgid "Print Survey" -msgstr "Imprimir encuesta" - -#. module: survey -#: field:survey,send_response:0 -msgid "E-mail Notification on Answer" -msgstr "Email de notificación sobre la respuesta" - -#. module: survey -#: field:survey.response.answer,value_choice:0 -msgid "Value Choice" -msgstr "Valor selección" - -#. module: survey -#: view:survey:0 -msgid "Started" -msgstr "Iniciada" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_print_answer -#: view:survey:0 -#: view:survey.print.answer:0 -msgid "Print Answer" -msgstr "Imprimir respuesta" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Multiple Textboxes" -msgstr "Campos de texto múltiples" - -#. module: survey -#: selection:survey.print,orientation:0 -#: selection:survey.print.answer,orientation:0 -msgid "Landscape(Horizontal)" -msgstr "Horizontal" - -#. module: survey -#: field:survey.question,no_of_rows:0 -msgid "No of Rows" -msgstr "Nº de columnas" - -#. module: survey -#: view:survey:0 -#: view:survey.name.wiz:0 -msgid "Survey Details" -msgstr "Detalles encuesta" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Multiple Textboxes With Different Type" -msgstr "Campos de texto múltiples con tipo diferente" - -#. module: survey -#: view:survey.question.column.heading:0 -msgid "Menu Choices (each choice on separate lines)" -msgstr "Opciones de menú (cada opción en líneas separadas)" - -#. module: survey -#: field:survey.response,response_type:0 -msgid "Answer Type" -msgstr "Tipo respuesta" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Validation" -msgstr "Validación" - -#. module: survey -#: view:survey.request:0 -#: selection:survey.request,state:0 -msgid "Waiting Answer" -msgstr "Esperando respuesta" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Must Be A Decimal Number" -msgstr "Debe ser un número decimal" - -#. module: survey -#: field:res.users,survey_id:0 -msgid "Groups" -msgstr "Grupos" - -#. module: survey -#: selection:survey.answer,type:0 -#: selection:survey.question,type:0 -msgid "Date" -msgstr "Fecha" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Integer" -msgstr "Entero" - -#. module: survey -#: model:ir.model,name:survey.model_survey_send_invitation -msgid "survey.send.invitation" -msgstr "encuesta.enviar.invitacion" - -#. module: survey -#: field:survey.history,user_id:0 -#: view:survey.request:0 -#: field:survey.request,user_id:0 -#: field:survey.response,user_id:0 -msgid "User" -msgstr "Usuario" - -#. module: survey -#: field:survey.name.wiz,transfer:0 -msgid "Page Transfer" -msgstr "Página de transferencia" - -#. module: survey -#: selection:survey.response.line,state:0 -msgid "Skiped" -msgstr "Omitido" - -#. module: survey -#: field:survey.print,paper_size:0 -#: field:survey.print.answer,paper_size:0 -msgid "Paper Size" -msgstr "Tamaño del papel" - -#. module: survey -#: field:survey.response.answer,column_id:0 -#: field:survey.tbl.column.heading,column_id:0 -msgid "Column" -msgstr "Columna" - -#. module: survey -#: model:ir.model,name:survey.model_survey_tbl_column_heading -msgid "survey.tbl.column.heading" -msgstr "encuesta.tbl.columna.cabecera" - -#. module: survey -#: model:ir.model,name:survey.model_survey_response_line -msgid "Survey Response Line" -msgstr "Línea de respuesta de encuesta" - -#. module: survey -#: code:addons/survey/wizard/survey_selection.py:134 -#, python-format -msgid "You can not give response for this survey more than %s times" -msgstr "No puede responder esta encuesta más de %s veces" - -#. module: survey -#: model:ir.actions.report.xml,name:survey.report_survey_form -#: model:ir.model,name:survey.model_survey -#: view:survey:0 -#: view:survey.browse.answer:0 -#: field:survey.browse.answer,survey_id:0 -#: field:survey.history,survey_id:0 -#: view:survey.name.wiz:0 -#: field:survey.name.wiz,survey_id:0 -#: view:survey.page:0 -#: field:survey.page,survey_id:0 -#: view:survey.print:0 -#: field:survey.print,survey_ids:0 -#: field:survey.print.statistics,survey_ids:0 -#: field:survey.question,survey:0 -#: view:survey.request:0 -#: field:survey.request,survey_id:0 -#: field:survey.response,survey_id:0 -msgid "Survey" -msgstr "Encuesta" - -#. module: survey -#: field:survey.question,in_visible_rating_weight:0 -msgid "Is Rating Scale Invisible?" -msgstr "¿La escala de calificación es invisible?" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Numerical Textboxes" -msgstr "Campos de texto numéricos" - -#. module: survey -#: model:ir.model,name:survey.model_survey_question_wiz -msgid "survey.question.wiz" -msgstr "enquesta.pregunta.asist" - -#. module: survey -#: view:survey:0 -msgid "History" -msgstr "Historial" - -#. module: survey -#: help:survey.browse.answer,response_id:0 -msgid "" -"If this field is empty, all answers of the selected survey will be print." -msgstr "" -"Si este campo está vacío, se imprimirán todas las respuestas de la encuesta " -"seleccionada." - -#. module: survey -#: field:survey.type,code:0 -msgid "Code" -msgstr "Código" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_print_survey_statistics -msgid "Surveys Statistics" -msgstr "Estadísticas de encuestas" - -#. module: survey -#: field:survey.print,orientation:0 -#: field:survey.print.answer,orientation:0 -msgid "Orientation" -msgstr "Orientación" - -#. module: survey -#: view:survey:0 -#: view:survey.answer:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Seq" -msgstr "Secuencia" - -#. module: survey -#: field:survey.request,email:0 -msgid "E-mail" -msgstr "Email" - -#. module: survey -#: field:survey.question,comment_minimum_no:0 -#: field:survey.question,validation_minimum_no:0 -msgid "Minimum number" -msgstr "Número mínimo" - -#. module: survey -#: field:survey.question,req_ans:0 -msgid "#Required Answer" -msgstr "Nº de respuestas requeridas" - -#. module: survey -#: field:survey.answer,sequence:0 -#: field:survey.question,sequence:0 -msgid "Sequence" -msgstr "Secuencia" - -#. module: survey -#: field:survey.question,comment_label:0 -msgid "Field Label" -msgstr "Etiqueta del campo" - -#. module: survey -#: view:survey:0 -msgid "Other" -msgstr "Otros" - -#. module: survey -#: view:survey.request:0 -#: selection:survey.request,state:0 -msgid "Done" -msgstr "Realizado" - -#. module: survey -#: view:survey:0 -msgid "Test Survey" -msgstr "Probar encuesta" - -#. module: survey -#: field:survey.question,rating_allow_one_column_require:0 -msgid "Allow Only One Answer per Column (Forced Ranking)" -msgstr "Permitir una sóla respuesta por columna (clasificación forzada)" - -#. module: survey -#: view:survey:0 -#: view:survey.browse.answer:0 -#: view:survey.name.wiz:0 -#: view:survey.print:0 -#: view:survey.print.answer:0 -#: view:survey.print.statistics:0 -#: view:survey.send.invitation:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: survey -#: view:survey:0 -msgid "Close" -msgstr "Cerrar" - -#. module: survey -#: field:survey.question,comment_minimum_float:0 -#: field:survey.question,validation_minimum_float:0 -msgid "Minimum decimal number" -msgstr "Número decimal mínimo" - -#. module: survey -#: view:survey:0 -#: selection:survey,state:0 -msgid "Open" -msgstr "Abrir" - -#. module: survey -#: field:survey,tot_start_survey:0 -msgid "Total Started Survey" -msgstr "Total encuestas empezadas" - -#. module: survey -#: code:addons/survey/survey.py:467 -#, python-format -msgid "" -"#Required Answer you entered is greater than the number of answer. Please " -"use a number that is smaller than %d." -msgstr "" -"El número de respuestas requeridas que ha escrito es mayor que el número de " -"respuestas. Introduzca un número menor que %d." - -#. module: survey -#: help:survey,max_response_limit:0 -msgid "Set to one if survey is answerable only once" -msgstr "Establecer a uno si la encuesta sólo puede responderse una vez." - -#. module: survey -#: selection:survey.response,state:0 -msgid "Finished " -msgstr "Terminado " - -#. module: survey -#: model:ir.model,name:survey.model_survey_question_column_heading -msgid "Survey Question Column Heading" -msgstr "Cabecera de columna de pregunta de encuesta" - -#. module: survey -#: field:survey.answer,average:0 -msgid "#Avg" -msgstr "#Prom." - -#. module: survey -#: selection:survey.question,type:0 -msgid "Matrix of Choices (Multiple Answers Per Row)" -msgstr "Matriz de opciones (múltiples respuestas por fila)" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_name -msgid "Give Survey Answer" -msgstr "Responder encuesta" - -#. module: survey -#: model:ir.model,name:survey.model_res_users -msgid "res.users" -msgstr "res.usuarios" - -#. module: survey -#: view:survey:0 -msgid "Current" -msgstr "Actual" - -#. module: survey -#: selection:survey.response.line,state:0 -msgid "Answered" -msgstr "Contestadas" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:433 -#, python-format -msgid "Complete Survey Answer" -msgstr "Respuesta completa de la encuesta" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Comment/Essay Box" -msgstr "Campo de comentarios/redacción" - -#. module: survey -#: field:survey.answer,type:0 -msgid "Type of Answer" -msgstr "Tipo de respuesta" - -#. module: survey -#: field:survey.question,required_type:0 -msgid "Respondent must answer" -msgstr "El encuestado debe responder" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_send_invitation -#: view:survey.send.invitation:0 -msgid "Send Invitation" -msgstr "Enviar invitación" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:793 -#, python-format -msgid "You cannot select the same answer more than one time" -msgstr "No se puede seleccionar la misma respuesta más de una vez" - -#. module: survey -#: view:survey.question:0 -msgid "Search Question" -msgstr "Buscar pregunta" - -#. module: survey -#: field:survey,title:0 -msgid "Survey Title" -msgstr "Título de la encuesta" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Single Textbox" -msgstr "Campo de texto único" - -#. module: survey -#: field:survey,note:0 -#: field:survey.name.wiz,note:0 -#: view:survey.page:0 -#: field:survey.page,note:0 -#: view:survey.response.line:0 -msgid "Description" -msgstr "Descripción" - -#. module: survey -#: view:survey.name.wiz:0 -msgid "Select Survey" -msgstr "Seleccionar encuesta" - -#. module: survey -#: selection:survey.question,required_type:0 -msgid "At Least" -msgstr "Al menos" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_send_invitation_log -#: model:ir.model,name:survey.model_survey_send_invitation_log -msgid "survey.send.invitation.log" -msgstr "encuesta.enviar.invitacion.registro" - -#. module: survey -#: selection:survey.print,orientation:0 -#: selection:survey.print.answer,orientation:0 -msgid "Portrait(Vertical)" -msgstr "Retrato (Vertical)" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Must Be Specific Length" -msgstr "Debe ser de longitud específica" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: field:survey.question,page_id:0 -msgid "Survey Page" -msgstr "Página de la encuesta" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Required Answer" -msgstr "Respuesta requerida" - -#. module: survey -#: code:addons/survey/survey.py:473 -#, python-format -msgid "" -"Minimum Required Answer you entered is greater than the number of answer. " -"Please use a number that is smaller than %d." -msgstr "" -"El mínimo de respuestas requeridas que ha introducido es mayor que el número " -"de respuestas. Por favor, use un número menor que %d." - -#. module: survey -#: code:addons/survey/survey.py:458 -#, python-format -msgid "You must enter one or more answer." -msgstr "Debe dar una o más respuestas." - -#. module: survey -#: model:ir.actions.report.xml,name:survey.survey_browse_response -#: field:survey.browse.answer,response_id:0 -msgid "Survey Answers" -msgstr "Respuestas encuesta" - -#. module: survey -#: view:survey.browse.answer:0 -msgid "Select Survey and Related Answer" -msgstr "Seleccione encuesta y respuesta relacionada" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_print_survey_answer -msgid "Surveys Answers" -msgstr "Respuestas encuestas" - -#. module: survey -#: model:ir.actions.act_window,name:survey.act_survey_pages -msgid "Pages" -msgstr "Páginas" - -#. module: survey -#: code:addons/survey/survey.py:406 -#, python-format -msgid "" -"#Required Answer you entered is greater " -"than the number of answer. Please use a " -"number that is smaller than %d." -msgstr "" -"El número de respuestas requeridas que ha introducido es mayor que el número " -"de respuestas. Utilice un número menor que %d." - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:985 -#, python-format -msgid "You cannot select same answer more than one time'" -msgstr "No puede seleccionar la misma respuesta más de una vez" - -#. module: survey -#: selection:survey.print,paper_size:0 -#: selection:survey.print.answer,paper_size:0 -msgid "Legal (8.5\" x 14\")" -msgstr "Legal (8.5\" x 14\")" - -#. module: survey -#: field:survey.type,name:0 -msgid "Name" -msgstr "Nombre" - -#. module: survey -#: view:survey.page:0 -msgid "#Questions" -msgstr "#Preguntas" - -#. module: survey -#: model:ir.model,name:survey.model_survey_response -msgid "survey.response" -msgstr "encuesta.respuesta" - -#. module: survey -#: field:survey.question,comment_valid_err_msg:0 -#: field:survey.question,make_comment_field_err_msg:0 -#: field:survey.question,numeric_required_sum_err_msg:0 -#: field:survey.question,validation_valid_err_msg:0 -msgid "Error message" -msgstr "Mensaje de error" - -#. module: survey -#: model:ir.module.module,shortdesc:survey.module_meta_information -msgid "Survey Module" -msgstr "Módulo encuestas" - -#. module: survey -#: view:survey.send.invitation:0 -#: field:survey.send.invitation,send_mail:0 -msgid "Send Mail for New User" -msgstr "Enviar email para nuevo usuario" - -#. module: survey -#: code:addons/survey/survey.py:387 -#, python-format -msgid "You must enter one or more Answer." -msgstr "Debe introducir una o más respuestas" - -#. module: survey -#: code:addons/survey/survey.py:416 -#, python-format -msgid "" -"Minimum Required Answer you entered is " -"greater than the number of answer. Please " -"use a number that is smaller than %d." -msgstr "" -"El mínimo de respuestas requeridas que ha introducido es mayor que el número " -"de respuestas. Por favor, use un número menor que %d." - -#. module: survey -#: field:survey.answer,menu_choice:0 -msgid "Menu Choices" -msgstr "Opciones de menú" - -#. module: survey -#: field:survey,page_ids:0 -#: view:survey.question:0 -#: field:survey.response.line,page_id:0 -msgid "Page" -msgstr "Página" - -#. module: survey -#: code:addons/survey/survey.py:438 -#, python-format -msgid "" -"Maximum Required Answer is greater than " -"Minimum Required Answer" -msgstr "" -"El máximo de respuestas requeridas es menor que el mínimo de respuestas " -"requeridas" - -#. module: survey -#: view:survey.send.invitation.log:0 -msgid "User creation" -msgstr "Creación usuario" - -#. module: survey -#: selection:survey.question,required_type:0 -msgid "All" -msgstr "Todos" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Must Be An Email Address" -msgstr "Debe ser una dirección de email" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Multiple Choice (Only One Answer)" -msgstr "Selección múltiple (sólo una respuesta)" - -#. module: survey -#: field:survey.answer,in_visible_answer_type:0 -msgid "Is Answer Type Invisible??" -msgstr "¿El tipo de respuesta es invisible?" - -#. module: survey -#: model:ir.model,name:survey.model_survey_print_answer -msgid "survey.print.answer" -msgstr "encuesta.imprimir.respuesta" - -#. module: survey -#: view:survey.answer:0 -msgid "Menu Choices (each choice on separate by lines)" -msgstr "Opciones de menú (cada opción en líneas separadas)" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Float" -msgstr "Número flotante" - -#. module: survey -#: view:survey.response.line:0 -msgid "Single Textboxes" -msgstr "Campos de texto únicos" - -#. module: survey -#: code:addons/survey/wizard/survey_send_invitation.py:74 -#, python-format -msgid "%sSurvey is not in open state" -msgstr "%s encuesta no está en estado abierto" - -#. module: survey -#: field:survey.question.column.heading,rating_weight:0 -msgid "Weight" -msgstr "Peso" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Date & Time" -msgstr "Fecha y hora" - -#. module: survey -#: field:survey.response,date_create:0 -#: field:survey.response.line,date_create:0 -msgid "Create Date" -msgstr "Fecha creación" - -#. module: survey -#: field:survey.question,column_name:0 -msgid "Column Name" -msgstr "Nombre de columna" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_page_form -#: model:ir.model,name:survey.model_survey_page -#: model:ir.ui.menu,name:survey.menu_survey_page_form1 -#: view:survey.page:0 -msgid "Survey Pages" -msgstr "Páginas encuesta" - -#. module: survey -#: field:survey.question,numeric_required_sum:0 -msgid "Sum of all choices" -msgstr "Suma de todas las elecciones" - -#. module: survey -#: selection:survey.question,type:0 -#: view:survey.response.line:0 -msgid "Table" -msgstr "Tabla" - -#. module: survey -#: code:addons/survey/survey.py:642 -#, python-format -msgid "You cannot duplicate the resource!" -msgstr "¡No puede duplicar el recurso!" - -#. module: survey -#: field:survey.question,comment_minimum_date:0 -#: field:survey.question,validation_minimum_date:0 -msgid "Minimum date" -msgstr "Fecha mínima" - -#. module: survey -#: field:survey,response_user:0 -msgid "Maximum Answer per User" -msgstr "Máximas respuestas por usuario" - -#. module: survey -#: field:survey.name.wiz,page:0 -msgid "Page Position" -msgstr "Posición página" - -#~ msgid "All Questions" -#~ msgstr "Todas las preguntas" - -#~ msgid "Give Survey Response" -#~ msgstr "Responder la encuesta" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nombre de modelo inválido en la definición de acción." - -#~ msgid "Survey Analysis Report" -#~ msgstr "Informe de análisis de encuestas" - -#~ msgid "Total Response" -#~ msgstr "Respuesta total" - -#~ msgid "Set to one if you require only one response per user" -#~ msgstr "Establecer a uno si sólo necesita una respuesta por usuario" - -#~ msgid "Users Details" -#~ msgstr "Detalles usuarios" - -#~ msgid "Partner" -#~ msgstr "Empresa" - -#~ msgid "Skip" -#~ msgstr "Saltar" - -#~ msgid "New Survey Question" -#~ msgstr "Nueva pregunta de encuesta" - -#~ msgid "Maximum Response Limit" -#~ msgstr "Límite respuesta máxima" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "¡XML no válido para la estructura de la vista!" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " -#~ "especial!" - -#~ msgid "Configuration" -#~ msgstr "Configuración" - -#~ msgid "_Ok" -#~ msgstr "_Aceptar" - -#~ msgid "Page :-" -#~ msgstr "Página :-" - -#~ msgid "#Response" -#~ msgstr "#Respuesta" - -#~ msgid "Response Summary" -#~ msgstr "Resumen respuesta" - -#~ msgid "Response Type" -#~ msgstr "Tipo respuesta" - -#, python-format -#~ msgid "Error !" -#~ msgstr "¡Error!" - -#~ msgid "New Survey" -#~ msgstr "Nueva encuesta" - -#~ msgid "Response" -#~ msgstr "Respuesta" - -#~ msgid "Modify Date" -#~ msgstr "Fecha modificada" - -#~ msgid "Answered Question" -#~ msgstr "Pregunta respondida" - -#~ msgid "All Surveys" -#~ msgstr "Todas las encuentas" - -#~ msgid "" -#~ "\n" -#~ " This module is used for surveing. It depends on the answers or reviews " -#~ "of some questions by different users.\n" -#~ " A survey may have multiple pages. Each page may contain multiple " -#~ "questions and each question may have multiple answers.\n" -#~ " Different users may give different answers of question and according to " -#~ "that survey is done. \n" -#~ " Partners are also sent mails with user name and password for the " -#~ "invitation of the survey\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ " Este módulo es utilizado para realizar encuestas. Depende de las " -#~ "respuestas o revisión de alguna preguntas por distintos usuarios\n" -#~ " Una encuesta puede tener múltiples páginas. Cada página puede contener " -#~ "distintas preguntas y cada pregunta puede tener múltiples respuestas.\n" -#~ " Distintos usuarios pueden dar distintas respuestas a las preguntas en " -#~ "función de la encuesta realizada \n" -#~ " También se pueden enviar correos a las empresas con nombre de usuario y " -#~ "password con una invitación a realizar la encuesta.\n" -#~ " " - -#~ msgid "All Survey Questions" -#~ msgstr "Todas las preguntas de encuestas" - -#~ msgid "All Survey Pages" -#~ msgstr "Todas páginas de encuesta" - -#~ msgid "Total Started Survey :-" -#~ msgstr "Total encuestas iniciadas :-" - -#~ msgid "Survey Management" -#~ msgstr "Gestión de encuestas" - -#~ msgid "Survey Response" -#~ msgstr "Respuesta encuesta" - -#, python-format -#~ msgid "'\" + que_rec[0]['question'] + \"' This question requires an answer." -#~ msgstr "" -#~ "Copy text \t\r\n" -#~ "'\" + que_rec[0]['question'] + \"' Esta pregunta requiere una respuesta" - -#~ msgid "New Survey Page" -#~ msgstr "Nueva página de encuesta" - -#~ msgid "Survey Title :-" -#~ msgstr "Título encuesta :-" - -#~ msgid "Response Percentage" -#~ msgstr "Porcentaje respuesta" - -#~ msgid "%" -#~ msgstr "%" - -#~ msgid "Total Completed Survey :-" -#~ msgstr "Total encuesta completada :-" - -#, python-format -#~ msgid "Attention!" -#~ msgstr "¡Atención!" - -#~ msgid "Response Count" -#~ msgstr "Cuenta respuestas" - -#~ msgid "Maximum Response per User" -#~ msgstr "Máximas respuestas por usuario" diff --git a/addons/survey/i18n/et.po b/addons/survey/i18n/et.po index c18b4bebb6c..8c44ddd5ed2 100644 --- a/addons/survey/i18n/et.po +++ b/addons/survey/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/fi.po b/addons/survey/i18n/fi.po index fb7db9e52db..93bb93889cc 100644 --- a/addons/survey/i18n/fi.po +++ b/addons/survey/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/fr.po b/addons/survey/i18n/fr.po index ac97a824816..c02aa8a0e46 100644 --- a/addons/survey/i18n/fr.po +++ b/addons/survey/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/gl.po b/addons/survey/i18n/gl.po index 54c736658df..36e3589775d 100644 --- a/addons/survey/i18n/gl.po +++ b/addons/survey/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/hr.po b/addons/survey/i18n/hr.po index af42d31ebbe..387fa6c9ddc 100644 --- a/addons/survey/i18n/hr.po +++ b/addons/survey/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: hr\n" #. module: survey diff --git a/addons/survey/i18n/hu.po b/addons/survey/i18n/hu.po index 640777742ea..5e2918f2e49 100644 --- a/addons/survey/i18n/hu.po +++ b/addons/survey/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/it.po b/addons/survey/i18n/it.po index 076d7e4650b..351358601c3 100644 --- a/addons/survey/i18n/it.po +++ b/addons/survey/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/ja.po b/addons/survey/i18n/ja.po index 78e5be088f5..52bda24076b 100644 --- a/addons/survey/i18n/ja.po +++ b/addons/survey/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/mk.po b/addons/survey/i18n/mk.po index 6a244e194ff..51cd9eee43b 100644 --- a/addons/survey/i18n/mk.po +++ b/addons/survey/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/mn.po b/addons/survey/i18n/mn.po index c20d8454c8f..2e8318b02ec 100644 --- a/addons/survey/i18n/mn.po +++ b/addons/survey/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/nl.po b/addons/survey/i18n/nl.po index b38408c9e83..a6166728b11 100644 --- a/addons/survey/i18n/nl.po +++ b/addons/survey/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/pl.po b/addons/survey/i18n/pl.po index 6ef26c0c47b..0e2236643f7 100644 --- a/addons/survey/i18n/pl.po +++ b/addons/survey/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/pt.po b/addons/survey/i18n/pt.po index 10bac10c790..18eccb20aff 100644 --- a/addons/survey/i18n/pt.po +++ b/addons/survey/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/pt_BR.po b/addons/survey/i18n/pt_BR.po index ad8405fa38c..36502805d01 100644 --- a/addons/survey/i18n/pt_BR.po +++ b/addons/survey/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/ro.po b/addons/survey/i18n/ro.po index f7575ce5ddf..de328c006a5 100644 --- a/addons/survey/i18n/ro.po +++ b/addons/survey/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/ru.po b/addons/survey/i18n/ru.po index 74527e0a55e..879a792681f 100644 --- a/addons/survey/i18n/ru.po +++ b/addons/survey/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/sl.po b/addons/survey/i18n/sl.po index 931e9082ce4..fcc878d56b0 100644 --- a/addons/survey/i18n/sl.po +++ b/addons/survey/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/sr.po b/addons/survey/i18n/sr.po index 2441681e31f..bdf4719b73d 100644 --- a/addons/survey/i18n/sr.po +++ b/addons/survey/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:07+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/sr@latin.po b/addons/survey/i18n/sr@latin.po index 09df57db437..9a6d5b58ca6 100644 --- a/addons/survey/i18n/sr@latin.po +++ b/addons/survey/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/survey.pot b/addons/survey/i18n/survey.pot deleted file mode 100644 index b7e9fcbb924..00000000000 --- a/addons/survey/i18n/survey.pot +++ /dev/null @@ -1,1719 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * survey -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-21 17:06+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: survey -#: view:survey.response.line:0 -msgid "Single Textboxes" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:471 -#, python-format -msgid "Minimum Required Answer you entered is greater than the number of answer. Please use a number that is smaller than %d." -msgstr "" - -#. module: survey -#: view:survey.question.wiz:0 -msgid "Your Messages" -msgstr "" - -#. module: survey -#: field:survey.question,comment_valid_type:0 -#: field:survey.question,validation_type:0 -msgid "Text Validation" -msgstr "" - -#. module: survey -#: view:survey:0 -msgid "Answers:" -msgstr "" - -#. module: survey -#: view:survey:0 -#: field:survey,invited_user_ids:0 -msgid "Invited User" -msgstr "" - -#. module: survey -#: model:survey.type,name:survey.survey_type1 -msgid "Human Resources" -msgstr "" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Character" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_form1 -#: model:ir.ui.menu,name:survey.menu_survey_form -#: model:ir.ui.menu,name:survey.menu_surveys -msgid "Surveys" -msgstr "" - -#. module: survey -#: field:survey.question,in_visible_answer_type:0 -msgid "Is Answer Type Invisible?" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -#: view:survey.request:0 -msgid "Group By..." -msgstr "" - -#. module: survey -#: view:survey.send.invitation.log:0 -msgid "Results :" -msgstr "" - -#. module: survey -#: view:survey.request:0 -msgid "Survey Request" -msgstr "" - -#. module: survey -#: selection:survey.question,required_type:0 -msgid "A Range" -msgstr "" - -#. module: survey -#: view:survey.response.line:0 -msgid "Table Answer" -msgstr "" - -#. module: survey -#: field:survey.history,date:0 -msgid "Date started" -msgstr "" - -#. module: survey -#: field:survey,history:0 -msgid "History Lines" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -#: field:survey.question,descriptive_text:0 -#: selection:survey.question,type:0 -msgid "Descriptive Text" -msgstr "" - -#. module: survey -#: field:survey.send.invitation,mail:0 -msgid "Body" -msgstr "" - -#. module: survey -#: field:survey.question,allow_comment:0 -msgid "Allow Comment Field" -msgstr "" - -#. module: survey -#: selection:survey.print,paper_size:0 -#: selection:survey.print.answer,paper_size:0 -msgid "A4 (210mm x 297mm)" -msgstr "" - -#. module: survey -#: field:survey.question,comment_maximum_date:0 -#: field:survey.question,validation_maximum_date:0 -msgid "Maximum date" -msgstr "" - -#. module: survey -#: field:survey.question,in_visible_menu_choice:0 -msgid "Is Menu Choice Invisible?" -msgstr "" - -#. module: survey -#: view:survey:0 -msgid "Completed" -msgstr "" - -#. module: survey -#: selection:survey.question,required_type:0 -msgid "Exactly" -msgstr "" - -#. module: survey -#: view:survey:0 -msgid "Open Date" -msgstr "" - -#. module: survey -#: view:survey.request:0 -msgid "Set to Draft" -msgstr "" - -#. module: survey -#: field:survey.question,is_comment_require:0 -msgid "Add Comment Field" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:450 -#, python-format -msgid "#Required Answer you entered is greater than the number of answer. Please use a number that is smaller than %d." -msgstr "" - -#. module: survey -#: field:survey.question,tot_resp:0 -msgid "Total Answer" -msgstr "" - -#. module: survey -#: field:survey.tbl.column.heading,name:0 -msgid "Row Number" -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_name_wiz -msgid "survey.name.wiz" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:483 -#, python-format -msgid "Maximum Required Answer you entered for your maximum is greater than the number of answer. Please use a number that is smaller than %d." -msgstr "" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Matrix of Choices (Only One Answers Per Row)" -msgstr "" - -#. module: survey -#: view:survey.send.invitation:0 -#: field:survey.send.invitation,send_mail_existing:0 -msgid "Send Reminder for Existing User" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:525 -#, python-format -msgid "Maximum Required Answer you entered for your maximum is greater than the number of answer. Please use a number that is smaller than %d." -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_question -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Survey Question" -msgstr "" - -#. module: survey -#: view:survey.question.column.heading:0 -msgid "Use if question type is rating_scale" -msgstr "" - -#. module: survey -#: field:survey.print,page_number:0 -#: field:survey.print.answer,page_number:0 -msgid "Include Page Number" -msgstr "" - -#. module: survey -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Ok" -msgstr "" - -#. module: survey -#: field:survey.page,title:0 -msgid "Page Title" -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_history -msgid "Survey History" -msgstr "" - -#. module: survey -#: field:survey.response.answer,comment:0 -#: field:survey.response.line,comment:0 -msgid "Notes" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.request:0 -msgid "Search Survey" -msgstr "" - -#. module: survey -#: field:survey.response.answer,answer:0 -#: field:survey.tbl.column.heading,value:0 -msgid "Value" -msgstr "" - -#. module: survey -#: field:survey.question,column_heading_ids:0 -msgid " Column heading" -msgstr "" - -#. module: survey -#: code:addons/survey/wizard/survey_send_invitation.py:71 -#, python-format -msgid "The following surveys are not in open state: %s" -msgstr "" - -#. module: survey -#: field:survey,tot_comp_survey:0 -msgid "Total Completed Survey" -msgstr "" - -#. module: survey -#: view:survey.response.answer:0 -msgid "(Use Only Question Type is matrix_of_drop_down_menus)" -msgstr "" - -#. module: survey -#: model:ir.actions.report.xml,name:survey.survey_analysis -msgid "Survey Statistics" -msgstr "" - -#. module: survey -#: selection:survey,state:0 -#: selection:survey.request,state:0 -msgid "Cancelled" -msgstr "" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Rating Scale" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:152 -#: code:addons/survey/survey.py:187 -#, python-format -msgid "This survey has no question defined. Please define the questions and answers first." -msgstr "" - -#. module: survey -#: field:survey.question,comment_field_type:0 -msgid "Comment Field Type" -msgstr "" - -#. module: survey -#: selection:survey.question,comment_field_type:0 -msgid "Single Line Of Text" -msgstr "" - -#. module: survey -#: field:survey,date_open:0 -msgid "Survey Open Date" -msgstr "" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:800 -#, python-format -msgid "You cannot select the same answer more than one time." -msgstr "" - -#. module: survey -#: field:survey,color:0 -msgid "Color Index" -msgstr "" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Multiple Choice (Multiple Answer)" -msgstr "" - -#. module: survey -#: view:survey:0 -msgid "Edit Survey" -msgstr "" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:766 -#: code:addons/survey/wizard/survey_answer.py:961 -#, python-format -msgid "Please enter an integer value." -msgstr "" - -#. module: survey -#: field:survey.question.column.heading,menu_choice:0 -msgid "Menu Choice" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:493 -#, python-format -msgid "You must enter one or more menu choices in column heading." -msgstr "" - -#. module: survey -#: selection:survey.question,required_type:0 -msgid "At Most" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.request:0 -msgid "My Survey(s)" -msgstr "" - -#. module: survey -#: view:survey.response.line:0 -msgid "Survey Answer Line" -msgstr "" - -#. module: survey -#: code:addons/survey/wizard/survey_send_invitation.py:72 -#, python-format -msgid "\n" -"Hello %%(name)s, \n" -"\n" -"\n" -"Would you please spent some of your time to fill-in our survey: \n" -"%s\n" -"\n" -"You can access this survey with the following parameters:\n" -" URL: %s\n" -" Your login ID: %%(login)s\n" -"\n" -" Your password: %%(passwd)s\n" -"\n" -"\n" -"\n" -"\n" -"Thanks," -msgstr "" - -#. module: survey -#: field:survey.response.line,single_text:0 -msgid "Text" -msgstr "" - -#. module: survey -#: view:survey:0 -msgid "Edit..." -msgstr "" - -#. module: survey -#: selection:survey.print,paper_size:0 -#: selection:survey.print.answer,paper_size:0 -msgid "Letter (8.5\" x 11\")" -msgstr "" - -#. module: survey -#: view:survey:0 -#: field:survey,responsible_id:0 -msgid "Responsible" -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_request -msgid "survey.request" -msgstr "" - -#. module: survey -#: field:survey.send.invitation,mail_subject:0 -#: field:survey.send.invitation,mail_subject_existing:0 -msgid "Subject" -msgstr "" - -#. module: survey -#: field:survey.question,comment_maximum_float:0 -#: field:survey.question,validation_maximum_float:0 -msgid "Maximum decimal number" -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_tbl_column_heading -msgid "survey.tbl.column.heading" -msgstr "" - -#. module: survey -#: view:survey.send.invitation:0 -#: field:survey.send.invitation,send_mail:0 -msgid "Send Mail for New User" -msgstr "" - -#. module: survey -#: field:survey.send.invitation,mail_from:0 -msgid "From" -msgstr "" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Don't Validate Comment Text." -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:532 -#, python-format -msgid "You must enter one or more menu choices in column heading." -msgstr "" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Must Be A Whole Number" -msgstr "" - -#. module: survey -#: field:survey.answer,question_id:0 -#: view:survey.question:0 -#: field:survey.question,question:0 -#: field:survey.question.column.heading,question_id:0 -#: field:survey.response.line,question_id:0 -msgid "Question" -msgstr "" - -#. module: survey -#: view:survey.page:0 -msgid "Search Survey Page" -msgstr "" - -#. module: survey -#: field:survey.question.wiz,name:0 -msgid "Number" -msgstr "" - -#. module: survey -#: view:survey.request:0 -msgid "Evaluation Plan Phase" -msgstr "" - -#. module: survey -#: code:addons/survey/wizard/survey_send_invitation.py:185 -#: code:addons/survey/wizard/survey_send_invitation.py:196 -#: code:addons/survey/wizard/survey_send_invitation.py:199 -#, python-format -msgid "Unknown" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Between" -msgstr "" - -#. module: survey -#: view:survey.print:0 -#: view:survey.print.answer:0 -#: view:survey.print.statistics:0 -msgid "Print" -msgstr "" - -#. module: survey -#: view:survey:0 -msgid "New" -msgstr "" - -#. module: survey -#: field:survey.question,make_comment_field:0 -msgid "Make Comment Field an Answer Choice" -msgstr "" - -#. module: survey -#: view:survey:0 -#: field:survey,type:0 -msgid "Type" -msgstr "" - -#. module: survey -#: selection:survey.answer,type:0 -#: field:survey.request,email:0 -msgid "Email" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:96 -#: code:addons/survey/survey.py:259 -#, python-format -msgid "%s (copy)" -msgstr "" - -#. module: survey -#: selection:survey.response,state:0 -msgid "Not Finished" -msgstr "" - -#. module: survey -#: view:survey.print:0 -msgid "Survey Print" -msgstr "" - -#. module: survey -#: view:survey.send.invitation:0 -msgid "Select Partner" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:527 -#, python-format -msgid "Maximum Required Answer is greater than Minimum Required Answer." -msgstr "" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_reporting -msgid "Reporting" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.act_survey_answer -msgid "Answers" -msgstr "" - -#. module: survey -#: selection:survey.response,response_type:0 -msgid "Link" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_type_form -#: model:ir.model,name:survey.model_survey_type -#: view:survey.type:0 -msgid "Survey Type" -msgstr "" - -#. module: survey -#: field:survey.page,sequence:0 -msgid "Page Nr" -msgstr "" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_print_survey_form -msgid "Print Surveys" -msgstr "" - -#. module: survey -#: field:survey.question.column.heading,in_visible_menu_choice:0 -msgid "Is Menu Choice Invisible??" -msgstr "" - -#. module: survey -#: field:survey.question,minimum_req_ans:0 -msgid "Minimum Required Answer" -msgstr "" - -#. module: survey -#: field:survey.question,req_error_msg:0 -msgid "Error Message" -msgstr "" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:124 -#, python-format -msgid "You cannot answer this survey more than %s times." -msgstr "" - -#. module: survey -#: field:survey.request,date_deadline:0 -msgid "Deadline date" -msgstr "" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Must Be A Date" -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_print -msgid "survey.print" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: field:survey.question,page_id:0 -msgid "Survey Page" -msgstr "" - -#. module: survey -#: view:survey.question.column.heading:0 -#: field:survey.question.column.heading,title:0 -msgid "Column Heading" -msgstr "" - -#. module: survey -#: field:survey.question,is_require_answer:0 -msgid "Require Answer to Question" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.act_survey_request -#: model:ir.actions.act_window,name:survey.action_survey_request_tree -#: model:ir.ui.menu,name:survey.menu_survey_type_form1 -msgid "Survey Requests" -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_browse_answer -msgid "survey.browse.answer" -msgstr "" - -#. module: survey -#: selection:survey.question,comment_field_type:0 -msgid "Paragraph of Text" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:477 -#, python-format -msgid "Maximum Required Answer you entered for your maximum is greater than the number of answer. Please use a number that is smaller than %d." -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "When the question is not answered, display this error message:" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Options" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:436 -#, python-format -msgid "You must enter one or more Answers for question \"%s\" of page %s." -msgstr "" - -#. module: survey -#: view:survey:0 -msgid "Delete" -msgstr "" - -#. module: survey -#: field:survey.response.answer,comment_field:0 -#: view:survey.response.line:0 -msgid "Comment" -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_answer -#: model:ir.model,name:survey.model_survey_response_answer -#: view:survey.answer:0 -#: view:survey.response:0 -#: view:survey.response.answer:0 -#: view:survey.response.line:0 -msgid "Survey Answer" -msgstr "" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Selection" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_browse_survey_response -#: view:survey:0 -msgid "Answer Survey" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Comment Field" -msgstr "" - -#. module: survey -#: selection:survey.response,response_type:0 -msgid "Manually" -msgstr "" - -#. module: survey -#: view:survey.send.invitation:0 -msgid "_Send" -msgstr "" - -#. module: survey -#: help:survey,responsible_id:0 -msgid "User responsible for survey" -msgstr "" - -#. module: survey -#: field:survey,page_ids:0 -#: view:survey.page:0 -#: view:survey.question:0 -#: field:survey.response.line,page_id:0 -msgid "Page" -msgstr "" - -#. module: survey -#: field:survey.question,comment_column:0 -msgid "Add comment column in matrix" -msgstr "" - -#. module: survey -#: field:survey.answer,response:0 -msgid "#Answer" -msgstr "" - -#. module: survey -#: field:survey.print,without_pagebreak:0 -#: field:survey.print.answer,without_pagebreak:0 -msgid "Print Without Page Breaks" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "When the comment is an invalid format, display this error message" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.act_survey_page_question -#: model:ir.actions.act_window,name:survey.act_survey_question -#: field:survey.page,question_ids:0 -msgid "Questions" -msgstr "" - -#. module: survey -#: help:survey,response_user:0 -msgid "Set to one if you require only one Answer per user" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:424 -#: code:addons/survey/survey.py:512 -#, python-format -msgid "You must enter one or more column headings for question \"%s\" of page %s." -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_res_users -#: field:survey,users:0 -msgid "Users" -msgstr "" - -#. module: survey -#: view:survey.send.invitation:0 -msgid "Message" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:497 -#, python-format -msgid "You must enter one or more menu choices in column heading (white spaces not allowed)." -msgstr "" - -#. module: survey -#: field:survey.question,maximum_req_ans:0 -msgid "Maximum Required Answer" -msgstr "" - -#. module: survey -#: field:survey.name.wiz,page_no:0 -msgid "Page Number" -msgstr "" - -#. module: survey -#: view:survey.print:0 -#: view:survey.print.answer:0 -msgid "Print Option" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "and" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_print_statistics -#: view:survey.print.statistics:0 -msgid "Survey Print Statistics" -msgstr "" - -#. module: survey -#: field:survey.send.invitation.log,note:0 -msgid "Log" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "When the choices do not add up correctly, display this error message" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,help:survey.action_survey_form1 -msgid "

    \n" -" Click to create a new survey. \n" -"

    \n" -" You can create survey for different purposes: recruitment\n" -" interviews, employee's periodical evaluations, marketing\n" -" campaigns, etc.\n" -"

    \n" -" A survey is made of pages containing questions\n" -" of several types: text, multiple choices, etc.\n" -"

    \n" -" " -msgstr "" - -#. module: survey -#: field:survey,date_close:0 -msgid "Survey Close Date" -msgstr "" - -#. module: survey -#: field:survey.question.column.heading,in_visible_rating_weight:0 -msgid "Is Rating Scale Invisible ??" -msgstr "" - -#. module: survey -#: field:survey.question,is_validation_require:0 -msgid "Validate Text" -msgstr "" - -#. module: survey -#: view:survey.browse.answer:0 -#: view:survey.name.wiz:0 -msgid "Start" -msgstr "" - -#. module: survey -#: field:survey.question,comment_maximum_no:0 -#: field:survey.question,validation_maximum_no:0 -msgid "Maximum number" -msgstr "" - -#. module: survey -#: selection:survey.request,state:0 -#: selection:survey.response.line,state:0 -msgid "Draft" -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_print_statistics -msgid "survey.print.statistics" -msgstr "" - -#. module: survey -#: selection:survey,state:0 -msgid "Closed" -msgstr "" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Matrix of Drop-down Menus" -msgstr "" - -#. module: survey -#: view:survey:0 -#: field:survey.answer,answer:0 -#: field:survey.name.wiz,response:0 -#: view:survey.page:0 -#: view:survey.print.answer:0 -#: field:survey.print.answer,response_ids:0 -#: view:survey.question:0 -#: field:survey.question,answer_choice_ids:0 -#: field:survey.request,response:0 -#: field:survey.response,question_ids:0 -#: field:survey.response.answer,answer_id:0 -#: field:survey.response.answer,response_id:0 -#: view:survey.response.line:0 -#: field:survey.response.line,response_answer_ids:0 -#: field:survey.response.line,response_id:0 -#: field:survey.response.line,response_table_ids:0 -#: field:survey.send.invitation,partner_ids:0 -#: field:survey.tbl.column.heading,response_table_id:0 -msgid "Answer" -msgstr "" - -#. module: survey -#: field:survey,max_response_limit:0 -msgid "Maximum Answer Limit" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_act_view_survey_send_invitation -msgid "Send Invitations" -msgstr "" - -#. module: survey -#: field:survey.name.wiz,store_ans:0 -msgid "Store Answer" -msgstr "" - -#. module: survey -#: code:addons/survey/wizard/survey_selection.py:83 -#, python-format -msgid "You cannot give more responses. Please contact the author of this survey for further assistance." -msgstr "" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Date and Time" -msgstr "" - -#. module: survey -#: view:survey:0 -#: field:survey,state:0 -#: view:survey.request:0 -#: field:survey.request,state:0 -#: field:survey.response,state:0 -#: field:survey.response.line,state:0 -msgid "Status" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_print -msgid "Print Survey" -msgstr "" - -#. module: survey -#: field:survey.response.answer,value_choice:0 -msgid "Value Choice" -msgstr "" - -#. module: survey -#: field:survey.response,response_type:0 -msgid "Answer Type" -msgstr "" - -#. module: survey -#: view:survey:0 -msgid "Started" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_print_answer -#: view:survey:0 -#: view:survey.print.answer:0 -msgid "Print Answer" -msgstr "" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Multiple Textboxes" -msgstr "" - -#. module: survey -#: selection:survey.print,orientation:0 -#: selection:survey.print.answer,orientation:0 -msgid "Landscape(Horizontal)" -msgstr "" - -#. module: survey -#: field:survey.question,no_of_rows:0 -msgid "No of Rows" -msgstr "" - -#. module: survey -#: view:survey:0 -msgid "Survey Details" -msgstr "" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Multiple Textboxes With Different Type" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Required Answer" -msgstr "" - -#. module: survey -#: model:survey.type,name:survey.survey_type2 -msgid "Customer Feeback" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Validation" -msgstr "" - -#. module: survey -#: view:survey.request:0 -#: selection:survey.request,state:0 -msgid "Waiting Answer" -msgstr "" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Must Be A Decimal Number" -msgstr "" - -#. module: survey -#: field:res.users,survey_id:0 -msgid "Groups" -msgstr "" - -#. module: survey -#: selection:survey.answer,type:0 -#: selection:survey.question,type:0 -msgid "Date" -msgstr "" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Integer" -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_send_invitation -msgid "survey.send.invitation" -msgstr "" - -#. module: survey -#: field:survey.history,user_id:0 -#: view:survey.request:0 -#: field:survey.request,user_id:0 -#: field:survey.response,user_id:0 -msgid "User" -msgstr "" - -#. module: survey -#: field:survey.name.wiz,transfer:0 -msgid "Page Transfer" -msgstr "" - -#. module: survey -#: selection:survey.response.line,state:0 -msgid "Skiped" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:534 -#, python-format -msgid "You must enter one or more menu choices in column heading (white spaces not allowed)." -msgstr "" - -#. module: survey -#: field:survey.print,paper_size:0 -#: field:survey.print.answer,paper_size:0 -msgid "Paper Size" -msgstr "" - -#. module: survey -#: field:survey.response.answer,column_id:0 -#: field:survey.tbl.column.heading,column_id:0 -msgid "Column" -msgstr "" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_browse_survey_response -msgid "Browse Answers" -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_response_line -msgid "Survey Response Line" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:169 -#, python-format -msgid "This survey has no pages defined. Please define pages first." -msgstr "" - -#. module: survey -#: model:ir.actions.report.xml,name:survey.report_survey_form -#: model:ir.model,name:survey.model_survey -#: view:survey:0 -#: view:survey.browse.answer:0 -#: field:survey.browse.answer,survey_id:0 -#: field:survey.history,survey_id:0 -#: view:survey.name.wiz:0 -#: field:survey.name.wiz,survey_id:0 -#: view:survey.page:0 -#: field:survey.page,survey_id:0 -#: view:survey.print:0 -#: field:survey.print,survey_ids:0 -#: field:survey.print.statistics,survey_ids:0 -#: field:survey.question,survey:0 -#: view:survey.request:0 -#: field:survey.request,survey_id:0 -#: field:survey.response,survey_id:0 -msgid "Survey" -msgstr "" - -#. module: survey -#: field:survey.question,in_visible_rating_weight:0 -msgid "Is Rating Scale Invisible?" -msgstr "" - -#. module: survey -#: view:survey:0 -msgid "All New Survey" -msgstr "" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Numerical Textboxes" -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_question_wiz -msgid "survey.question.wiz" -msgstr "" - -#. module: survey -#: view:survey:0 -msgid "History" -msgstr "" - -#. module: survey -#: view:survey.request:0 -msgid "Late" -msgstr "" - -#. module: survey -#: field:survey.type,code:0 -msgid "Code" -msgstr "" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_print_survey_statistics -msgid "Surveys Statistics" -msgstr "" - -#. module: survey -#: field:survey.print,orientation:0 -#: field:survey.print.answer,orientation:0 -msgid "Orientation" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.answer:0 -#: view:survey.page:0 -#: view:survey.question:0 -msgid "Seq" -msgstr "" - -#. module: survey -#: view:survey.question.column.heading:0 -msgid "Menu Choices (each choice on separate lines)" -msgstr "" - -#. module: survey -#: field:survey.question,comment_minimum_no:0 -#: field:survey.question,validation_minimum_no:0 -msgid "Minimum number" -msgstr "" - -#. module: survey -#: field:survey.question,req_ans:0 -msgid "#Required Answer" -msgstr "" - -#. module: survey -#: field:survey.answer,sequence:0 -#: field:survey.question,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: survey -#: field:survey.question,comment_label:0 -msgid "Field Label" -msgstr "" - -#. module: survey -#: view:survey.request:0 -#: selection:survey.request,state:0 -msgid "Done" -msgstr "" - -#. module: survey -#: view:survey:0 -msgid "Test Survey" -msgstr "" - -#. module: survey -#: field:survey.question,rating_allow_one_column_require:0 -msgid "Allow Only One Answer per Column (Forced Ranking)" -msgstr "" - -#. module: survey -#: view:survey:0 -#: view:survey.browse.answer:0 -#: view:survey.name.wiz:0 -#: view:survey.print:0 -#: view:survey.print.answer:0 -#: view:survey.print.statistics:0 -#: view:survey.request:0 -#: view:survey.send.invitation:0 -msgid "Cancel" -msgstr "" - -#. module: survey -#: view:survey:0 -msgid "Close" -msgstr "" - -#. module: survey -#: field:survey.question,comment_minimum_float:0 -#: field:survey.question,validation_minimum_float:0 -msgid "Minimum decimal number" -msgstr "" - -#. module: survey -#: view:survey:0 -#: selection:survey,state:0 -msgid "Open" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:508 -#, python-format -msgid "You must enter one or more answers for question \"%s\" of page %s ." -msgstr "" - -#. module: survey -#: field:survey,tot_start_survey:0 -msgid "Total Started Survey" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:517 -#, python-format -msgid "#Required Answer you entered is greater than the number of answer. Please use a number that is smaller than %d." -msgstr "" - -#. module: survey -#: help:survey,max_response_limit:0 -msgid "Set to one if survey is answerable only once" -msgstr "" - -#. module: survey -#: selection:survey.response,state:0 -msgid "Finished " -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_question_column_heading -msgid "Survey Question Column Heading" -msgstr "" - -#. module: survey -#: field:survey.answer,average:0 -msgid "#Avg" -msgstr "" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Matrix of Choices (Multiple Answers Per Row)" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_name -msgid "Give Survey Answer" -msgstr "" - -#. module: survey -#: help:survey.browse.answer,response_id:0 -msgid "If this field is empty, all answers of the selected survey will be print." -msgstr "" - -#. module: survey -#: selection:survey.response.line,state:0 -msgid "Answered" -msgstr "" - -#. module: survey -#: field:survey,send_response:0 -msgid "Email Notification on Answer" -msgstr "" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:445 -#, python-format -msgid "Complete Survey Answer" -msgstr "" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Comment/Essay Box" -msgstr "" - -#. module: survey -#: field:survey.answer,type:0 -msgid "Type of Answer" -msgstr "" - -#. module: survey -#: field:survey.question,required_type:0 -msgid "Respondent must answer" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_send_invitation -#: view:survey.send.invitation:0 -msgid "Send Invitation" -msgstr "" - -#. module: survey -#: code:addons/survey/wizard/survey_selection.py:80 -#, python-format -msgid "You cannot give response for this survey more than %s times." -msgstr "" - -#. module: survey -#: view:survey.question:0 -msgid "Search Question" -msgstr "" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Single Textbox" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_question_form -msgid "Survey Questions" -msgstr "" - -#. module: survey -#: field:survey,note:0 -#: field:survey.name.wiz,note:0 -#: view:survey.page:0 -#: field:survey.page,note:0 -#: view:survey.response.line:0 -msgid "Description" -msgstr "" - -#. module: survey -#: selection:survey.question,required_type:0 -msgid "At Least" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_view_survey_send_invitation_log -#: model:ir.model,name:survey.model_survey_send_invitation_log -msgid "survey.send.invitation.log" -msgstr "" - -#. module: survey -#: selection:survey.print,orientation:0 -#: selection:survey.print.answer,orientation:0 -msgid "Portrait(Vertical)" -msgstr "" - -#. module: survey -#: code:addons/survey/wizard/survey_send_invitation.py:67 -#: code:addons/survey/wizard/survey_send_invitation.py:68 -#, python-format -msgid "Invitation for %s" -msgstr "" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Must Be Specific Length" -msgstr "" - -#. module: survey -#: model:survey.type,name:survey.survey_type3 -msgid "Supplier Selection" -msgstr "" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:992 -#, python-format -msgid "You cannot select same answer more than one time.'" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:685 -#, python-format -msgid "You cannot duplicate the resource!" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:523 -#, python-format -msgid "Minimum Required Answer you entered is greater than the number of answer. Please use a number that is smaller than %d." -msgstr "" - -#. module: survey -#: view:survey:0 -msgid "All Open Survey" -msgstr "" - -#. module: survey -#: model:ir.actions.report.xml,name:survey.survey_browse_response -#: field:survey.browse.answer,response_id:0 -msgid "Survey Answers" -msgstr "" - -#. module: survey -#: model:ir.ui.menu,name:survey.menu_print_survey_answer -msgid "Surveys Answers" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.act_survey_pages -msgid "Pages" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:455 -#, python-format -msgid "#Required Answer you entered is greater than the number of answer. Please use a number that is smaller than %d." -msgstr "" - -#. module: survey -#: selection:survey.print,paper_size:0 -#: selection:survey.print.answer,paper_size:0 -msgid "Legal (8.5\" x 14\")" -msgstr "" - -#. module: survey -#: field:survey.type,name:0 -msgid "Name" -msgstr "" - -#. module: survey -#: view:survey.page:0 -msgid "#Questions" -msgstr "" - -#. module: survey -#: field:survey.question,numeric_required_sum:0 -msgid "Sum of all choices" -msgstr "" - -#. module: survey -#: view:survey.request:0 -msgid "Request" -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_response -msgid "survey.response" -msgstr "" - -#. module: survey -#: field:survey.question,comment_valid_err_msg:0 -#: field:survey.question,make_comment_field_err_msg:0 -#: field:survey.question,numeric_required_sum_err_msg:0 -#: field:survey.question,validation_valid_err_msg:0 -msgid "Error message" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:152 -#: code:addons/survey/survey.py:169 -#: code:addons/survey/survey.py:187 -#: code:addons/survey/survey.py:424 -#: code:addons/survey/survey.py:436 -#: code:addons/survey/survey.py:450 -#: code:addons/survey/survey.py:455 -#: code:addons/survey/survey.py:465 -#: code:addons/survey/survey.py:471 -#: code:addons/survey/survey.py:477 -#: code:addons/survey/survey.py:483 -#: code:addons/survey/survey.py:487 -#: code:addons/survey/survey.py:493 -#: code:addons/survey/survey.py:497 -#: code:addons/survey/survey.py:508 -#: code:addons/survey/survey.py:512 -#: code:addons/survey/survey.py:517 -#: code:addons/survey/survey.py:523 -#: code:addons/survey/survey.py:525 -#: code:addons/survey/survey.py:527 -#: code:addons/survey/survey.py:532 -#: code:addons/survey/survey.py:534 -#: code:addons/survey/survey.py:685 -#: code:addons/survey/wizard/survey_answer.py:117 -#: code:addons/survey/wizard/survey_answer.py:124 -#: code:addons/survey/wizard/survey_answer.py:707 -#: code:addons/survey/wizard/survey_answer.py:746 -#: code:addons/survey/wizard/survey_answer.py:766 -#: code:addons/survey/wizard/survey_answer.py:795 -#: code:addons/survey/wizard/survey_answer.py:800 -#: code:addons/survey/wizard/survey_answer.py:808 -#: code:addons/survey/wizard/survey_answer.py:819 -#: code:addons/survey/wizard/survey_answer.py:828 -#: code:addons/survey/wizard/survey_answer.py:833 -#: code:addons/survey/wizard/survey_answer.py:907 -#: code:addons/survey/wizard/survey_answer.py:943 -#: code:addons/survey/wizard/survey_answer.py:961 -#: code:addons/survey/wizard/survey_answer.py:989 -#: code:addons/survey/wizard/survey_answer.py:992 -#: code:addons/survey/wizard/survey_answer.py:995 -#: code:addons/survey/wizard/survey_answer.py:1007 -#: code:addons/survey/wizard/survey_answer.py:1014 -#: code:addons/survey/wizard/survey_answer.py:1017 -#: code:addons/survey/wizard/survey_selection.py:80 -#: code:addons/survey/wizard/survey_selection.py:83 -#: code:addons/survey/wizard/survey_send_invitation.py:71 -#, python-format -msgid "Warning!" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:465 -#, python-format -msgid "Minimum Required Answer you entered is greater than the number of answer. Please use a number that is smaller than %d." -msgstr "" - -#. module: survey -#: field:survey.answer,menu_choice:0 -msgid "Menu Choices" -msgstr "" - -#. module: survey -#: field:survey,id:0 -msgid "ID" -msgstr "" - -#. module: survey -#: code:addons/survey/survey.py:487 -#, python-format -msgid "Maximum Required Answer is greater than Minimum Required Answer" -msgstr "" - -#. module: survey -#: view:survey.send.invitation.log:0 -msgid "User creation" -msgstr "" - -#. module: survey -#: selection:survey.question,required_type:0 -msgid "All" -msgstr "" - -#. module: survey -#: selection:survey.question,comment_valid_type:0 -#: selection:survey.question,validation_type:0 -msgid "Must Be An Email Address" -msgstr "" - -#. module: survey -#: selection:survey.question,type:0 -msgid "Multiple Choice (Only One Answer)" -msgstr "" - -#. module: survey -#: field:survey.answer,in_visible_answer_type:0 -msgid "Is Answer Type Invisible??" -msgstr "" - -#. module: survey -#: model:ir.model,name:survey.model_survey_print_answer -msgid "survey.print.answer" -msgstr "" - -#. module: survey -#: view:survey.answer:0 -msgid "Menu Choices (each choice on separate by lines)" -msgstr "" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Float" -msgstr "" - -#. module: survey -#: view:survey.browse.answer:0 -#: view:survey.name.wiz:0 -#: view:survey.print:0 -#: view:survey.print.answer:0 -#: view:survey.print.statistics:0 -#: view:survey.send.invitation:0 -msgid "or" -msgstr "" - -#. module: survey -#: field:survey,title:0 -msgid "Survey Title" -msgstr "" - -#. module: survey -#: field:survey.question.column.heading,rating_weight:0 -msgid "Weight" -msgstr "" - -#. module: survey -#: selection:survey.answer,type:0 -msgid "Date & Time" -msgstr "" - -#. module: survey -#: field:survey.response,date_create:0 -#: field:survey.response.line,date_create:0 -msgid "Create Date" -msgstr "" - -#. module: survey -#: field:survey.question,column_name:0 -msgid "Column Name" -msgstr "" - -#. module: survey -#: model:ir.actions.act_window,name:survey.action_survey_page_form -#: model:ir.model,name:survey.model_survey_page -#: model:ir.ui.menu,name:survey.menu_survey_page_form1 -#: view:survey.page:0 -msgid "Survey Pages" -msgstr "" - -#. module: survey -#: field:survey.question,type:0 -msgid "Question Type" -msgstr "" - -#. module: survey -#: selection:survey.question,type:0 -#: view:survey.response.line:0 -msgid "Table" -msgstr "" - -#. module: survey -#: code:addons/survey/wizard/survey_answer.py:117 -#, python-format -msgid "You cannot answer because the survey is not open." -msgstr "" - -#. module: survey -#: field:survey.question,comment_minimum_date:0 -#: field:survey.question,validation_minimum_date:0 -msgid "Minimum date" -msgstr "" - -#. module: survey -#: field:survey,response_user:0 -msgid "Maximum Answer per User" -msgstr "" - -#. module: survey -#: field:survey.name.wiz,page:0 -msgid "Page Position" -msgstr "" - diff --git a/addons/survey/i18n/sv.po b/addons/survey/i18n/sv.po index 4a5b51eff71..96b4ea2f170 100644 --- a/addons/survey/i18n/sv.po +++ b/addons/survey/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/tr.po b/addons/survey/i18n/tr.po index 94b7b4fce91..c267b99ff6f 100644 --- a/addons/survey/i18n/tr.po +++ b/addons/survey/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/zh_CN.po b/addons/survey/i18n/zh_CN.po index d370af7d0ca..2c03bc1ef2e 100644 --- a/addons/survey/i18n/zh_CN.po +++ b/addons/survey/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:27+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:08+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: survey #: view:survey.question.column.heading:0 diff --git a/addons/survey/report/__init__.py b/addons/survey/report/__init__.py deleted file mode 100644 index 26fc1d46d63..00000000000 --- a/addons/survey/report/__init__.py +++ /dev/null @@ -1,27 +0,0 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved -# $Id$ -# -# 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 . -# -############################################################################## - -import survey_analysis_report -import survey_form -import survey_browse_response - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/survey/report/survey_analysis_report.py b/addons/survey/report/survey_analysis_report.py deleted file mode 100644 index f159fd6a983..00000000000 --- a/addons/survey/report/survey_analysis_report.py +++ /dev/null @@ -1,433 +0,0 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved -# $Id$ -# -# 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 . -# -############################################################################## - -import time - -import openerp -from openerp import tools -from openerp.report import report_sxw -from openerp.report.interface import report_rml -from openerp.tools import to_xml - -class survey_analysis(report_rml): - def create(self, cr, uid, ids, datas, context): - registry = openerp.registry(cr.dbname) - surv_obj = registry['survey'] - user_obj = registry['res.users'] - rml_obj=report_sxw.rml_parse(cr, uid, surv_obj._name,context) - company=user_obj.browse(cr,uid,[uid],context)[0].company_id - - rml =""" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - """ - - if datas.has_key('form') and datas['form']['survey_ids']: - ids = datas['form']['survey_ids'] - - for survey in surv_obj.browse(cr, uid, ids): - rml += """ - Answers Summary - - - - - -
    - - - - - - - - - - - - - - - """ - for page in survey.page_ids: - rml += """ - - - - """ - for que in page.question_ids: - rml +=""" - - - - """ - cols_widhts = [] - - if que.type in ['matrix_of_choices_only_one_ans','matrix_of_choices_only_multi_ans']: - cols_widhts.append(200) - for col in range(0, len(que.column_heading_ids) + 1): - cols_widhts.append(float(300 / (len(que.column_heading_ids) + 1))) - colWidths = ",".join(map(tools.ustr, cols_widhts)) - matrix_ans = [(0,'')] - - for col in que.column_heading_ids: - if col.title not in matrix_ans: - matrix_ans.append((col.id,col.title)) - rml += """""" - for mat_col in range(0, len(matrix_ans)): - rml+="""""" - rml += """ - """ - last_col = cols_widhts[-1] - - for ans in que.answer_choice_ids: - rml += """""" - cr.execute("select count(id) from survey_response_answer sra where sra.answer_id = %s", (ans.id,)) - tot_res = cr.fetchone()[0] - cr.execute("select count(id) ,sra.column_id from survey_response_answer sra where sra.answer_id=%s group by sra.column_id", (ans.id,)) - calc_res = cr.dictfetchall() - for mat_col in range(1, len(matrix_ans)): - percantage = 0.0 - cal_count = 0 - for cal in calc_res: - if cal['column_id'] == matrix_ans[mat_col][0]: - cal_count = cal['count'] - if tot_res: - percantage = round(float(cal_count)*100 / tot_res,2) - if percantage: - rml += """""" - else: - rml += """""" - rml += """ - """ - rml += """""" - - if que.is_comment_require: - cr.execute("select count(id) from survey_response_line where question_id = %s and comment != ''",(que.id,)) - tot_res = cr.fetchone()[0] - rml += """ - """ - - elif que.type in['multiple_choice_only_one_ans', 'multiple_choice_multiple_ans', 'multiple_textboxes','date_and_time','date','multiple_textboxes_diff_type']: - rml += """""" - rml += """ - - - - """ - - for ans in que.answer_choice_ids: - progress = ans.average * 7 / 100 - rml += """ - - """ - rml += """""" - - if que.is_comment_require: -# if que.make_comment_field: -# cr.execute("select count(id) from survey_response_line where question_id = %s and comment != ''", (que.id,)) -# tot_res = cr.fetchone()[0] -# tot_avg = 0.00 -# if que.tot_resp: -# tot_avg = round(float(tot_res * 100)/ que.tot_resp,2) -# rml+=""" -# -# """ -# else: - cr.execute("select count(id) from survey_response_line where question_id = %s and comment != ''", (que.id,)) - tot_res = cr.fetchone()[0] - rml += """ - """ - - elif que.type in['single_textbox']: - cr.execute("select count(id) from survey_response_line where question_id = %s and single_text!=''",(que.id,)) - rml += """ - - - - - - - """ - - elif que.type in['comment']: - cr.execute("select count(id) from survey_response_line where question_id = %s and comment !=''", (que.id,)) - rml += """ - - - - - - - """ - - elif que.type in['rating_scale']: - cols_widhts.append(200) - for col in range(0,len(que.column_heading_ids) + 2): - cols_widhts.append(float(300 / (len(que.column_heading_ids) + 2))) - colWidths = ",".join(map(tools.ustr, cols_widhts)) - matrix_ans = [(0,'')] - - for col in que.column_heading_ids: - if col.title not in matrix_ans: - matrix_ans.append((col.id,col.title)) - rml += """""" - for mat_col in range(0,len(matrix_ans)): - rml += """""" - rml += """ - - """ - - for ans in que.answer_choice_ids: - rml += """""" - res_count = 0 - rating_weight_sum = 0 - for mat_col in range(1, len(matrix_ans)): - cr.execute("select count(sra.answer_id) from survey_response_line sr, survey_response_answer sra\ - where sr.id = sra.response_id and sra.answer_id = %s and sra.column_id ='%s'", (ans.id,matrix_ans[mat_col][0])) - tot_res = cr.fetchone()[0] - cr.execute("select count(sra.answer_id),sqc.rating_weight from survey_response_line sr, survey_response_answer sra ,\ - survey_question_column_heading sqc where sr.id = sra.response_id and \ - sqc.question_id = sr.question_id and sra.answer_id = %s and sqc.title ='%s'\ -+ group by sra.answer_id,sqc.rating_weight", (ans.id,matrix_ans[mat_col][1])) - col_weight = cr.fetchone() - - if not col_weight: - col_weight= (0,0) - elif not col_weight[1]: - col_weight = (col_weight[0],0) - res_count = col_weight[0] - - if tot_res and res_count: - rating_weight_sum += int(col_weight[1]) * tot_res - tot_per = round((float(tot_res) * 100) / int(res_count), 2) - else: - tot_per = 0.0 - if tot_res: - rml += """""" - else: - rml += """""" - - percantage = 0.00 - if res_count: - percantage = round((float(rating_weight_sum)/res_count), 2) - rml += """ - """ - rml += """""" - - elif que.type in['matrix_of_drop_down_menus']: - for column in que.column_heading_ids: - rml += """ - """ - menu_choices = column.menu_choice.split('\n') - cols_widhts = [] - cols_widhts.append(200) - for col in range(0, len(menu_choices) + 1): - cols_widhts.append(float(300 / (len(menu_choices) + 1))) - colWidths = ",".join(map(tools.ustr, cols_widhts)) - rml += """ - """ - - for menu in menu_choices: - rml += """""" - rml += """""" - cr.execute("select count(id), sra.answer_id from survey_response_answer sra \ - where sra.column_id='%s' group by sra.answer_id ", (column.id,)) - res_count = cr.dictfetchall() - cr.execute("select count(sra.id),sra.value_choice, sra.answer_id, sra.column_id from survey_response_answer sra \ - where sra.column_id='%s' group by sra.value_choice ,sra.answer_id, sra.column_id", (column.id,)) - calc_percantage = cr.dictfetchall() - - for ans in que.answer_choice_ids: - rml += """""" - for mat_col in range(0, len(menu_choices)): - calc = 0 - response = 0 - for res in res_count: - if res['answer_id'] == ans.id: response = res['count'] - for per in calc_percantage: - if ans.id == per['answer_id'] and menu_choices[mat_col] == per['value_choice']: - calc = per['count'] - percantage = 0.00 - - if calc and response: - percantage = round((float(calc)* 100) / response,2) - if calc: - rml += """""" - else: - rml += """""" - - response = 0 - for res in res_count: - if res['answer_id'] == ans.id: response = res['count'] - rml += """""" - rml += """""" - - elif que.type in['numerical_textboxes']: - rml += """ - - - - - - - """ - for ans in que.answer_choice_ids: - cr.execute("select answer from survey_response_answer where answer_id=%s group by answer", (ans.id,)) - tot_res = cr.dictfetchall() - total = 0 - for tot in tot_res: - total += int(tot['answer']) - per = 0.00 - - if len(tot_res): - per = round((float(total) / len(tot_res)),2) - rml+=""" - - - - """ - rml+="""""" - - rml +=""" - - - - - - - - - - - """ - rml += """""" - - rml += """""" - report_type = datas.get('report_type', 'pdf') - create_doc = self.generators[report_type] - self.internal_header=True - pdf = create_doc(rml, title=self.title) - - return (pdf, report_type) - -survey_analysis('report.survey.analysis', 'survey','','') - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/survey/report/survey_browse_response.py b/addons/survey/report/survey_browse_response.py deleted file mode 100644 index 7c4a5e98aa1..00000000000 --- a/addons/survey/report/survey_browse_response.py +++ /dev/null @@ -1,542 +0,0 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved -# $Id$ -# -# 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 . -# -############################################################################## - -import time - -import openerp -from openerp import tools -from openerp.report import report_sxw -from openerp.report.interface import report_rml -from openerp.tools import to_xml -from openerp.tools.translate import _ - -class survey_browse_response(report_rml): - def create(self, cr, uid, ids, datas, context): - _divide_columns_for_matrix = 0.7 - _display_ans_in_rows = 5 - _pageSize = ('29.7cm','21.1cm') - - registry = openerp.registry(cr.dbname) - - if datas.has_key('form') and datas['form'].get('orientation','') == 'vertical': - if datas['form'].get('paper_size','') == 'letter': - _pageSize = ('21.6cm','27.9cm') - elif datas['form'].get('paper_size','') == 'legal': - _pageSize = ('21.6cm','35.6cm') - elif datas['form'].get('paper_size','') == 'a4': - _pageSize = ('21.1cm','29.7cm') - - elif datas.has_key('form') and datas['form'].get('orientation',False) == 'horizontal': - if datas['form'].get('paper_size','') == 'letter': - _pageSize = ('27.9cm','21.6cm') - elif datas['form'].get('paper_size','') == 'legal': - _pageSize = ('35.6cm','21.6cm') - elif datas['form'].get('paper_size') == 'a4': - _pageSize = ('29.7cm','21.1cm') - - _frame_width = tools.ustr(_pageSize[0]) - _frame_height = tools.ustr(float(_pageSize[1].replace('cm','')) - float(1.90))+'cm' - _tbl_widths = tools.ustr(float(_pageSize[0].replace('cm','')) - float(2.10))+'cm' - rml =""" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - """ - surv_resp_obj = registry['survey.response'] - rml_obj=report_sxw.rml_parse(cr, uid, surv_resp_obj._name,context) - if datas.has_key('form') and datas['form'].has_key('response_ids'): - response_id = datas['form']['response_ids'] - elif context.has_key('response_id') and context['response_id']: - response_id = [int(context['response_id'][0])] - else: - response_id = surv_resp_obj.search(cr, uid, [('survey_id', 'in', ids)]) - - surv_resp_line_obj = registry['survey.response.line'] - surv_obj = registry['survey'] - - for response in surv_resp_obj.browse(cr, uid, response_id): - for survey in surv_obj.browse(cr, uid, [response.survey_id.id]): - tbl_width = float(_tbl_widths.replace('cm', '')) - colwidth = "2.5cm,4.8cm," + str(tbl_width - 15.0) +"cm,3.2cm,4.5cm" - resp_create = tools.ustr(time.strftime('%d-%m-%Y %I:%M:%S %p', time.strptime(response.date_create.split('.')[0], '%Y-%m-%d %H:%M:%S'))) - rml += """ - - - - - - - - - - - - - - - """ - - status = _("Not Finished") - if response.state == "done": status = _("Finished") - colwidth = str(tbl_width - 7) + "cm," - colwidth += "7cm" - rml += """ - - - - - """ - - if survey.note: - rml += """ - - """ - - for page in survey.page_ids: - rml += """ - - """ - if page.note: - rml += """ - - - """ - - for que in page.question_ids: - rml += """ - - - """ - - answer = surv_resp_line_obj.browse(cr ,uid, surv_resp_line_obj.search(cr, uid, [('question_id', '=', que.id),('response_id', '=', response.id)])) - if que.type in ['descriptive_text']: - rml +=""" - - """ - - elif que.type in ['table']: - if len(answer) and answer[0].state == "done": - col_heading = registry['survey.tbl.column.heading'] - cols_widhts = [] - tbl_width = float(_tbl_widths.replace('cm', '')) - for i in range(0, len(que.column_heading_ids)): - cols_widhts.append(tbl_width / float(len(que.column_heading_ids))) - colWidths = "cm,".join(map(tools.ustr, cols_widhts)) - colWidths = colWidths + 'cm' - matrix_ans = [] - rml +="""""" - - for col in que.column_heading_ids: - if col.title not in matrix_ans: - matrix_ans.append(col.title) - rml += """""" - rml += """""" - i = 0 - - for row in range(0, que.no_of_rows): - if i%2 != 0: - style = 'tbl_white' - else: - style = 'tbl_gainsboro' - i +=1 - rml += """""" - table_data = col_heading.browse(cr, uid, col_heading.search(cr, uid, [('response_table_id', '=', answer[0].id), ('name', '=', row)])) - for column in matrix_ans: - value = False - for col in table_data: - if column == col.column_id.title: - value = col.value - if value: - rml += """""" - else: - rml += """""" - rml += """""" - - else: - rml +=""" - - """ - - elif que.type in ['multiple_choice_only_one_ans','multiple_choice_multiple_ans']: - if len(answer) and answer[0].state == "done": - ans_list = [] - for ans in answer[0].response_answer_ids: - ans_list.append(to_xml(tools.ustr(ans.answer_id.answer))) - answer_choice=[] - - for ans in que['answer_choice_ids']: - answer_choice.append(to_xml(tools.ustr((ans.answer)))) - - def divide_list(lst, n): - return [lst[i::n] for i in range(n)] - - divide_list = divide_list(answer_choice,_display_ans_in_rows) - for lst in divide_list: - if que.type == 'multiple_choice_multiple_ans': - if len(lst) <> 0 and len(lst) <> int(round(float(len(answer_choice)) / _display_ans_in_rows, 0)): - lst.append('') - if not lst: - del divide_list[divide_list.index(lst):] - - for divide in divide_list: - a = _divide_columns_for_matrix * len(divide) - b = float(_tbl_widths.replace('cm', '')) - float(a) - cols_widhts = [] - for div in range(0, len(divide)): - cols_widhts.append(float(a / len(divide))) - cols_widhts.append(float(b / len(divide))) - colWidths = "cm,".join(map(tools.ustr, cols_widhts)) - colWidths = colWidths +'cm' - rml += """""" - - for div in range(0, len(divide)): - if divide[div] != '': - if que.type == 'multiple_choice_multiple_ans': - if divide[div] in ans_list: - rml += """ - """ - else: - rml+=""" - """ - else: - if divide[div] in ans_list: - rml += """ - """ - else: - rml += """ - """ - else: - rml += """""" - rml += """""" - - if que.is_comment_require and answer[0].comment: - rml += """ - """ - else: - rml += """ - - """ - - elif que.type in ['multiple_textboxes_diff_type','multiple_textboxes','date','date_and_time','numerical_textboxes','multiple_textboxes_diff_type']: - if len(answer) and answer[0].state == "done": - cols_widhts = [] - cols_widhts.append(float(_tbl_widths.replace('cm',''))/2) - cols_widhts.append(float(_tbl_widths.replace('cm',''))/2) - colWidths = "cm,".join(map(tools.ustr, cols_widhts)) - colWidths = tools.ustr(colWidths) + 'cm' - answer_list = {} - - for ans in answer[0].response_answer_ids: - answer_list[ans.answer_id.answer] = ans.answer - for que_ans in que['answer_choice_ids']: - if que_ans.answer in answer_list: - rml += """ - - - """ - else: - rml += """ - - - """ - else: - rml += """ - - """ - - elif que.type in ['single_textbox']: - if len(answer) and answer[0].state == "done": - rml += """ - - """ - else: - rml += """ - - """ - - elif que.type in ['comment']: - if len(answer) and answer[0].state == "done": - rml += """ - - """ - else: - rml += """ - - """ - - elif que.type in ['matrix_of_choices_only_one_ans','matrix_of_choices_only_multi_ans', 'rating_scale', 'matrix_of_drop_down_menus']: - if len(answer) and answer[0].state == "done": - if que.type in ['matrix_of_choices_only_one_ans', 'rating_scale'] and que.comment_column: - pass - cols_widhts = [] - if len(que.column_heading_ids): - cols_widhts.append(float(_tbl_widths.replace('cm','')) / float(2.0)) - for col in que.column_heading_ids: - cols_widhts.append(float((float(_tbl_widths.replace('cm','')) / float(2.0)) / len(que.column_heading_ids))) - else: - cols_widhts.append(float(_tbl_widths.replace('cm',''))) - - tmp = 0.0 - sum = 0.0 - i = 0 - if que.type in ['matrix_of_choices_only_one_ans','rating_scale'] and que.comment_column: - for col in cols_widhts: - if i == 0: - cols_widhts[i] = cols_widhts[i] / 2.0 - tmp = cols_widhts[i] - sum += col - i += 1 - cols_widhts.append(round(tmp, 2)) - colWidths = "cm,".join(map(tools.ustr, cols_widhts)) - colWidths = colWidths + 'cm' - matrix_ans = [(0, ''),] - - for col in que.column_heading_ids: - if col.title not in matrix_ans: - matrix_ans.append((col.id, col.title)) - len_matrix = len(matrix_ans) - if que.type in ['matrix_of_choices_only_one_ans', 'rating_scale'] and que.comment_column: - matrix_ans.append((0,que.column_name)) - rml += """""" - - for mat_col in range(0, len(matrix_ans)): - rml += """""" - rml += """""" - rml += """""" - i = 0 - - for ans in que.answer_choice_ids: - if i%2 != 0: - style = 'ans_tbl_white' - else: - style = 'ans_tbl_gainsboro' - i += 1 - rml += """ - """ - comment_value = "" - for mat_col in range(1, len_matrix): - value = """""" - for res_ans in answer[0].response_answer_ids: - if res_ans.answer_id.id == ans.id and res_ans.column_id.id == matrix_ans[mat_col][0]: - comment_value = to_xml(tools.ustr(res_ans.comment_field)) - if que.type in ['matrix_of_drop_down_menus']: - value = """""" + to_xml(tools.ustr(res_ans.value_choice)) + """""" - elif que.type in ['matrix_of_choices_only_one_ans', 'rating_scale']: - value = """ - - - - """ - elif que.type in ['matrix_of_choices_only_multi_ans']: - value = """ - - - - - """ - break - else: - if que.type in ['matrix_of_drop_down_menus']: - value = """""" - elif que.type in ['matrix_of_choices_only_one_ans','rating_scale']: - value = """ - - """ - elif que.type in ['matrix_of_choices_only_multi_ans']: - value = """ - - """ - rml+= """""" - if que.type in ['matrix_of_choices_only_one_ans','rating_scale'] and que.comment_column: - if comment_value == 'False': - comment_value = '' - rml += """""" - rml += """""" - - if que.is_comment_require: - rml += """ - """ - else: - rml += """ - - """ - - if datas.has_key('form') and not datas['form']['without_pagebreak']: - rml += """""" - elif not datas.has_key('form'): - rml += """""" - else: - rml += """""" - - rml += """""" - report_type = datas.get('report_type', 'pdf') - create_doc = self.generators[report_type] - pdf = create_doc(rml, title=self.title) - return (pdf, report_type) - -survey_browse_response('report.survey.browse.response', 'survey','','') - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/survey/report/survey_form.py b/addons/survey/report/survey_form.py deleted file mode 100644 index 6a4f5fa4795..00000000000 --- a/addons/survey/report/survey_form.py +++ /dev/null @@ -1,397 +0,0 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved -# $Id$ -# -# 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 . -# -############################################################################## - -import openerp -from openerp import tools -from openerp.report.interface import report_rml -from openerp.tools import to_xml - -class survey_form(report_rml): - def create(self, cr, uid, ids, datas, context): - _divide_columns_for_matrix = 0.7 - _display_ans_in_rows = 5 - _pageSize = ('29.7cm','21.1cm') - if datas.has_key('form') and datas['form'].get('orientation','') == 'vertical': - if datas['form'].get('paper_size','') == 'letter': - _pageSize = ('21.6cm','27.9cm') - elif datas['form'].get('paper_size','') == 'legal': - _pageSize = ('21.6cm','35.6cm') - elif datas['form'].get('paper_size','') == 'a4': - _pageSize = ('21.1cm','29.7cm') - elif datas.has_key('form') and datas['form'].get('orientation','') == 'horizontal': - if datas['form'].get('paper_size','') == 'letter': - _pageSize = ('27.9cm','21.6cm') - elif datas['form'].get('paper_size','') == 'legal': - _pageSize = ('35.6cm','21.6cm') - elif datas['form'].get('paper_size','') == 'a4': - _pageSize = ('29.7cm','21.1cm') - - _frame_width = tools.ustr(_pageSize[0]) - _frame_height = tools.ustr(float(_pageSize[1].replace('cm','')) - float(1.90))+'cm' - _tbl_widths = tools.ustr(float(_pageSize[0].replace('cm','')) - float(2.10))+'cm' - - rml=""" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - """ - surv_obj = openerp.registry(cr.dbname)['survey'] - for survey in surv_obj.browse(cr,uid,ids): - rml += """ - - - """ - if survey.note: - rml += """ - - - - """ - - seq = 0 - for page in survey.page_ids: - seq += 1 - rml += """ - - - """ - if page.note: - rml += """ - - """ - - for que in page.question_ids: - cols_widhts = [] - rml += """ - - - - - """ - if que.type in ['descriptive_text']: - cols_widhts.append(float(_tbl_widths.replace('cm',''))) - colWidths = "cm,".join(map(tools.ustr, cols_widhts)) - colWidths = colWidths + 'cm' - rml += """ - - - - - """ - - elif que.type in ['multiple_choice_multiple_ans','multiple_choice_only_one_ans']: - answer = [] - for ans in que.answer_choice_ids: - answer.append(to_xml(tools.ustr((ans.answer)))) - - def divide_list(lst, n): - return [lst[i::n] for i in range(n)] - - divide_list = divide_list(answer,_display_ans_in_rows) - for lst in divide_list: - if que.type == 'multiple_choice_multiple_ans': - if len(lst)<>0 and len(lst)<>int(round(float(len(answer))/_display_ans_in_rows,0)): - lst.append('') - if not lst: - del divide_list[divide_list.index(lst):] - for divide in divide_list: - a = _divide_columns_for_matrix*len(divide) - b = float(_tbl_widths.replace('cm','')) - float(a) - cols_widhts = [] - - for div in range(0,len(divide)): - cols_widhts.append(float(a/len(divide))) - cols_widhts.append(float(b/len(divide))) - colWidths = "cm,".join(map(tools.ustr, cols_widhts)) - colWidths = colWidths +'cm' - rml+=""" - """ - for div in range(0,len(divide)): - if divide[div] != '': - if que.type == 'multiple_choice_multiple_ans': - rml += """ - - """ - else: - rml += """ - - """ - else: - rml += """ - - """ - rml += """ - """ - - elif que.type in ['matrix_of_choices_only_one_ans','rating_scale','matrix_of_choices_only_multi_ans','matrix_of_drop_down_menus']: - if len(que.column_heading_ids): - cols_widhts.append(float(_tbl_widths.replace('cm',''))/float(2.0)) - for col in que.column_heading_ids: - cols_widhts.append(float((float(_tbl_widths.replace('cm',''))/float(2.0))/len(que.column_heading_ids))) - else: - cols_widhts.append(float(_tbl_widths.replace('cm',''))) - - tmp = 0.0 - sum = 0.0 - i = 0 - if que.comment_column: - for col in cols_widhts: - if i == 0: - cols_widhts[i] = cols_widhts[i]/2.0 - tmp = cols_widhts[i] - sum += col - i += 1 - cols_widhts.append(round(tmp,2)) - colWidths = "cm,".join(map(tools.ustr, cols_widhts)) - colWidths = colWidths+'cm' - matrix_ans = ['',] - - for col in que.column_heading_ids: - if col.title not in matrix_ans: - matrix_ans.append(col.title) - if que.comment_column: - matrix_ans.append(to_xml(tools.ustr(que.column_name))) - rml+="""""" - - for mat_col in matrix_ans: - rml += """""" - rml += """""" - i = 0 - for ans in que.answer_choice_ids: - if i%2 != 0: - style='ans_tbl_white' - else: - style='ans_tbl_gainsboro' - i += 1 - rml += """ - - """ - rec_width = float((sum-tmp)*10+100) - value = "" - - if que.type in ['matrix_of_drop_down_menus']: - value = """ - """ - elif que.type in ['matrix_of_choices_only_one_ans','rating_scale']: - value = """ - """ - else: - value = """ - """ - for mat_col in range(1,len(matrix_ans)): - if matrix_ans[mat_col] == que.column_name: - if mat_col == 1: - rml += """ - """ - else: - rml += """""" - else: - rml += """""" - rml += """""" - - elif que.type in ['multiple_textboxes', 'numerical_textboxes', 'date_and_time','date','multiple_textboxes_diff_type']: - cols_widhts.append(float(_tbl_widths.replace('cm',''))/2) - cols_widhts.append(float(_tbl_widths.replace('cm',''))/2) - colWidths = "cm,".join(map(tools.ustr, cols_widhts)) - colWidths = tools.ustr(colWidths) + 'cm' - for ans in que.answer_choice_ids: - rml += """ - - - - - - """ - - elif que.type in ['comment']: - cols_widhts.append(float(_tbl_widths.replace('cm',''))) - colWidths = "cm,".join(map(tools.ustr, cols_widhts)) - rml += """ - - - - """ - - elif que.type in ['single_textbox']: - cols_widhts.append(float(_tbl_widths.replace('cm',''))) - colWidths = "cm,".join(map(tools.ustr, cols_widhts)) - rml += """ - - - - - """ - - elif que.type in ['table']: - tbl_width = float(_tbl_widths.replace('cm','')) - for i in range(0,len(que.column_heading_ids)): - cols_widhts.append(tbl_width/float(len(que.column_heading_ids))) - colWidths = "cm,".join(map(tools.ustr, cols_widhts)) - colWidths = colWidths+'cm' - rml += """""" - for col in que.column_heading_ids: - rml+="""""" - rml += """""" - i = 0 - for r in range(0,que.no_of_rows): - if i%2 != 0: - style = 'tbl_white' - else: - style = 'tbl_gainsboro' - i += 1 - rml += """""" - for c in que.column_heading_ids: - rml += """ - """ - rml += """""" - - if datas.has_key('form') and not datas['form']['without_pagebreak']: - rml += """""" - elif not datas.has_key('form'): - rml += """""" - else: - rml += """""" - - rml += """""" - report_type = datas.get('report_type', 'pdf') - create_doc = self.generators[report_type] - pdf = create_doc(rml, title=self.title) - return (pdf, report_type) - -survey_form('report.survey.form', 'survey','','') - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/survey/security/ir.model.access.csv b/addons/survey/security/ir.model.access.csv index b613e223afa..89c001ce44e 100644 --- a/addons/survey/security/ir.model.access.csv +++ b/addons/survey/security/ir.model.access.csv @@ -1,24 +1,22 @@ -id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink -access_survey_type_manager,survey.type.manager,model_survey_type,base.group_tool_manager,1,1,1,1 -access_survey_request_manager,survey.request manager,model_survey_request,base.group_tool_manager,1,1,1,1 -access_survey_tbl_column_heading_manager,survey.tbl.column.heading manager,model_survey_tbl_column_heading,base.group_tool_manager,1,1,1,1 -access_survey_res_partner_user,survey.res.partner.user,base.model_res_partner,base.group_tool_user,1,1,1,1 -access_survey_user,survey.user,model_survey,base.group_tool_user,1,1,1,1 -access_survey_page_user,survey.page user,model_survey_page,base.group_tool_user,1,1,1,1 -access_survey_question_user,survey.question user,model_survey_question,base.group_tool_user,1,1,1,1 -access_survey_answer_user,survey.answer user,model_survey_answer,base.group_tool_user,1,1,1,1 -access_survey_response_user,survey.response user,model_survey_response,base.group_tool_user,1,1,1,1 -access_survey_response_answer_user,survey.response.answer user,model_survey_response_answer,base.group_tool_user,1,1,1,1 -access_survey_history_user,survey.history.user,model_survey_history,base.group_tool_user,1,1,1,1 -access_survey_response_line_user,survey.response.line user,model_survey_response_line,base.group_tool_user,1,1,1,1 -access_survey_res_partner_user,survey.res.partner.user,base.model_res_partner,base.group_tool_user,1,1,1,1 -access_survey_survey_user,survey.survey.user,model_survey,base.group_survey_user,1,1,1,1 -access_survey_page_survey_user,survey.page.survey.user,model_survey_page,base.group_survey_user,1,1,1,1 -access_survey_question_survey_user,survey.question.survey.user,model_survey_question,base.group_survey_user,1,1,1,1 -access_survey_answer_survey_user,survey.answer.survey.user,model_survey_answer,base.group_survey_user,1,1,1,1 -access_survey_response_survey_user,survey.response.survey.user,model_survey_response,base.group_survey_user,1,1,1,1 -access_survey_response_answer_survey_user,survey.response.answer.survey.user,model_survey_response_answer,base.group_survey_user,1,1,1,1 -access_survey_history_survey_user,survey.history.survey.user,model_survey_history,base.group_survey_user,1,1,1,1 -access_survey_response_line_survey_user,survey.response.line.survey.user,model_survey_response_line,base.group_survey_user,1,1,1,1 -access_survey_question_column_heading_survey_user,survey.question.column.heading.survey.user,model_survey_question_column_heading,base.group_survey_user,1,0,0,0 -access_survey_question_column_heading_user,survey.question.column.heading user,model_survey_question_column_heading,base.group_tool_user,1,1,1,1 +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_survey_public,survey.survey public,model_survey_survey,base.group_public,1,0,0,0 +access_survey_page_public,survey.page public,model_survey_page,base.group_public,1,0,0,0 +access_survey_question_public,survey.question public,model_survey_question,base.group_public,1,0,0,0 +access_survey_label_public,survey.label public,model_survey_label,base.group_public,1,0,0,0 +access_survey_user_input_public,survey.user_input public,model_survey_user_input,base.group_public,1,1,1,0 +access_survey_user_input_line_public,survey.user_input_line public,model_survey_user_input_line,base.group_public,1,1,1,0 +access_survey_stage_public,survey.stage public,model_survey_stage,base.group_public,1,0,0,0 +access_survey_user,survey.survey user,model_survey_survey,base.group_survey_user,1,0,0,0 +access_survey_page_user,survey.page user,model_survey_page,base.group_survey_user,1,0,0,0 +access_survey_question_user,survey.question user,model_survey_question,base.group_survey_user,1,0,0,0 +access_survey_label_user,survey.label user,model_survey_label,base.group_survey_user,1,0,0,0 +access_survey_user_input_user,survey.user_input user,model_survey_user_input,base.group_survey_user,1,1,1,0 +access_survey_user_input_line_user,survey.user_input_line user,model_survey_user_input_line,base.group_survey_user,1,1,1,0 +access_survey_stage_user,survey.stage user,model_survey_stage,base.group_survey_user,1,0,0,0 +access_survey_manager,survey.survey manager,model_survey_survey,base.group_survey_manager,1,1,1,1 +access_survey_page_manager,survey.page manager,model_survey_page,base.group_survey_manager,1,1,1,1 +access_survey_question_manager,survey.question manager,model_survey_question,base.group_survey_manager,1,1,1,1 +access_survey_label_manager,survey.label manager,model_survey_label,base.group_survey_manager,1,1,1,1 +access_survey_user_input_manager,survey.user_input manager,model_survey_user_input,base.group_survey_manager,1,1,1,1 +access_survey_user_input_line_manager,survey.user_input_line manager,model_survey_user_input_line,base.group_survey_manager,1,1,1,1 +access_survey_stage_manager,survey.stage manager,model_survey_stage,base.group_survey_manager,1,1,1,1 \ No newline at end of file diff --git a/addons/survey/security/survey_security.xml b/addons/survey/security/survey_security.xml index 3b0cf5844ce..872e1049bcd 100644 --- a/addons/survey/security/survey_security.xml +++ b/addons/survey/security/survey_security.xml @@ -1,19 +1,84 @@ - - - User - - - - Manager - - - - + + Survey / User + + + + + Survey / Manager + + + + + Public access to surveys + + [('state', '=', 'open'), ('auth_required', '=', False)] + + + + + + + + + Access to survey for regular users + + [('stage_id.closed', '=', False)] + + + + + + + + + Survey Manager access rights + + [(1, '=', 1)] + + + + + + + + + Public access to user_input + + [('create_uid', '=', user.id)] + + + + + + + + + Access to user_input for regular users + + [('create_uid', '=', user.id)] + + + + + + + + + Survey Manager access rights + + [(1, '=', 1)] + + + + + + + diff --git a/addons/survey/specification/specification.txt b/addons/survey/specification/specification.txt deleted file mode 100644 index 673ca5bad17..00000000000 --- a/addons/survey/specification/specification.txt +++ /dev/null @@ -1,157 +0,0 @@ -Date : 8th October, 2009 -Created by : Harshad Modi(hmo) and Yogesh(ysa) --------------------------------------------------------------------------------------- - - **** Specification of Survay module in OpenERP **** - - -Basic Requirements : -====================================================================================== -> Design own survey form -> Desing own Questionaries -> Collect Response -> Analyze Result - -Design own survey form: ---------------------------------------------------------------- -Allow to make multiple own survey pages with multiple questions with different question type. - -Note : After finish first Phase of Development, Allow to design page template to specify customize theme for bgcolor, bgimage, font style, font color - - -Design Questinaries : -------------------------------------------------------- -Questinaries should has : -* can specify question text -* can make Answer sheet -Question Type: -* Survey Admin can able to design answer option like: -- Mutiple Choice with one answer -- Mutilpe Choice with multiple answer - - -Collect Response : ---------------------------------------------------------- -Survey Admin can able to : -- Create a link -- Send a survey invitation to others peple by mail -- Allow to set max limit of Response -- Survey Admin can able to close survey - -Analyze Result : ----------------------------------------------------------- -- Show Result with all Survey pages with total responses, responce count and calculate avarage response. - - - - - - - - -OpenERP model Design : -==================================================================== -survey : -------------------------------------------- -title - char(128) -pages_ids - one2many(survey_page) -date_open -date_close -survey_link -max_response_limit -status (draft, open, close, cancel) -resposible - many2one (res.user) - -survey_page: -------------------------------------------------------------------- -title - char(128) -page_template_id - many2one( survey_page_template) -survey_id - many2one(survey) -question_ids - one2many(survey_question) -sequence - int -note - char(256) - -survey_question: --------------------------------------------------------------- -page_id - many2one(survey_page) -question - char(128) -answer_choice_ids - one2many(survey_answer) -response_ids - one2many(survey_response) -is_require_answer -allow_comment -sequence - int - -survey_answer: --------------------------------------------------------------------------- -question_id - many2one(survey_question) -answer - char(128) -sequence - int - -survey_response: --------------------------------------------------------------------- -date_create -date_modify -status (done, skip) -response_by - many2one(res.users) -question_id - many2one(survey_question) -response_type ( from manual, link, mail) -response_answer_ids - one2many(survey_response_answer) - -survey_response_answer: --------------------------------------------------------------------- -response_id - many2one(survey_response) -question_id - many2one(survey_answer) -comment - - -OpenERP View Design: -================================================== - -Survey View : - -see survey.png file - -Survey Pages View: - -see survey_page.png file - -Survey Question View: - -see survey_qyestion.png file - -Survey Response View : - -see survey_response.png file - - - -OpenERP Report Design : -=================================================== - -Design postgres view to display statistical information of response per question, response per user, etc.. -More detail will be provided later. - - -OpenERP Menu Design : -===================================================== - -Survey Management : - > Surveys - > All Surveys - > New Survey - > Survey Pages - > All Survey Pages - > New Survey Page - > Survey Response - > All Survey Responses - > New Survey Response - > Reports - > Response per Survey - > Response per Survey Page - > Response per Question - > Response per User - -References : -=============================================== -http://www.surveymonkey.com/ - diff --git a/addons/survey/specification/survey.png b/addons/survey/specification/survey.png deleted file mode 100644 index 52acff391d0..00000000000 Binary files a/addons/survey/specification/survey.png and /dev/null differ diff --git a/addons/survey/specification/survey_page.png b/addons/survey/specification/survey_page.png deleted file mode 100644 index 4fceac4b81b..00000000000 Binary files a/addons/survey/specification/survey_page.png and /dev/null differ diff --git a/addons/survey/specification/survey_question.png b/addons/survey/specification/survey_question.png deleted file mode 100644 index 516606902cb..00000000000 Binary files a/addons/survey/specification/survey_question.png and /dev/null differ diff --git a/addons/survey/specification/survey_response.png b/addons/survey/specification/survey_response.png deleted file mode 100644 index af78bd1977d..00000000000 Binary files a/addons/survey/specification/survey_response.png and /dev/null differ diff --git a/addons/survey/static/src/css/survey.css b/addons/survey/static/src/css/survey.css deleted file mode 100644 index 15899533213..00000000000 --- a/addons/survey/static/src/css/survey.css +++ /dev/null @@ -1,13 +0,0 @@ -.openerp .oe_survey_title { - font-weight: bold; - font-size: 19px; - margin: 8px 0px 8px 0px; - color: #5B5B5B; -} - -.openerp .oe_kanban_survey { - /* Customize height and width according bootstrap3 */ - width: 212px; - min-height: 86px !important; - /* End of customize */ -} diff --git a/addons/survey/static/src/css/survey_result.css b/addons/survey/static/src/css/survey_result.css new file mode 100644 index 00000000000..9762bc3866f --- /dev/null +++ b/addons/survey/static/src/css/survey_result.css @@ -0,0 +1,53 @@ +.only_right_radius { + border-top-right-radius: 2em; + border-bottom-right-radius: 2em; + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.only_left_radius { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-top-left-radius: 2em; + border-bottom-left-radius: 2em; +} + +.no_radius { + border-radius: 0; +} + +.clear_survey_filter, .filter-all, .filter-finished{ + cursor: pointer; +} + +.nvtooltip h5 { + margin: 0; + line-height: 18px; + font-weight: bold; + background-color: rgba(247,247,247,0.75); + text-align: center; + border-bottom: 1px solid #ebebeb; + -webkit-border-radius: 5px 5px 0 0; + -moz-border-radius: 5px 5px 0 0; + border-radius: 5px 5px 0 0; +} + + +.survey_answer i { + padding:3px; + cursor:pointer; +} + +.survey_answer i.invisible { + visibility: hidden!important; +} + +@media print { + .tab-content > .tab-pane { + display: block; + } + + .tab-content > .survey_graph > svg { + width: 1150px; + } +} diff --git a/addons/survey/static/src/js/survey.js b/addons/survey/static/src/js/survey.js new file mode 100644 index 00000000000..2d97250b0ce --- /dev/null +++ b/addons/survey/static/src/js/survey.js @@ -0,0 +1,131 @@ +/* + * OpenERP, Open Source Management Solution + * Copyright (C) 2004-TODAY OpenERP S.A. + * + * 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 . + */ + +/* + * This file is intended to add interactivity to survey forms rendered by + * the website engine. + */ + +$(document).ready(function () { + 'use strict'; + + console.debug("[survey] Custom JS for survey is loading..."); + + var the_form = $('.js_surveyform'); + var prefill_controller = the_form.attr("data-prefill"); + var validate_controller = the_form.attr("data-validate"); + var submit_controller = the_form.attr("data-submit"); + var print_mode = false; + + // Printing mode: will disable all the controls in the form + if (_.isUndefined(submit_controller)) { + $('.js_surveyform :input').prop('disabled', true); + print_mode = true; + } + + // Custom code for right behavior of radio buttons with comments box + $('.js_comments>input[type="text"]').focusin(function(){ + $(this).prev().find('>input').attr("checked","checked"); + }); + $('.js_radio input[type="radio"][data-oe-survey-otherr!="1"]').click(function(){ + $(this).closest('.js_radio').find('.js_comments>input[type="text"]').val(""); + }); + $('.js_comments input[type="radio"]').click(function(){ + $(this).closest('.js_comments').find('>input[data-oe-survey-othert="1"]').focus(); + }); + // Custom code for right behavior of dropdown menu with comments + $('.js_drop input[data-oe-survey-othert="1"]').hide(); + $('.js_drop select').change(function(){ + var other_val = $(this).find('.js_other_option').val(); + if($(this).val() === other_val){ + $(this).parent().removeClass('col-md-12').addClass('col-md-6'); + $(this).closest('.js_drop').find('input[data-oe-survey-othert="1"]').show().focus(); + } + else{ + $(this).parent().removeClass('col-md-6').addClass('col-md-12'); + $(this).closest('.js_drop').find('input[data-oe-survey-othert="1"]').val("").hide(); + } + }); + // Custom code for right behavior of checkboxes with comments box + $('.js_ck_comments>input[type="text"]').focusin(function(){ + $(this).prev().find('>input').attr("checked","checked"); + }); + $('.js_ck_comments input[type="checkbox"]').change(function(){ + if (! $(this).prop("checked")){ + $(this).closest('.js_ck_comments').find('input[type="text"]').val(""); + } + }); + + // Pre-filling of the form with previous answers + function prefill(){ + var prefill_def = $.ajax(prefill_controller, {dataType: "json"}) + .done(function(json_data){ + _.each(json_data, function(value, key){ + the_form.find(".form-control[name=" + key + "]").val(value); + the_form.find("input[name^=" + key + "]").each(function(){ + $(this).val(value); + }); + }); + }) + .fail(function(){ + console.warn("[survey] Unable to load prefill data"); + }); + return prefill_def; + } + + // Parameters for form submission + $('.js_surveyform').ajaxForm({ + url: submit_controller, + type: 'POST', // submission type + dataType: 'json', // answer expected type + beforeSubmit: function(){ // hide previous errmsg before resubmitting + $('.js_errzone').html("").hide(); + }, + success: function(response, status, xhr, wfe){ // submission attempt + if(_.has(response, 'errors')){ // some questions have errors + _.each(_.keys(response.errors), function(key){ + $("#" + key + '>.js_errzone').append('

    ' + response.errors[key] + '

    ').show(); + }); + return false; + } + else if (_.has(response, 'redirect')){ // form is ok + window.location.replace(response.redirect); + return true; + } + else { // server sends bad data + console.error("Incorrect answer sent by server"); + return false; + } + }, + timeout: 5000, + error: function(jqXHR, textStatus, errorThrown){ // failure of AJAX request + $('#AJAXErrorModal').modal('show'); + } + }); + + // // Handles the event when a question is focused out + // $('.js_question-wrapper').focusout( + // function(){ + // console.debug("[survey] Focus lost on question " + $(this).attr("id")); + // }); + + // Launch prefilling + prefill(); + + console.debug("[survey] Custom JS for survey loaded!"); +}); diff --git a/addons/survey/static/src/js/survey_result.js b/addons/survey/static/src/js/survey_result.js new file mode 100644 index 00000000000..7c9b935582a --- /dev/null +++ b/addons/survey/static/src/js/survey_result.js @@ -0,0 +1,177 @@ +/* + * OpenERP, Open Source Management Solution + * Copyright (C) 2004-TODAY OpenERP S.A. + * + * 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 . + */ + +$(document).ready(function () { + 'use strict'; + console.debug("[survey] Survey Result JS is loading..."); + + //Script For Pagination + var survey_pagination = $('.pagination'); + $.each(survey_pagination, function(index, pagination){ + var question_id = $(pagination).attr("data-question_id"); + var limit = $(pagination).attr("data-record_limit"); //Number of Record Par Page. If you want to change number of record per page, change record_limit in pagination template. + $('#table_question_'+ question_id +' tbody tr:lt('+limit+')').removeClass('hidden'); + $('#pagination_'+question_id+' li:first').addClass('active'); + $('#pagination_'+question_id+' li a').click(function(event){ + event.preventDefault(); + $('#pagination_'+question_id+' li').removeClass('active'); + $(this).parent('li').addClass('active'); + $('#table_question_'+ question_id +' tbody tr').addClass('hidden'); + var num = $(this).text(); + var min = (limit * (num-1))-1; + if (min == -1){ + $('#table_question_'+ question_id +' tbody tr:lt('+ limit * num +')').removeClass('hidden'); + } + else{ + $('#table_question_'+question_id+' tbody tr:lt('+ limit * num +'):gt('+min+')').removeClass('hidden'); + } + }); + }); + + //initialize MultiBar Chart + function init_multibar_chart(){ + var chart = nv.models.multiBarChart() + .x(function(d) { return d.text; }) + .y(function(d) { return d.count; }) + .staggerLabels(true); + + // Replacing Library's Default Tooltip with our Custom One + chart.tooltip(function(key, x, y, e, graph) { + return '
    ' + x + '
    ' + + '

    ' + 'Responses : ' + key + '

    ' + + '

    ' + "Total Vote : " + y + '

    '; + }); + return chart; + } + + //initialize discreteBar Chart + function init_bar_chart(){ + return nv.models.discreteBarChart() + .x(function(d) { return d.text; }) + .y(function(d) { return d.count; }) + .staggerLabels(true) + .tooltips(false) + .showValues(true); + } + + //initialize Pie Chart + function init_pie_chart(){ + return nv.models.pieChart() + .x(function(d) { return d.text; }) + .y(function(d) { return d.count; }) + .showLabels(false); + } + + //load chart to svg element chart:initialized chart, response:AJAX response, quistion_id:if of survey question, tick_limit:text length limit + function load_chart(chart, response, question_id, tick_limit, graph_type){ + // Custom Tick fuction for replacing long text with '...' + var customtick_function = function(d){ + if(! this || d.length <= tick_limit){ + return d; + } + else{ + return d.slice(0,tick_limit) + '...'; + } + }; + if (graph_type != 'pie'){ + chart.xAxis + .tickFormat(customtick_function); + chart.yAxis + .tickFormat(d3.format('d')); + } + d3.select('#graph_question_' + question_id + ' svg') + .datum(response) + .transition().duration(500).call(chart); + nv.utils.windowResize(chart.update); + return chart; + } + //Script For Graph + var survey_graphs = $('.survey_graph'); + $.each(survey_graphs, function(index, graph){ + var question_id = $(graph).attr("data-question_id"); + var graph_type = $(graph).attr("data-graph_type"); + var graph_data = JSON.parse($(graph).attr("graph-data")); + if(graph_type == 'multi_bar'){ + nv.addGraph(function(){ + var chart = init_multibar_chart(); + return load_chart(chart, graph_data, question_id, 25); + }); + } + else if(graph_type == 'bar'){ + nv.addGraph(function() { + var chart = init_bar_chart(); + return load_chart(chart, graph_data, question_id, 35); + }); + } + else if(graph_type == 'pie'){ + nv.addGraph(function() { + var chart = init_pie_chart(); + return load_chart(chart, graph_data, question_id, 25, 'pie'); + }); + } + }); + + // Script for filter + $('td.survey_answer').hover(function(){ + $(this).find('i.fa-filter').removeClass('invisible'); + }, function(){ + $(this).find('i.fa-filter').addClass('invisible'); + }); + $('td.survey_answer i.fa-filter').click(function(){ + var cell = $(this); + var row_id = cell.attr('data-row_id') | 0; + var answer_id = cell.attr('data-answer_id'); + if(document.URL.indexOf("?") == -1){ + window.location.href = document.URL + '?' + encodeURI(row_id + ',' + answer_id); + } + else { + window.location.href = document.URL + '&' + encodeURI(row_id + ',' + answer_id); + } + }); + + // for clear all filters + $('.clear_survey_filter').click(function(){ + window.location.href = document.URL.substring(0,document.URL.indexOf("?")); + }); + $('span.filter-all').click(function(){ + event.preventDefault(); + if(document.URL.indexOf("finished") != -1){ + window.location.href = document.URL.replace('?finished&','?').replace('&finished&','&').replace('?finished','').replace('&finished',''); + } + }).hover(function(){ + if(document.URL.indexOf("finished") == -1){ + $(this)[0].style.cursor = 'default'; + } + }); + // toggle finished/all surveys filter + $('span.filter-finished').click(function(){ + event.preventDefault(); + if(document.URL.indexOf("?") == -1){ + window.location.href = document.URL + '?' + encodeURI('finished'); + } + else if(document.URL.indexOf("finished") == -1){ + window.location.href = document.URL + '&' + encodeURI('finished'); + } + }).hover(function(){ + if(document.URL.indexOf("finished") != -1){ + $(this)[0].style.cursor = 'default'; + } + }); + + console.debug("[survey] Survey Result JS loaded!"); +}); \ No newline at end of file diff --git a/addons/survey/survey.py b/addons/survey/survey.py index 37a0c6ed773..eaf7a898df5 100644 --- a/addons/survey/survey.py +++ b/addons/survey/survey.py @@ -4,7 +4,7 @@ # OpenERP, Open Source Management Solution # Copyright (C) 2004-TODAY OpenERP S.A. # -# This program is free software: you can redistribute it and/or modify +# 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. @@ -19,760 +19,1204 @@ # ############################################################################## -import copy -from datetime import datetime -from dateutil.relativedelta import relativedelta -from time import strftime -import os - -from openerp import tools from openerp.osv import fields, osv from openerp.tools.translate import _ +from openerp.tools import DEFAULT_SERVER_DATETIME_FORMAT as DF +from openerp.addons.website.models.website import slug +from urlparse import urljoin +from itertools import product +from collections import Counter -class survey_type(osv.osv): - _name = 'survey.type' - _description = 'Survey Type' - _columns = { - 'name': fields.char("Name", size=128, required=1, translate=True), - 'code': fields.char("Code", size=64), - } +import datetime +import logging +import re +import uuid -class survey(osv.osv): - _name = 'survey' +_logger = logging.getLogger(__name__) + + +class survey_survey(osv.Model): + '''Settings for a multi-page/multi-question survey. + Each survey can have one or more attached pages, and each page can display + one or more questions. + ''' + + _name = 'survey.survey' _description = 'Survey' _rec_name = 'title' + _inherit = ['mail.thread', 'ir.needaction_mixin'] - def default_get(self, cr, uid, fields, context=None): - data = super(survey, self).default_get(cr, uid, fields, context) - return data + # Protected methods # + + def _has_questions(self, cr, uid, ids, context=None): + """ Ensure that this survey has at least one page with at least one + question. """ + for survey in self.browse(cr, uid, ids, context=context): + if not survey.page_ids or not [page.question_ids + for page in survey.page_ids if page.question_ids]: + return False + return True + + ## Function fields ## + + def _is_designed(self, cr, uid, ids, name, arg, context=None): + res = dict() + for survey in self.browse(cr, uid, ids, context=context): + if not survey.page_ids or not [page.question_ids + for page in survey.page_ids if page.question_ids]: + res[survey.id] = False + else: + res[survey.id] = True + return res + + def _get_tot_sent_survey(self, cr, uid, ids, name, arg, context=None): + """ Returns the number of invitations sent for this survey, be they + (partially) completed or not """ + res = dict((id, 0) for id in ids) + sur_res_obj = self.pool.get('survey.user_input') + for id in ids: + res[id] = sur_res_obj.search(cr, uid, # SUPERUSER_ID, + [('survey_id', '=', id), ('type', '=', 'link')], + context=context, count=True) + return res + + def _get_tot_start_survey(self, cr, uid, ids, name, arg, context=None): + """ Returns the number of started instances of this survey, be they + completed or not """ + res = dict((id, 0) for id in ids) + sur_res_obj = self.pool.get('survey.user_input') + for id in ids: + res[id] = sur_res_obj.search(cr, uid, # SUPERUSER_ID, + ['&', ('survey_id', '=', id), '|', ('state', '=', 'skip'), ('state', '=', 'done')], + context=context, count=True) + return res + + def _get_tot_comp_survey(self, cr, uid, ids, name, arg, context=None): + """ Returns the number of completed instances of this survey """ + res = dict((id, 0) for id in ids) + sur_res_obj = self.pool.get('survey.user_input') + for id in ids: + res[id] = sur_res_obj.search(cr, uid, # SUPERUSER_ID, + [('survey_id', '=', id), ('state', '=', 'done')], + context=context, count=True) + return res + + def _get_public_url(self, cr, uid, ids, name, arg, context=None): + """ Computes a public URL for the survey """ + base_url = self.pool.get('ir.config_parameter').get_param(cr, uid, + 'web.base.url') + res = {} + for survey in self.browse(cr, uid, ids, context=context): + res[survey.id] = urljoin(base_url, "survey/start/%s" % slug(survey)) + return res + + def _get_public_url_html(self, cr, uid, ids, name, arg, context=None): + """ Computes a public URL for the survey (html-embeddable version)""" + urls = self._get_public_url(cr, uid, ids, name, arg, context=context) + for id, url in urls.iteritems(): + urls[id] = '%s' % (url, _("Click here to start survey")) + return urls + + def _get_print_url(self, cr, uid, ids, name, arg, context=None): + """ Computes a printing URL for the survey """ + base_url = self.pool.get('ir.config_parameter').get_param(cr, uid, + 'web.base.url') + res = {} + for survey in self.browse(cr, uid, ids, context=context): + res[survey.id] = urljoin(base_url, "survey/print/%s" % slug(survey)) + return res + + def _get_result_url(self, cr, uid, ids, name, arg, context=None): + """ Computes an URL for the survey results """ + base_url = self.pool.get('ir.config_parameter').get_param(cr, uid, + 'web.base.url') + res = {} + for survey in self.browse(cr, uid, ids, context=context): + res[survey.id] = urljoin(base_url, "survey/results/%s" % slug(survey)) + return res + + # Model fields # _columns = { - 'id': fields.integer('ID'), - 'title': fields.char('Survey Title', size=128, required=1), - 'page_ids': fields.one2many('survey.page', 'survey_id', 'Page'), - 'date_open': fields.datetime('Survey Open Date', readonly=1), - 'date_close': fields.datetime('Survey Close Date', readonly=1), - 'max_response_limit': fields.integer('Maximum Answer Limit', - help="Set to one if survey is answerable only once"), - 'response_user': fields.integer('Maximum Answer per User', - help="Set to one if you require only one Answer per user"), - 'state': fields.selection([('open', 'Open'), ('cancel', 'Cancelled'),('close', 'Closed') ], 'Status', readonly=True), - 'responsible_id': fields.many2one('res.users', 'Responsible', help="User responsible for survey"), - 'tot_start_survey': fields.integer("Total Started Survey", readonly=1), - 'tot_comp_survey': fields.integer("Total Completed Survey", readonly=1), - 'note': fields.text('Description', size=128), - 'history': fields.one2many('survey.history', 'survey_id', 'History Lines', readonly=True), - 'users': fields.many2many('res.users', 'survey_users_rel', 'sid', 'uid', 'Users'), - 'send_response': fields.boolean('Email Notification on Answer'), - 'type': fields.many2one('survey.type', 'Type'), + 'title': fields.char('Title', required=1, translate=True), + 'res_model': fields.char('Category'), + 'page_ids': fields.one2many('survey.page', 'survey_id', 'Pages'), + 'stage_id': fields.many2one('survey.stage', string="Stage", ondelete="set null"), + 'auth_required': fields.boolean('Login required', + help="Users with a public link will be requested to login before taking part to the survey", + oldname="authenticate"), + 'users_can_go_back': fields.boolean('Users can go back', + help="If checked, users can go back to previous pages."), + 'tot_sent_survey': fields.function(_get_tot_sent_survey, + string="Number of sent surveys", type="integer"), + 'tot_start_survey': fields.function(_get_tot_start_survey, + string="Number of started surveys", type="integer"), + 'tot_comp_survey': fields.function(_get_tot_comp_survey, + string="Number of completed surveys", type="integer"), + 'description': fields.html('Description', translate=True, + oldname="description", help="A long description of the purpose of the survey"), 'color': fields.integer('Color Index'), - 'invited_user_ids': fields.many2many('res.users', 'survey_invited_user_rel', 'sid', 'uid', 'Invited User'), + 'user_input_ids': fields.one2many('survey.user_input', 'survey_id', + 'User responses', readonly=1), + 'designed': fields.function(_is_designed, string="Is designed?", + type="boolean"), + 'public_url': fields.function(_get_public_url, + string="Public link", type="char"), + 'public_url_html': fields.function(_get_public_url_html, + string="Public link (html version)", type="char"), + 'print_url': fields.function(_get_print_url, + string="Print link", type="char"), + 'result_url': fields.function(_get_result_url, + string="Results link", type="char"), + 'email_template_id': fields.many2one('email.template', + 'Email Template', ondelete='set null'), + 'thank_you_message': fields.html('Thank you message', translate=True, + help="This message will be displayed when survey is completed"), + 'quizz_mode': fields.boolean(string='Quizz mode') } + _defaults = { - 'state': lambda * a: "open", - 'tot_start_survey': lambda * a: 0, - 'tot_comp_survey': lambda * a: 0, - 'send_response': lambda * a: 1, - 'response_user': lambda * a:1, - 'date_open': fields.datetime.now, + 'color': 0, + 'stage_id': lambda self, cr, uid, context: self.pool.get('survey.stage').search_read(cr, uid, fields=['id'], order='sequence asc', limit=1, context=context)[0]['id'] } - def survey_open(self, cr, uid, ids, arg): - self.write(cr, uid, ids, {'state': 'open', 'date_open': strftime("%Y-%m-%d %H:%M:%S")}) - return True + def _read_group_stage_ids(self, cr, uid, ids, domain, read_group_order=None, access_rights_uid=None, context=None): + """ Read group customization in order to display all the stages in the + kanban view, even if they are empty """ + stage_obj = self.pool.get('survey.stage') + order = stage_obj._order + access_rights_uid = access_rights_uid or uid - def survey_close(self, cr, uid, ids, arg): - self.write(cr, uid, ids, {'state': 'close', 'date_close': strftime("%Y-%m-%d %H:%M:%S") }) - return True + if read_group_order == 'stage_id desc': + order = '%s desc' % order - def survey_cancel(self, cr, uid, ids, arg): - self.write(cr, uid, ids, {'state': 'cancel' }) - return True + stage_ids = stage_obj._search(cr, uid, [], order=order, access_rights_uid=access_rights_uid, context=context) + result = stage_obj.name_get(cr, access_rights_uid, stage_ids, context=context) - def copy(self, cr, uid, ids, default=None, context=None): - vals = {} - current_rec = self.read(cr, uid, ids, context=context) + # restore order of the search + result.sort(lambda x, y: cmp(stage_ids.index(x[0]), stage_ids.index(y[0]))) + + fold = {} + for stage in stage_obj.browse(cr, access_rights_uid, stage_ids, context=context): + fold[stage.id] = stage.fold or False + return result, fold + + _group_by_full = { + 'stage_id': _read_group_stage_ids + } + + # Public methods # + + def copy_data(self, cr, uid, id, default=None, context=None): + vals = dict() + current_rec = self.read(cr, uid, id, fields=['title'], context=context) title = _("%s (copy)") % (current_rec.get('title')) - vals.update({'title':title}) - vals.update({'history':[],'tot_start_survey':0,'tot_comp_survey':0}) - return super(survey, self).copy(cr, uid, ids, vals, context=context) + vals['title'] = title + vals['user_input_ids'] = [] + return super(survey_survey, self).copy_data(cr, uid, id, default=vals, + context=context) + + def next_page(self, cr, uid, user_input, page_id, go_back=False, context=None): + '''The next page to display to the user, knowing that page_id is the id + of the last displayed page. + + If page_id == 0, it will always return the first page of the survey. + + If all the pages have been displayed and go_back == False, it will + return None + + If go_back == True, it will return the *previous* page instead of the + next page. + + .. note:: + It is assumed here that a careful user will not try to set go_back + to True if she knows that the page to display is the first one! + (doing this will probably cause a giant worm to eat her house)''' + survey = user_input.survey_id + pages = list(enumerate(survey.page_ids)) + + # First page + if page_id == 0: + return (pages[0][1], 0, len(pages) == 1) + + current_page_index = pages.index((filter(lambda p: p[1].id == page_id, pages))[0]) + + # All the pages have been displayed + if current_page_index == len(pages) - 1 and not go_back: + return (None, -1, False) + # Let's get back, baby! + elif go_back and survey.users_can_go_back: + return (pages[current_page_index - 1][1], current_page_index - 1, False) + else: + # This will show the last page + if current_page_index == len(pages) - 2: + return (pages[current_page_index + 1][1], current_page_index + 1, True) + # This will show a regular page + else: + return (pages[current_page_index + 1][1], current_page_index + 1, False) + + def filter_input_ids(self, cr, uid, filters, finished=False, context=None): + '''If user applies any filters, then this function returns list of + filtered user_input_id and label's strings for display data in web. + :param filters: list of dictionary (having: row_id, ansewr_id) + :param finished: True for completely filled survey,Falser otherwise. + :returns list of filtered user_input_ids. + ''' + if context is None: + context = {} + if filters: + input_line_obj = self.pool.get('survey.user_input_line') + domain_filter, choice, filter_display_data = [], [], [] + for filter in filters: + row_id, answer_id = filter['row_id'], filter['answer_id'] + if row_id == 0: + choice.append(answer_id) + else: + domain_filter.extend(['|', ('value_suggested_row.id', '=', row_id), ('value_suggested.id', '=', answer_id)]) + if choice: + domain_filter.insert(0, ('value_suggested.id', 'in', choice)) + else: + domain_filter = domain_filter[1:] + line_ids = input_line_obj.search(cr, uid, domain_filter, context=context) + filtered_input_ids = [input.user_input_id.id for input in input_line_obj.browse(cr, uid, line_ids, context=context)] + else: + filtered_input_ids, filter_display_data = [], [] + if finished: + user_input = self.pool.get('survey.user_input') + if not filtered_input_ids: + current_filters = user_input.search(cr, uid, [], context=context) + user_input_objs = user_input.browse(cr, uid, current_filters, context=context) + else: + user_input_objs = user_input.browse(cr, uid, filtered_input_ids, context=context) + return [input.id for input in user_input_objs if input.state == 'done'] + return filtered_input_ids + + def get_filter_display_data(self, cr, uid, filters, context): + '''Returns data to display current filters + :param filters: list of dictionary (having: row_id, answer_id) + :param finished: True for completely filled survey, False otherwise. + :returns list of dict having data to display filters. + ''' + filter_display_data = [] + if filters: + question_obj = self.pool.get('survey.question') + label_obj = self.pool.get('survey.label') + for filter in filters: + row_id, answer_id = filter['row_id'], filter['answer_id'] + question_id = label_obj.browse(cr, uid, answer_id, context=context).question_id.id + question = question_obj.browse(cr, uid, question_id, context=context) + if row_id == 0: + labels = label_obj.browse(cr, uid, [answer_id], context=context) + else: + labels = label_obj.browse(cr, uid, [row_id, answer_id], context=context) + filter_display_data.append({'question_text': question.question, 'labels': [label.value for label in labels]}) + return filter_display_data + + def prepare_result(self, cr, uid, question, current_filters=[], context=None): + ''' Compute statistical data for questions by counting number of vote per choice on basis of filter ''' + if context is None: + context = {} + #Calculate and return statistics for choice + if question.type in ['simple_choice', 'multiple_choice']: + result_summary = {} + [result_summary.update({label.id: {'text': label.value, 'count': 0, 'answer_id': label.id}}) for label in question.labels_ids] + for input_line in question.user_input_line_ids: + if input_line.answer_type == 'suggestion' and result_summary.get(input_line.value_suggested.id) and (not(current_filters) or input_line.user_input_id.id in current_filters): + result_summary[input_line.value_suggested.id]['count'] += 1 + result_summary = result_summary.values() + + #Calculate and return statistics for matrix + if question.type == 'matrix': + rows, answers, res = {}, {}, {} + [rows.update({label.id: label.value}) for label in question.labels_ids_2] + [answers.update({label.id: label.value}) for label in question.labels_ids] + for cell in product(rows.keys(), answers.keys()): + res[cell] = 0 + for input_line in question.user_input_line_ids: + if input_line.answer_type == 'suggestion' and not(current_filters) or input_line.user_input_id.id in current_filters: + res[(input_line.value_suggested_row.id, input_line.value_suggested.id)] += 1 + result_summary = {'answers': answers, 'rows': rows, 'result': res} + + #Calculate and return statistics for free_text, textbox, datetime + if question.type in ['free_text', 'textbox', 'datetime']: + result_summary = [] + for input_line in question.user_input_line_ids: + if not(current_filters) or input_line.user_input_id.id in current_filters: + result_summary.append(input_line) + + #Calculate and return statistics for numerical_box + if question.type == 'numerical_box': + result_summary = {'input_lines': []} + all_inputs = [] + for input_line in question.user_input_line_ids: + if not(current_filters) or input_line.user_input_id.id in current_filters: + all_inputs.append(input_line.value_number) + result_summary['input_lines'].append(input_line) + if all_inputs: + result_summary.update({'average': round(sum(all_inputs) / len(all_inputs), 2), + 'max': round(max(all_inputs), 2), + 'min': round(min(all_inputs), 2), + 'most_comman': Counter(all_inputs).most_common(5)}) + return result_summary + + def get_input_summary(self, cr, uid, question, current_filters=[], context=None): + ''' Returns overall summary of question e.g. answered, skipped, total_inputs on basis of filter ''' + if context is None: + context = {} + result = {} + if question.survey_id.user_input_ids: + total_input_ids = current_filters or [input_id.id for input_id in question.survey_id.user_input_ids if input_id.state != 'new'] + result['total_inputs'] = len(total_input_ids) + question_input_ids = [] + for user_input in question.user_input_line_ids: + if not user_input.skipped: + question_input_ids.append(user_input.user_input_id.id) + result['answered'] = len(set(question_input_ids) & set(total_input_ids)) + result['skipped'] = result['total_inputs'] - result['answered'] + return result + + # Actions + + def action_start_survey(self, cr, uid, ids, context=None): + ''' Open the website page with the survey form ''' + trail = "" + if context and 'survey_token' in context: + trail = "/" + context['survey_token'] + return { + 'type': 'ir.actions.act_url', + 'name': "Start Survey", + 'target': 'self', + 'url': self.read(cr, uid, ids, ['public_url'], context=context)[0]['public_url'] + trail + } + + def action_send_survey(self, cr, uid, ids, context=None): + ''' Open a window to compose an email, pre-filled with the survey + message ''' + if not self._has_questions(cr, uid, ids, context=None): + raise osv.except_osv(_('Error!'), _('You cannot send an invitation for a survey that has no questions.')) + + survey_browse = self.pool.get('survey.survey').browse(cr, uid, ids, + context=context)[0] + if survey_browse.stage_id.closed: + raise osv.except_osv(_('Warning!'), + _("You cannot send invitations for closed surveys.")) + + assert len(ids) == 1, 'This option should only be used for a single \ + survey at a time.' + ir_model_data = self.pool.get('ir.model.data') + templates = ir_model_data.get_object_reference(cr, uid, + 'survey', 'email_template_survey') + template_id = templates[1] if len(templates) > 0 else False + ctx = dict(context) + + ctx.update({'default_model': 'survey.survey', + 'default_res_id': ids[0], + 'default_survey_id': ids[0], + 'default_use_template': bool(template_id), + 'default_template_id': template_id, + 'default_composition_mode': 'comment'} + ) + return { + 'type': 'ir.actions.act_window', + 'view_type': 'form', + 'view_mode': 'form', + 'res_model': 'survey.mail.compose.message', + 'target': 'new', + 'context': ctx, + } def action_print_survey(self, cr, uid, ids, context=None): - """ - If response is available then print this response otherwise print survey form(print template of the survey). - @param self: The object pointer - @param cr: the current row, from the database cursor, - @param uid: the current user’s ID for security checks, - @param ids: List of Survey IDs - @param context: A standard dictionary for contextual values - @return : Dictionary value for print survey form. - """ - if context is None: - context = {} - datas = {} - if 'response_id' in context: - response_id = context.get('response_id', 0) - datas['ids'] = [context.get('survey_id', 0)] - else: - response_id = self.pool.get('survey.response').search(cr, uid, [('survey_id','=', ids)], context=context) - datas['ids'] = ids - page_setting = {'orientation': 'vertical', 'without_pagebreak': 0, 'paper_size': 'letter', 'page_number': 1, 'survey_title': 1} - report = {} - if response_id and response_id[0]: - context.update({'survey_id': datas['ids']}) - datas['form'] = page_setting - datas['model'] = 'survey.print.answer' - report = { - 'type': 'ir.actions.report.xml', - 'report_name': 'survey.browse.response', - 'datas': datas, - 'context' : context, - 'nodestroy':True, - } - else: - - datas['form'] = page_setting - datas['model'] = 'survey.print' - report = { - 'type': 'ir.actions.report.xml', - 'report_name': 'survey.form', - 'datas': datas, - 'context' : context, - 'nodestroy':True, - } - return report - - def fill_survey(self, cr, uid, ids, context=None): - sur_obj = self.read(cr, uid, ids,['title', 'page_ids'], context=context) - for sur in sur_obj: - name = sur['title'] - pages = sur['page_ids'] - if not pages: - raise osv.except_osv(_('Warning!'), _('This survey has no question defined. Please define the questions and answers first.')) - context.update({'active':False,'survey_id': ids[0]}) + ''' Open the website page with the survey printable view ''' + trail = "" + if context and 'survey_token' in context: + trail = "/" + context['survey_token'] return { - 'view_type': 'form', - 'view_mode': 'form', - 'res_model': 'survey.question.wiz', - 'type': 'ir.actions.act_window', - 'target': 'new', - 'name': name, - 'context': context - } - def test_survey(self, cr, uid, ids, context=None): - sur_obj = self.read(cr, uid, ids,['title','page_ids'], context=context) - for sur in sur_obj: - name = sur['title'] - pages = sur['page_ids'] - if not pages: - raise osv.except_osv(_('Warning!'), _('This survey has no pages defined. Please define pages first.')) - context.update({'active':False,'survey_id': ids[0]}) - return { - 'view_type': 'form', - 'view_mode': 'form', - 'res_model': 'survey.question.wiz', - 'type': 'ir.actions.act_window', - 'target': 'new', - 'name': name, - 'context': context + 'type': 'ir.actions.act_url', + 'name': "Print Survey", + 'target': 'self', + 'url': self.read(cr, uid, ids, ['print_url'], context=context)[0]['print_url'] + trail } - def edit_survey(self, cr, uid, ids, context=None): - sur_obj = self.read(cr, uid, ids,['title','page_ids'], context=context) - for sur in sur_obj: - name = sur['title'] - pages = sur['page_ids'] - if not pages: - raise osv.except_osv(_('Warning!'), _('This survey has no question defined. Please define the questions and answers first.')) - context.update({'survey_id': ids[0]}) + def action_result_survey(self, cr, uid, ids, context=None): + ''' Open the website page with the survey results view ''' return { - 'view_type': 'form', - 'view_mode': 'form', - 'res_model': 'survey.question.wiz', - 'type': 'ir.actions.act_window', - 'target': 'new', - 'name': name, - 'context': context + 'type': 'ir.actions.act_url', + 'name': "Results of the Survey", + 'target': 'self', + 'url': self.read(cr, uid, ids, ['result_url'], context=context)[0]['result_url'] + } + + def action_test_survey(self, cr, uid, ids, context=None): + ''' Open the website page with the survey form into test mode''' + return { + 'type': 'ir.actions.act_url', + 'name': "Results of the Survey", + 'target': 'self', + 'url': self.read(cr, uid, ids, ['public_url'], context=context)[0]['public_url'] + "/phantom" } -class survey_history(osv.osv): - _name = 'survey.history' - _description = 'Survey History' - _rec_name = 'date' +class survey_stage(osv.Model): + """Stages for Kanban view of surveys""" + + _name = 'survey.stage' + _description = 'Survey Stage' + _order = 'sequence asc' + _columns = { - 'survey_id': fields.many2one('survey', 'Survey'), - 'user_id': fields.many2one('res.users', 'User', readonly=True), - 'date': fields.datetime('Date started', readonly=1), + 'name': fields.char(string="Name", required=True, translate=True), + 'sequence': fields.integer(string="Sequence"), + 'closed': fields.boolean(string="Closed", help="If closed, people won't be able to answer to surveys in this column."), + 'fold': fields.boolean(string="Folded in kanban view") } _defaults = { - 'date': lambda * a: datetime.datetime.now() + 'sequence': 1, + 'closed': False } + _sql_constraints = [ + ('positive_sequence', 'CHECK(sequence >= 0)', 'Sequence number MUST be a natural') + ] + + +class survey_page(osv.Model): + '''A page for a survey. + + Pages are essentially containers, allowing to group questions by ordered + screens. + + .. note:: + A page should be deleted if the survey it belongs to is deleted. ''' -class survey_page(osv.osv): _name = 'survey.page' - _description = 'Survey Pages' + _description = 'Survey Page' _rec_name = 'title' _order = 'sequence' + + # Model Fields # + _columns = { - 'title': fields.char('Page Title', size=128, required=1), - 'survey_id': fields.many2one('survey', 'Survey', ondelete='cascade'), - 'question_ids': fields.one2many('survey.question', 'page_id', 'Questions'), - 'sequence': fields.integer('Page Nr'), - 'note': fields.text('Description'), + 'title': fields.char('Page Title', required=1, + translate=True), + 'survey_id': fields.many2one('survey.survey', 'Survey', + ondelete='cascade', required=True), + 'question_ids': fields.one2many('survey.question', 'page_id', + 'Questions'), + 'sequence': fields.integer('Page number'), + 'description': fields.html('Description', + help="An introductory text to your page", translate=True, + oldname="note"), } _defaults = { - 'sequence': lambda * a: 1 + 'sequence': 10 } - def default_get(self, cr, uid, fields, context=None): - if context is None: - context = {} - data = super(survey_page, self).default_get(cr, uid, fields, context) - if context.has_key('survey_id'): - data['survey_id'] = context.get('survey_id', False) - return data + # Public methods # - def survey_save(self, cr, uid, ids, context=None): - if context is None: - context = {} - search_obj = self.pool.get('ir.ui.view') - search_id = search_obj.search(cr,uid,[('model','=','survey.question.wiz'),('name','=','Survey Search')]) - surv_name_wiz = self.pool.get('survey.name.wiz') - surv_name_wiz.write(cr, uid, [context.get('sur_name_id',False)], {'transfer':True, 'page_no' : context.get('page_number',0) }) - return { - 'view_type': 'form', - 'view_mode': 'form', - 'res_model': 'survey.question.wiz', - 'type': 'ir.actions.act_window', - 'target': 'new', - 'search_view_id': search_id[0], - 'context': context - } - - def copy(self, cr, uid, ids, default=None, context=None): + def copy_data(self, cr, uid, ids, default=None, context=None): vals = {} - current_rec = self.read(cr, uid, ids, context=context) + current_rec = self.read(cr, uid, ids, fields=['title'], context=context) title = _("%s (copy)") % (current_rec.get('title')) - vals.update({'title':title}) - return super(survey_page, self).copy(cr, uid, ids, vals, context=context) + vals.update({'title': title}) + return super(survey_page, self).copy_data(cr, uid, ids, default=vals, + context=context) -class survey_question(osv.osv): +class survey_question(osv.Model): + ''' Questions that will be asked in a survey. + + Each question can have one of more suggested answers (eg. in case of + dropdown choices, multi-answer checkboxes, radio buttons...).''' _name = 'survey.question' _description = 'Survey Question' _rec_name = 'question' _order = 'sequence' - def _calc_response(self, cr, uid, ids, field_name, arg, context=None): - if len(ids) == 0: - return {} - val = {} - cr.execute("select question_id, count(id) as Total_response from \ - survey_response_line where state='done' and question_id IN %s\ - group by question_id" ,(tuple(ids),)) - ids1 = copy.deepcopy(ids) - for rec in cr.fetchall(): - ids1.remove(rec[0]) - val[rec[0]] = int(rec[1]) - for id in ids1: - val[id] = 0 - return val + # Model fields # _columns = { - 'page_id': fields.many2one('survey.page', 'Survey Page', ondelete='cascade', required=1), - 'question': fields.char('Question', size=128, required=1), - 'answer_choice_ids': fields.one2many('survey.answer', 'question_id', 'Answer'), - 'is_require_answer': fields.boolean('Require Answer to Question'), - 'required_type': fields.selection([('all','All'), ('at least','At Least'), ('at most','At Most'), ('exactly','Exactly'), ('a range','A Range')], 'Respondent must answer'), - 'req_ans': fields.integer('#Required Answer'), - 'maximum_req_ans': fields.integer('Maximum Required Answer'), - 'minimum_req_ans': fields.integer('Minimum Required Answer'), - 'req_error_msg': fields.text('Error Message'), - 'allow_comment': fields.boolean('Allow Comment Field'), - 'sequence': fields.integer('Sequence'), - 'tot_resp': fields.function(_calc_response, string="Total Answer"), - 'survey': fields.related('page_id', 'survey_id', type='many2one', relation='survey', string='Survey'), - 'descriptive_text': fields.text('Descriptive Text', size=255), - 'column_heading_ids': fields.one2many('survey.question.column.heading', 'question_id',' Column heading'), - 'type': fields.selection([('multiple_choice_only_one_ans','Multiple Choice (Only One Answer)'), - ('multiple_choice_multiple_ans','Multiple Choice (Multiple Answer)'), - ('matrix_of_choices_only_one_ans','Matrix of Choices (Only One Answers Per Row)'), - ('matrix_of_choices_only_multi_ans','Matrix of Choices (Multiple Answers Per Row)'), - ('matrix_of_drop_down_menus','Matrix of Drop-down Menus'), - ('rating_scale','Rating Scale'),('single_textbox','Single Textbox'), - ('multiple_textboxes','Multiple Textboxes'), - ('multiple_textboxes_diff_type','Multiple Textboxes With Different Type'), - ('comment','Comment/Essay Box'), - ('numerical_textboxes','Numerical Textboxes'),('date','Date'), - ('date_and_time','Date and Time'),('descriptive_text','Descriptive Text'), - ('table','Table'), - ], 'Question Type', required=1,), - 'is_comment_require': fields.boolean('Add Comment Field'), - 'comment_label': fields.char('Field Label', size = 255), - 'comment_field_type': fields.selection([('char', 'Single Line Of Text'), ('text', 'Paragraph of Text')], 'Comment Field Type'), - 'comment_valid_type': fields.selection([('do_not_validate', '''Don't Validate Comment Text.'''), - ('must_be_specific_length', 'Must Be Specific Length'), - ('must_be_whole_number', 'Must Be A Whole Number'), - ('must_be_decimal_number', 'Must Be A Decimal Number'), - ('must_be_date', 'Must Be A Date'), - ('must_be_email_address', 'Must Be An Email Address'), - ], 'Text Validation'), - 'comment_minimum_no': fields.integer('Minimum number'), - 'comment_maximum_no': fields.integer('Maximum number'), - 'comment_minimum_float': fields.float('Minimum decimal number'), - 'comment_maximum_float': fields.float('Maximum decimal number'), - 'comment_minimum_date': fields.date('Minimum date'), - 'comment_maximum_date': fields.date('Maximum date'), - 'comment_valid_err_msg': fields.text('Error message'), - 'make_comment_field': fields.boolean('Make Comment Field an Answer Choice'), - 'make_comment_field_err_msg': fields.text('Error message'), - 'is_validation_require': fields.boolean('Validate Text'), - 'validation_type': fields.selection([('do_not_validate', '''Don't Validate Comment Text.'''),\ - ('must_be_specific_length', 'Must Be Specific Length'),\ - ('must_be_whole_number', 'Must Be A Whole Number'),\ - ('must_be_decimal_number', 'Must Be A Decimal Number'),\ - ('must_be_date', 'Must Be A Date'),\ - ('must_be_email_address', 'Must Be An Email Address')\ - ], 'Text Validation'), - 'validation_minimum_no': fields.integer('Minimum number'), - 'validation_maximum_no': fields.integer('Maximum number'), - 'validation_minimum_float': fields.float('Minimum decimal number'), - 'validation_maximum_float': fields.float('Maximum decimal number'), - 'validation_minimum_date': fields.date('Minimum date'), - 'validation_maximum_date': fields.date('Maximum date'), - 'validation_valid_err_msg': fields.text('Error message'), - 'numeric_required_sum': fields.integer('Sum of all choices'), - 'numeric_required_sum_err_msg': fields.text('Error message'), - 'rating_allow_one_column_require': fields.boolean('Allow Only One Answer per Column (Forced Ranking)'), - 'in_visible_rating_weight': fields.boolean('Is Rating Scale Invisible?'), - 'in_visible_menu_choice': fields.boolean('Is Menu Choice Invisible?'), - 'in_visible_answer_type': fields.boolean('Is Answer Type Invisible?'), - 'comment_column': fields.boolean('Add comment column in matrix'), - 'column_name': fields.char('Column Name',size=256), - 'no_of_rows': fields.integer('No of Rows'), + # Question metadata + 'page_id': fields.many2one('survey.page', 'Survey page', + ondelete='cascade', required=1), + 'survey_id': fields.related('page_id', 'survey_id', type='many2one', + relation='survey.survey', string='Survey'), + 'sequence': fields.integer(string='Sequence'), + + # Question + 'question': fields.char('Question Name', required=1, translate=True), + 'description': fields.html('Description', help="Use this field to add \ + additional explanations about your question", translate=True, + oldname='descriptive_text'), + + # Answer + 'type': fields.selection([('free_text', 'Long Text Zone'), + ('textbox', 'Text Input'), + ('numerical_box', 'Numerical Value'), + ('datetime', 'Date and Time'), + ('simple_choice', 'Multiple choice: only one answer'), + ('multiple_choice', 'Multiple choice: multiple answers allowed'), + ('matrix', 'Matrix')], 'Type of Question', required=1), + 'matrix_subtype': fields.selection([('simple', 'One choice per row'), + ('multiple', 'Multiple choices per row')], 'Matrix Type'), + 'labels_ids': fields.one2many('survey.label', + 'question_id', 'Types of answers', oldname='answer_choice_ids'), + 'labels_ids_2': fields.one2many('survey.label', + 'question_id_2', 'Rows of the Matrix'), + # labels are used for proposed choices + # if question.type == simple choice | multiple choice + # -> only labels_ids is used + # if question.type == matrix + # -> labels_ids are the columns of the matrix + # -> labels_ids_2 are the rows of the matrix + + # Display options + 'column_nb': fields.selection([('12', '1'), + ('6', '2'), + ('4', '3'), + ('3', '4'), + ('2', '6')], + 'Number of columns'), + # These options refer to col-xx-[12|6|4|3|2] classes in Bootstrap + 'display_mode': fields.selection([('columns', 'Radio Buttons/Checkboxes'), + ('dropdown', 'Selection Box')], + 'Display mode'), + + # Comments + 'comments_allowed': fields.boolean('Show Comments Field', + oldname="allow_comment"), + 'comments_message': fields.char('Comment Message', translate=True), + 'comment_count_as_answer': fields.boolean('Comment Field is an Answer Choice', + oldname='make_comment_field'), + + # Validation + 'validation_required': fields.boolean('Validate entry', + oldname='is_validation_require'), + 'validation_email': fields.boolean('Input must be an email'), + 'validation_length_min': fields.integer('Minimum Text Length'), + 'validation_length_max': fields.integer('Maximum Text Length'), + 'validation_min_float_value': fields.float('Minimum value'), + 'validation_max_float_value': fields.float('Maximum value'), + 'validation_min_date': fields.datetime('Minimum Date'), + 'validation_max_date': fields.datetime('Maximum Date'), + 'validation_error_msg': fields.char('Error message', + oldname='validation_valid_err_msg', + translate=True), + + # Constraints on number of answers (matrices) + 'constr_mandatory': fields.boolean('Mandatory Answer', + oldname="is_require_answer"), + 'constr_error_msg': fields.char("Error message", + oldname='req_error_msg', translate=True), + 'user_input_line_ids': fields.one2many('survey.user_input_line', + 'question_id', 'Answers', + domain=[('skipped', '=', False)]), + } + + _defaults = { + 'page_id': lambda self, cr, uid, context: context.get('page_id'), + 'sequence': 10, + 'type': 'free_text', + 'matrix_subtype': 'simple', + 'column_nb': '12', + 'display_mode': 'columns', + 'constr_error_msg': lambda s, cr, uid, c: _('This question requires an answer.'), + 'validation_error_msg': lambda s, cr, uid, c: _('The answer you entered has an invalid format.'), + 'validation_required': False, + 'comments_message': lambda s, cr, uid, c: _('If other, precise:'), + } + + _sql_constraints = [ + ('positive_len_min', 'CHECK (validation_length_min >= 0)', 'A length must be positive!'), + ('positive_len_max', 'CHECK (validation_length_max >= 0)', 'A length must be positive!'), + ('validation_length', 'CHECK (validation_length_min <= validation_length_max)', 'Max length cannot be smaller than min length!'), + ('validation_float', 'CHECK (validation_min_float_value <= validation_max_float_value)', 'Max value cannot be smaller than min value!'), + ('validation_date', 'CHECK (validation_min_date <= validation_max_date)', 'Max date cannot be smaller than min date!') + ] + + def copy_data(self, cr, uid, ids, default=None, context=None): + # This will prevent duplication of user input lines in case of question duplication + # (in cascade, this will also allow to duplicate surveys without duplicating bad user input + # lines) + vals = {'user_input_line_ids': []} + + # Updating question title + current_rec = self.read(cr, uid, ids, context=context) + question = _("%s (copy)") % (current_rec.get('question')) + vals['question'] = question + + return super(survey_question, self).copy_data(cr, uid, ids, default=vals, + context=context) + + # Validation methods + + def validate_question(self, cr, uid, question, post, answer_tag, context=None): + ''' Validate question, depending on question type and parameters ''' + try: + checker = getattr(self, 'validate_' + question.type) + except AttributeError: + _logger.warning(question.type + ": This type of question has no validation method") + return {} + else: + return checker(cr, uid, question, post, answer_tag, context=context) + + def validate_free_text(self, cr, uid, question, post, answer_tag, context=None): + errors = {} + answer = post[answer_tag].strip() + # Empty answer to mandatory question + if question.constr_mandatory and not answer: + errors.update({answer_tag: question.constr_error_msg}) + return errors + + def validate_textbox(self, cr, uid, question, post, answer_tag, context=None): + errors = {} + answer = post[answer_tag].strip() + # Empty answer to mandatory question + if question.constr_mandatory and not answer: + errors.update({answer_tag: question.constr_error_msg}) + # Email format validation + # Note: this validation is very basic: + # all the strings of the form + # @. + # will be accepted + if answer and question.validation_email: + if not re.match(r"[^@]+@[^@]+\.[^@]+", answer): + errors.update({answer_tag: _('This answer must be an email address')}) + # Answer validation (if properly defined) + # Length of the answer must be in a range + if answer and question.validation_required: + if not (question.validation_length_min <= len(answer) <= question.validation_length_max): + errors.update({answer_tag: question.validation_error_msg}) + return errors + + def validate_numerical_box(self, cr, uid, question, post, answer_tag, context=None): + errors = {} + answer = post[answer_tag].strip() + # Empty answer to mandatory question + if question.constr_mandatory and not answer: + errors.update({answer_tag: question.constr_error_msg}) + # Checks if user input is a number + if answer: + try: + floatanswer = float(answer) + except ValueError: + errors.update({answer_tag: _('This is not a number')}) + # Answer validation (if properly defined) + if answer and question.validation_required: + # Answer is not in the right range + try: + floatanswer = float(answer) # check that it is a float has been done hereunder + if not (question.validation_min_float_value <= floatanswer <= question.validation_max_float_value): + errors.update({answer_tag: question.validation_error_msg}) + except ValueError: + pass + return errors + + def validate_datetime(self, cr, uid, question, post, answer_tag, context=None): + errors = {} + answer = post[answer_tag].strip() + # Empty answer to mandatory question + if question.constr_mandatory and not answer: + errors.update({answer_tag: question.constr_error_msg}) + # Checks if user input is a datetime + if answer: + try: + dateanswer = datetime.datetime.strptime(answer, DF) + except ValueError: + errors.update({answer_tag: _('This is not a date/time')}) + return errors + # Answer validation (if properly defined) + if answer and question.validation_required: + # Answer is not in the right range + try: + dateanswer = datetime.datetime.strptime(answer, DF) + if not (datetime.datetime.strptime(question.validation_min_date, DF) <= dateanswer <= datetime.datetime.strptime(question.validation_max_date, DF)): + errors.update({answer_tag: question.validation_error_msg}) + except ValueError: # check that it is a datetime has been done hereunder + pass + return errors + + def validate_simple_choice(self, cr, uid, question, post, answer_tag, context=None): + errors = {} + if question.comments_allowed: + comment_tag = "%s_%s" % (answer_tag, 'comment') + # Empty answer to mandatory question + if question.constr_mandatory and not answer_tag in post: + errors.update({answer_tag: question.constr_error_msg}) + if question.constr_mandatory and answer_tag in post and post[answer_tag].strip() == '': + errors.update({answer_tag: question.constr_error_msg}) + # Answer is a comment and is empty + if question.constr_mandatory and answer_tag in post and post[answer_tag] == "-1" and question.comment_count_as_answer and comment_tag in post and not post[comment_tag].strip(): + errors.update({answer_tag: question.constr_error_msg}) + return errors + + def validate_multiple_choice(self, cr, uid, question, post, answer_tag, context=None): + errors = {} + if question.constr_mandatory: + answer_candidates = dict_keys_startswith(post, answer_tag) + comment_flag = answer_candidates.pop(("%s_%s" % (answer_tag, -1)), None) + if question.comments_allowed: + comment_answer = answer_candidates.pop(("%s_%s" % (answer_tag, 'comment')), '').strip() + # There is no answer neither comments (if comments count as answer) + if not answer_candidates and question.comment_count_as_answer and (not comment_flag or not comment_answer): + errors.update({answer_tag: question.constr_error_msg}) + # There is no answer at all + if not answer_candidates and not question.comment_count_as_answer: + errors.update({answer_tag: question.constr_error_msg}) + return errors + + def validate_matrix(self, cr, uid, question, post, answer_tag, context=None): + errors = {} + if question.constr_mandatory: + lines_number = len(question.labels_ids_2) + answer_candidates = dict_keys_startswith(post, answer_tag) + comment_answer = answer_candidates.pop(("%s_%s" % (answer_tag, 'comment')), '').strip() + # Number of lines that have been answered + if question.matrix_subtype == 'simple': + answer_number = len(answer_candidates) + elif question.matrix_subtype == 'multiple': + answer_number = len(set([sk.rsplit('_', 1)[0] for sk in answer_candidates.keys()])) + else: + raise RuntimeError("Invalid matrix subtype") + # Validate that each line has been answered + if answer_number != lines_number: + errors.update({answer_tag: question.constr_error_msg}) + return errors + + +class survey_label(osv.Model): + ''' A suggested answer for a question ''' + _name = 'survey.label' + _rec_name = 'value' + _order = 'sequence' + _description = 'Survey Label' + + def _check_question_not_empty(self, cr, uid, ids, context=None): + '''Ensure that field question_id XOR field question_id_2 is not null''' + for label in self.browse(cr, uid, ids, context=context): + # 'bool()' is required in order to make '!=' act as XOR with objects + return bool(label.question_id) != bool(label.question_id_2) + + _columns = { + 'question_id': fields.many2one('survey.question', 'Question', + ondelete='cascade'), + 'question_id_2': fields.many2one('survey.question', 'Question', + ondelete='cascade'), + 'sequence': fields.integer('Label Sequence order'), + 'value': fields.char("Suggested value", translate=True, + required=True), + 'quizz_mark': fields.float('Score for this answer'), + } + defaults = { + 'sequence': 100, + } + _constraints = [ + (_check_question_not_empty, "A label must be attached to one and only one question", ['question_id', 'question_id_2']) + ] + + +class survey_user_input(osv.Model): + ''' Metadata for a set of one user's answers to a particular survey ''' + _name = "survey.user_input" + _rec_name = 'date_create' + _description = 'Survey User Input' + + def _quizz_get_score(self, cr, uid, ids, name, args, context=None): + ret = dict() + for user_input in self.browse(cr, uid, ids, context=context): + ret[user_input.id] = sum([uil.quizz_mark for uil in user_input.user_input_line_ids] or [0.0]) + return ret + + _columns = { + 'survey_id': fields.many2one('survey.survey', 'Survey', required=True, + readonly=1, ondelete='restrict'), + 'date_create': fields.datetime('Creation Date', required=True, + readonly=1), + 'deadline': fields.datetime("Deadline", + help="Date by which the person can open the survey and submit answers", + oldname="date_deadline"), + 'type': fields.selection([('manually', 'Manually'), ('link', 'Link')], + 'Answer Type', required=1, readonly=1, + oldname="response_type"), + 'state': fields.selection([('new', 'Not started yet'), + ('skip', 'Partially completed'), + ('done', 'Completed')], + 'Status', + readonly=True), + 'test_entry': fields.boolean('Test entry', readonly=1), + 'token': fields.char("Identification token", readonly=1, required=1), + + # Optional Identification data + 'partner_id': fields.many2one('res.partner', 'Partner', readonly=1), + 'email': fields.char("E-mail", readonly=1), + + # Displaying data + 'last_displayed_page_id': fields.many2one('survey.page', + 'Last displayed page'), + # The answers ! + 'user_input_line_ids': fields.one2many('survey.user_input_line', + 'user_input_id', 'Answers'), + + # URLs used to display the answers + 'result_url': fields.related('survey_id', 'result_url', string="Public link to the survey results"), + 'print_url': fields.related('survey_id', 'print_url', string="Public link to the empty survey"), + + 'quizz_score': fields.function(_quizz_get_score, type="float", string="Score for the quiz") } _defaults = { - 'sequence': lambda * a: 1, - 'type': lambda * a: 'multiple_choice_multiple_ans', - 'req_error_msg': lambda * a: 'This question requires an answer.', - 'required_type': lambda * a: 'at least', - 'req_ans': lambda * a: 1, - 'comment_field_type': lambda * a: 'char', - 'comment_label': lambda * a: 'Other (please specify)', - 'comment_valid_type': lambda * a: 'do_not_validate', - 'comment_valid_err_msg': lambda * a : 'The comment you entered is in an invalid format.', - 'validation_type': lambda * a: 'do_not_validate', - 'validation_valid_err_msg': lambda * a : 'The comment you entered is in an invalid format.', - 'numeric_required_sum_err_msg': lambda * a :'The choices need to add up to [enter sum here].', - 'make_comment_field_err_msg': lambda * a : 'Please enter a comment.', - 'in_visible_answer_type': lambda * a: 1 + 'date_create': fields.datetime.now, + 'type': 'manually', + 'state': 'new', + 'token': lambda s, cr, uid, c: uuid.uuid4().__str__(), + 'quizz_score': 0.0, } - def on_change_type(self, cr, uid, ids, type, context=None): - val = {} - val['is_require_answer'] = False - val['is_comment_require'] = False - val['is_validation_require'] = False - val['comment_column'] = False + _sql_constraints = [ + ('unique_token', 'UNIQUE (token)', 'A token must be unique!'), + ('deadline_in_the_past', 'CHECK (deadline >= date_create)', 'The deadline cannot be in the past') + ] - if type in ['multiple_textboxes_diff_type']: - val['in_visible_answer_type'] = False - return {'value': val} + def copy_data(self, cr, uid, id, default=None, context=None): + raise osv.except_osv(_('Warning!'), _('You cannot duplicate this \ + element!')) - if type in ['rating_scale']: - val.update({'in_visible_rating_weight':False, 'in_visible_menu_choice':True}) - return {'value': val} + def do_clean_emptys(self, cr, uid, automatic=False, context=None): + ''' Remove empty user inputs that have been created manually + (used as a cronjob declared in data/survey_cron.xml) ''' + empty_user_input_ids = self.search(cr, uid, [('type', '=', 'manually'), + ('state', '=', 'new'), + ('date_create', '<', (datetime.datetime.now() - datetime.timedelta(hours=1)).strftime(DF))], + context=context) + if empty_user_input_ids: + self.unlink(cr, uid, empty_user_input_ids, context=context) - elif type in ['matrix_of_drop_down_menus']: - val.update({'in_visible_rating_weight':True, 'in_visible_menu_choice':False}) - return {'value': val} + def action_survey_resent(self, cr, uid, ids, context=None): + ''' Sent again the invitation ''' + record = self.browse(cr, uid, ids[0], context=context) + context = context or {} + context.update({ + 'survey_resent_token': True, + 'default_partner_ids': record.partner_id and [record.partner_id.id] or [], + 'default_multi_email': record.email or "", + 'default_public': 'email_private', + }) + return self.pool.get('survey.survey').action_send_survey(cr, uid, + [record.survey_id.id], context=context) - elif type in ['single_textbox']: - val.update({'in_visible_rating_weight':True, 'in_visible_menu_choice':True}) - return {'value': val} - - else: - val.update({'in_visible_rating_weight':True, 'in_visible_menu_choice':True,\ - 'in_visible_answer_type':True}) - return {'value': val} - - def write(self, cr, uid, ids, vals, context=None): - questions = self.read(cr,uid, ids, ['answer_choice_ids', 'type', 'required_type',\ - 'req_ans', 'minimum_req_ans', 'maximum_req_ans', 'column_heading_ids', 'page_id', 'question']) - for question in questions: - col_len = len(question['column_heading_ids']) - if vals.has_key('column_heading_ids'): - for col in vals['column_heading_ids']: - if type(col[2]) == type({}): - col_len += 1 - else: - col_len -= 1 - - if vals.has_key('type'): - que_type = vals['type'] - else: - que_type = question['type'] - - if que_type in ['matrix_of_choices_only_one_ans', 'matrix_of_choices_only_multi_ans',\ - 'matrix_of_drop_down_menus', 'rating_scale']: - if not col_len: - raise osv.except_osv(_('Warning!'),_('You must enter one or more column headings for question "%s" of page %s.') % (question['question'], question['page_id'][1])) - ans_len = len(question['answer_choice_ids']) - - if vals.has_key('answer_choice_ids'): - for ans in vals['answer_choice_ids']: - if type(ans[2]) == type({}): - ans_len += 1 - else: - ans_len -= 1 - - if que_type not in ['descriptive_text', 'single_textbox', 'comment','table']: - if not ans_len: - raise osv.except_osv(_('Warning!'),_('You must enter one or more Answers for question "%s" of page %s.') % (question['question'], question['page_id'][1])) - req_type = "" - - if vals.has_key('required_type'): - req_type = vals['required_type'] - else: - req_type = question['required_type'] - - if que_type in ['multiple_choice_multiple_ans','matrix_of_choices_only_one_ans', \ - 'matrix_of_choices_only_multi_ans', 'matrix_of_drop_down_menus',\ - 'rating_scale','multiple_textboxes','numerical_textboxes','date','date_and_time']: - if req_type in ['at least', 'at most', 'exactly']: - if vals.has_key('req_ans'): - if not vals['req_ans'] or vals['req_ans'] > ans_len: - raise osv.except_osv(_('Warning!'),_("#Required Answer you entered \ - is greater than the number of answer. \ - Please use a number that is smaller than %d.") % (ans_len + 1)) - else: - if not question['req_ans'] or question['req_ans'] > ans_len: - raise osv.except_osv(_('Warning!'),_("#Required Answer you entered is \ - greater than the number of answer.\ - Please use a number that is smaller than %d.") % (ans_len + 1)) - - if req_type == 'a range': - minimum_ans = 0 - maximum_ans = 0 - if vals.has_key('minimum_req_ans'): - minimum_ans = vals['minimum_req_ans'] - if not vals['minimum_req_ans'] or vals['minimum_req_ans'] > ans_len: - raise osv.except_osv(_('Warning!'),_("Minimum Required Answer\ - you entered is greater than the number of answer.\ - Please use a number that is smaller than %d.") % (ans_len + 1)) - else: - minimum_ans = question['minimum_req_ans'] - if not question['minimum_req_ans'] or question['minimum_req_ans'] > ans_len: - raise osv.except_osv(_('Warning!'),_("Minimum Required Answer you\ - entered is greater than the number of answer. \ - Please use a number that is smaller than %d.") % (ans_len + 1)) - if vals.has_key('maximum_req_ans'): - maximum_ans = vals['maximum_req_ans'] - if not vals['maximum_req_ans'] or vals['maximum_req_ans'] > ans_len: - raise osv.except_osv(_('Warning!'),_("Maximum Required Answer you \ - entered for your maximum is greater than the number of answer.\ - Please use a number that is smaller than %d.") % (ans_len + 1)) - else: - maximum_ans = question['maximum_req_ans'] - if not question['maximum_req_ans'] or question['maximum_req_ans'] > ans_len: - raise osv.except_osv(_('Warning!'),_("Maximum Required Answer you\ - entered for your maximum is greater than the number of answer.\ - Please use a number that is smaller than %d.") % (ans_len + 1)) - if maximum_ans <= minimum_ans: - raise osv.except_osv(_('Warning!'),_("Maximum Required Answer is greater \ - than Minimum Required Answer")) - - if question['type'] == 'matrix_of_drop_down_menus' and vals.has_key('column_heading_ids'): - for col in vals['column_heading_ids']: - if not col[2] or not col[2].has_key('menu_choice') or not col[2]['menu_choice']: - raise osv.except_osv(_('Warning!'),_("You must enter one or more menu choices\ - in column heading.")) - elif not col[2] or not col[2].has_key('menu_choice') or\ - col[2]['menu_choice'].strip() == '': - raise osv.except_osv(_('Warning!'),_("You must enter one or more menu \ - choices in column heading (white spaces not allowed).")) - - return super(survey_question, self).write(cr, uid, ids, vals, context=context) - - def create(self, cr, uid, vals, context=None): - minimum_ans = 0 - maximum_ans = 0 - page = self.pool.get('survey.page').browse(cr, uid, int(vals.get('page_id', 0)), context=context).title - if vals.has_key('answer_choice_ids') and not len(vals['answer_choice_ids']): - if vals.has_key('type') and vals['type'] not in ['descriptive_text', 'single_textbox', 'comment','table']: - raise osv.except_osv(_('Warning!'),_('You must enter one or more answers for question "%s" of page %s .') % (vals['question'], page)) - - if vals.has_key('column_heading_ids') and not len(vals['column_heading_ids']): - if vals.has_key('type') and vals['type'] in ['matrix_of_choices_only_one_ans', 'matrix_of_choices_only_multi_ans', 'matrix_of_drop_down_menus', 'rating_scale']: - raise osv.except_osv(_('Warning!'),_('You must enter one or more column headings for question "%s" of page %s.')% (vals['question'], page)) - - if vals['type'] in ['multiple_choice_multiple_ans','matrix_of_choices_only_one_ans', 'matrix_of_choices_only_multi_ans', 'matrix_of_drop_down_menus', 'rating_scale','multiple_textboxes','numerical_textboxes','date','date_and_time']: - if vals.has_key('is_require_answer') and vals.has_key('required_type') and vals['required_type'] in ['at least', 'at most', 'exactly']: - if vals.has_key('answer_choice_ids') and vals['req_ans'] > len(vals['answer_choice_ids']) or not vals['req_ans']: - raise osv.except_osv(_('Warning!'),_("#Required Answer you entered is greater than the number of answer. Please use a number that is smaller than %d.") % (len(vals['answer_choice_ids'])+1)) - - if vals.has_key('is_require_answer') and vals.has_key('required_type') and vals['required_type'] == 'a range': - minimum_ans = vals['minimum_req_ans'] - maximum_ans = vals['maximum_req_ans'] - if vals.has_key('answer_choice_ids') or vals['minimum_req_ans'] > len(vals['answer_choice_ids']) or not vals['minimum_req_ans']: - raise osv.except_osv(_('Warning!'),_("Minimum Required Answer you entered is greater than the number of answer. Please use a number that is smaller than %d.") % (len(vals['answer_choice_ids'])+1)) - if vals.has_key('answer_choice_ids') or vals['maximum_req_ans'] > len(vals['answer_choice_ids']) or not vals['maximum_req_ans']: - raise osv.except_osv(_('Warning!'),_("Maximum Required Answer you entered for your maximum is greater than the number of answer. Please use a number that is smaller than %d.") % (len(vals['answer_choice_ids'])+1)) - if maximum_ans <= minimum_ans: - raise osv.except_osv(_('Warning!'),_("Maximum Required Answer is greater than Minimum Required Answer.")) - - if vals['type'] == 'matrix_of_drop_down_menus': - for col in vals['column_heading_ids']: - if not col[2] or not col[2].has_key('menu_choice') or not col[2]['menu_choice']: - raise osv.except_osv(_('Warning!'),_("You must enter one or more menu choices in column heading.")) - elif not col[2] or not col[2].has_key('menu_choice') or col[2]['menu_choice'].strip() == '': - raise osv.except_osv(_('Warning!'),_("You must enter one or more menu choices in column heading (white spaces not allowed).")) - - res = super(survey_question, self).create(cr, uid, vals, context) - return res - - def survey_save(self, cr, uid, ids, context=None): - if context is None: - context = {} - search_obj = self.pool.get('ir.ui.view') - search_id = search_obj.search(cr,uid,[('model','=','survey.question.wiz'),('name','=','Survey Search')]) - surv_name_wiz = self.pool.get('survey.name.wiz') - surv_name_wiz.write(cr, uid, [context.get('sur_name_id',False)], {'transfer':True, 'page_no' : context.get('page_number',False) }) + def action_view_answers(self, cr, uid, ids, context=None): + ''' Open the website page with the survey form ''' + user_input = self.read(cr, uid, ids, ['print_url', 'token'], context=context)[0] return { - 'view_type': 'form', - 'view_mode': 'form', - 'res_model': 'survey.question.wiz', - 'type': 'ir.actions.act_window', - 'target': 'new', - 'search_view_id': search_id[0], - 'context': context + 'type': 'ir.actions.act_url', + 'name': "View Answers", + 'target': 'self', + 'url': '%s/%s' % (user_input['print_url'], user_input['token']) } - def default_get(self, cr, uid, fields, context=None): - if context is None: - context = {} - data = super(survey_question, self).default_get(cr, uid, fields, context) - if context.has_key('page_id'): - data['page_id']= context.get('page_id', False) - return data + def action_survey_results(self, cr, uid, ids, context=None): + ''' Open the website page with the survey results ''' + return { + 'type': 'ir.actions.act_url', + 'name': "Survey Results", + 'target': 'self', + 'url': self.read(cr, uid, ids, ['result_url'], context=context)[0]['result_url'] + } - -class survey_question_column_heading(osv.osv): - _name = 'survey.question.column.heading' - _description = 'Survey Question Column Heading' - _rec_name = 'title' - - def _get_in_visible_rating_weight(self, cr, uid, context=None): - if context is None: - context = {} - if context.get('in_visible_rating_weight', False): - return context['in_visible_rating_weight'] - return False - def _get_in_visible_menu_choice(self,cr, uid, context=None): - if context is None: - context = {} - if context.get('in_visible_menu_choice', False): - return context['in_visible_menu_choice'] - return False - - _columns = { - 'title': fields.char('Column Heading', size=128, required=1), - 'menu_choice': fields.text('Menu Choice'), - 'rating_weight': fields.integer('Weight'), - 'question_id': fields.many2one('survey.question', 'Question', ondelete='cascade'), - 'in_visible_rating_weight': fields.boolean('Is Rating Scale Invisible ??'), - 'in_visible_menu_choice': fields.boolean('Is Menu Choice Invisible??') - } - _defaults={ - 'in_visible_rating_weight': _get_in_visible_rating_weight, - 'in_visible_menu_choice': _get_in_visible_menu_choice, - } - -class survey_answer(osv.osv): - _name = 'survey.answer' - _description = 'Survey Answer' - _rec_name = 'answer' - _order = 'sequence' - - def _calc_response_avg(self, cr, uid, ids, field_name, arg, context=None): - val = {} - for rec in self.browse(cr, uid, ids, context=context): - cr.execute("select count(question_id) ,(select count(answer_id) \ - from survey_response_answer sra, survey_response_line sa \ - where sra.response_id = sa.id and sra.answer_id = %d \ - and sa.state='done') as tot_ans from survey_response_line \ - where question_id = %d and state = 'done'"\ - % (rec.id, rec.question_id.id)) - res = cr.fetchone() - if res[0]: - avg = float(res[1]) * 100 / res[0] - else: - avg = 0.0 - val[rec.id] = { - 'response': res[1], - 'average': round(avg, 2), - } - return val - - def _get_in_visible_answer_type(self, cr, uid, context=None): - if context is None: - context = {} - return context.get('in_visible_answer_type', False) - - _columns = { - 'question_id': fields.many2one('survey.question', 'Question', ondelete='cascade'), - 'answer': fields.char('Answer', size=128, required=1), - 'sequence': fields.integer('Sequence'), - 'response': fields.function(_calc_response_avg, string="#Answer", multi='sums'), - 'average': fields.function(_calc_response_avg, string="#Avg", multi='sums'), - 'type': fields.selection([('char','Character'),('date','Date'),('datetime','Date & Time'),\ - ('integer','Integer'),('float','Float'),('selection','Selection'),\ - ('email','Email')], "Type of Answer",required=1), - 'menu_choice': fields.text('Menu Choices'), - 'in_visible_answer_type': fields.boolean('Is Answer Type Invisible??') - } - _defaults = { -# 'sequence' : lambda * a: 1, - 'type' : lambda * a: 'char', - 'in_visible_answer_type':_get_in_visible_answer_type, - } - - def default_get(self, cr, uid, fields, context=None): - if context is None: - context = {} - data = super(survey_answer, self).default_get(cr, uid, fields, context) - return data - - -class survey_response(osv.osv): - _name = "survey.response" +class survey_user_input_line(osv.Model): + _name = 'survey.user_input_line' + _description = 'Survey User Input Line' _rec_name = 'date_create' + + def _answered_or_skipped(self, cr, uid, ids, context=None): + for uil in self.browse(cr, uid, ids, context=context): + # 'bool()' is required in order to make '!=' act as XOR with objects + return uil.skipped != bool(uil.answer_type) + + def _check_answer_type(self, cr, uid, ids, context=None): + for uil in self.browse(cr, uid, ids, context=None): + if uil.answer_type: + if uil.answer_type == 'text': + # 'bool()' is required in order to make '!=' act as XOR with objects + return bool(uil.value_text) + elif uil.answer_type == 'number': + return (uil.value_number == 0) or (uil.value_number != False) + elif uil.answer_type == 'date': + return bool(uil.value_date) + elif uil.answer_type == 'free_text': + return bool(uil.value_free_text) + elif uil.answer_type == 'suggestion': + return bool(uil.value_suggested) + return True + _columns = { - 'survey_id' : fields.many2one('survey', 'Survey', required=1, ondelete='cascade'), - 'date_create' : fields.datetime('Create Date', required=1), - 'user_id' : fields.many2one('res.users', 'User'), - 'response_type' : fields.selection([('manually', 'Manually'), ('link', 'Link')], \ - 'Answer Type', required=1, readonly=1), - 'question_ids' : fields.one2many('survey.response.line', 'response_id', 'Answer'), - 'state' : fields.selection([('done', 'Finished '),('skip', 'Not Finished')], \ - 'Status', readonly=True), - } - _defaults = { - 'state' : lambda * a: "skip", - 'response_type' : lambda * a: "manually", - } - - def name_get(self, cr, uid, ids, context=None): - if not len(ids): - return [] - reads = self.read(cr, uid, ids, ['user_id','date_create'], context=context) - res = [] - for record in reads: - name = (record['user_id'] and record['user_id'][1] or '' )+ ' (' + record['date_create'].split('.')[0] + ')' - res.append((record['id'], name)) - return res - - def copy(self, cr, uid, id, default=None, context=None): - raise osv.except_osv(_('Warning!'),_('You cannot duplicate the resource!')) - - -class survey_response_line(osv.osv): - _name = 'survey.response.line' - _description = 'Survey Response Line' - _rec_name = 'date_create' - _columns = { - 'response_id': fields.many2one('survey.response', 'Answer', ondelete='cascade'), + 'user_input_id': fields.many2one('survey.user_input', 'User Input', + ondelete='cascade', required=1), + 'question_id': fields.many2one('survey.question', 'Question', + ondelete='restrict', required=1), + 'page_id': fields.related('question_id', 'page_id', type='many2one', + relation='survey.page', string="Page"), + 'survey_id': fields.related('user_input_id', 'survey_id', + type="many2one", relation="survey.survey", + string='Survey', store=True), 'date_create': fields.datetime('Create Date', required=1), - 'state': fields.selection([('draft', 'Draft'), ('done', 'Answered'),('skip', 'Skiped')],\ - 'Status', readonly=True), - 'question_id': fields.many2one('survey.question', 'Question'), - 'page_id': fields.related('question_id', 'page_id', type='many2one', \ - relation='survey.page', string='Page'), - 'response_answer_ids': fields.one2many('survey.response.answer', 'response_id', 'Answer'), - 'response_table_ids': fields.one2many('survey.tbl.column.heading', \ - 'response_table_id', 'Answer'), - 'comment': fields.text('Notes'), - 'single_text': fields.char('Text', size=255), + 'skipped': fields.boolean('Skipped'), + 'answer_type': fields.selection([('text', 'Text'), + ('number', 'Number'), + ('date', 'Date'), + ('free_text', 'Free Text'), + ('suggestion', 'Suggestion')], + 'Answer Type'), + 'value_text': fields.char("Text answer"), + 'value_number': fields.float("Numerical answer"), + 'value_date': fields.datetime("Date answer"), + 'value_free_text': fields.text("Free Text answer"), + 'value_suggested': fields.many2one('survey.label', "Suggested answer"), + 'value_suggested_row': fields.many2one('survey.label', "Row answer"), + 'quizz_mark': fields.float("Score given for this answer") } + _defaults = { - 'state' : lambda * a: "draft", + 'skipped': False, + 'date_create': fields.datetime.now() } + _constraints = [ + (_answered_or_skipped, "A question cannot be unanswered and skipped", ['skipped', 'answer_type']), + (_check_answer_type, "The answer must be in the right type", ['answer_type', 'text', 'number', 'date', 'free_text', 'suggestion']) + ] + def __get_mark(self, cr, uid, value_suggested, context=None): + try: + mark = self.pool.get('survey.label').browse(cr, uid, int(value_suggested), context=context).quizz_mark + except KeyError: + mark = 0.0 + except ValueError: + mark = 0.0 + return mark -class survey_tbl_column_heading(osv.osv): - _name = 'survey.tbl.column.heading' - _order = 'name' - _columns = { - 'name': fields.integer('Row Number'), - 'column_id': fields.many2one('survey.question.column.heading', 'Column'), - 'value': fields.char('Value', size = 255), - 'response_table_id': fields.many2one('survey.response.line', 'Answer', ondelete='cascade'), - } + def create(self, cr, uid, vals, context=None): + value_suggested = vals.get('value_suggested') + if value_suggested: + vals.update({'quizz_mark': self.__get_mark(cr, uid, value_suggested)}) + return super(survey_user_input_line, self).create(cr, uid, vals, context=context) + def write(self, cr, uid, ids, vals, context=None): + value_suggested = vals.get('value_suggested') + if value_suggested: + vals.update({'quizz_mark': self.__get_mark(cr, uid, value_suggested)}) + return super(survey_user_input_line, self).write(cr, uid, ids, vals, context=context) -class survey_response_answer(osv.osv): - _name = 'survey.response.answer' - _description = 'Survey Answer' - _rec_name = 'response_id' - _columns = { - 'response_id': fields.many2one('survey.response.line', 'Answer', ondelete='cascade'), - 'answer_id': fields.many2one('survey.answer', 'Answer', required=1, ondelete='cascade'), - 'column_id': fields.many2one('survey.question.column.heading','Column'), - 'answer': fields.char('Value', size =255), - 'value_choice': fields.char('Value Choice', size =255), - 'comment': fields.text('Notes'), - 'comment_field': fields.char('Comment', size = 255) - } + def copy_data(self, cr, uid, id, default=None, context=None): + raise osv.except_osv(_('Warning!'), _('You cannot duplicate this \ + element!')) + def save_lines(self, cr, uid, user_input_id, question, post, answer_tag, + context=None): + ''' Save answers to questions, depending on question type -class res_users(osv.osv): - _inherit = "res.users" - _name = "res.users" - _columns = { - 'survey_id': fields.many2many('survey', 'survey_users_rel', 'uid', 'sid', 'Groups'), - } + If an answer already exists for question and user_input_id, it will be + overwritten (in order to maintain data consistency). ''' + try: + saver = getattr(self, 'save_line_' + question.type) + except AttributeError: + _logger.error(question.type + ": This type of question has no saving function") + return False + else: + saver(cr, uid, user_input_id, question, post, answer_tag, context=context) - -class survey_request(osv.osv): - _name = "survey.request" - _order = 'date_deadline' - _rec_name = 'date_deadline' - _columns = { - 'date_deadline': fields.date("Deadline date"), - 'user_id': fields.many2one("res.users", "User"), - 'email': fields.char("Email", size=64), - 'survey_id': fields.many2one("survey", "Survey", required=1, ondelete='cascade'), - 'response': fields.many2one('survey.response', 'Answer'), - 'state': fields.selection([('draft','Draft'),('cancel', 'Cancelled'),('waiting_answer', 'Waiting Answer'),('done', 'Done')], 'Status', readonly=1) - } - _defaults = { - 'state': lambda * a: 'draft', -# 'date_deadline': lambda * a : (datetime.now() + relativedelta(months=+1)).strftime("%Y-%m-%d %H:%M:%S") - } - def survey_req_waiting_answer(self, cr, uid, ids, arg): - self.write(cr, uid, ids, { 'state' : 'waiting_answer'}) + def save_line_free_text(self, cr, uid, user_input_id, question, post, answer_tag, context=None): + vals = { + 'user_input_id': user_input_id, + 'question_id': question.id, + 'page_id': question.page_id.id, + 'survey_id': question.survey_id.id, + 'skipped': False, + } + if answer_tag in post and post[answer_tag].strip() != '': + vals.update({'answer_type': 'free_text', 'value_free_text': post[answer_tag]}) + else: + vals.update({'answer_type': None, 'skipped': True}) + old_uil = self.search(cr, uid, [('user_input_id', '=', user_input_id), + ('survey_id', '=', question.survey_id.id), + ('question_id', '=', question.id)], + context=context) + if old_uil: + self.write(cr, uid, old_uil[0], vals, context=context) + else: + self.create(cr, uid, vals, context=context) return True - def survey_req_draft(self, cr, uid, ids, arg): - self.write(cr, uid, ids, { 'state' : 'draft'}) + def save_line_textbox(self, cr, uid, user_input_id, question, post, answer_tag, context=None): + vals = { + 'user_input_id': user_input_id, + 'question_id': question.id, + 'page_id': question.page_id.id, + 'survey_id': question.survey_id.id, + 'skipped': False + } + if answer_tag in post and post[answer_tag].strip() != '': + vals.update({'answer_type': 'text', 'value_text': post[answer_tag]}) + else: + vals.update({'answer_type': None, 'skipped': True}) + old_uil = self.search(cr, uid, [('user_input_id', '=', user_input_id), + ('survey_id', '=', question.survey_id.id), + ('question_id', '=', question.id)], + context=context) + if old_uil: + self.write(cr, uid, old_uil[0], vals, context=context) + else: + self.create(cr, uid, vals, context=context) return True - def survey_req_done(self, cr, uid, ids, arg): - self.write(cr, uid, ids, { 'state' : 'done'}) + def save_line_numerical_box(self, cr, uid, user_input_id, question, post, answer_tag, context=None): + vals = { + 'user_input_id': user_input_id, + 'question_id': question.id, + 'page_id': question.page_id.id, + 'survey_id': question.survey_id.id, + 'skipped': False + } + if answer_tag in post and post[answer_tag].strip() != '': + vals.update({'answer_type': 'number', 'value_number': float(post[answer_tag])}) + else: + vals.update({'answer_type': None, 'skipped': True}) + old_uil = self.search(cr, uid, [('user_input_id', '=', user_input_id), + ('survey_id', '=', question.survey_id.id), + ('question_id', '=', question.id)], + context=context) + if old_uil: + self.write(cr, uid, old_uil[0], vals, context=context) + else: + self.create(cr, uid, vals, context=context) return True - def survey_req_cancel(self, cr, uid, ids, arg): - self.write(cr, uid, ids, { 'state' : 'cancel'}) + def save_line_datetime(self, cr, uid, user_input_id, question, post, answer_tag, context=None): + vals = { + 'user_input_id': user_input_id, + 'question_id': question.id, + 'page_id': question.page_id.id, + 'survey_id': question.survey_id.id, + 'skipped': False + } + if answer_tag in post and post[answer_tag].strip() != '': + vals.update({'answer_type': 'date', 'value_date': post[answer_tag]}) + else: + vals.update({'answer_type': None, 'skipped': True}) + old_uil = self.search(cr, uid, [('user_input_id', '=', user_input_id), + ('survey_id', '=', question.survey_id.id), + ('question_id', '=', question.id)], + context=context) + if old_uil: + self.write(cr, uid, old_uil[0], vals, context=context) + else: + self.create(cr, uid, vals, context=context) return True - def on_change_user(self, cr, uid, ids, user_id, context=None): - if user_id: - user_obj = self.pool.get('res.users') - user = user_obj.browse(cr, uid, user_id, context=context) - return {'value': {'email': user.email}} - return {} + def save_line_simple_choice(self, cr, uid, user_input_id, question, post, answer_tag, context=None): + vals = { + 'user_input_id': user_input_id, + 'question_id': question.id, + 'page_id': question.page_id.id, + 'survey_id': question.survey_id.id, + 'skipped': False + } + old_uil = self.search(cr, uid, [('user_input_id', '=', user_input_id), + ('survey_id', '=', question.survey_id.id), + ('question_id', '=', question.id)], + context=context) + if old_uil: + self.unlink(cr, uid, old_uil, context=context) + + if answer_tag in post and post[answer_tag].strip() != '': + vals.update({'answer_type': 'suggestion', 'value_suggested': post[answer_tag]}) + else: + vals.update({'answer_type': None, 'skipped': True}) + self.create(cr, uid, vals, context=context) + + comment_answer = post.pop(("%s_%s" % (answer_tag, 'comment')), '').strip() + if comment_answer: + vals.update({'answer_type': 'text', 'value_text': comment_answer}) + self.create(cr, uid, vals, context=context) + + return True + + def save_line_multiple_choice(self, cr, uid, user_input_id, question, post, answer_tag, context=None): + vals = { + 'user_input_id': user_input_id, + 'question_id': question.id, + 'page_id': question.page_id.id, + 'survey_id': question.survey_id.id, + 'skipped': False + } + old_uil = self.search(cr, uid, [('user_input_id', '=', user_input_id), + ('survey_id', '=', question.survey_id.id), + ('question_id', '=', question.id)], + context=context) + if old_uil: + self.unlink(cr, uid, old_uil, context=context) + + ca = dict_keys_startswith(post, answer_tag) + comment_answer = ca.pop(("%s_%s" % (answer_tag, 'comment')), '').strip() + if len(ca) > 0: + for a in ca: + vals.update({'answer_type': 'suggestion', 'value_suggested': ca[a]}) + self.create(cr, uid, vals, context=context) + if comment_answer: + vals.update({'answer_type': 'text', 'value_text': comment_answer}) + self.create(cr, uid, vals, context=context) + if not ca and not comment_answer: + vals.update({'answer_type': None, 'skipped': True}) + self.create(cr, uid, vals, context=context) + return True + + def save_line_matrix(self, cr, uid, user_input_id, question, post, answer_tag, context=None): + vals = { + 'user_input_id': user_input_id, + 'question_id': question.id, + 'page_id': question.page_id.id, + 'survey_id': question.survey_id.id, + 'skipped': False + } + old_uil = self.search(cr, uid, [('user_input_id', '=', user_input_id), + ('survey_id', '=', question.survey_id.id), + ('question_id', '=', question.id)], + context=context) + if old_uil: + self.unlink(cr, uid, old_uil, context=context) + + no_answers = True + ca = dict_keys_startswith(post, answer_tag) + + comment_answer = ca.pop(("%s_%s" % (answer_tag, 'comment')), '').strip() + if comment_answer: + vals.update({'answer_type': 'text', 'value_text': comment_answer}) + self.create(cr, uid, vals, context=context) + no_answers = False + + if question.matrix_subtype == 'simple': + for row in question.labels_ids_2: + a_tag = "%s_%s" % (answer_tag, row.id) + if a_tag in ca: + no_answers = False + vals.update({'answer_type': 'suggestion', 'value_suggested': ca[a_tag], 'value_suggested_row': row.id}) + self.create(cr, uid, vals, context=context) + + elif question.matrix_subtype == 'multiple': + for col in question.labels_ids: + for row in question.labels_ids_2: + a_tag = "%s_%s_%s" % (answer_tag, row.id, col.id) + if a_tag in ca: + no_answers = False + vals.update({'answer_type': 'suggestion', 'value_suggested': col.id, 'value_suggested_row': row.id}) + self.create(cr, uid, vals, context=context) + if no_answers: + vals.update({'answer_type': None, 'skipped': True}) + self.create(cr, uid, vals, context=context) + return True -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: +def dict_keys_startswith(dictionary, string): + '''Returns a dictionary containing the elements of whose keys start + with . + + .. note:: + This function uses dictionary comprehensions (Python >= 2.7)''' + return {k: dictionary[k] for k in filter(lambda key: key.startswith(string), dictionary.keys())} diff --git a/addons/survey/survey_data.xml b/addons/survey/survey_data.xml deleted file mode 100644 index 7627c5d54b0..00000000000 --- a/addons/survey/survey_data.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - Human Resources - Human Resources - - - Customer Feeback - Customer Feeback - - - Supplier Selection - Supplier Selection - - - diff --git a/addons/survey/survey_demo.xml b/addons/survey/survey_demo.xml deleted file mode 100644 index 6f89095c699..00000000000 --- a/addons/survey/survey_demo.xml +++ /dev/null @@ -1,3531 +0,0 @@ - - - - - - - - - - - Initial Partner Feedback - - 20 - - open - 5 - 1 - 1 - 5 - - - - - Who are you? - - - - - - What is your company's name? - - single_textbox - 1 - 1 - - 1 - - - - What is your company's size? - - multiple_choice_only_one_ans - - 1 - - - - 1 - 1 - 10 - - - - - 1 - 11 - 50 - - - - - 1 - 51 - 100 - - - - - 1 - 101 - 250 - - - - - 1 - 251 - 500 - - - - - 1 - 501 - 1000 - - - - - 1 - > 1000 - - - - - - - - - Contracts - - - - - - 1 - Which maintenance contract do you sell to your customers? - - multiple_choice_only_one_ans - - - - - 1 - OpenERP maintenance contract - - - - - 1 - Your own contract, but you buy an OpenERP one - - - - - 1 - Your own contract without buying an OpenERP one - - - - - - 1 - When do you propose a maintenance contract to your customers? - - multiple_choice_only_one_ans - text - Why? - - True - - - - 1 - With each integration - - - - - 1 - Sometimes - - - - - 1 - Never... - - - - - - - - - - OpenERP Partner Feedback - - 20 - - open - 1 - 1 - 5 - - - - - Who are you? - - - - - - What is your company's name? - - single_textbox - 1 - - 1 - - - - What is your company's size? - - multiple_choice_only_one_ans - - 1 - - - - 1 - 1 - 10 - - - - - 1 - 11 - 50 - - - - - 1 - 51 - 100 - - - - - 1 - 101 - 250 - - - - - 1 - 251 - 500 - - - - - 1 - 501 - 1000 - - - - - 1 - > 1000 - - - - - - - - - 1 - Where are you located? - - multiple_choice_multiple_ans - - - - 1 - Europe - - - - - 1 - North America - - - - - 1 - Asia - - - - - 1 - South America - - - - - 1 - Australia - - - - - at least - - This question requires an answer. - - - - 1 - When did you become an OpenERP official partner? - - multiple_choice_only_one_ans - - - - 1 - in 2009 - - - - - 1 - in 2008 - - - - - 1 - in 2007 - - - - - 1 - in 2006 - - - - - 1 - before 2006 - - - - - - - - - 1 - What kind of solutions do you sell to your customers? - - multiple_choice_multiple_ans - - - - 1 - Integrations without specific developments - - - - - 1 - Integrations with specific developments - - - - - 1 - Odoo Saas Offer - - - - - - - Contracts - - - - - - 1 - What do you think about the partnership contract? - - multiple_choice_only_one_ans - - - - 1 - Ambiguous - - - - - 1 - Not clear enough - - - - - 1 - Clear - - - - - 1 - Very Clear - - - - - - - - - 1 - When do you propose a maintenance contract to your customers? - - multiple_choice_only_one_ans - text - Why? - - True - - - 1 - With each integration - - - - - 1 - Sometimes - - - - - 1 - Never... - - - - - - - - - 1 - Which maintenance contract do you sell to your customers. - - multiple_choice_only_one_ans - - - - - 1 - OpenERP maintenance contract - - - - - 1 - Your own contract, but you buy an OpenERP one - - - - - 1 - Your own contract without buying an OpenERP one - - - - - - - - - Communication - - - - - - 1 - Give your opinion about Launchpad reporting : - - matrix_of_choices_only_one_ans - - - - - 1 - Is Launchpad easy to find in OpenObject website? - - - - - 1 - Is it easy to report a bug or a blueprint? - - - - - 1 - Is it easy to add or modify a translation? - - - - - Not at all - - 1 - 1 - - - No - - 1 - 1 - - - Yes, but could be better - - 1 - 1 - - - Absolutely - - 1 - 1 - - - 1 - Leads - - matrix_of_choices_only_one_ans - - - - 1 - Is Launchpad easy to find in OpenObject website? - - - - - 1 - How are the leads that you find thanks to OpenERP SA be converted in customers? - - - - - I didn't try, I don't need new leads - - 1 - 1 - - - Hard - - 1 - 1 - - - Difficult - - 1 - 1 - - - Easy - - 1 - 1 - - - Very Easy - - 1 - 1 - - - - 1 - How is OpenERP SA's communication with partners about... - - matrix_of_choices_only_one_ans - - - - - 1 - Maintenance contracts - - - - - 1 - Leads - - - - - 1 - Training sessions - - - - - Very Bad - - 1 - 1 - - - Bad - - 1 - 1 - - - Good - - 1 - 1 - - - Very Good - - 1 - 1 - - - 1 - at least - - This question requires an answer. - - - - 1 - In your opinion, how could OpenERP SA better communicate with partners and on which subjects? - - comment - - - - - - Odoo Feedback - - 20 - - open - 1 - 1 - 5 - - - - - Who are you? - - - - - - 1 - What is your company's name? - - single_textbox - - - - - 1 - What is your company's sector? - - multiple_choice_multiple_ans - - - - - 1 - Agriculture - - - - - 1 - Bank & Finance - - - - - 1 - Engineering - - - - - 1 - Chemical & Pharmaceutical - - - - - 1 - HR - - - - - 1 - Construction - - - - - 1 - Retail - - - - - 1 - Electronics - - - - - 1 - Energy - - - - - 1 - Education - - - - - 1 - Industry - - - - - 1 - Logistics - - - - - 1 - Media & Entertainment - - - - - 1 - Public & Nonprofit - - - - - 1 - Services - - - - - 1 - Healthcare - - - - - 1 - Telecommunication And ICT - - - - - 1 - Tourism & Catering - - - - - 1 - Other sector - - - - - at least - - This question requires an answer. - - - - 1 - Which activities do you plan to manage with Odoo ? - - multiple_choice_multiple_ans - - - - 1 - Customer Relationship Management - - - - - 1 - Accounting & Finance - - - - - 1 - Inventory Management - - - - - 1 - Manufacturing - - - - - 1 - Human Resources - - - - - 1 - Project Management - - - - - 1 - Sales & Purchases - - - - - 1 - Other - - - - - at least - - This question requires an answer. - - - - 1 - How did you discover Odoo ? - - multiple_choice_multiple_ans - - - - 1 - OpenERP website - - - - - 1 - Search Engine - - - - - 1 - Word of mouth - - - - - 1 - Trade show - - - - - 1 - Press - - - - - 1 - Other - - - - - at least - - This question requires an answer. - - - - Subscription and configuration - - - - - - 1 - Why did you subscribe to Odoo? - - multiple_choice_only_one_ans - - - - 1 - I was already using OpenERP and wanted to switch to an online offer - - - - - 1 - It's easier and cheaper than maintaining by myself - - - - - 1 - I am looking for a SaaS offer for my customers - - - - - 1 - After having tested it, I plan to download and install it by myself for later use - - - - - 1 - After having tested it, I don't plan to use it - - - - - - 1 - How much time did you spend to configure the application? - - matrix_of_choices_only_one_ans - - - - 1 - Creating users and access rights - - - - - 1 - Adding the modules I need - - - - - 1 - Configuring the modules - - - - - 1 - Importing my data - - - - - 1 - Creating the initial data - - - - - I didn't try - - 1 - 1 - - - A couple of weeks - - 1 - 1 - - - A couple of days - - 1 - 1 - - - A couple of hours - - 1 - 1 - - - A couple of minutes - - 1 - 1 - - - - 1 - Do you plan to continue using Odoo? - - multiple_choice_only_one_ans - text - No...Why? - - True - - - 1 - Yes - - - - - 1 - No - - - - - - - - - Using Odoo - - - - - 1 - Which interface would you prefer to use? - - multiple_choice_only_one_ans - - - - 1 - The web interface - - - - - 1 - The rich interface (GTK or KDE) - - - - - 1 - Both - - - - - - - - - 1 - Give your opinion : - - matrix_of_choices_only_one_ans - - - - 1 - Is Odoo Website appropriately structured? - - - - - 1 - Are Odoo Website FAQ clear and concise? - - - - - 1 - Is OpenERP Web Client simple and useful? - - - - - 1 - Is the Control Center user-friendly? - - - - - No Opinion - - 1 - 1 - - - Not at all - - 1 - 1 - - - Not enough - - 1 - 1 - - - Yes, but could be better - - 1 - 1 - - - Absolutely - - 1 - 1 - - - at least - - This question requires an answer. - - - - 1 - What do you think about ... - - matrix_of_choices_only_one_ans - 1 - - - - 1 - Migrating a database to a new version - - - - - 1 - Browsing and downloading your backups - - - - - 1 - Duplicating a database - - - - - 1 - Checking your monthly hours statistics - - - - - 1 - Creating a support ticket - - - - - I didn't try - - 1 - 1 - - - Hard - - 1 - 1 - - - Difficult - - 1 - 1 - - - Easy - - 1 - 1 - - - Very Easy - - 1 - 1 - - - 1 - at least - - This question requires an answer. - - - - 1 - In your opinion, which modules are missing in Odoo? Give examples : - - single_textbox - 1 - - - - - - The offer - - - - - - 1 - How often would you prefer to receive your prepaid bill? - - multiple_choice_only_one_ans - - - - 1 - Monthly - - - - - 1 - Annually with 20% discount - - - - - 1 - Every 2 years with 25% discount - - - - - - - - - 1 - Do you plan to use the document management system? - - multiple_choice_only_one_ans - text - Comment - - True - - - 1 - Yes, I plan to use (GB) - - - - - 1 - No - - - - - - - - - 1 - How satisfied are you with Odoo's support services : - - matrix_of_choices_only_one_ans - - - - 1 - The time between your question and our answer is - - - - - 1 - The pertinence of our answers is - - - - - No Opinion - - 1 - 1 - - - Very Bad - - 1 - 1 - - - Bad - - 1 - 1 - - - Good - - 1 - 1 - - - Very Good - - 1 - 1 - - - at least - - This question requires an answer. - - - - 1 - Give your opinion about Odoo's - - matrix_of_choices_only_one_ans - - - - - 1 - Pricing criteria - - - - - 1 - Pricing understanding - - - - - 1 - Range of available modules - - - - - No Opinion - - 1 - 1 - - - Very Bad - - 1 - 1 - - - Bad - - 1 - 1 - - - Good - - 1 - 1 - - - Very Good - - 1 - 1 - - - at least - - This question requires an answer. - - - - 1 - If you have any additional comments, write them here : - - comment - - - - - - - - - 4 - 20 - - open - 5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - 1 - - - - - 1 - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - 1 - - - - - 1 - - - - - - - - - - - - - - - 1 - - - - - 1 - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - 1 - 1 - - - - - - - 1 - 1 - - - - - - - 1 - 1 - - - - - - - 1 - 1 - - - - - - - 1 - 1 - - - - - - - 1 - 1 - - - - - - - 1 - 1 - - - - - - - 1 - 1 - - - - - - - 1 - 1 - - - - - - - 1 - 1 - - - - - - - 1 - 1 - - - - - - - 1 - 1 - - - - - - - 1 - 1 - - - - - - - 1 - 1 - - - - - - - 1 - 1 - - - - - - - 1 - 1 - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - 1 - - - - - - - - - - - Community Survey - Please take a few minutes to complete this survey on the quality of service we provide. We welcome your feedback and appreciate your honesty. With your help, we hope to strengthen the bond between our clients. - - open - - - - - 5 - 20 - - - - - Service Characteristics - - - - - - - Performance Indicator - - - - - - - Client Information - - - - - - - do_not_validate - do_not_validate - Please enter a comment. - The choices need to add up to [enter sum here]. - - The comment you entered is in an invalid format. - - - This question requires an answer. - - Please rank, your criteria for choosing an organization. - char - - - matrix_of_choices_only_one_ans - - The comment you entered is in an invalid format. - - - - at least - Other (please specify) - - - - - - - do_not_validate - do_not_validate - Please enter a comment. - The choices need to add up to [enter sum here]. - - The comment you entered is in an invalid format. - - - This question requires an answer. - - Please rate the following questions. - char - - - matrix_of_choices_only_one_ans - - The comment you entered is in an invalid format. - - - - at least - Other (please specify) - - - - - - - do_not_validate - do_not_validate - Please enter a comment. - The choices need to add up to [enter sum here]. - - The comment you entered is in an invalid format. - - - This question requires an answer. - - How would you prefer for us to provide most communications? - char - - - multiple_choice_only_one_ans - - The comment you entered is in an invalid format. - - - - at least - Other (please specify) - - - - - - - do_not_validate - do_not_validate - Please enter a comment. - The choices need to add up to [enter sum here]. - - The comment you entered is in an invalid format. - - - This question requires an answer. - - What should we improve on (please be specific)? - char - - - comment - - The comment you entered is in an invalid format. - - - - at least - Other (please specify) - - - - - - - do_not_validate - do_not_validate - Please enter a comment. - The choices need to add up to [enter sum here]. - - The comment you entered is in an invalid format. - - - This question requires an answer. - - What do we do well? - char - - - comment - - The comment you entered is in an invalid format. - - - - at least - Other (please specify) - - - - - - - do_not_validate - do_not_validate - Please enter a comment. - The choices need to add up to [enter sum here]. - - The comment you entered is in an invalid format. - - - This question requires an answer. - - What are the most important challenges facing your organization this year? - char - - - comment - - The comment you entered is in an invalid format. - - - - at least - Other (please specify) - - - - - - - do_not_validate - do_not_validate - Please enter a comment. - The choices need to add up to [enter sum here]. - - The comment you entered is in an invalid format. - - - This question requires an answer. - - How can we help you do your job better? - char - - - comment - - The comment you entered is in an invalid format. - - - - at least - Other (please specify) - - - - - - - do_not_validate - do_not_validate - Please enter a comment. - The choices need to add up to [enter sum here]. - - The comment you entered is in an invalid format. - - - This question requires an answer. - - Please provide any additional comments. - char - - - comment - - The comment you entered is in an invalid format. - - - - at least - Other (please specify) - - - - - - - do_not_validate - do_not_validate - Please enter a comment. - The choices need to add up to [enter sum here]. - - The comment you entered is in an invalid format. - - - This question requires an answer. - - Contact information - char - - - multiple_textboxes_diff_type - - The comment you entered is in an invalid format. - - - - at least - Other (please specify) - - - - - - - do_not_validate - do_not_validate - Please enter a comment. - The choices need to add up to [enter sum here]. - - The comment you entered is in an invalid format. - - - This question requires an answer. - - How many years have you been a client? - char - - - multiple_choice_only_one_ans - - The comment you entered is in an invalid format. - - - - at least - Other (please specify) - - - - - - - - Most Important - - - - - - - - Very Important - - - - - - - - Important - - - - - - - - Less Important - - - - - - - - Not Important - - - - - - - - Excellent - - - - - - - - Above Average - - - - - - - - Average - - - - - - - - Below Average - - - - - - - - Poor - - - - - - - - N/A - - - - - - - - Email - - char - - - - - - - The quality of our responses to your questions and concerns. - - char - - - - - - - 0 - 2 years - - char - - - - - - - Name - - char - - - - - - - Industry/marketplace knowledge - - char - - - - - - - Phone - - char - - - - - - - 3 - 5 years - - char - - - - - - - Length of time in business - - char - - - - - - - The timeliness of our Representatives' response to your needs. - - char - - - - - - - Company - - char - - - - - - - The knowledge level of your Representative. - - char - - - - - - - Mail - - char - - - - - - - Phone number - - char - - - - - - - Consultative capabilities - - char - - - - - - - 6 - 10 years - - char - - - - - - - 10 + years - - char - - - - - - - Your Representative keeps you informed of changes. - - char - - - - - - - Face-to-Face - - char - - - - - - - Technology and Tools provided - - char - - - - - - - Email address - - email - - - - - - - Other - - char - - - - - - - Personal Referral - - char - - - - - - - How is our ability to anticipate your needs and provide assistance pro actively. - - char - - - - - - - Lowest rate - - char - - - - - - - Our products and services we provide meet your objectives. - - char - - - - - - - Responsiveness to requests - - char - - - - - - - We are easy to work with. - - char - - - - - - - Value-added services - - char - - - - - - - Overall, how do you rank our services to you. - - char - - - - - - - - - - - - - - - - - - - - - - - - done - - - link - - - - - - done - - - link - - - - - - done - - - - - - - - done - - - - - - - - done - - - - - - - - done - - - - - - - - done - - OpenERP SA - - - - - - - done - - - - - - - - done - - - - - - - - done - - - - - - - - done - - - - - - - - done - - - - - - - - skip - - - - - - - - done - - - - - - - - done - - - - - - - - done - - - - - - - - done - - OpenERP SA - - - - - - - done - - - - - - - - done - - - - - - - - done - - - - - - - - done - - - - - - - - done - - - - - - - - done - - survey - - - - - - - done - - - - - - - - done - - - - - - - - done - - - - - - - - done - - - - - - - - skip - - - - - - - - done - - - - - - - - done - - - - - - - - 1 - - - - - - - 1 - - - - - - - 1 - - - - - - - 1 - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - 1 - - - - - - - 1 - - - - - - - 1 - - - - - - - 1 - - - - - - - 1 - - - - - - - 1 - - - - - - - 1 - - - - - - - 1 - - - - - - - 1 - - - - - - - 1 - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/addons/survey/survey_report.xml b/addons/survey/survey_report.xml deleted file mode 100644 index 647be4c26c5..00000000000 --- a/addons/survey/survey_report.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - diff --git a/addons/survey/survey_view.xml b/addons/survey/survey_view.xml deleted file mode 100644 index 2c43364871d..00000000000 --- a/addons/survey/survey_view.xml +++ /dev/null @@ -1,1258 +0,0 @@ - - - - - - - - - - - - - - - - survey_form - survey - -
    -
    -
    - -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    -
    -
    - -
    -
    - - - survey_tree - survey - - - - - - - - - - + + + + + + + + +
    +

    :

    @@ -616,7 +667,7 @@

    Template fallback

    An error occured while rendering the template .

    If this error is caused by a change of yours in the templates, you have the possibility to reset one or more templates to their factory settings.

    -
    +
    - +
    @@ -760,23 +811,5 @@ Sitemap: sitemap.xml - - diff --git a/addons/website_blog/__openerp__.py b/addons/website_blog/__openerp__.py index 97c163945af..831c180d51f 100644 --- a/addons/website_blog/__openerp__.py +++ b/addons/website_blog/__openerp__.py @@ -30,7 +30,7 @@ OpenERP Blog """, 'author': 'OpenERP SA', - 'depends': ['knowledge', 'website_mail'], + 'depends': ['knowledge', 'website_mail', 'website_partner'], 'data': [ 'data/website_blog_data.xml', 'views/website_blog_views.xml', diff --git a/addons/website_blog/controllers/main.py b/addons/website_blog/controllers/main.py index 2e1477e8f2d..e2eac59678e 100644 --- a/addons/website_blog/controllers/main.py +++ b/addons/website_blog/controllers/main.py @@ -1,129 +1,135 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2013-Today OpenERP SA (). -# -# 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 . -# -############################################################################## - -from openerp.addons.web import http -from openerp.addons.web.http import request -from openerp.tools.translate import _ -from openerp import SUPERUSER_ID +import datetime import werkzeug +from openerp import tools +from openerp.addons.web import http +from openerp.addons.web.http import request +from openerp.addons.website.models.website import slug +from openerp.osv.orm import browse_record +from openerp.tools.translate import _ +from openerp import SUPERUSER_ID +from openerp.tools import html2plaintext + + +class QueryURL(object): + def __init__(self, path='', path_args=None, **args): + self.path = path + self.args = args + self.path_args = set(path_args or []) + + def __call__(self, path=None, path_args=None, **kw): + path = path or self.path + for k, v in self.args.items(): + kw.setdefault(k, v) + path_args = set(path_args or []).union(self.path_args) + paths, fragments = [], [] + for key, value in kw.items(): + if value and key in path_args: + if isinstance(value, browse_record): + paths.append((key, slug(value))) + else: + paths.append((key, value)) + elif value: + if isinstance(value, list) or isinstance(value, set): + fragments.append(werkzeug.url_encode([(key, item) for item in value])) + else: + fragments.append(werkzeug.url_encode([(key, value)])) + for key, value in paths: + path += '/' + key + '/%s' % value + if fragments: + path += '?' + '&'.join(fragments) + return path class WebsiteBlog(http.Controller): - _blog_post_per_page = 6 - _post_comment_per_page = 6 + _blog_post_per_page = 20 + _post_comment_per_page = 10 def nav_list(self): blog_post_obj = request.registry['blog.post'] - groups = blog_post_obj.read_group(request.cr, request.uid, [], ['name', 'create_date'], + groups = blog_post_obj.read_group( + request.cr, request.uid, [], ['name', 'create_date'], groupby="create_date", orderby="create_date asc", context=request.context) for group in groups: - group['date'] = "%s_%s" % (group['__domain'][0][2], group['__domain'][1][2]) + begin_date = datetime.datetime.strptime(group['__domain'][0][2], tools.DEFAULT_SERVER_DATETIME_FORMAT).date() + end_date = datetime.datetime.strptime(group['__domain'][1][2], tools.DEFAULT_SERVER_DATETIME_FORMAT).date() + group['date_begin'] = '%s' % datetime.date.strftime(begin_date, tools.DEFAULT_SERVER_DATE_FORMAT) + group['date_end'] = '%s' % datetime.date.strftime(end_date, tools.DEFAULT_SERVER_DATE_FORMAT) return groups @http.route([ '/blog', - '/blog/page//', + '/blog/page/', ], type='http', auth="public", website=True, multilang=True) - def blogs(self, page=1): - BYPAGE = 60 + def blogs(self, page=1, **post): cr, uid, context = request.cr, request.uid, request.context blog_obj = request.registry['blog.post'] total = blog_obj.search(cr, uid, [], count=True, context=context) pager = request.website.pager( - url='/blog/', + url='/blog', total=total, page=page, - step=BYPAGE, + step=self._blog_post_per_page, ) - bids = blog_obj.search(cr, uid, [], offset=(page-1)*BYPAGE, limit=BYPAGE, context=context) - blogs = blog_obj.browse(cr, uid, bids, context=context) + post_ids = blog_obj.search(cr, uid, [], offset=(page-1)*self._blog_post_per_page, limit=self._blog_post_per_page, context=context) + posts = blog_obj.browse(cr, uid, post_ids, context=context) + blog_url = QueryURL('', ['blog', 'tag']) return request.website.render("website_blog.latest_blogs", { - 'blogs': blogs, - 'pager': pager + 'posts': posts, + 'pager': pager, + 'blog_url': blog_url, }) @http.route([ - '/blog//', - '/blog//page//', - '/blog//tag//', - '/blog//tag//page//', - '/blog//date//', - '/blog//date//page//', - '/blog//tag//date//', - '/blog//tag//date//page//', + '/blog/', + '/blog//page/', + '/blog//tag/', + '/blog//tag//page/', ], type='http', auth="public", website=True, multilang=True) - def blog(self, blog=None, tag=None, date=None, page=1, **opt): + def blog(self, blog=None, tag=None, page=1, **opt): """ Prepare all values to display the blog. - :param blog: blog currently browsed. - :param tag: tag that is currently used to filter blog posts - :param integer page: current page of the pager. Can be the blog or - post pager. - :param date: date currently used to filter blog posts (dateBegin_dateEnd) - :return dict values: values for the templates, containing - - 'blog_posts': list of browse records that are the posts to display - in a given blog, if not blog_post_id - - 'blog': browse of the current blog, if blog_id - - 'blogs': list of browse records of blogs - - 'pager': the pager to display posts pager in a blog - - 'tag': current tag, if tag_id + - 'blog': current blog + - 'blogs': all blogs for navigation + - 'pager': pager of posts + - 'tag': current tag + - 'tags': all tags, for navigation - 'nav_list': a dict [year][month] for archives navigation + - 'date': date_begin optional parameter, used in archives navigation + - 'blog_url': help object to create URLs """ - BYPAGE = 10 + date_begin, date_end = opt.get('date_begin'), opt.get('date_end') cr, uid, context = request.cr, request.uid, request.context blog_post_obj = request.registry['blog.post'] - blog_posts = None - blog_obj = request.registry['blog.blog'] - blog_ids = blog_obj.search(cr, uid, [], context=context) + blog_ids = blog_obj.search(cr, uid, [], order="create_date asc", context=context) blogs = blog_obj.browse(cr, uid, blog_ids, context=context) - path_filter = "" domain = [] - if blog: - path_filter += "%s/" % blog.id - domain += [("id", "in", [post.id for post in blog.blog_post_ids])] + domain += [('blog_id', '=', blog.id)] if tag: - path_filter += 'tag/%s/' % tag.id - domain += [("id", "in", [post.id for post in tag.blog_post_ids])] - if date: - path_filter += "date/%s/" % date - domain += [("create_date", ">=", date.split("_")[0]), ("create_date", "<=", date.split("_")[1])] + domain += [('tag_ids', 'in', tag.id)] + if date_begin and date_end: + domain += [("create_date", ">=", date_begin), ("create_date", "<=", date_end)] - blog_post_ids = blog_post_obj.search(cr, uid, domain, context=context) + blog_url = QueryURL('', ['blog', 'tag'], blog=blog, tag=tag, date_begin=date_begin, date_end=date_end) + post_url = QueryURL('', ['blogpost'], tag_id=tag and tag.id or None, date_begin=date_begin, date_end=date_end) + + blog_post_ids = blog_post_obj.search(cr, uid, domain, order="create_date asc", context=context) blog_posts = blog_post_obj.browse(cr, uid, blog_post_ids, context=context) pager = request.website.pager( - url="/blog/%s" % path_filter, + url=blog_url(), total=len(blog_posts), page=page, step=self._blog_post_per_page, - scope=BYPAGE ) pager_begin = (page - 1) * self._blog_post_per_page pager_end = page * self._blog_post_per_page @@ -141,38 +147,34 @@ class WebsiteBlog(http.Controller): 'blog_posts': blog_posts, 'pager': pager, 'nav_list': self.nav_list(), - 'path_filter': path_filter, - 'date': date, + 'blog_url': blog_url, + 'post_url': post_url, + 'date': date_begin, } - return request.website.render("website_blog.blog_post_short", values) + response = request.website.render("website_blog.blog_post_short", values) + return response @http.route([ - '/blogpost//', + '/blog//post/', ], type='http', auth="public", website=True, multilang=True) - def blog_post(self, blog_post, tag=None, date=None, page=1, enable_editor=None, **post): + def blog_post(self, blog, blog_post, tag_id=None, page=1, enable_editor=None, **post): """ Prepare all values to display the blog. - :param blog_post: blog post currently browsed. If not set, the user is - browsing the blog and a post pager is calculated. - If set the user is reading the blog post and a - comments pager is calculated. - :param blog: blog currently browsed. - :param tag: tag that is currently used to filter blog posts - :param integer page: current page of the pager. Can be the blog or - post pager. - :param date: date currently used to filter blog posts (dateBegin_dateEnd) - - - 'enable_editor': editor control - :return dict values: values for the templates, containing - - 'blog_post': browse of the current post, if blog_post_id - - 'blog': browse of the current blog, if blog_id + - 'blog_post': browse of the current post + - 'blog': browse of the current blog - 'blogs': list of browse records of blogs - - 'pager': the pager to display comments pager in a blog post - - 'tag': current tag, if tag_id + - 'tag': current tag, if tag_id in parameters + - 'tags': all tags, for tag-based navigation + - 'pager': a pager on the comments - 'nav_list': a dict [year][month] for archives navigation + - 'next_post': next blog post, to direct the user towards the next interesting post """ + cr, uid, context = request.cr, request.uid, request.context + tag_obj = request.registry['blog.tag'] + blog_post_obj = request.registry['blog.post'] + date_begin, date_end = post.get('date_begin'), post.get('date_end') pager_url = "/blogpost/%s" % blog_post.id @@ -187,65 +189,131 @@ class WebsiteBlog(http.Controller): pager_end = page * self._post_comment_per_page blog_post.website_message_ids = blog_post.website_message_ids[pager_begin:pager_end] - cr, uid, context = request.cr, request.uid, request.context - blog_obj = request.registry['blog.blog'] - blog_ids = blog_obj.search(cr, uid, [], context=context) - blogs = blog_obj.browse(cr, uid, blog_ids, context=context) + tag = None + if tag_id: + tag = request.registry['blog.tag'].browse(request.cr, request.uid, int(tag_id), context=request.context) + post_url = QueryURL('', ['blogpost'], blogpost=blog_post, tag_id=tag_id, date_begin=date_begin, date_end=date_end) + blog_url = QueryURL('', ['blog', 'tag'], blog=blog_post.blog_id, tag=tag, date_begin=date_begin, date_end=date_end) - tag_obj = request.registry['blog.tag'] - tag_ids = tag_obj.search(cr, uid, [], context=context) - tags = tag_obj.browse(cr, uid, tag_ids, context=context) + if not blog_post.blog_id.id == blog.id: + return request.redirect("/blog/%s/post/%s" % (slug(blog_post.blog_id), slug(blog_post))) - MONTHS = [None, _('January'), _('February'), _('March'), _('April'), - _('May'), _('June'), _('July'), _('August'), _('September'), - _('October'), _('November'), _('December')] + tags = tag_obj.browse(cr, uid, tag_obj.search(cr, uid, [], context=context), context=context) + + # Find next Post + visited_blogs = request.httprequest.cookies.get('visited_blogs') or '' + visited_ids = filter(None, visited_blogs.split(',')) + visited_ids = map(lambda x: int(x), visited_ids) + if blog_post.id not in visited_ids: + visited_ids.append(blog_post.id) + next_post_id = blog_post_obj.search(cr, uid, [ + ('id', 'not in', visited_ids), + ], order='ranking desc', limit=1, context=context) + if not next_post_id: + next_post_id = blog_post_obj.search(cr, uid, [('id', '!=', blog.id)], order='ranking desc', limit=1, context=context) + next_post = next_post_id and blog_post_obj.browse(cr, uid, next_post_id[0], context=context) or False values = { - 'blog': blog_post.blog_id, - 'blogs': blogs, 'tags': tags, - 'tag': tag and request.registry['blog.tag'].browse(cr, uid, int(tag), context=context) or None, + 'tag': tag, + 'blog': blog, 'blog_post': blog_post, 'main_object': blog_post, - 'pager': pager, 'nav_list': self.nav_list(), 'enable_editor': enable_editor, - 'date': date, - 'date_name': date and "%s %s" % (MONTHS[int(date.split("-")[1])], date.split("-")[0]) or None + 'next_post': next_post, + 'date': date_begin, + 'post_url': post_url, + 'blog_url': blog_url, + 'pager': pager, } - return request.website.render("website_blog.blog_post_complete", values) + response = request.website.render("website_blog.blog_post_complete", values) + response.set_cookie('visited_blogs', ','.join(map(str, visited_ids))) + + request.session[request.session_id] = request.session.get(request.session_id, []) + if not (blog_post.id in request.session[request.session_id]): + request.session[request.session_id].append(blog_post.id) + # Increase counter + blog_post_obj.write(cr, SUPERUSER_ID, [blog_post.id], { + 'visits': blog_post.visits+1, + },context=context) + return response + + def _blog_post_message(self, user, blog_post_id=0, **post): + cr, uid, context = request.cr, request.uid, request.context + blog_post = request.registry['blog.post'] + partner_obj = request.registry['res.partner'] + thread_obj = request.registry['mail.thread'] + website = request.registry['website'] + + public_id = website.get_public_user(cr, uid, context) + if uid != public_id: + partner_ids = [user.partner_id.id] + else: + partner_ids = blog_post._find_partner_from_emails( + cr, SUPERUSER_ID, 0, [post.get('email')], context=context) + if not partner_ids or not partner_ids[0]: + partner_ids = [partner_obj.create(cr, SUPERUSER_ID, {'name': post.get('name'), 'email': post.get('email')}, context=context)] + + message_id = blog_post.message_post( + cr, SUPERUSER_ID, int(blog_post_id), + body=post.get('comment'), + type='comment', + subtype='mt_comment', + author_id=partner_ids[0], + path=post.get('path', False), + context=dict(context, mail_create_nosubcribe=True)) + return message_id @http.route(['/blogpost/comment'], type='http', auth="public", methods=['POST'], website=True) def blog_post_comment(self, blog_post_id=0, **post): cr, uid, context = request.cr, request.uid, request.context if post.get('comment'): - user = request.registry['res.users'].browse(cr, SUPERUSER_ID, uid, context=context) - group_ids = user.groups_id - group_id = request.registry["ir.model.data"].get_object_reference(cr, uid, 'website_mail', 'group_comment')[1] - if group_id in [group.id for group in group_ids]: - blog_post = request.registry['blog.post'] - blog_post.check_access_rights(cr, uid, 'read') - blog_post.message_post( - cr, SUPERUSER_ID, int(blog_post_id), - body=post.get('comment'), - type='comment', - subtype='mt_comment', - author_id=user.partner_id.id, - context=dict(context, mail_create_nosubcribe=True)) + user = request.registry['res.users'].browse(cr, uid, uid, context=context) + blog_post = request.registry['blog.post'] + blog_post.check_access_rights(cr, uid, 'read') + self._blog_post_message(user, blog_post_id, **post) return werkzeug.utils.redirect(request.httprequest.referrer + "#comments") + def _get_discussion_detail(self, ids, publish=False, **post): + cr, uid, context = request.cr, request.uid, request.context + values = [] + mail_obj = request.registry.get('mail.message') + for message in mail_obj.browse(cr, SUPERUSER_ID, ids, context=context): + values.append({ + "id": message.id, + "author_name": message.author_id.name, + "author_image": message.author_id.image and \ + ("data:image/png;base64,%s" % message.author_id.image) or \ + '/website_blog/static/src/img/anonymous.png', + "date": message.date, + 'body': html2plaintext(message.body), + 'website_published' : message.website_published, + 'publish' : publish, + }) + return values + + @http.route(['/blogpost/post_discussion'], type='json', auth="public", website=True) + def post_discussion(self, blog_post_id=0, **post): + cr, uid, context = request.cr, request.uid, request.context + publish = request.registry['res.users'].has_group(cr, uid, 'base.group_website_publisher') + user = request.registry['res.users'].browse(cr, uid, uid, context=context) + id = self._blog_post_message(user, blog_post_id, **post) + return self._get_discussion_detail([id], publish, **post) + @http.route('/blogpost/new', type='http', auth="public", website=True, multilang=True) def blog_post_create(self, blog_id, **post): cr, uid, context = request.cr, request.uid, request.context create_context = dict(context, mail_create_nosubscribe=True) - new_blog_post_id = request.registry['blog.post'].create( - request.cr, request.uid, { - 'blog_id': blog_id, - 'name': _("Blog Post Title"), - 'content': '', - 'website_published': False, - }, context=create_context) - return werkzeug.utils.redirect("/blogpost/%s/?enable_editor=1" % new_blog_post_id) + new_blog_post_id = request.registry['blog.post'].create(cr, uid, { + 'blog_id': blog_id, + 'name': _("Blog Post Title"), + 'subtitle': _("Subtitle"), + 'content': '', + 'website_published': False, + }, context=create_context) + new_blog_post = request.registry['blog.post'].browse(cr, uid, new_blog_post_id, context=context) + return werkzeug.utils.redirect("/blog/%s/post/%s?enable_editor=1" % (slug(new_blog_post.blog_id), slug(new_blog_post))) @http.route('/blogpost/duplicate', type='http', auth="public", website=True) def blog_post_copy(self, blog_post_id, **post): @@ -257,5 +325,31 @@ class WebsiteBlog(http.Controller): """ cr, uid, context = request.cr, request.uid, request.context create_context = dict(context, mail_create_nosubscribe=True) - new_blog_post_id = request.registry['blog.post'].copy(cr, uid, blog_post_id, {}, context=create_context) - return werkzeug.utils.redirect("/blogpost/%s/?enable_editor=1" % new_blog_post_id) + nid = request.registry['blog.post'].copy(cr, uid, blog_post_id, {}, context=create_context) + new_blog_post = request.registry['blog.post'].browse(cr, uid, nid, context=context) + post = request.registry['blog.post'].browse(cr, uid, nid, context) + return werkzeug.utils.redirect("/blog/%s/post/%s?enable_editor=1" % (slug(post.blog_id), slug(new_blog_post))) + + @http.route('/blogpost/get_discussion/', type='json', auth="public", website=True) + def discussion(self, post_id=0, path=None, count=False, **post): + cr, uid, context = request.cr, request.uid, request.context + mail_obj = request.registry.get('mail.message') + domain = [('res_id', '=', int(post_id)), ('model', '=', 'blog.post'), ('path', '=', path)] + #check current user belongs to website publisher group + publish = request.registry['res.users'].has_group(cr, uid, 'base.group_website_publisher') + if not publish: + domain.append(('website_published', '=', True)) + ids = mail_obj.search(cr, SUPERUSER_ID, domain, count=count) + if count: + return ids + return self._get_discussion_detail(ids, publish, **post) + + @http.route('/blogpost/change_background', type='json', auth="public", website=True) + def change_bg(self, post_id=0, image=None, **post): + if not post_id: + return False + return request.registry['blog.post'].write(request.cr, request.uid, [int(post_id)], {'background_image': image}, request.context) + + @http.route('/blog/get_user/', type='json', auth="public", website=True) + def get_user(self, **post): + return [False if request.session.uid else True] diff --git a/addons/website_blog/data/website_blog_data.xml b/addons/website_blog/data/website_blog_data.xml index a5a3aa3d8c9..efc25264633 100644 --- a/addons/website_blog/data/website_blog_data.xml +++ b/addons/website_blog/data/website_blog_data.xml @@ -2,7 +2,8 @@ - News + Our News + Sharing our evolution with passion Presentation of new OpenERP features diff --git a/addons/website_blog/data/website_blog_demo.xml b/addons/website_blog/data/website_blog_demo.xml index 913c2ddc9b1..d6827220414 100644 --- a/addons/website_blog/data/website_blog_demo.xml +++ b/addons/website_blog/data/website_blog_demo.xml @@ -8,329 +8,199 @@ functional - technical - - website - - pos - - OpenERP v8 New Features + The Future of Emails + Ideas behing the OpenERP communication tools. - OpenERP, Point of Sale, Hardware, Interface, Payment Terminal, Store - Open source Point of Sale with no installation required that runs online and offline. + OpenERP, email + The Future of Emails + /website_blog/static/src/img/post1.jpg -
    -
    -
    - -
    -
    -

    - OpenERP's Point of Sale introduces a super clean - interface with no installation required that runs - online and offline on modern hardwares. -

    - It's full integration with the company inventory - and accounting, gives you real time statistics - without the hassle of integrating several applications. -

    -
    -
    -
    +
    + +

    + Emails are broken. +

    + Emails make me waste my time. But I need them. + Given the importance that emails have in our lives, + it's incredible it's still one of the only software + areas that did not evolve in the past 20 years! +

    + Reading my inbox is the most unproductive task I do + on a daily basis. I have to spend one full hour a + day to process my emails. All the junk flows in the + same inbox; spams, information that doesn't matter, + quoted answers of quoted answers, etc. At the end + of the hour, only 10 emails actually requested an + answer from me. With a good tool, I could have done + my job in 10 minutes! +

    -
    -
    -
    -
    -

    - Linked with Project Management -

    -

    Infinitely flexible. Incredibly easy to use.

    -
    -
    -

    - OpenERP's collaborative and realtime project - management helps your team get work done. Keep - track of everything, from the big picture to the - minute details, from the customer contract to the - billing. -

    - Organize projects around your own processes. Work - on tasks and issues using the kanban view, schedule - tasks using the gantt chart and control deadlines - in the calendar view. Every project may have it's - own stages allowing teams to optimize their job. -

    -
    -
    -
    +
    +

    + At OpenERP, we build tools to bring productivity to + enterprises. As emails and information flows are one of + the biggest wastes of time in companies, we have to fix + this. +

    + To disrupt emails, you need more than just another user + interface. We need to rethink the whole communication flow. +

    +

    The Communication Mechanism of OpenERP

    +

    + Here are the ideas behing the OpenERP communication tools: +

    +
      +
    • + Get Things Done: your inbox is a + todo list. You should be able to process (not only + read) the inbox and easily mark messages for future + actions. Every inbox should be empty after having + been processed; no more overload of information. + +
    • + Keep control of what you want to receive or don't want + to receive. People should never receive spam. You + should follow/unfollow any kind of information in one + click. +
    • + Productivity is key: our smart user + interface does not require you to click on every mail + to read a thread. Reading a full thread, replying, + attaching documents is super fast. + +
    • + A mix of push & pull: Today, people + are victims of what others decide to push to them. + OpenERP differentiates: +
        +
      • + Messages "for information": + you can pull them when you need some specific + information; they are not required to be read + every day.You receive only what you decided + to follow.This accounts for 90% of your daily + emails.Use the "Inbox" menu for these. +
      • + Messages "for action": they + require your immediate attention and you need + to process them all. This accounts for 10% + of your daily emails. Use the "To: me" menu + for these. +
      • +
      +
    • + Focus on the Content: Everything is + stripped to emphasize on the real message. No more + welcome introductions, greetings, signatures and legal + notes.We standardize the layout of each message. + (signatures are on the profile of a contact, not in + every message) +
    • + Folders and mailing lists are great tools but too + complex in traditional email clients. In OpenERP, a + group of contacts that share a discussion can be + created with one click. Every group should have it's + own email address. +
    • +
    -
    -
    -
    -
    -

    Work with the hardware you already have...

    -
    -
    - -
    -
    -

    - No installation required -

    -

    - OpenERP's Point of Sale introduces a super clean - interface with no installation required that runs - online and offline on modern hardware. Laptops, - tablets, industrial POS, it runs on everything. -

    -

    - Get more information » -

    -
    -
    -
    -
    - ]]> - New Hardware Integration + Integrating your CMS and E-Commerce + Building your company's website and selling your products online easy. - - - -
    -
    -
    - -
    -
    -

    - New Features Launched -

    -

    - OpenERP's Point of Sale introduces a super clean - interface with no installation required that runs - online and offline on modern hardware. Laptops, - tablets, industrial POS, it runs on everything. -

    -
    -
    -
    -
    -
    -
    -
    -
    -

    Our Offers

    -
    - -
    -
    - -
    -

    Beginner

    -

    - Starter package -

    -
    -
    -

    $450.00

    -
    per month
    -
    - - -
      -
    • Battery: 8 hours
    • -
    • Screen: 2.5 inch
    • -
    • Weight: 1.1 ounces
    • -
    • No support
    • -
    - -
    -
    -
    -
    - -
    -

    Professional

    -

    - Enterprise package -

    -
    -
    -

    $590.00

    -
    per month
    -
    - - -
      -
    • Battery: 12 hours
    • -
    • Screen: 2.8 inch
    • -
    • Weight: 1.2 ounces
    • -
    • Limited support
    • -
    - -
    -
    -
    -
    - -
    -

    Expert

    -

    - The top of the top -

    -
    -
    -

    $890.00

    -
    per month
    -
    - - -
      -
    • Battery: 20 hours
    • -
    • Screen: 2.8 inch
    • -
    • Weight: 1.2 ounces
    • -
    • Unlimited support
    • -
    - -
    - -
    -
    -
    -
    - - -]]> -
    -
    - - - Touchscreen Point of Sale for 6.1 - - - Point of Sale, Hardware, Interface, Payment Terminal, Store - Point of Sale with no installation required that runs online and offline. - -The brand new OpenERP touchscreen point of sale is available with 6.1 which allows you -to manage your shop sales very easily. It's fully web based so that you don't -have to install or deploy any software and all the sales shops can be easily -consolidated. It works in connected and disconnected modes so that you can -continue to sell even if you lose your internet connection.

    - -

    Here's a summary of its main features and benefits:

    -
      -
    • 100% WEB based
    • -
    • available for any touchscreen device (ipod, ipad, any tablet)mobile (with portable devices)
    • -
    • no installation required
    • -
    • no synchronization needed, completely integrated
    • -
    • continue working even when your connection is down or if you close your browser, data won't be lost
    • -
    • fully web based with a clean interface smart interface
    • -
    -

    You have different options to select your products. You can do it through the -barcode reader, just browse through the categories you have put in place (ie. -drinks, snacks, meals, etc.), or text search in case neither of the other -options work for you. For example, if you need to use the POS for your restaurant, -your employees can record multiple tickets at the same time without having to wait -to process one transaction at a time. In addition, you can facilitate payments, -the application allows multiple payment methods.

    -

    The POS application is so simple and accessible to use that your shop or -restaurant will never need any other tool to manage orders. Due to its smart -and user-friendly interface you don't need any training to learn how to use it. -Think of it as an out-of-the-box solution to boost your business' productivity. -

    -]]> -
    -
    - - - Announcing a New Partnership - - - OpenERP, Partnership, News, Accounting - Our company partners with OpenERP to develop accounting best practices. - -
    -
    -
    - -
    -
    -

    - We are proud to announce a new partnership with - the company OpenERP. Their open source application suite - will allow us to reach new markets, specifically in - the accounting area. -

    - The full integration with the company inventory - and accounting, will give our customers real time statistics - without the hassle of integrating several applications. -

    -
    -
    + + /website_blog/static/src/img/post2.jpg + + +
    + +
    +
    +

    + New Features Launched +

    +

    + To add to an already comprehensive set of OpenERP + features, a website content management system (CMS + or WMS) has been developed and a beta release is + available from today, 31st January 2014. +

    -
    -
    -
    -
    -

    - OpenERP Project Management -

    -

    Infinitely flexible. Incredibly easy to use.

    -
    -
    -

    - OpenERP's collaborative and realtime project - management helps your team get work done. Keep - track of everything, from the big picture to the - minute details, from the customer contract to the - billing. -

    - Organize projects around your own processes. Work - on tasks and issues using the kanban view, schedule - tasks using the gantt chart and control deadlines - in the calendar view. Every project may have it's - own stages allowing teams to optimize their job. -

    -
    -
    -
    +
    +

    + OpenERP claims to be 'the Open Source software that makes + building your company's website and selling your products + online easy'. So how true is this statement? +

    + "OpenERP's latest launch will allow a business to go from + zero to trading online quicker than ever before,” Stuart + Mackintosh, MD of Open Source specialist and OpenERP + integration partner, OpusVL, explains. “The investment + required to have a fully automated business system is + dramatically reduced, enabling the small and medium + enterprise to compete at a level of functionality and + performance previously reserved for the big IT investors." +

    +
    +

    + "Finally, the leading edge is being brought to the masses. + It will now be the turn of the big players to catch up to + the superior technologies of the SME." +

    +
    +

    + "This is another clever and highly disruptive move by + OpenERP,which will force other technology providers to + take another look at the value they are providing to ensure + that their 'solutions' can still compete." +

    + "OpenERP now competes on many fronts, with no real + competition out there to knock them off the top spot. + With the launch of their integrated CMS and Ecommerce + systems,it only elevates their position as one of the leading + lights in the open source revolution. It will be at least 5 + years before another ERP or CMS provider will be able to + compete at this level due to the technology currently + employed by most industry providers." +

    +

    Adding to industry leading technology

    +

    + Like many modern website editors, with OpenERP you can edit + content in-line, enabling you to see exactly what you are + changing and ensure your changes suit the context. +

    + However, unlike other web content management systems, it + fully integrates into the back-end database. This means + that when you edit a product description, image or price, + it updates the product database in real time, providing a + true self-service window into the business. +

    + This provides a single source of data for your company and + removes the need to create offline synchronisation between + website and product database. +

    + As it comes, there is a default website based on Bootstrap + 3, the latest industry standard for rapid development of + multi-device websites backed by Twitter, so can be directly + integrated with many web tools and works across all devices + by default. +

    ]]> - - diff --git a/addons/website_blog/doc/blog_blog.rst b/addons/website_blog/doc/blog_blog.rst new file mode 100644 index 00000000000..8c5f80ab8e4 --- /dev/null +++ b/addons/website_blog/doc/blog_blog.rst @@ -0,0 +1,20 @@ +_blog_blog: + +blog.blog +========= +In ``blog.blog``, added field ``subtitle`` which Indicates the subtitle of blogs. + - ``subtitle``: fields.char('Blog Subtitle') + +mail.message +============ +In ``mail.message``, added field ``discussion`` which Indicates the unique identification +of paragraph on blog post. + - ``discussion``: fields.char('Discussion Unique Name') + +blog.post +========= +Fields +++++++ + - ``sub_title`` : contains the subtitle of every blog post. + - ``visits`` : Indicates the number of visits on evry blog post. + - ``ranking`` : Indicates the ranking on every blog post. diff --git a/addons/website_blog/doc/changelog.rst b/addons/website_blog/doc/changelog.rst index 8b6131b5806..42f2fd7e170 100644 --- a/addons/website_blog/doc/changelog.rst +++ b/addons/website_blog/doc/changelog.rst @@ -7,3 +7,29 @@ Changelog ---------------- - created ``website_blog`` menu, build on defunct document_page module. + - added new feature ``Inline Discussion`` , that will allow a user to comment + on every paragraph on blog post + - added new feature ``Select to Tweet``, that will alllow a user tweet a selected + text from blog to post , directly on twitter. + + + +WebsiteBlog(controller) +======================= +Methods ++++++++ + - ``blog`` : remove routing related to date. + - ``blog_post`` : updated with , suggestion of next post to the user based on + cookie and number of views. + - ``discussion`` : added method , contains a detail of discussion on every paragraph, + if count is true it only return len of ids else return full detail. + def discussion(self, post_id=0, discussion=None, count=False, **post) + - ``post_discussion`` : added methodt, that allow to post discussion on any paragraph. + def post_discussion(self, blog_post_id=0, **post) + - ``change_bg`` : added method allow a user to change background image on blog + post from front-end. + def change_bg(self, post_id=0, image=None, **post) + - ``get_user`` : added method , that will return True if user is public else False. + def get_user(self, **post): + return [False if request.session.uid else True] + diff --git a/addons/website_blog/doc/controller.rst b/addons/website_blog/doc/controller.rst new file mode 100644 index 00000000000..727368aab8c --- /dev/null +++ b/addons/website_blog/doc/controller.rst @@ -0,0 +1,21 @@ +.. _controller: + +WebsiteBlog(controller) +======================= +Methods ++++++++ + - ``blog`` : remove routing related to date. + - ``blog_post`` : updated with , suggestion of next post to the user based on + cookie and number of views. + - ``discussion`` : added method , contains a detail of discussion on every paragraph, + if count is true it only return len of ids else return full detail. + def discussion(self, post_id=0, discussion=None, count=False, **post) + - ``post_discussion`` : added methodt, that allow to post discussion on any paragraph. + def post_discussion(self, blog_post_id=0, **post) + - ``change_bg`` : added method allow a user to change background image on blog + post from front-end. + def change_bg(self, post_id=0, image=None, **post) + - ``get_user`` : added method , that will return True if user is public else False. + def get_user(self, **post): + return [False if request.session.uid else True] + diff --git a/addons/website_blog/models/__init__.py b/addons/website_blog/models/__init__.py index fb5368a71c5..083e1ef6660 100644 --- a/addons/website_blog/models/__init__.py +++ b/addons/website_blog/models/__init__.py @@ -1 +1,2 @@ +import mail_message import website_blog diff --git a/addons/website_blog/models/mail_message.py b/addons/website_blog/models/mail_message.py new file mode 100644 index 00000000000..e1b60f6ad20 --- /dev/null +++ b/addons/website_blog/models/mail_message.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- + +from openerp.osv import osv, fields + + +class MailMessage(osv.Model): + _inherit = 'mail.message' + + _columns = { + 'path': fields.char( + 'Discussion Path', select=1, + help='Used to display messages in a paragraph-based chatter using a unique path;'), + } diff --git a/addons/website_blog/models/website_blog.py b/addons/website_blog/models/website_blog.py index e132e4c5e15..031856fff10 100644 --- a/addons/website_blog/models/website_blog.py +++ b/addons/website_blog/models/website_blog.py @@ -1,32 +1,15 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-Today OpenERP SA (). -# -# 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 . -# -############################################################################## +from datetime import datetime +import difflib +import lxml +import random from openerp import tools from openerp import SUPERUSER_ID from openerp.osv import osv, fields from openerp.tools.translate import _ -import difflib - class Blog(osv.Model): _name = 'blog.blog' @@ -35,12 +18,9 @@ class Blog(osv.Model): _order = 'name' _columns = { - 'name': fields.char('Name', required=True), + 'name': fields.char('Blog Name', required=True), + 'subtitle': fields.char('Blog Subtitle'), 'description': fields.text('Description'), - 'blog_post_ids': fields.one2many( - 'blog.post', 'blog_id', - 'Blogs', - ), } @@ -52,9 +32,6 @@ class BlogTag(osv.Model): _columns = { 'name': fields.char('Name', required=True), - 'blog_post_ids': fields.many2many( - 'blog.post', string='Posts', - ), } @@ -62,37 +39,20 @@ class BlogPost(osv.Model): _name = "blog.post" _description = "Blog Post" _inherit = ['mail.thread', 'website.seo.metadata'] - _order = 'write_date DESC' - # maximum number of characters to display in summary - _shorten_max_char = 250 + _order = 'id DESC' - def get_shortened_content(self, cr, uid, ids, name, arg, context=None): + def _compute_ranking(self, cr, uid, ids, name, arg, context=None): res = {} - for page in self.browse(cr, uid, ids, context=context): - try: - body_short = tools.html_email_clean( - page.content, - remove=True, - shorten=True, - max_length=self._shorten_max_char, - expand_options={ - 'oe_expand_container_tag': 'div', - 'oe_expand_container_class': 'oe_mail_expand text-center', - 'oe_expand_container_content': '', - 'oe_expand_a_href': '/blogpost/%d' % page.id, - 'oe_expand_a_class': 'oe_mail_expand btn btn-info', - 'oe_expand_separator_node': 'br', - }, - protect_sections=True, - ) - except Exception: - body_short = False - res[page.id] = body_short + for blog_post in self.browse(cr, uid, ids, context=context): + age = datetime.now() - datetime.strptime(blog_post.create_date, tools.DEFAULT_SERVER_DATETIME_FORMAT) + res[blog_post.id] = blog_post.visits * (0.5+random.random()) / max(3, age.days) return res _columns = { 'name': fields.char('Title', required=True, translate=True), - 'content_image': fields.binary('Background Image'), + 'subtitle': fields.char('Sub Title', translate=True), + 'author_id': fields.many2one('res.partner', 'Author'), + 'background_image': fields.binary('Background Image'), 'blog_id': fields.many2one( 'blog.blog', 'Blog', required=True, ondelete='cascade', @@ -101,32 +61,22 @@ class BlogPost(osv.Model): 'blog.tag', string='Tags', ), 'content': fields.html('Content', translate=True), - 'shortened_content': fields.function( - get_shortened_content, - type='html', - string='Shortened Content', - help="Shortened content of the page that serves as a summary" - ), # website control 'website_published': fields.boolean( 'Publish', help="Publish on the website" ), - 'website_published_datetime': fields.datetime( - 'Publish Date' - ), - # TDE TODO FIXME: when website_mail/mail_thread.py inheritance work -> this field won't be necessary 'website_message_ids': fields.one2many( 'mail.message', 'res_id', domain=lambda self: [ - '&', ('model', '=', self._name), ('type', '=', 'comment') + '&', '&', ('model', '=', self._name), ('type', '=', 'comment'), ('path', '=', False) ], string='Website Messages', help="Website communication history", ), - # technical stuff: history, menu (to keep ?) 'history_ids': fields.one2many( 'blog.post.history', 'post_id', - 'History', help='Last post modifications' + 'History', help='Last post modifications', + deprecated='This field will be removed for OpenERP v9.' ), # creation / update stuff 'create_date': fields.datetime( @@ -145,11 +95,71 @@ class BlogPost(osv.Model): 'res.users', 'Last Contributor', select=True, readonly=True, ), + 'visits': fields.integer('No of Views'), + 'ranking': fields.function(_compute_ranking, string='Ranking', type='float'), } + _defaults = { - 'website_published': False + 'name': _('Blog Post Title'), + 'subtitle': _('Subtitle'), + 'author_id': lambda self, cr, uid, ctx=None: self.pool['res.users'].browse(cr, uid, uid, context=ctx).partner_id.id, } + def html_tag_nodes(self, html, attribute=None, tags=None, context=None): + """ Processing of html content to tag paragraphs and set them an unique + ID. + :return result: (html, mappin), where html is the updated html with ID + and mapping is a list of (old_ID, new_ID), where old_ID + is None is the paragraph is a new one. """ + mapping = [] + if not html: + return html, mapping + if tags is None: + tags = ['p'] + if attribute is None: + attribute = 'data-unique-id' + counter = 0 + + # form a tree + root = lxml.html.fragment_fromstring(html, create_parent='div') + if not len(root) and root.text is None and root.tail is None: + return html, mapping + + # check all nodes, replace : + # - img src -> check URL + # - a href -> check URL + for node in root.iter(): + if not node.tag in tags: + continue + ancestor_tags = [parent.tag for parent in node.iterancestors()] + if ancestor_tags: + ancestor_tags.pop() + ancestor_tags.append('counter_%s' % counter) + new_attribute = '/'.join(reversed(ancestor_tags)) + old_attribute = node.get(attribute) + node.set(attribute, new_attribute) + mapping.append((old_attribute, counter)) + counter += 1 + + html = lxml.html.tostring(root, pretty_print=False, method='html') + # this is ugly, but lxml/etree tostring want to put everything in a 'div' that breaks the editor -> remove that + if html.startswith('
    ') and html.endswith('
    '): + html = html[5:-6] + return html, mapping + + def _postproces_content(self, cr, uid, id, content=None, context=None): + if content is None: + content = self.browse(cr, uid, id, context=context).content + if content is False: + return content + content, mapping = self.html_tag_nodes(content, attribute='data-chatter-id', tags=['p'], context=context) + for old_attribute, new_attribute in mapping: + if not old_attribute: + continue + msg_ids = self.pool['mail.message'].search(cr, SUPERUSER_ID, [('path', '=', old_attribute)], context=context) + self.pool['mail.message'].write(cr, SUPERUSER_ID, msg_ids, {'path': new_attribute}, context=context) + return content + def create_history(self, cr, uid, ids, vals, context=None): for i in ids: history = self.pool.get('blog.post.history') @@ -163,12 +173,16 @@ class BlogPost(osv.Model): def create(self, cr, uid, vals, context=None): if context is None: context = {} + if 'content' in vals: + vals['content'] = self._postproces_content(cr, uid, None, vals['content'], context=context) create_context = dict(context, mail_create_nolog=True) post_id = super(BlogPost, self).create(cr, uid, vals, context=create_context) self.create_history(cr, uid, [post_id], vals, context) return post_id def write(self, cr, uid, ids, vals, context=None): + if 'content' in vals: + vals['content'] = self._postproces_content(cr, uid, None, vals['content'], context=context) result = super(BlogPost, self).write(cr, uid, ids, vals, context) self.create_history(cr, uid, ids, vals, context) return result @@ -183,10 +197,6 @@ class BlogPost(osv.Model): }) return super(BlogPost, self).copy(cr, uid, id, default=default, context=context) - def img(self, cr, uid, ids, field='image_small', context=None): - post = self.browse(cr, SUPERUSER_ID, ids[0], context=context) - return "/website/image?model=%s&field=%s&id=%s" % ('res.users', field, post.create_uid.id) - class BlogPostHistory(osv.Model): _name = "blog.post.history" @@ -215,5 +225,3 @@ class BlogPostHistory(osv.Model): raise osv.except_osv(_('Warning!'), _('There are no changes in revisions.')) diff = difflib.HtmlDiff() return diff.make_table(line1, line2, "Revision-%s" % (v1), "Revision-%s" % (v2), context=True) - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/website_blog/static/description/index.html b/addons/website_blog/static/description/index.html index 3f44eea9b4d..171fe942843 100644 --- a/addons/website_blog/static/description/index.html +++ b/addons/website_blog/static/description/index.html @@ -1,21 +1,18 @@
    -

    Awesome Open Source Blogging Plateform

    +

    Awesome Open Source Blogging Platform

    Write, Design, Promote, Engage

    - - - - +

    Express yourself with the OpenERP enterprise grade blogging - plateform. Write beautiful blog posts, engage with visitors, + platform. Write beautiful blog posts, engage with visitors, translate content and moderate social streams.

    Get your blog posts efficiently referenced in Google and diff --git a/addons/website_blog/static/lib/contentshare.js b/addons/website_blog/static/lib/contentshare.js new file mode 100644 index 00000000000..9bfda158703 --- /dev/null +++ b/addons/website_blog/static/lib/contentshare.js @@ -0,0 +1,63 @@ +(function(){ + $.fn.share = function(options) { + var option = $.extend($.fn.share.defaults,options); + $.extend($.fn.share,{ + init : function(shareable) { + var self = this; + $.fn.share.defaults.shareable = shareable; + $.fn.share.defaults.shareable.on('mouseup',function(){ + self.popOver(); + }); + $.fn.share.defaults.shareable.on('mousedown',function(){ + self.destroy(); + }); + }, + getContent : function() { + var current_url = window.location.href + var selected_text = this.getSelection('string').substring(0,option.maxLength-(current_url.length+option.author_name.length+7)); + var text = encodeURIComponent('\"'+selected_text+'\" '+'--@'+option.author_name+' '+current_url) + return ''; + }, + getSelection : function(share) { + if(window.getSelection){ + return (share=='string')?String(window.getSelection().getRangeAt(0)).replace(/\s{2,}/g, ' '):window.getSelection().getRangeAt(0); + } + else if(document.selection){ + return (share=='string')?document.selection.createRange().text.replace(/\s{2,}/g, ' '):document.selection.createRange(); + } + }, + popOver : function() { + this.destroy(); + if(this.getSelection('string').length < option.minLength) + return; + var data = this.getContent(); + var range = this.getSelection(); + var newNode = document.createElement("mark"); + range.surroundContents(newNode); + $('mark').addClass(option.className); + $('.'+option.className).popover({trigger:'manual', placement: option.placement, html: true + , content:function(){ + return data; + } + }); + $('.'+option.className).popover('show'); + }, + destroy : function(){ + $('.'+option.className).popover('hide'); + $('mark').contents().unwrap(); + $('mark').remove(); + } + }); + $.fn.share.init(this); + }; + + $.fn.share.defaults = { + shareLink : "http://twitter.com/intent/tweet?text=", + minLength : 5, + maxLength : 140, + target : "blank", + className : "share", + placement : "top", + }; + +}()); diff --git a/addons/website_blog/static/src/css/website_blog.css b/addons/website_blog/static/src/css/website_blog.css index f7355ce783d..9097e3af31f 100644 --- a/addons/website_blog/static/src/css/website_blog.css +++ b/addons/website_blog/static/src/css/website_blog.css @@ -9,6 +9,12 @@ display: block; } +.read_width { + max-width: 700px; + margin-left: auto; + margin-right: auto; +} + .blog_content a.oe_mail_expand:after { content: " →"; } @@ -20,3 +26,127 @@ p.post-meta { position: relative; top: -5px; } + +div#blog_angle_down a:hover { + text-decoration: none; +} + +.cover { + -webkit-background-size: cover; + -moz-background-size: cover; + -o-background-size: cover; + background-size: cover; + background-position: center; + background-repeat: no-repeat; + background-color: black; + color: white; + position: relative; +} +.cover .blog_title { + position: absolute; + text-align: center; + top: 20%; + left: 0; + right: 0; +} +.cover .blog_title h1 { + font-weight: bold; +} + +.cover_footer { + min-height: 350px; + height: 65vh; + cursor: pointer; +} + +/*Inline Discussion */ +.discussion { + padding: 5px 10px 10px; + position: absolute; + top: 0; + left: 0; + line-height: 16px; + font-size: 13px; + font-weight: bold; + font-family: sans-serif; + text-align: center; + z-index: 7; +} +.discussion > a { + opacity: 0; + display: block; + overflow: hidden; + width: 20px; + height: 17px; + color: white; + text-decoration: none; + cursor: pointer; + background: #bbbbbb; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + -webkit-transition: all 0.5s; + -moz-transition: all 0.5s; + -o-transition: all 0.5s; + transition: all 0.5s; +} +.discussion > a.has-comments { + opacity: 0.6; +} + +.discussion-contain:hover .discussion > a { + opacity: 1; +} + +.discussion > a:after { + border-right: 7px solid transparent; + border-top: 7px solid #bbbbbb; + right: 19px; + top: 22px; + height: 0; + width: 0; + display: block; + content: " "; + position: absolute; + -webkit-transition: all 0.5s; + -moz-transition: all 0.5s; + -o-transition: all 0.5s; + transition: all 0.5s; +} +.discussion:hover > a, .discussion.hovered > a { + opacity: 1; + background: #57ad68; +} +.discussion:hover > a:after, .discussion.hovered > a:after { + border-top-color: #57ad68; +} + +#discussions_wrapper { + position: absolute; + top: 0; + left: 0; +} + +#discussions_overlay { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: rgba(0, 0, 0, 0.5); + z-index: 8; + display: none; +} + +.discussion .popover-content { + max-height: 250px; + width: 250px; + overflow: auto; + font-weight: normal; +} + +mark + .popover { + cursor: pointer; +} diff --git a/addons/website_blog/static/src/css/website_blog.sass b/addons/website_blog/static/src/css/website_blog.sass index 4691dde83c2..6342c6b99a2 100644 --- a/addons/website_blog/static/src/css/website_blog.sass +++ b/addons/website_blog/static/src/css/website_blog.sass @@ -1,5 +1,4 @@ @charset "utf-8" - @import "compass/css3" .css_website_mail @@ -10,6 +9,11 @@ &:first-of-type display: block +.read_width + max-width: 700px + margin-left: auto + margin-right: auto + .blog_content a.oe_mail_expand:after content: " →" @@ -20,3 +24,113 @@ p.post-meta position: relative top: -5px +div#blog_angle_down + a:hover + text-decoration: none + +.cover + -webkit-background-size: cover + -moz-background-size: cover + -o-background-size: cover + background-size: cover + background-position: center + background-repeat: no-repeat + background-color: #000 + color: #fff + position: relative + .blog_title + position: absolute + text-align: center + top: 20% + left: 0 + right: 0 + h1 + font-weight: bold + +.cover_footer + min-height : 350px + height: 65vh + cursor: pointer + +/*Inline Discussion + +.discussion + padding: 5px 10px 10px + position: absolute + top: 0 + left: 0 + line-height: 16px + font-size: 13px + font-weight: bold + font-family: sans-serif + text-align: center + z-index: 7 + > a + opacity: 0 + display: block + overflow: hidden + width: 20px + height: 17px + color: white + text-decoration: none + cursor: pointer + background: #bbbbbb + -webkit-border-radius: 2px + -moz-border-radius: 2px + -ms-border-radius: 2px + -o-border-radius: 2px + border-radius: 2px + -webkit-transition: all 0.5s + -moz-transition: all 0.5s + -o-transition: all 0.5s + transition: all 0.5s + &.has-comments + opacity: .6 + +.discussion-contain:hover .discussion > a + opacity: 1 + +.discussion + > a:after + border-right: 7px solid transparent + border-top: 7px solid #bbbbbb + right: 19px + top: 22px + height: 0 + width: 0 + display: block + content: " " + position: absolute + -webkit-transition: all 0.5s + -moz-transition: all 0.5s + -o-transition: all 0.5s + transition: all 0.5s + &:hover > a, &.hovered > a + opacity: 1 + background: #57AD68 + &:hover > a:after, &.hovered > a:after + border-top-color: #57AD68 + +#discussions_wrapper + position: absolute + top: 0 + left: 0 + +#discussions_overlay + position: fixed + top: 0 + left: 0 + right: 0 + bottom: 0 + background: rgba(0, 0, 0, 0.5) + z-index: 8 + display: none + +.discussion .popover-content + max-height: 250px + width: 250px + overflow: auto + font-weight: normal + +mark + .popover + cursor: pointer diff --git a/addons/website_blog/static/src/img/CMS_WMS_screens.jpg b/addons/website_blog/static/src/img/CMS_WMS_screens.jpg new file mode 100644 index 00000000000..08fc4aafc41 Binary files /dev/null and b/addons/website_blog/static/src/img/CMS_WMS_screens.jpg differ diff --git a/addons/website_blog/static/src/img/anonymous.png b/addons/website_blog/static/src/img/anonymous.png new file mode 100644 index 00000000000..6461bf735f1 Binary files /dev/null and b/addons/website_blog/static/src/img/anonymous.png differ diff --git a/addons/website_blog/static/src/img/mail-sc-00.png b/addons/website_blog/static/src/img/mail-sc-00.png new file mode 100644 index 00000000000..dbb14b4da36 Binary files /dev/null and b/addons/website_blog/static/src/img/mail-sc-00.png differ diff --git a/addons/website_blog/static/src/img/mail-sc-03.png b/addons/website_blog/static/src/img/mail-sc-03.png new file mode 100644 index 00000000000..3011ef129b5 Binary files /dev/null and b/addons/website_blog/static/src/img/mail-sc-03.png differ diff --git a/addons/website_blog/static/src/img/post1.jpg b/addons/website_blog/static/src/img/post1.jpg new file mode 100644 index 00000000000..f3e3aa852a6 Binary files /dev/null and b/addons/website_blog/static/src/img/post1.jpg differ diff --git a/addons/website_blog/static/src/img/post2.jpg b/addons/website_blog/static/src/img/post2.jpg new file mode 100644 index 00000000000..8f6002a40db Binary files /dev/null and b/addons/website_blog/static/src/img/post2.jpg differ diff --git a/addons/website_blog/static/src/js/website.tour.blog.js b/addons/website_blog/static/src/js/website.tour.blog.js index e76e793dfda..3470e2e383b 100644 --- a/addons/website_blog/static/src/js/website.tour.blog.js +++ b/addons/website_blog/static/src/js/website.tour.blog.js @@ -65,7 +65,7 @@ popover: { fixed: true }, }, { - snippet: 'image-text', + snippet: '#snippet_structure .oe_snippet:eq(2)', placement: 'bottom', title: _t("Drag & Drop a Block"), content: _t("Drag this block and drop it in your page."), @@ -79,7 +79,7 @@ popover: { fixed: true }, }, { - snippet: 'text-block', + snippet: '#snippet_structure .oe_snippet:eq(4)', placement: 'bottom', title: _t("Drag & Drop a block"), content: _t("Drag this block and drop it below the image block."), diff --git a/addons/website_blog/static/src/js/website_blog.editor.js b/addons/website_blog/static/src/js/website_blog.editor.js index 1c5deef56f7..103b2bee1e7 100644 --- a/addons/website_blog/static/src/js/website_blog.editor.js +++ b/addons/website_blog/static/src/js/website_blog.editor.js @@ -27,7 +27,38 @@ }).then(function (cat_id) { document.location = '/blogpost/new?blog_id=' + cat_id; }); - } + }, }), + edit: function () { + $('.popover').remove(); + this._super(); + var vHeight = $(window).height(); + $('body').on('click','#change_cover',_.bind(this.change_bg,{},vHeight)); + $('body').on('click', '#clear_cover',_.bind(this.clean_bg,{},vHeight)); + }, + save : function() { + var res = this._super(); + if ($('.cover').length) { + openerp.jsonRpc("/blogpost/change_background", 'call', { + 'post_id' : $('#blog_post_name').attr('data-oe-id'), + 'image' : $('.cover').css('background-image').replace(/url\(|\)|"|'/g,''), + }); + } + return res; + }, + clean_bg : function(vHeight) { + $('.js_fullheight').css({"background-image":'none', 'min-height': vHeight}); + }, + change_bg : function(vHeight) { + var self = this; + var editor = new website.editor.ImageDialog(); + editor.on('start', self, function (o) { + o.url = $('.js_fullheight').length ? $('.js_fullheight').css('background-image').replace(/url\(|\)|"|'/g,'') : ''; + }); + editor.on('save', self, function (o) { + $('.js_fullheight').css({"background-image": o.url && o.url !== "" ? 'url(' + o.url + ')' : "", 'min-height': vHeight}) + }); + editor.appendTo('body'); + }, }); })(); diff --git a/addons/website_blog/static/src/js/website_blog.inline.discussion.js b/addons/website_blog/static/src/js/website_blog.inline.discussion.js new file mode 100644 index 00000000000..56851c3939c --- /dev/null +++ b/addons/website_blog/static/src/js/website_blog.inline.discussion.js @@ -0,0 +1,199 @@ +// Inspired from https://github.com/tsi/inlineDisqussions +(function () { + + 'use strict'; + + var website = openerp.website, + qweb = openerp.qweb; + website.add_template_file('/website_blog/static/src/xml/website_blog.inline.discussion.xml'); + website.blog_discussion = openerp.Class.extend({ + init: function(options) { + var self = this ; + self.discus_identifier; + var defaults = { + position: 'right', + post_id: $('#blog_post_name').attr('data-blog-id'), + content : false, + public_user: false, + }; + self.settings = $.extend({}, defaults, options); + self.do_render(self); + }, + do_render: function(data) { + var self = this; + if ($('#discussions_wrapper').length === 0 && self.settings.content.length > 0) { + $('

    ').insertAfter($('#blog_content')); + } + // Attach a discussion to each paragraph. + $(self.settings.content).each(function(i) { + self.discussion_handler(i, $(this)); + }); + // Hide the discussion. + $('html').click(function(event) { + if($(event.target).parents('#discussions_wrapper, .main-discussion-link-wrp').length === 0) { + self.hide_discussion(); + } + if(!$(event.target).hasClass('discussion-link') && !$(event.target).parents('.popover').length){ + if($('.move_discuss').length){ + $('[enable_chatter_discuss=True]').removeClass('move_discuss'); + $('[enable_chatter_discuss=True]').animate({ + 'marginLeft': "+=40%" + }); + $('#discussions_wrapper').animate({ + 'marginLeft': "+=250px" + }); + } + } + }); + }, + prepare_data : function(identifier, comment_count) { + var self = this; + return openerp.jsonRpc("/blogpost/get_discussion/", 'call', { + 'post_id': self.settings.post_id, + 'path': identifier, + 'count': comment_count, //if true only get length of total comment, display on discussion thread. + }) + }, + discussion_handler : function(i, node) { + var self = this; + var identifier = node.attr('data-chatter-id'); + if (identifier) { + self.prepare_data(identifier, true).then( function (data) { + self.prepare_discuss_link(data, identifier, node); + }); + } + }, + prepare_discuss_link : function(data, identifier, node) { + var self = this; + var cls = data > 0 ? 'discussion-link has-comments' : 'discussion-link'; + var a = $('') + .attr('data-discus-identifier', identifier) + .attr('data-discus-position', self.settings.position) + .text(data > 0 ? data : '+') + .attr('data-contentwrapper', '.mycontent') + .wrap('
    ') + .parent() + .appendTo('#discussions_wrapper'); + a.css({ + 'top': node.offset().top, + 'left': self.settings.position == 'right' ? node.outerWidth() + node.offset().left: node.offset().left - a.outerWidth() + }); + // node.attr('data-discus-identifier', identifier) + node.mouseover(function() { + a.addClass("hovered"); + }).mouseout(function() { + a.removeClass("hovered"); + }); + + a.delegate('a.discussion-link', "click", function(e) { + e.preventDefault(); + if(!$('.move_discuss').length){ + $('[enable_chatter_discuss=True]').addClass('move_discuss'); + $('[enable_chatter_discuss=True]').animate({ + 'marginLeft': "-=40%" + }); + $('#discussions_wrapper').animate({ + 'marginLeft': "-=250px" + }); + } + if ($(this).is('.active')) { + e.stopPropagation(); + self.hide_discussion(); + } + else { + self.get_discussion($(this), function(source) {}); + } + }); + }, + get_discussion : function(source, callback) { + var self = this; + var identifier = source.attr('data-discus-identifier'); + self.hide_discussion(); + self.discus_identifier = identifier; + var elt = $('a[data-discus-identifier="'+identifier+'"]'); + elt.append(qweb.render("website.blog_discussion.popover", {'identifier': identifier , 'options': self.settings})); + var comment = ''; + self.prepare_data(identifier,false).then(function(data){ + _.each(data, function(res){ + comment += qweb.render("website.blog_discussion.comment", {'res': res}); + }); + $('.discussion_history').html('
      '+comment+'
    '); + self.create_popover(elt, identifier); + // Add 'active' class. + $('a.discussion-link, a.main-discussion-link').removeClass('active').filter(source).addClass('active'); + elt.popover('hide').filter(source).popover('show'); + callback(source); + }); + }, + create_popover : function(elt, identifier) { + var self = this; + elt.popover({ + placement:'right', + trigger:'manual', + html:true, content:function(){ + return $($(this).data('contentwrapper')).html(); + } + }).parent().delegate(self).on('click','button#comment_post',function(e) { + e.stopImmediatePropagation(); + self.post_discussion(identifier); + }); + }, + validate : function(public_user){ + var comment = $(".popover textarea#inline_comment").val(); + if (public_user){ + var author_name = $('.popover input#author_name').val(); + var author_email = $('.popover input#author_email').val(); + if(!comment || !author_name || !author_email){ + if (!author_name) + $('div#author_name').addClass('has-error'); + else + $('div#author_name').removeClass('has-error'); + if (!author_email) + $('div#author_email').addClass('has-error'); + else + $('div#author_email').removeClass('has-error'); + if(!comment) + $('div#inline_comment').addClass('has-error'); + else + $('div#inline_comment').removeClass('has-error'); + return false + } + } + else if(!comment) { + $('div#inline_comment').addClass('has-error'); + return false + } + $("div#inline_comment").removeClass('has-error'); + $('div#author_name').removeClass('has-error'); + $('div#author_email').removeClass('has-error'); + $(".popover textarea#inline_comment").val(''); + $('.popover input#author_name').val(''); + $('.popover input#author_email').val(''); + return [comment, author_name, author_email] + }, + post_discussion : function(identifier) { + var self = this; + var val = self.validate(self.settings.public_user) + if(!val) return + openerp.jsonRpc("/blogpost/post_discussion", 'call', { + 'blog_post_id': self.settings.post_id, + 'path': self.discus_identifier, + 'comment': val[0], + 'name' : val[1], + 'email': val[2], + }).then(function(res){ + $(".popover ul.media-list").prepend(qweb.render("website.blog_discussion.comment", {'res': res[0]})) + var ele = $('a[data-discus-identifier="'+ self.discus_identifier +'"]'); + ele.text(_.isNaN(parseInt(ele.text())) ? 1 : parseInt(ele.text())+1) + ele.addClass('has-comments'); + }); + }, + hide_discussion : function() { + var self = this; + $('a[data-discus-identifier="'+ self.discus_identifier+'"]').popover('destroy'); + $('a.discussion-link').removeClass('active'); + } + + }); + +})(); diff --git a/addons/website_blog/static/src/js/website_blog.js b/addons/website_blog/static/src/js/website_blog.js new file mode 100644 index 00000000000..3217bf1a04d --- /dev/null +++ b/addons/website_blog/static/src/js/website_blog.js @@ -0,0 +1,40 @@ +$(document).ready(function() { + + function page_transist(event) { + event.preventDefault(); + newLocation = $('.js_next')[0].href; + var top = $('.cover_footer').offset().top; + $('.cover_footer').animate({ + height: $(window).height()+'px' + }, 300); + $('html, body').animate({ + scrollTop: top + }, 300, 'swing', function() { + window.location.href = newLocation; + }); + } + function animate(event) { + event.preventDefault(); + event.stopImmediatePropagation(); + var target = $(this.hash); + $('html, body').stop().animate({ + 'scrollTop': target.offset().top - 32 + }, 500, 'swing', function () { + window.location.hash = 'blog_content'; + }); + } + + var content = $("div[enable_chatter_discuss='True']").find('p[data-chatter-id]'); + if (content) { + openerp.jsonRpc("/blog/get_user/", 'call', {}).then(function(data){ + $('#discussions_wrapper').empty(); + new openerp.website.blog_discussion({'content' : content, 'public_user':data[0]}); + }); + } + + $('.js_fullheight').css('min-height', $(window).height()); + $(".js_tweet").share({'author_name':$('#blog_author').text()}); + $('.cover_footer').on('click',page_transist); + $('a[href^="#blog_content"]').on('click', animate); + +}); diff --git a/addons/website_blog/static/src/xml/website_blog.inline.discussion.xml b/addons/website_blog/static/src/xml/website_blog.inline.discussion.xml new file mode 100644 index 00000000000..8c1cda26265 --- /dev/null +++ b/addons/website_blog/static/src/xml/website_blog.inline.discussion.xml @@ -0,0 +1,38 @@ + + + +
  • +
    + +
    +
    + + +
    +
    +
    + + by + + +
    +
  • +
    + +
    -
    - -
    : % for attendee in object.event_id.attendee_ids: -
    +
    % if attendee.cn != object.cn: ${attendee.cn} % else: diff --git a/addons/calendar/i18n/af.po b/addons/calendar/i18n/af.po index 43ba962c78b..09f8de39bf5 100644 --- a/addons/calendar/i18n/af.po +++ b/addons/calendar/i18n/af.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/ar.po b/addons/calendar/i18n/ar.po index 7e8a5628cc0..506b0c679c4 100644 --- a/addons/calendar/i18n/ar.po +++ b/addons/calendar/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/bg.po b/addons/calendar/i18n/bg.po index 7b93fe5398d..cb560ffb956 100644 --- a/addons/calendar/i18n/bg.po +++ b/addons/calendar/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/bn.po b/addons/calendar/i18n/bn.po index 76b2459e1b4..dabc06dde15 100644 --- a/addons/calendar/i18n/bn.po +++ b/addons/calendar/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/bs.po b/addons/calendar/i18n/bs.po index a58741606ff..9ff4a4c7c31 100644 --- a/addons/calendar/i18n/bs.po +++ b/addons/calendar/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" "X-Poedit-Country: BOSNIA AND HERZEGOVINA\n" "Language: hr\n" "X-Poedit-Language: Bosnian\n" diff --git a/addons/calendar/i18n/ca.po b/addons/calendar/i18n/ca.po index 3d6db3594cd..1fac572b3a9 100644 --- a/addons/calendar/i18n/ca.po +++ b/addons/calendar/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/cs.po b/addons/calendar/i18n/cs.po index 5ffe362d7cf..10ff66fd832 100644 --- a/addons/calendar/i18n/cs.po +++ b/addons/calendar/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/da.po b/addons/calendar/i18n/da.po index 02a65706c0e..36ff77710d5 100644 --- a/addons/calendar/i18n/da.po +++ b/addons/calendar/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/de.po b/addons/calendar/i18n/de.po index 16ea3c330b5..23127d662c4 100644 --- a/addons/calendar/i18n/de.po +++ b/addons/calendar/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/el.po b/addons/calendar/i18n/el.po index d0d76fd89e7..69576141d61 100644 --- a/addons/calendar/i18n/el.po +++ b/addons/calendar/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/es.po b/addons/calendar/i18n/es.po index 495d70c69d1..94718327071 100644 --- a/addons/calendar/i18n/es.po +++ b/addons/calendar/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/es_CR.po b/addons/calendar/i18n/es_CR.po index 100e59d133a..ce30394cf5a 100644 --- a/addons/calendar/i18n/es_CR.po +++ b/addons/calendar/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:40+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: base_calendar diff --git a/addons/calendar/i18n/es_EC.po b/addons/calendar/i18n/es_EC.po index 7ebfbd099c1..ba6cb80de7d 100644 --- a/addons/calendar/i18n/es_EC.po +++ b/addons/calendar/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:40+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/es_MX.po b/addons/calendar/i18n/es_MX.po index 45114cbb100..9c5b8a8b2a8 100644 --- a/addons/calendar/i18n/es_MX.po +++ b/addons/calendar/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:40+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/es_PY.po b/addons/calendar/i18n/es_PY.po index ba45465117d..f61a34529e3 100644 --- a/addons/calendar/i18n/es_PY.po +++ b/addons/calendar/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:40+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/et.po b/addons/calendar/i18n/et.po index 53ede219a6d..61a6e4aef46 100644 --- a/addons/calendar/i18n/et.po +++ b/addons/calendar/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/fa.po b/addons/calendar/i18n/fa.po index a9349d172fe..3bb6a77e644 100644 --- a/addons/calendar/i18n/fa.po +++ b/addons/calendar/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/fi.po b/addons/calendar/i18n/fi.po index 777488c9143..86dcfc7f201 100644 --- a/addons/calendar/i18n/fi.po +++ b/addons/calendar/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/fr.po b/addons/calendar/i18n/fr.po index 30baf7bbddd..6ed5915ad52 100644 --- a/addons/calendar/i18n/fr.po +++ b/addons/calendar/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/gl.po b/addons/calendar/i18n/gl.po index 117e1599790..09a06663752 100644 --- a/addons/calendar/i18n/gl.po +++ b/addons/calendar/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/he.po b/addons/calendar/i18n/he.po index dadd50ec3fd..a807ddbb467 100644 --- a/addons/calendar/i18n/he.po +++ b/addons/calendar/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/hr.po b/addons/calendar/i18n/hr.po index 719e3faafa6..f6b7474d6e8 100644 --- a/addons/calendar/i18n/hr.po +++ b/addons/calendar/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/hu.po b/addons/calendar/i18n/hu.po index ca2e9494db8..8fb8bdf6799 100644 --- a/addons/calendar/i18n/hu.po +++ b/addons/calendar/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/id.po b/addons/calendar/i18n/id.po index 2863602e0e2..483a5294b3a 100644 --- a/addons/calendar/i18n/id.po +++ b/addons/calendar/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/it.po b/addons/calendar/i18n/it.po index 844d595e062..7b025120b0b 100644 --- a/addons/calendar/i18n/it.po +++ b/addons/calendar/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/ja.po b/addons/calendar/i18n/ja.po index 067d8780458..a3a91ee5258 100644 --- a/addons/calendar/i18n/ja.po +++ b/addons/calendar/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/ln.po b/addons/calendar/i18n/ln.po index 5965cea880d..809c38dea11 100644 --- a/addons/calendar/i18n/ln.po +++ b/addons/calendar/i18n/ln.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/lt.po b/addons/calendar/i18n/lt.po index 0985dc88a32..1d6fe73e4f3 100644 --- a/addons/calendar/i18n/lt.po +++ b/addons/calendar/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/lv.po b/addons/calendar/i18n/lv.po index dac4fda2121..c427c668014 100644 --- a/addons/calendar/i18n/lv.po +++ b/addons/calendar/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/mk.po b/addons/calendar/i18n/mk.po index 947c53492e7..1271abddfd1 100644 --- a/addons/calendar/i18n/mk.po +++ b/addons/calendar/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/mn.po b/addons/calendar/i18n/mn.po index f0c72b89701..f4515f807ba 100644 --- a/addons/calendar/i18n/mn.po +++ b/addons/calendar/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/nb.po b/addons/calendar/i18n/nb.po index 2929e887448..924e4806c5c 100644 --- a/addons/calendar/i18n/nb.po +++ b/addons/calendar/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/nl.po b/addons/calendar/i18n/nl.po index 19891cb57f6..e6b37938a8e 100644 --- a/addons/calendar/i18n/nl.po +++ b/addons/calendar/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/pl.po b/addons/calendar/i18n/pl.po index 4628e7a7b21..9dceddf95d8 100644 --- a/addons/calendar/i18n/pl.po +++ b/addons/calendar/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/pt.po b/addons/calendar/i18n/pt.po index cf3cfef4de7..50f5e179ca6 100644 --- a/addons/calendar/i18n/pt.po +++ b/addons/calendar/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/pt_BR.po b/addons/calendar/i18n/pt_BR.po index a6dcf68b8d6..e9c3782c412 100644 --- a/addons/calendar/i18n/pt_BR.po +++ b/addons/calendar/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:40+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/ro.po b/addons/calendar/i18n/ro.po index b68561e63aa..3855e83a912 100644 --- a/addons/calendar/i18n/ro.po +++ b/addons/calendar/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/ru.po b/addons/calendar/i18n/ru.po index 8f229e2fb01..70feb59edac 100644 --- a/addons/calendar/i18n/ru.po +++ b/addons/calendar/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/sk.po b/addons/calendar/i18n/sk.po index 497f91d2629..44c03e3c308 100644 --- a/addons/calendar/i18n/sk.po +++ b/addons/calendar/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/sl.po b/addons/calendar/i18n/sl.po index 9abd04c6f19..6340de06502 100644 --- a/addons/calendar/i18n/sl.po +++ b/addons/calendar/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/sq.po b/addons/calendar/i18n/sq.po index e2081535915..ccc0edbdb45 100644 --- a/addons/calendar/i18n/sq.po +++ b/addons/calendar/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:20+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/sr.po b/addons/calendar/i18n/sr.po index 3916ab39a37..9cfad9d1361 100644 --- a/addons/calendar/i18n/sr.po +++ b/addons/calendar/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/sr@latin.po b/addons/calendar/i18n/sr@latin.po index b6028569d9a..6b248ca1c3d 100644 --- a/addons/calendar/i18n/sr@latin.po +++ b/addons/calendar/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:40+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/sv.po b/addons/calendar/i18n/sv.po index 9fe846dbabe..f1d39e3c74e 100644 --- a/addons/calendar/i18n/sv.po +++ b/addons/calendar/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/th.po b/addons/calendar/i18n/th.po index 0c44e964348..4cea7a6c9b6 100644 --- a/addons/calendar/i18n/th.po +++ b/addons/calendar/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:39+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/tr.po b/addons/calendar/i18n/tr.po index b3a594b3a69..031b8bda8f9 100644 --- a/addons/calendar/i18n/tr.po +++ b/addons/calendar/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:40+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/vi.po b/addons/calendar/i18n/vi.po index 80e247df4c0..1f14bd41198 100644 --- a/addons/calendar/i18n/vi.po +++ b/addons/calendar/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:40+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/zh_CN.po b/addons/calendar/i18n/zh_CN.po index be9fc8b25be..5501518dc96 100644 --- a/addons/calendar/i18n/zh_CN.po +++ b/addons/calendar/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:40+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/i18n/zh_TW.po b/addons/calendar/i18n/zh_TW.po index abdf7b63a51..a1ef16e8f5f 100644 --- a/addons/calendar/i18n/zh_TW.po +++ b/addons/calendar/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:40+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:21+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/calendar/security/calendar_security.xml b/addons/calendar/security/calendar_security.xml deleted file mode 100644 index 7c4363d21fc..00000000000 --- a/addons/calendar/security/calendar_security.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - Survey / User - - - - diff --git a/addons/calendar/security/ir.model.access.csv b/addons/calendar/security/ir.model.access.csv index caa7f0c6970..4da2e1a1cc6 100644 --- a/addons/calendar/security/ir.model.access.csv +++ b/addons/calendar/security/ir.model.access.csv @@ -1,7 +1,6 @@ id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink access_calendar_attendee,calendar.attendee,model_calendar_attendee,,1,1,1,1 access_calendar_alarm,calendar.alarm,model_calendar_alarm,base.group_user,1,1,1,1 -access_calendar_attendee_survey_user,calendar.attendee,model_calendar_attendee,base.group_survey_user,1,0,0,0 access_calendar_event_manager,calendar.event.manager,model_calendar_event,base.group_sale_manager,1,1,1,1 access_calendar_event,calendar.event,model_calendar_event,base.group_sale_salesman,1,1,1,0 access_calendar_event_all,calendar.event_all,model_calendar_event,base.group_user,1,1,1,1 diff --git a/addons/calendar/test/calendar_test.yml b/addons/calendar/test/calendar_test.yml index 1454a635a4f..44290d8166f 100644 --- a/addons/calendar/test/calendar_test.yml +++ b/addons/calendar/test/calendar_test.yml @@ -65,3 +65,20 @@ - !python {model: calendar.event}: | self.write(cr, uid, [ref("calendar_event_alldaytestevent0")], {'alarm_ids': [(6,0,[ref("res_alarm_daybeforeeventstarts0")])]}) +- + I create a recuring rule for my event +- + !record {model: calendar.event, id: calendar.event_sprintreview1}: + name: Begin of month meeting + date: !eval time.strftime('%Y-%m-%d 12:00:00') + recurrency: true + rrule: FREQ=MONTHLY;INTERVAL=1;COUNT=12;BYDAY=1MO +- + I check that the attributes are set correctly +- + !assert {model: calendar.event, id: calendar.event_sprintreview1}: + - rrule_type == 'monthly' + - count == 12 + - month_by == 'day' + - byday == '1' + - week_list == 'MO' diff --git a/addons/claim_from_delivery/i18n/ar.po b/addons/claim_from_delivery/i18n/ar.po index 0c15e2fad30..243d94f74e2 100644 --- a/addons/claim_from_delivery/i18n/ar.po +++ b/addons/claim_from_delivery/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/bg.po b/addons/claim_from_delivery/i18n/bg.po index 7282224ec77..428cc99747d 100644 --- a/addons/claim_from_delivery/i18n/bg.po +++ b/addons/claim_from_delivery/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/bs.po b/addons/claim_from_delivery/i18n/bs.po index bf6e30fe22d..d1e4da9e1cb 100644 --- a/addons/claim_from_delivery/i18n/bs.po +++ b/addons/claim_from_delivery/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ca.po b/addons/claim_from_delivery/i18n/ca.po index 1c3ed29bdff..33fb4126862 100644 --- a/addons/claim_from_delivery/i18n/ca.po +++ b/addons/claim_from_delivery/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/cs.po b/addons/claim_from_delivery/i18n/cs.po index 0a3a9c7b250..622a861fdc6 100644 --- a/addons/claim_from_delivery/i18n/cs.po +++ b/addons/claim_from_delivery/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/da.po b/addons/claim_from_delivery/i18n/da.po index d75e768f822..bde562b6c28 100644 --- a/addons/claim_from_delivery/i18n/da.po +++ b/addons/claim_from_delivery/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/de.po b/addons/claim_from_delivery/i18n/de.po index 503b113165c..67830b35088 100644 --- a/addons/claim_from_delivery/i18n/de.po +++ b/addons/claim_from_delivery/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/en_GB.po b/addons/claim_from_delivery/i18n/en_GB.po index 03a90d01c5d..9b63c753d10 100644 --- a/addons/claim_from_delivery/i18n/en_GB.po +++ b/addons/claim_from_delivery/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es.po b/addons/claim_from_delivery/i18n/es.po index 6f2be8c64a8..544aa12d1bc 100644 --- a/addons/claim_from_delivery/i18n/es.po +++ b/addons/claim_from_delivery/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_AR.po b/addons/claim_from_delivery/i18n/es_AR.po index 04809d99527..371fe93fdd9 100644 --- a/addons/claim_from_delivery/i18n/es_AR.po +++ b/addons/claim_from_delivery/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_CL.po b/addons/claim_from_delivery/i18n/es_CL.po index ed8cc667906..921a00f3d08 100644 --- a/addons/claim_from_delivery/i18n/es_CL.po +++ b/addons/claim_from_delivery/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_CR.po b/addons/claim_from_delivery/i18n/es_CR.po index 94941c91c6c..096068fc1c7 100644 --- a/addons/claim_from_delivery/i18n/es_CR.po +++ b/addons/claim_from_delivery/i18n/es_CR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" "Language: es\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/es_EC.po b/addons/claim_from_delivery/i18n/es_EC.po index 1bf1c61cf9d..0e96202d0f3 100644 --- a/addons/claim_from_delivery/i18n/es_EC.po +++ b/addons/claim_from_delivery/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_PY.po b/addons/claim_from_delivery/i18n/es_PY.po index 057677519cf..9277b2c4aca 100644 --- a/addons/claim_from_delivery/i18n/es_PY.po +++ b/addons/claim_from_delivery/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/et.po b/addons/claim_from_delivery/i18n/et.po index f7f008197dc..ffc06f9c956 100644 --- a/addons/claim_from_delivery/i18n/et.po +++ b/addons/claim_from_delivery/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fa.po b/addons/claim_from_delivery/i18n/fa.po index d4bbcec05d9..1fe47386540 100644 --- a/addons/claim_from_delivery/i18n/fa.po +++ b/addons/claim_from_delivery/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fi.po b/addons/claim_from_delivery/i18n/fi.po index dc7f6c398e1..f46270e11cc 100644 --- a/addons/claim_from_delivery/i18n/fi.po +++ b/addons/claim_from_delivery/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fr.po b/addons/claim_from_delivery/i18n/fr.po index b403b7abd5a..7b16fcd23cc 100644 --- a/addons/claim_from_delivery/i18n/fr.po +++ b/addons/claim_from_delivery/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/gl.po b/addons/claim_from_delivery/i18n/gl.po index cc195fefd74..8689e61d739 100644 --- a/addons/claim_from_delivery/i18n/gl.po +++ b/addons/claim_from_delivery/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/gu.po b/addons/claim_from_delivery/i18n/gu.po index 2bc795ae00f..0221f0d78e6 100644 --- a/addons/claim_from_delivery/i18n/gu.po +++ b/addons/claim_from_delivery/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/hr.po b/addons/claim_from_delivery/i18n/hr.po index ccceaba152f..75cb300a45d 100644 --- a/addons/claim_from_delivery/i18n/hr.po +++ b/addons/claim_from_delivery/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/hu.po b/addons/claim_from_delivery/i18n/hu.po index 926d8302644..aad765813e3 100644 --- a/addons/claim_from_delivery/i18n/hu.po +++ b/addons/claim_from_delivery/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/id.po b/addons/claim_from_delivery/i18n/id.po index 9cc4ece4fd8..c3cbcade17e 100644 --- a/addons/claim_from_delivery/i18n/id.po +++ b/addons/claim_from_delivery/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/it.po b/addons/claim_from_delivery/i18n/it.po index 9f0923f323e..1f93d270115 100644 --- a/addons/claim_from_delivery/i18n/it.po +++ b/addons/claim_from_delivery/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ja.po b/addons/claim_from_delivery/i18n/ja.po index 2a92883686f..04c696c5e09 100644 --- a/addons/claim_from_delivery/i18n/ja.po +++ b/addons/claim_from_delivery/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/lo.po b/addons/claim_from_delivery/i18n/lo.po index ddc14747246..031bf9b8cfc 100644 --- a/addons/claim_from_delivery/i18n/lo.po +++ b/addons/claim_from_delivery/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/lt.po b/addons/claim_from_delivery/i18n/lt.po index 9bfb69755c9..9936c0aec45 100644 --- a/addons/claim_from_delivery/i18n/lt.po +++ b/addons/claim_from_delivery/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/mk.po b/addons/claim_from_delivery/i18n/mk.po index 3ea87e894d7..8706709464f 100644 --- a/addons/claim_from_delivery/i18n/mk.po +++ b/addons/claim_from_delivery/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/mn.po b/addons/claim_from_delivery/i18n/mn.po index a7082d8c275..3315aaccde3 100644 --- a/addons/claim_from_delivery/i18n/mn.po +++ b/addons/claim_from_delivery/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nb.po b/addons/claim_from_delivery/i18n/nb.po index ff0ef3306ec..315110bc879 100644 --- a/addons/claim_from_delivery/i18n/nb.po +++ b/addons/claim_from_delivery/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nl.po b/addons/claim_from_delivery/i18n/nl.po index cbdf0b7a59b..8074ca2c80d 100644 --- a/addons/claim_from_delivery/i18n/nl.po +++ b/addons/claim_from_delivery/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nl_BE.po b/addons/claim_from_delivery/i18n/nl_BE.po index 1a773b88182..e650ed8f07c 100644 --- a/addons/claim_from_delivery/i18n/nl_BE.po +++ b/addons/claim_from_delivery/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/oc.po b/addons/claim_from_delivery/i18n/oc.po index 21be365b615..5f5566240c6 100644 --- a/addons/claim_from_delivery/i18n/oc.po +++ b/addons/claim_from_delivery/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pl.po b/addons/claim_from_delivery/i18n/pl.po index d6997e58f3d..b7ce4c7034e 100644 --- a/addons/claim_from_delivery/i18n/pl.po +++ b/addons/claim_from_delivery/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pt.po b/addons/claim_from_delivery/i18n/pt.po index 3ff313506c5..825e382fe73 100644 --- a/addons/claim_from_delivery/i18n/pt.po +++ b/addons/claim_from_delivery/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pt_BR.po b/addons/claim_from_delivery/i18n/pt_BR.po index 2a12ea48f8a..4966c0b0b60 100644 --- a/addons/claim_from_delivery/i18n/pt_BR.po +++ b/addons/claim_from_delivery/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ro.po b/addons/claim_from_delivery/i18n/ro.po index b035aff7dc6..f7feed52874 100644 --- a/addons/claim_from_delivery/i18n/ro.po +++ b/addons/claim_from_delivery/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ru.po b/addons/claim_from_delivery/i18n/ru.po index 32ce7c97f9c..50e24166f87 100644 --- a/addons/claim_from_delivery/i18n/ru.po +++ b/addons/claim_from_delivery/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sl.po b/addons/claim_from_delivery/i18n/sl.po index f68a531a866..89a622ca502 100644 --- a/addons/claim_from_delivery/i18n/sl.po +++ b/addons/claim_from_delivery/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sq.po b/addons/claim_from_delivery/i18n/sq.po index 32f808197a2..aba4b72b3ea 100644 --- a/addons/claim_from_delivery/i18n/sq.po +++ b/addons/claim_from_delivery/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sr.po b/addons/claim_from_delivery/i18n/sr.po index 47548289d32..e0c71ad27be 100644 --- a/addons/claim_from_delivery/i18n/sr.po +++ b/addons/claim_from_delivery/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sr@latin.po b/addons/claim_from_delivery/i18n/sr@latin.po index 203a802078f..f5c8db6d4da 100644 --- a/addons/claim_from_delivery/i18n/sr@latin.po +++ b/addons/claim_from_delivery/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sv.po b/addons/claim_from_delivery/i18n/sv.po index cdffeb53749..ca25aa85cc0 100644 --- a/addons/claim_from_delivery/i18n/sv.po +++ b/addons/claim_from_delivery/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ta.po b/addons/claim_from_delivery/i18n/ta.po index a4f8185f385..7062fca15d4 100644 --- a/addons/claim_from_delivery/i18n/ta.po +++ b/addons/claim_from_delivery/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/tr.po b/addons/claim_from_delivery/i18n/tr.po index 76e9ee69f17..166b0edeb9d 100644 --- a/addons/claim_from_delivery/i18n/tr.po +++ b/addons/claim_from_delivery/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/vi.po b/addons/claim_from_delivery/i18n/vi.po index 59e193c61d1..be5911c57c5 100644 --- a/addons/claim_from_delivery/i18n/vi.po +++ b/addons/claim_from_delivery/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/zh_CN.po b/addons/claim_from_delivery/i18n/zh_CN.po index ce2bd202bd0..408e263c31b 100644 --- a/addons/claim_from_delivery/i18n/zh_CN.po +++ b/addons/claim_from_delivery/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/zh_TW.po b/addons/claim_from_delivery/i18n/zh_TW.po index 03d3b103b72..dc1b3f9a58e 100644 --- a/addons/claim_from_delivery/i18n/zh_TW.po +++ b/addons/claim_from_delivery/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:34+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:14+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/contacts/i18n/ar.po b/addons/contacts/i18n/ar.po index 6fb98a163e6..0f8d2e8f9d1 100644 --- a/addons/contacts/i18n/ar.po +++ b/addons/contacts/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/bs.po b/addons/contacts/i18n/bs.po index 70cc745101a..56fd4a51a42 100644 --- a/addons/contacts/i18n/bs.po +++ b/addons/contacts/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/cs.po b/addons/contacts/i18n/cs.po index 3b13b187234..7debd43b90c 100644 --- a/addons/contacts/i18n/cs.po +++ b/addons/contacts/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/da.po b/addons/contacts/i18n/da.po index 5e73af770ac..a7d41fd132b 100644 --- a/addons/contacts/i18n/da.po +++ b/addons/contacts/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/de.po b/addons/contacts/i18n/de.po index fe91c6744cf..0dba0467827 100644 --- a/addons/contacts/i18n/de.po +++ b/addons/contacts/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/en_GB.po b/addons/contacts/i18n/en_GB.po index d6902bd4ba0..b9716993d57 100644 --- a/addons/contacts/i18n/en_GB.po +++ b/addons/contacts/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/es.po b/addons/contacts/i18n/es.po index db07dadd940..8d869faeeae 100644 --- a/addons/contacts/i18n/es.po +++ b/addons/contacts/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/es_CO.po b/addons/contacts/i18n/es_CO.po index bf70776e5b5..853ee15a64d 100644 --- a/addons/contacts/i18n/es_CO.po +++ b/addons/contacts/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/et.po b/addons/contacts/i18n/et.po index 4c042daebc6..f31a42d33be 100644 --- a/addons/contacts/i18n/et.po +++ b/addons/contacts/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/fi.po b/addons/contacts/i18n/fi.po index eef5de67ddc..4dcb061ac63 100644 --- a/addons/contacts/i18n/fi.po +++ b/addons/contacts/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/fr.po b/addons/contacts/i18n/fr.po index 8cbb9310bf0..7ea05669412 100644 --- a/addons/contacts/i18n/fr.po +++ b/addons/contacts/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/gl.po b/addons/contacts/i18n/gl.po index d5e9f9b32d9..fee186cf251 100644 --- a/addons/contacts/i18n/gl.po +++ b/addons/contacts/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/he.po b/addons/contacts/i18n/he.po index bedf9397786..5a60d43129c 100644 --- a/addons/contacts/i18n/he.po +++ b/addons/contacts/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/hr.po b/addons/contacts/i18n/hr.po index cc821decb03..7107e1c324e 100644 --- a/addons/contacts/i18n/hr.po +++ b/addons/contacts/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/hu.po b/addons/contacts/i18n/hu.po index 28b3b9933e0..720ab1d3b49 100644 --- a/addons/contacts/i18n/hu.po +++ b/addons/contacts/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/it.po b/addons/contacts/i18n/it.po index 11807f4cf5d..76b6596ecd9 100644 --- a/addons/contacts/i18n/it.po +++ b/addons/contacts/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ja.po b/addons/contacts/i18n/ja.po index f2f7561539f..8679cf4233b 100644 --- a/addons/contacts/i18n/ja.po +++ b/addons/contacts/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ko.po b/addons/contacts/i18n/ko.po index 712520c236b..e2625ebf53d 100644 --- a/addons/contacts/i18n/ko.po +++ b/addons/contacts/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/lt.po b/addons/contacts/i18n/lt.po index d974a6a69a9..155f491ff08 100644 --- a/addons/contacts/i18n/lt.po +++ b/addons/contacts/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/lv.po b/addons/contacts/i18n/lv.po index 6435371182c..e7dc3d3d035 100644 --- a/addons/contacts/i18n/lv.po +++ b/addons/contacts/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/mk.po b/addons/contacts/i18n/mk.po index 12527be3d18..4bf92047cbb 100644 --- a/addons/contacts/i18n/mk.po +++ b/addons/contacts/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/mn.po b/addons/contacts/i18n/mn.po index 0b5794ac82d..c65734cc9bf 100644 --- a/addons/contacts/i18n/mn.po +++ b/addons/contacts/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/nl.po b/addons/contacts/i18n/nl.po index a59e720b45d..91498564470 100644 --- a/addons/contacts/i18n/nl.po +++ b/addons/contacts/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:51+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/nl_BE.po b/addons/contacts/i18n/nl_BE.po index 789dbbefb4d..c6f5c9bd4a2 100644 --- a/addons/contacts/i18n/nl_BE.po +++ b/addons/contacts/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pl.po b/addons/contacts/i18n/pl.po index 202573f4771..bc7d1fd1083 100644 --- a/addons/contacts/i18n/pl.po +++ b/addons/contacts/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pt.po b/addons/contacts/i18n/pt.po index 81515549d9d..04e94b7f24c 100644 --- a/addons/contacts/i18n/pt.po +++ b/addons/contacts/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pt_BR.po b/addons/contacts/i18n/pt_BR.po index 938384e6594..61802ca8392 100644 --- a/addons/contacts/i18n/pt_BR.po +++ b/addons/contacts/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ro.po b/addons/contacts/i18n/ro.po index 2935fede420..7ff85b1bc68 100644 --- a/addons/contacts/i18n/ro.po +++ b/addons/contacts/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ru.po b/addons/contacts/i18n/ru.po index 629fe38e90c..c6eb1993462 100644 --- a/addons/contacts/i18n/ru.po +++ b/addons/contacts/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/sk.po b/addons/contacts/i18n/sk.po index c15b78d1f72..a6be43529e2 100644 --- a/addons/contacts/i18n/sk.po +++ b/addons/contacts/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/sl.po b/addons/contacts/i18n/sl.po index 4dae8ed512d..486fb6120cb 100644 --- a/addons/contacts/i18n/sl.po +++ b/addons/contacts/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/sv.po b/addons/contacts/i18n/sv.po index 486ab56fe75..6acbb529bc3 100644 --- a/addons/contacts/i18n/sv.po +++ b/addons/contacts/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -29,6 +29,15 @@ msgid "" "

    \n" " " msgstr "" +"

    \n" +" Klicka för att lägga till en kontakt i adressboken.\n" +" \n" +" OpenERP hjälper dig att enkelt spåra alla aktiviteter " +"relaterade till\n" +" en kund, diskussioner, historia av affärsmöjligheter,\n" +" dokument, etc.\n" +" \n" +" " #. module: contacts #: model:ir.actions.act_window,name:contacts.action_contacts diff --git a/addons/contacts/i18n/th.po b/addons/contacts/i18n/th.po index ff6dfd761b4..72dab7b453f 100644 --- a/addons/contacts/i18n/th.po +++ b/addons/contacts/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/tr.po b/addons/contacts/i18n/tr.po index d4bcadbeaac..f4edb73890c 100644 --- a/addons/contacts/i18n/tr.po +++ b/addons/contacts/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/vi.po b/addons/contacts/i18n/vi.po index 25e248b7c6f..8818302f9df 100644 --- a/addons/contacts/i18n/vi.po +++ b/addons/contacts/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/zh_CN.po b/addons/contacts/i18n/zh_CN.po index 9b3714e8a71..837b30b32a6 100644 --- a/addons/contacts/i18n/zh_CN.po +++ b/addons/contacts/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/zh_TW.po b/addons/contacts/i18n/zh_TW.po index 1f02155f4d3..c1236f6097c 100644 --- a/addons/contacts/i18n/zh_TW.po +++ b/addons/contacts/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-04 07:52+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-03-27 07:34+0000\n" +"X-Generator: Launchpad (build 16967)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/crm/crm_lead.py b/addons/crm/crm_lead.py index f216f9626c6..bf9b6533b4a 100644 --- a/addons/crm/crm_lead.py +++ b/addons/crm/crm_lead.py @@ -241,10 +241,10 @@ class crm_lead(format_address, osv.osv): 'opt_out': fields.boolean('Opt-Out', oldname='optout', help="If opt-out is checked, this contact has refused to receive emails for mass mailing and marketing campaign. " "Filter 'Available for Mass Mailing' allows users to filter the leads when performing mass mailing."), - 'type':fields.selection([ ('lead','Lead'), ('opportunity','Opportunity'), ],'Type', help="Type is used to separate Leads and Opportunities"), + 'type': fields.selection([ ('lead','Lead'), ('opportunity','Opportunity'), ],'Type', select=True, help="Type is used to separate Leads and Opportunities"), 'priority': fields.selection(crm.AVAILABLE_PRIORITIES, 'Priority', select=True), 'date_closed': fields.datetime('Closed', readonly=True), - 'stage_id': fields.many2one('crm.case.stage', 'Stage', track_visibility='onchange', + 'stage_id': fields.many2one('crm.case.stage', 'Stage', track_visibility='onchange', select=True, domain="['&', ('section_ids', '=', section_id), '|', ('type', '=', type), ('type', '=', 'both')]"), 'user_id': fields.many2one('res.users', 'Salesperson', select=True, track_visibility='onchange'), 'referred': fields.char('Referred By', size=64), @@ -313,7 +313,10 @@ class crm_lead(format_address, osv.osv): stage = self.pool.get('crm.case.stage').browse(cr, uid, stage_id, context=context) if not stage.on_change: return {'value': {}} - return {'value': {'probability': stage.probability}} + vals = {'probability': stage.probability} + if stage.probability >= 100 or (stage.probability == 0 and stage.sequence > 1): + vals['date_closed'] = fields.datetime.now() + return {'value': vals} def on_change_partner_id(self, cr, uid, ids, partner_id, context=None): values = {} @@ -407,7 +410,7 @@ class crm_lead(format_address, osv.osv): 'probability = 0 %, select "Change Probability Automatically".\n' 'Create a specific stage or edit an existing one by editing columns of your opportunity pipe.')) for stage_id, lead_ids in stages_leads.items(): - self.write(cr, uid, lead_ids, {'stage_id': stage_id, 'date_closed': fields.datetime.now()}, context=context) + self.write(cr, uid, lead_ids, {'stage_id': stage_id}, context=context) return True def case_mark_won(self, cr, uid, ids, context=None): @@ -428,7 +431,7 @@ class crm_lead(format_address, osv.osv): 'probability = 100 % and select "Change Probability Automatically".\n' 'Create a specific stage or edit an existing one by editing columns of your opportunity pipe.')) for stage_id, lead_ids in stages_leads.items(): - self.write(cr, uid, lead_ids, {'stage_id': stage_id, 'date_closed': fields.datetime.now()}, context=context) + self.write(cr, uid, lead_ids, {'stage_id': stage_id}, context=context) return True def case_escalate(self, cr, uid, ids, context=None): diff --git a/addons/crm/crm_lead_view.xml b/addons/crm/crm_lead_view.xml index 8068e5b8519..cfa0c352253 100644 --- a/addons/crm/crm_lead_view.xml +++ b/addons/crm/crm_lead_view.xml @@ -95,7 +95,6 @@

    - - - - - [[ (o.partner_id.title and o.partner_id.title.name) or '' ]] [[ (o.partner_id and o.partner_id.name) or '' ]] - [[ o.partner_id and display_address(o.partner_id) ]] - - - - Tel. : [[ (o.partner_id.phone) or removeParentNode('para') ]] - Fax : [[ (o.partner_id.fax) or removeParentNode('para') ]] - VAT : [[ (o.partner_id.vat) or removeParentNode('para') ]] -
    - Document - - Invoice Date - - Partner Ref. -
    - [[ o.name or ' ' ]] - - [[ formatLang(o.date_invoice,date=True) ]] - - [[ (o.partner_id.ref) or ' ' ]] -
    - Description - - Taxes - - Intrastat - - Weight - - Quantity - - Unit Price - - Disc. (%) - - Price -
    - [[ l.name ]] - - [[ ', '.join([lt.name for lt in l.invoice_line_tax_id]) ]] - - [[l.product_id and l.product_id.intrastat_id and l.product_id.intrastat_id.name or '']] - - [[ l.product_id and l.product_id.weight or '']] - - [[ formatLang(l.quantity) ]] [[ (l.uos_id and l.uos_id.name) or '' ]] - - [[ formatLang(l.price_unit) ]] - - [[ l.discount and formatLang (l.discount) or '' ]] - - [[ formatLang(l.price_subtotal, currency_obj=o.currency_id) ]] -
    - [[ format(l.note or removeParentNode('tr')) ]] - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - Total (excl. taxes): - - [[ formatLang(o.amount_untaxed, currency_obj=o.currency_id) ]] -
    - - - - - Taxes: - - [[ formatLang(o.amount_tax, currency_obj=o.currency_id) ]] -
    - - - - - Total (inclu. taxes): - - [[ formatLang(o.amount_total, currency_obj=o.currency_id) ]] -
    - Tax [[ o.tax_line==[] and removeParentNode('blockTable') ]] - - Base - - Amount - - - - -
    - [[ t.name ]] - - [[ formatLang(t.base, digits=get_digits(dp='Account'), currency_obj = o.currency_id) ]] - - [[ (t.tax_code_id and t.tax_code_id.notprintable) and removeParentNode('blockTable') or '' ]] [[ formatLang(t.amount, digits=get_digits(dp='Account'), currency_obj=o.currency_id) ]] - - - - -
    - Fiscal Position Remark : - - [[ (o.fiscal_position and o.fiscal_position.note and format(o.fiscal_position.note)) or removeParentNode('blockTable') ]] -
    - Survey Title - - Total Started Survey - - Total Completed Survey -
    - """ + to_xml(tools.ustr(survey.title)) + """ - - """ + str(survey.tot_start_survey) + """ - - """ + str(survey.tot_comp_survey) + """ -
    Page :- """ + to_xml(tools.ustr(page.title)) + """
    """ + to_xml(tools.ustr(que.question)) + """
    """ + to_xml(tools.ustr(matrix_ans[mat_col][1])) + """Answer Count
    """ + to_xml(tools.ustr(ans.answer)) + """""" + tools.ustr(percantage) +"% (" + tools.ustr(cal_count) + """)""" + tools.ustr(percantage) +"% (" + tools.ustr(cal_count) + """)""" + tools.ustr(tot_res) + """
    """ + to_xml(tools.ustr(que.comment_label)) + """""" + tools.ustr(tot_res) + """
    Answer Percentage Answer Count
    """ + to_xml(tools.ustr(ans.answer)) + """ - - - - """ - if progress: - rml += """ - """ - rml += """ - - - """ + tools.ustr(ans.average) + """% - """ + tools.ustr(ans.response) + """
    """ +to_xml(tools.ustr(que.comment_label)) + """""" + str(tot_avg) + """%""" + tools.ustr(tot_res) + """
    """ + to_xml(tools.ustr(que.comment_label)) + """""" + tools.ustr(tot_res) + """
    Answer Count
    """ + tools.ustr(cr.fetchone()[0]) + """
    Answer Count
    """ + tools.ustr(cr.fetchone()[0]) + """
    """ + to_xml(tools.ustr(matrix_ans[mat_col][1])) + """Rating AverageAnswer Count
    """ + to_xml(tools.ustr(ans.answer)) + """""" + tools.ustr(tot_per) + "%(" + tools.ustr(tot_res) + """)""" + tools.ustr(tot_per)+"%(" + tools.ustr(tot_res) + """)""" + tools.ustr(percantage) + """""" + tools.ustr(res_count) + """
    """ + to_xml(tools.ustr(column.title)) + """
    """ + to_xml(tools.ustr(menu)) + """Answer Count
    """ + to_xml(tools.ustr(ans.answer)) + """""" +tools.ustr(percantage)+"% (" + tools.ustr(calc) + """)""" +tools.ustr(percantage)+"% (" + tools.ustr(calc) + """)""" + tools.ustr(response) + """
    Answer Average Answer Total Answer Count
    """ + to_xml(tools.ustr(ans.answer)) + """ """ + tools.ustr(per) +"""""" + tools.ustr(total) + """""" + tools.ustr(len(tot_res)) + """
    Answered Question""" + tools.ustr(que.tot_resp) + """
    Skipped Question""" + tools.ustr(survey.tot_start_survey - que.tot_resp) + """
    """ + _('Print Date : ') + """""" + to_xml(rml_obj.formatLang(time.strftime("%Y-%m-%d %H:%M:%S"),date_time=True)) + """""" +_('Answered by : ') + """""" + to_xml(response.user_id.login or '') + """
    """ +_('Answer Date : ') + """""" + to_xml(resp_create) + """
    """ + to_xml(tools.ustr(survey.title)) + """"""+_('Status :- ')+ to_xml(tools.ustr(status)) + """
    """ + to_xml(tools.ustr(survey.note or '')) + """
    """+_('Page :- ') + to_xml(tools.ustr(page.title or '')) + """
    """ + to_xml(tools.ustr(page.note or '')) + """
    """ + to_xml(to_xml(que.question)) + """
    """ + to_xml(tools.ustr(que.descriptive_text)) + """
    """ + to_xml(tools.ustr(col.title)) +"""
    """ + to_xml(tools.ustr(value)) +"""
    """+ _('No Answer') + """
    - - - - """ + divide[div] + """ - - """ + divide[div] + """ - - - - """ + divide[div] + """ - - - - """ + divide[div] + """
    """ + to_xml(tools.ustr(answer[0].comment)) + """
    No Answer
    """ + to_xml(tools.ustr(que_ans.answer)) + """ """ + to_xml(tools.ustr(answer_list[que_ans.answer])) + """
    """ + to_xml(tools.ustr(que_ans.answer)) + """
    No Answer
    """ + to_xml(tools.ustr(answer[0].single_text)) + """
    No Answer
    """ + to_xml(tools.ustr(answer[0].comment)) + """
    No Answer
    """ + to_xml(tools.ustr(matrix_ans[mat_col][1])) + """
    """ + to_xml(tools.ustr(ans.answer)) + """""" + value + """""" + to_xml(tools.ustr(comment_value)) + """
    """ + to_xml(tools.ustr(answer[0].comment or '')) + """
    No Answer
    """ + to_xml(tools.ustr(survey.title)) + """
    """ + to_xml(tools.ustr(survey.note)) + """
    """+ tools.ustr(seq) + """. """ + to_xml(tools.ustr(page.title)) + """
    """ + to_xml(tools.ustr(page.note or '')) + """
    """ + to_xml(tools.ustr(que.question)) + """
    - """ + to_xml(tools.ustr(que.descriptive_text)) + """ -
    - - - - """ + divide[div] + """ - - - - """ + divide[div] + """
    """ + to_xml(tools.ustr(mat_col)) + """
    """ + to_xml(tools.ustr(ans.answer)) + """""" + to_xml(tools.ustr(que.column_name)) + """""" + value + """
    """ + to_xml(tools.ustr(ans.answer)) + """ - - - -
    - - - -
    - - - -
    """ + to_xml(tools.ustr(col.title)) + """