diff --git a/addons/account/__openerp__.py b/addons/account/__openerp__.py index e1b9078ec3f..86166ec0125 100644 --- a/addons/account/__openerp__.py +++ b/addons/account/__openerp__.py @@ -19,11 +19,11 @@ # ############################################################################## { - "name" : "eInvoicing", - "version" : "1.1", - "author" : "OpenERP SA", - "category": 'Accounting & Finance', - "description": """ + 'name' : 'eInvoicing', + 'version' : '1.1', + 'author' : 'OpenERP SA', + 'category' : 'Accounting & Finance', + 'description' : """ Accounting and Financial Management. ==================================== @@ -44,14 +44,13 @@ Creates a dashboard for accountants that includes: * Company Analysis * Graph of Treasury -The processes like maintaining of general ledger is done through the defined financial Journals (entry move line orgrouping is maintained through journal) for a particular -financial year and for preparation of vouchers there is a module named account_voucher. +The processes like maintaining of general ledger is done through the defined financial Journals (entry move line orgrouping is maintained through journal) +for a particular financial year and for preparation of vouchers there is a module named account_voucher. """, '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'], - 'init_xml': [], - "depends" : ["base_setup", "product", "analytic", "process", "board", "edi"], - 'update_xml': [ + 'depends' : ['base_setup', 'product', 'analytic', 'process', 'board', 'edi'], + 'data': [ 'security/account_security.xml', 'security/ir.model.access.csv', 'account_menuitem.xml', @@ -122,12 +121,12 @@ financial year and for preparation of vouchers there is a module named account_v 'ir_sequence_view.xml', 'company_view.xml', 'board_account_view.xml', - "edi/invoice_action_data.xml", - "account_bank_view.xml", - "res_config_view.xml", - "account_pre_install.yml" + 'edi/invoice_action_data.xml', + 'account_bank_view.xml', + 'res_config_view.xml', + 'account_pre_install.yml' ], - 'demo_xml': [ + 'demo': [ 'demo/account_demo.xml', 'project/project_demo.xml', 'project/analytic_account_demo.xml', diff --git a/addons/account/account.py b/addons/account/account.py index fa30b20f2ca..7ec3bcde2c8 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -30,6 +30,8 @@ from osv import fields, osv import decimal_precision as dp from tools.translate import _ from tools.float_utils import float_round +from openerp import SUPERUSER_ID + _logger = logging.getLogger(__name__) @@ -109,7 +111,7 @@ class account_payment_term_line(osv.osv): 'days': fields.integer('Number of Days', required=True, help="Number of days to add before computation of the day of month." \ "If Date=15/01, Number of Days=22, Day of Month=-1, then the due date is 28/02."), 'days2': fields.integer('Day of the Month', required=True, help="Day of the month, set -1 for the last day of the current month. If it's positive, it gives the day of the next month. Set 0 for net days (otherwise it's based on the beginning of the month)."), - 'payment_id': fields.many2one('account.payment.term', 'Payment Term', required=True, select=True), + 'payment_id': fields.many2one('account.payment.term', 'Payment Term', required=True, select=True, ondelete='cascade'), } _defaults = { 'value': 'balance', @@ -582,6 +584,8 @@ class account_account(osv.osv): def name_get(self, cr, uid, ids, context=None): if not ids: return [] + if isinstance(ids, (int, long)): + ids = [ids] reads = self.read(cr, uid, ids, ['name', 'code'], context=context) res = [] for record in reads: @@ -744,9 +748,11 @@ class account_journal(osv.osv): 'profit_account_id' : fields.many2one('account.account', 'Profit Account'), 'loss_account_id' : fields.many2one('account.account', 'Loss Account'), 'internal_account_id' : fields.many2one('account.account', 'Internal Transfers Account', select=1), + 'cash_control' : fields.boolean('Cash Control', help='If you want the journal should be control at opening/closing, check this option'), } _defaults = { + 'cash_control' : False, 'with_last_closing_balance' : False, 'user_id': lambda self, cr, uid, context: uid, 'company_id': lambda self, cr, uid, c: self.pool.get('res.users').browse(cr, uid, uid, c).company_id.id, @@ -815,7 +821,7 @@ class account_journal(osv.osv): if not 'sequence_id' in vals or not vals['sequence_id']: # if we have the right to create a journal, we should be able to # create it's sequence. - vals.update({'sequence_id': self.create_sequence(cr, 1, vals, context)}) + vals.update({'sequence_id': self.create_sequence(cr, SUPERUSER_ID, vals, context)}) return super(account_journal, self).create(cr, uid, vals, context) def name_get(self, cr, user, ids, context=None): @@ -1369,7 +1375,7 @@ class account_move(osv.osv): balance = 0.0 for line in line_ids: if line[2]: - balance += (line[2]['debit'] or 0.00)- (line[2]['credit'] or 0.00) + balance += (line[2].get('debit',0.00)- (line[2].get('credit',0.00))) return {'value': {'balance': balance}} def write(self, cr, uid, ids, vals, context=None): @@ -1854,7 +1860,7 @@ class account_tax(osv.osv): def get_precision_tax(): def change_digit_tax(cr): - res = pooler.get_pool(cr.dbname).get('decimal.precision').precision_get(cr, 1, 'Account') + res = pooler.get_pool(cr.dbname).get('decimal.precision').precision_get(cr, SUPERUSER_ID, 'Account') return (16, res+2) return change_digit_tax @@ -2993,6 +2999,7 @@ class wizard_multi_charts_accounts(osv.osv_memory): _columns = { 'company_id':fields.many2one('res.company', 'Company', required=True), + 'currency_id': fields.many2one('res.currency', 'Currency', help="Currency as per company's country."), 'only_one_chart_template': fields.boolean('Only One Chart Template Available'), 'chart_template_id': fields.many2one('account.chart.template', 'Chart Template', required=True), 'bank_accounts_id': fields.one2many('account.bank.accounts.wizard', 'bank_account_id', 'Cash and Banks', required=True), @@ -3003,6 +3010,13 @@ class wizard_multi_charts_accounts(osv.osv_memory): 'purchase_tax_rate': fields.float('Purchase Tax(%)'), 'complete_tax_set': fields.boolean('Complete Set of Taxes', help='This boolean helps you to choose if you want to propose to the user to encode the sales and purchase rates or use the usual m2o fields. This last choice assumes that the set of tax defined for the chosen template is complete'), } + + def onchange_company_id(self, cr, uid, ids, company_id, context=None): + currency_id = False + if company_id: + currency_id = self.pool.get('res.company').browse(cr, uid, company_id, context=context).currency_id.id + return {'value': {'currency_id': currency_id}} + def onchange_tax_rate(self, cr, uid, ids, rate=False, context=None): return {'value': {'purchase_tax_rate': rate or False}} @@ -3033,6 +3047,13 @@ class wizard_multi_charts_accounts(osv.osv_memory): res.update({'bank_accounts_id': [{'acc_name': _('Cash'), 'account_type': 'cash'},{'acc_name': _('Bank'), 'account_type': 'bank'}]}) if 'company_id' in fields: res.update({'company_id': self.pool.get('res.users').browse(cr, uid, [uid], context=context)[0].company_id.id}) + if 'currency_id' in fields: + company_id = res.get('company_id') or False + if company_id: + company_obj = self.pool.get('res.company') + country_id = company_obj.browse(cr, uid, company_id, context=context).country_id.id + currency_id = company_obj.on_change_country(cr, uid, company_id, country_id, context=context)['value']['currency_id'] + res.update({'currency_id': currency_id}) ids = self.pool.get('account.chart.template').search(cr, uid, [('visible', '=', True)], context=context) if ids: @@ -3337,19 +3358,18 @@ class wizard_multi_charts_accounts(osv.osv_memory): ir_values_obj = self.pool.get('ir.values') obj_wizard = self.browse(cr, uid, ids[0]) company_id = obj_wizard.company_id.id + self.pool.get('res.company').write(cr, uid, [company_id], {'currency_id': obj_wizard.currency_id.id}) # If the floats for sale/purchase rates have been filled, create templates from them self._create_tax_templates_from_rates(cr, uid, obj_wizard, company_id, context=context) # Install all the templates objects and generate the real objects acc_template_ref, taxes_ref, tax_code_ref = self._install_template(cr, uid, obj_wizard.chart_template_id.id, company_id, code_digits=obj_wizard.code_digits, obj_wizard=obj_wizard, context=context) - # write values of default taxes for product + # write values of default taxes for product as super user if obj_wizard.sale_tax and taxes_ref: - ir_values_obj.set(cr, uid, key='default', key2=False, name="taxes_id", company=company_id, - models =[('product.product',False)], value=[taxes_ref[obj_wizard.sale_tax.id]]) + ir_values_obj.set_default(cr, SUPERUSER_ID, 'product.product', "taxes_id", [taxes_ref[obj_wizard.sale_tax.id]], for_all_users=True, company_id=company_id) if obj_wizard.purchase_tax and taxes_ref: - ir_values_obj.set(cr, uid, key='default', key2=False, name="supplier_taxes_id", company=company_id, - models =[('product.product',False)], value=[taxes_ref[obj_wizard.purchase_tax.id]]) + ir_values_obj.set_default(cr, SUPERUSER_ID, 'product.product', "supplier_taxes_id", [taxes_ref[obj_wizard.purchase_tax.id]], for_all_users=True, company_id=company_id) # Create Bank journals self._create_bank_journals_from_o2m(cr, uid, obj_wizard, company_id, acc_template_ref, context=context) diff --git a/addons/account/account_bank_statement.py b/addons/account/account_bank_statement.py index 8df291a98d1..095d461ff3b 100644 --- a/addons/account/account_bank_statement.py +++ b/addons/account/account_bank_statement.py @@ -430,7 +430,7 @@ class account_bank_statement(osv.osv): 'name': st_number, 'balance_end_real': st.balance_end }, context=context) - self.message_append_note(cr, uid, [st.id], body=_('Statement %s is confirmed, journal items are created.') % (st_number,), context=context) + self.message_post(cr, uid, [st.id], body=_('Statement %s confirmed, journal items were created.') % (st_number,), context=context) return self.write(cr, uid, ids, {'state':'confirm'}, context=context) def button_cancel(self, cr, uid, ids, context=None): diff --git a/addons/account/account_cash_statement.py b/addons/account/account_cash_statement.py index 9af0dcf60f4..17fa05d5f24 100644 --- a/addons/account/account_cash_statement.py +++ b/addons/account/account_cash_statement.py @@ -194,12 +194,27 @@ class account_cash_statement(osv.osv): journal = self.pool.get('account.journal').browse(cr, uid, vals['journal_id'], context=context) if journal and (journal.type == 'cash') and not vals.get('details_ids'): vals['details_ids'] = [] + + last_pieces = None + + if journal.with_last_closing_balance == True: + domain = [('journal_id', '=', journal.id), + ('state', '=', 'confirm')] + last_bank_statement_ids = self.search(cr, uid, domain, limit=1, order='create_date desc', context=context) + if last_bank_statement_ids: + last_bank_statement = self.browse(cr, uid, last_bank_statement_ids[0], context=context) + + last_pieces = dict( + (line.pieces, line.number_closing) for line in last_bank_statement.details_ids + ) + for value in journal.cashbox_line_ids: nested_values = { 'number_closing' : 0, - 'number_opening' : 0, + 'number_opening' : last_pieces.get(value.pieces, 0) if isinstance(last_pieces, dict) else 0, 'pieces' : value.pieces } + vals['details_ids'].append([0, False, nested_values]) res_id = super(account_cash_statement, self).create(cr, uid, vals, context=context) diff --git a/addons/account/account_invoice.py b/addons/account/account_invoice.py index 012bde42eff..15027b7a8f6 100644 --- a/addons/account/account_invoice.py +++ b/addons/account/account_invoice.py @@ -1045,7 +1045,7 @@ class account_invoice(osv.osv): if obj_inv.type in ('out_invoice', 'out_refund'): ctx = self.get_log_context(cr, uid, context=ctx) message = _("Invoice '%s' is validated.") % name - self.message_append_note(cr, uid, [inv_id], body=message, context=context) + self.message_post(cr, uid, [inv_id], body=message, context=context) return True def action_cancel(self, cr, uid, ids, *args): @@ -1127,7 +1127,7 @@ class account_invoice(osv.osv): return map(lambda x: (0,0,x), lines) def refund(self, cr, uid, ids, date=None, period_id=None, description=None, journal_id=None): - invoices = self.read(cr, uid, ids, ['name', 'type', 'number', 'reference', 'comment', 'date_due', 'partner_id', 'partner_contact', 'partner_insite', 'partner_ref', 'payment_term', 'account_id', 'currency_id', 'invoice_line', 'tax_line', 'journal_id']) + invoices = self.read(cr, uid, ids, ['name', 'type', 'number', 'reference', 'comment', 'date_due', 'partner_id', 'partner_contact', 'partner_insite', 'partner_ref', 'payment_term', 'account_id', 'currency_id', 'invoice_line', 'tax_line', 'journal_id', 'company_id']) obj_invoice_line = self.pool.get('account.invoice.line') obj_invoice_tax = self.pool.get('account.invoice.tax') obj_journal = self.pool.get('account.journal') @@ -1175,7 +1175,7 @@ class account_invoice(osv.osv): 'name': description, }) # take the id part of the tuple returned for many2one fields - for field in ('partner_id', + for field in ('partner_id', 'company_id', 'account_id', 'currency_id', 'payment_term', 'journal_id'): invoice[field] = invoice[field] and invoice[field][0] # create the new invoice @@ -1275,7 +1275,7 @@ class account_invoice(osv.osv): # TODO: use currency's formatting function msg = _("Invoice '%s' is paid partially: %s%s of %s%s (%s%s remaining).") % \ (name, pay_amount, code, invoice.amount_total, code, total, code) - self.message_append_note(cr, uid, [inv_id], body=msg, context=context) + self.message_post(cr, uid, [inv_id], body=msg, context=context) self.pool.get('account.move.line').reconcile_partial(cr, uid, line_ids, 'manual', context) # Update the stored value (fields.function), so we write to trigger recompute @@ -1288,24 +1288,25 @@ class account_invoice(osv.osv): def _get_document_type(self, type): type_dict = { - 'out_invoice': 'Customer invoice', - 'in_invoice': 'Supplier invoice', - 'out_refund': 'Customer Refund', - 'in_refund': 'Supplier Refund', + # Translation markers will have no effect at runtime, only used to properly flag export + 'out_invoice': _('Customer invoice'), + 'in_invoice': _('Supplier invoice'), + 'out_refund': _('Customer Refund'), + 'in_refund': _('Supplier Refund'), } return type_dict.get(type, 'Invoice') def create_send_note(self, cr, uid, ids, context=None): for obj in self.browse(cr, uid, ids, context=context): - self.message_append_note(cr, uid, [obj.id],body=_("%s created.") % (self._get_document_type(obj.type)), context=context) + self.message_post(cr, uid, [obj.id], body=_("%s created.") % (_(self._get_document_type(obj.type))), context=context) def confirm_paid_send_note(self, cr, uid, ids, context=None): - for obj in self.browse(cr, uid, ids, context=context): - self.message_append_note(cr, uid, [obj.id], body=_("%s paid.") % (self._get_document_type(obj.type)), context=context) + for obj in self.browse(cr, uid, ids, context=context): + self.message_post(cr, uid, [obj.id], body=_("%s paid.") % (_(self._get_document_type(obj.type))), context=context) def invoice_cancel_send_note(self, cr, uid, ids, context=None): for obj in self.browse(cr, uid, ids, context=context): - self.message_append_note(cr, uid, [obj.id], body=_("%s cancelled.") % (self._get_document_type(obj.type)), context=context) + self.message_post(cr, uid, [obj.id], body=_("%s cancelled.") % (_(self._get_document_type(obj.type))), context=context) account_invoice() @@ -1361,10 +1362,16 @@ class account_invoice_line(osv.osv): 'company_id': fields.related('invoice_id','company_id',type='many2one',relation='res.company',string='Company', store=True, readonly=True), 'partner_id': fields.related('invoice_id','partner_id',type='many2one',relation='res.partner',string='Partner',store=True) } + + def _default_account_id(self, cr, uid, ids, context=None): + prop = self.pool.get('ir.property').get(cr, uid, 'property_account_income_categ', 'product.category', context=context) + return prop and prop.id or False + _defaults = { 'quantity': 1, 'discount': 0.0, 'price_unit': _price_unit_default, + 'account_id': _default_account_id, } def fields_view_get(self, cr, uid, view_id=None, view_type='form', context=None, toolbar=False, submenu=False): @@ -1473,10 +1480,11 @@ class account_invoice_line(osv.osv): prod = self.pool.get('product.product').browse(cr, uid, product, context=context) prod_uom = self.pool.get('product.uom').browse(cr, uid, uom, context=context) if prod.uom_id.category_id.id != prod_uom.category_id.id: - warning = { + warning = { 'title': _('Warning!'), 'message': _('The selected unit of measure is not compatible with the unit of measure of the product.') - } + } + res['value'].update({'uos_id': prod.uom_id.id}) return {'value': res['value'], 'warning': warning} return res diff --git a/addons/account/account_invoice_view.xml b/addons/account/account_invoice_view.xml index 143c5514141..610485ec3a0 100644 --- a/addons/account/account_invoice_view.xml +++ b/addons/account/account_invoice_view.xml @@ -191,17 +191,23 @@ - - - - + + + + + + + + - - - - @@ -342,17 +348,22 @@ - - + + + + diff --git a/addons/account/account_view.xml b/addons/account/account_view.xml index 5bf45aab487..e3c5c211990 100644 --- a/addons/account/account_view.xml +++ b/addons/account/account_view.xml @@ -515,7 +515,7 @@ - + @@ -524,10 +524,11 @@ + - - + + @@ -2370,8 +2371,10 @@
+
+ diff --git a/addons/account_voucher/i18n/ar.po b/addons/account_voucher/i18n/ar.po index 19cc4dd6199..c3fedb292d7 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/bg.po b/addons/account_voucher/i18n/bg.po index a418dfdb58e..897aa73f7e6 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/bs.po b/addons/account_voucher/i18n/bs.po index 74b2a07705c..2aef6be254a 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/ca.po b/addons/account_voucher/i18n/ca.po index 0cf64a1c698..5d905843c35 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/cs.po b/addons/account_voucher/i18n/cs.po index 45b4d271ba9..4ca7e5a1ca0 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/da.po b/addons/account_voucher/i18n/da.po index 593276c4514..c59df5a120b 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/de.po b/addons/account_voucher/i18n/de.po index 3a4899d4d60..4cf7a832b9a 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/el.po b/addons/account_voucher/i18n/el.po index aa7bf516124..f70666420f8 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/es.po b/addons/account_voucher/i18n/es.po index 9feae6b279b..04c6ce746c9 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/es_AR.po b/addons/account_voucher/i18n/es_AR.po index 1982a854a6f..dd4b1f38498 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/es_CR.po b/addons/account_voucher/i18n/es_CR.po index 3a229d2d315..34f4202f8f6 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\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 8e0d12a48a4..9ed0077d932 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/es_PY.po b/addons/account_voucher/i18n/es_PY.po index 27d715405af..93b9fb604ac 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/et.po b/addons/account_voucher/i18n/et.po index 2677094f960..1bcb315668b 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\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 e4bc1a135fe..0cc995fa387 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/fr.po b/addons/account_voucher/i18n/fr.po index ce3d56b353c..e89165925fb 100644 --- a/addons/account_voucher/i18n/fr.po +++ b/addons/account_voucher/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/gl.po b/addons/account_voucher/i18n/gl.po index 736234b7473..fb2fe6f526b 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/gu.po b/addons/account_voucher/i18n/gu.po index bbb554b0c58..f75c080bffb 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/hi.po b/addons/account_voucher/i18n/hi.po index 0b1daa131f6..2af49bd4700 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/hr.po b/addons/account_voucher/i18n/hr.po index 0a4281ac06f..81ab95de535 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/hu.po b/addons/account_voucher/i18n/hu.po index 485789f3010..8efb993607b 100644 --- a/addons/account_voucher/i18n/hu.po +++ b/addons/account_voucher/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/id.po b/addons/account_voucher/i18n/id.po index 894b99594f5..324c182d82f 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/it.po b/addons/account_voucher/i18n/it.po index 6b9cf4fa9ac..e2959a16465 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/ja.po b/addons/account_voucher/i18n/ja.po index 651f5bbb2eb..89307203121 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/ko.po b/addons/account_voucher/i18n/ko.po index 6e165dc2e53..15edf32310b 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/lt.po b/addons/account_voucher/i18n/lt.po index 8518eb45f47..55e636fc0ce 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/mn.po b/addons/account_voucher/i18n/mn.po index ae448ef37db..8af2c6a8b21 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/nl.po b/addons/account_voucher/i18n/nl.po index 5056ef787c3..f28f51967d1 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 @@ -683,7 +683,7 @@ msgstr "Betaald" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Terms" -msgstr "Betalingsconditie" +msgstr "Betalingscondities" #. module: account_voucher #: view:account.voucher:0 @@ -1106,7 +1106,7 @@ msgstr "Boekingen veroorzaakt door facturen" #. module: account_voucher #: field:account.voucher,move_id:0 msgid "Account Entry" -msgstr "Boeking" +msgstr "Journaalpost" #. module: account_voucher #: field:account.voucher,reference:0 diff --git a/addons/account_voucher/i18n/nl_BE.po b/addons/account_voucher/i18n/nl_BE.po index 58d4e69d483..9effe5f9c9e 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/oc.po b/addons/account_voucher/i18n/oc.po index 4193ece4e67..c6a09dd948f 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/pl.po b/addons/account_voucher/i18n/pl.po index b735102ea05..e6d883fe8bd 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/pt.po b/addons/account_voucher/i18n/pt.po index f26bff523f2..0a7ec90ea6a 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/pt_BR.po b/addons/account_voucher/i18n/pt_BR.po index 4b7e48e402b..3131f5fedd3 100644 --- a/addons/account_voucher/i18n/pt_BR.po +++ b/addons/account_voucher/i18n/pt_BR.po @@ -8,13 +8,14 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" "PO-Revision-Date: 2012-07-28 14:28+0000\n" -"Last-Translator: Fábio Martinelli \n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/ro.po b/addons/account_voucher/i18n/ro.po index 5ac64605365..5c693096094 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/ru.po b/addons/account_voucher/i18n/ru.po index 24e3372b721..8bd828cc262 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/sl.po b/addons/account_voucher/i18n/sl.po index 61cbdba273e..467e745ced0 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/sq.po b/addons/account_voucher/i18n/sq.po index becd149d89c..68f975c7f75 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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/sr.po b/addons/account_voucher/i18n/sr.po index 24752cb25ad..bac1fa4c710 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/sr@latin.po b/addons/account_voucher/i18n/sr@latin.po index 58b7807f0fd..1d14c58f590 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/sv.po b/addons/account_voucher/i18n/sv.po index efee133f1e8..a0dd0e88d2d 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/tlh.po b/addons/account_voucher/i18n/tlh.po index 0b19d5de81a..dae9bb1207c 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/tr.po b/addons/account_voucher/i18n/tr.po index 0ba9b64c052..6d6f4847cf7 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/uk.po b/addons/account_voucher/i18n/uk.po index 26404f7c9da..1710fc21bfd 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/vi.po b/addons/account_voucher/i18n/vi.po index 7ba805aae58..0b1f59cc3e2 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/zh_CN.po b/addons/account_voucher/i18n/zh_CN.po index c884902bb63..8e71d0b7144 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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 diff --git a/addons/account_voucher/i18n/zh_TW.po b/addons/account_voucher/i18n/zh_TW.po index 24835701ca5..e73d8e3cd81 100644 --- a/addons/account_voucher/i18n/zh_TW.po +++ b/addons/account_voucher/i18n/zh_TW.po @@ -7,35 +7,35 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2009-01-23 17:15+0000\n" -"Last-Translator: <>\n" +"PO-Revision-Date: 2012-08-28 02:30+0000\n" +"Last-Translator: Eric Huang \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: 2012-08-09 04:54+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-29 05:05+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: account_voucher #: view:sale.receipt.report:0 msgid "last month" -msgstr "" +msgstr "上個月" #. module: account_voucher #: view:account.voucher.unreconcile:0 msgid "Unreconciliation Transactions" -msgstr "" +msgstr "反核銷" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:324 #, python-format msgid "Write-Off" -msgstr "注銷" +msgstr "補差額" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Ref" -msgstr "付款參考" +msgstr "付款單編號" #. module: account_voucher #: view:account.voucher:0 @@ -45,25 +45,25 @@ msgstr "總額" #. module: account_voucher #: view:account.voucher:0 msgid "Open Customer Journal Entries" -msgstr "" +msgstr "未對帳客戶憑證" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1063 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" -msgstr "" +msgstr "必須设置\"%s\"的科目和稅碼" #. module: account_voucher #: view:account.voucher:0 view:sale.receipt.report:0 msgid "Group By..." -msgstr "分組根據..." +msgstr "分類方式..." #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:797 #, python-format msgid "Cannot delete Voucher(s) which are already opened or paid !" -msgstr "" +msgstr "不能删除已經過帳或對帳的憑證!" #. module: account_voucher #: view:account.voucher:0 @@ -74,7 +74,7 @@ msgstr "供應商" #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.act_pay_bills msgid "Bill Payment" -msgstr "賬單付款" +msgstr "帳單付款" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -87,7 +87,7 @@ msgstr "匯入項目" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_voucher_unreconcile msgid "Account voucher unreconcile" -msgstr "" +msgstr "未對帳的會計憑證" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -101,7 +101,7 @@ msgid "" "invoice. When the sales receipt is confirmed, it creates journal items " "automatically and you can record the customer payment related to this sales " "receipt." -msgstr "" +msgstr "銷售產品給客戶時,可以給客戶一張收據或者發票。如果收據已確認,會創建相應的會計憑證。你可以基於這個收據記錄客戶付款。" #. module: account_voucher #: view:account.voucher:0 @@ -127,12 +127,12 @@ msgstr "交易參考號碼。" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by year of Invoice Date" -msgstr "" +msgstr "依發票年份分組" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_view_account_voucher_unreconcile msgid "Unreconcile entries" -msgstr "" +msgstr "未對帳條目" #. module: account_voucher #: view:account.voucher:0 @@ -157,7 +157,7 @@ msgstr "搜尋換領券" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 msgid "Counterpart Account" -msgstr "" +msgstr "對方科目" #. module: account_voucher #: field:account.voucher,account_id:0 field:account.voucher.line,account_id:0 @@ -168,17 +168,17 @@ msgstr "帳號" #. module: account_voucher #: field:account.voucher,line_dr_ids:0 msgid "Debits" -msgstr "" +msgstr "借方" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 msgid "Ok" -msgstr "" +msgstr "確定" #. module: account_voucher #: field:account.voucher.line,reconcile:0 msgid "Full Reconcile" -msgstr "" +msgstr "全部核銷" #. module: account_voucher #: field:account.voucher,date_due:0 field:account.voucher.line,date_due:0 @@ -199,7 +199,7 @@ msgid "" "payment method (=the journal) and the payment amount. OpenERP will propose " "to you automatically the reconciliation of this payment with the open " "invoices or sales receipts." -msgstr "" +msgstr "銷售付款使你能夠輸入你的客戶付過來的款。輸入付款過程中你要輸入客戶、付款方式和金額。系統會自動提示你要和哪張發票或收據對賬。" #. module: account_voucher #: selection:account.voucher,type:0 selection:sale.receipt.report,type:0 @@ -209,12 +209,12 @@ msgstr "減價" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 msgid "Journal Item" -msgstr "" +msgstr "會計憑證行" #. module: account_voucher #: field:account.voucher,is_multi_currency:0 msgid "Multi Currency Voucher" -msgstr "" +msgstr "多幣種憑證" #. module: account_voucher #: field:account.voucher.line,amount:0 @@ -244,17 +244,17 @@ msgstr "日期付款" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "" +msgstr "銀行對賬單明細" #. module: account_voucher #: view:account.voucher:0 view:account.voucher.unreconcile:0 msgid "Unreconcile" -msgstr "" +msgstr "未對帳" #. module: account_voucher #: constraint:account.invoice:0 msgid "Invalid BBA Structured Communication !" -msgstr "" +msgstr "BBA傳輸結構有誤!" #. module: account_voucher #: field:account.voucher,tax_id:0 @@ -264,24 +264,24 @@ msgstr "稅" #. module: account_voucher #: constraint:account.bank.statement:0 msgid "The journal and period chosen have to belong to the same company." -msgstr "" +msgstr "所選的憑證簿和期間必須屬於相同公司。" #. module: account_voucher #: field:account.voucher,comment:0 msgid "Counterpart Comment" -msgstr "" +msgstr "對應備註" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 msgid "Analytic Account" -msgstr "" +msgstr "輔助核算項目" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:927 #: code:addons/account_voucher/account_voucher.py:931 #, python-format msgid "Warning" -msgstr "" +msgstr "警告" #. module: account_voucher #: view:account.voucher:0 @@ -306,14 +306,14 @@ msgstr "匯入發票" #. module: account_voucher #: selection:account.voucher,pay_now:0 selection:sale.receipt.report,pay_now:0 msgid "Pay Later or Group Funds" -msgstr "" +msgstr "稍後付款或團購" #. module: account_voucher #: help:account.voucher,writeoff_amount:0 msgid "" "Computed as the difference between the amount stated in the voucher and the " "sum of allocation on the voucher lines." -msgstr "" +msgstr "計算公式 : 憑證上输入的金额 - 憑證行的金额合計." #. module: account_voucher #: selection:account.voucher,type:0 selection:sale.receipt.report,type:0 @@ -328,38 +328,38 @@ msgstr "銷售明細" #. module: account_voucher #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "" +msgstr "錯誤!您不能建立遞歸公司." #. module: account_voucher #: view:sale.receipt.report:0 msgid "current month" -msgstr "" +msgstr "本月" #. module: account_voucher #: view:account.voucher:0 field:account.voucher,period_id:0 msgid "Period" -msgstr "" +msgstr "會計期間" #. module: account_voucher #: view:account.voucher:0 field:account.voucher,state:0 #: view:sale.receipt.report:0 msgid "State" -msgstr "" +msgstr "狀態" #. module: account_voucher #: selection:account.voucher.line,type:0 msgid "Debit" -msgstr "" +msgstr "借方" #. module: account_voucher #: sql_constraint:res.company:0 msgid "The company name must be unique !" -msgstr "" +msgstr "公司名稱必須唯一!" #. module: account_voucher #: view:sale.receipt.report:0 field:sale.receipt.report,nbr:0 msgid "# of Voucher Lines" -msgstr "" +msgstr "憑證明細" #. module: account_voucher #: view:sale.receipt.report:0 field:sale.receipt.report,type:0 @@ -369,12 +369,12 @@ msgstr "類型" #. module: account_voucher #: field:account.voucher.unreconcile,remove:0 msgid "Want to remove accounting entries too ?" -msgstr "" +msgstr "要刪除會計憑證嗎?" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Pro-forma Vouchers" -msgstr "" +msgstr "收據" #. module: account_voucher #: view:account.voucher:0 @@ -387,7 +387,7 @@ msgstr "換領券項目" #: code:addons/account_voucher/account_voucher.py:894 #, python-format msgid "Error !" -msgstr "" +msgstr "錯誤 !" #. module: account_voucher #: view:account.voucher:0 @@ -408,12 +408,12 @@ msgstr "備忘錄" #: view:account.invoice:0 code:addons/account_voucher/invoice.py:32 #, python-format msgid "Pay Invoice" -msgstr "付發票" +msgstr "付款" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile and cancel this record ?" -msgstr "" +msgstr "你確定要反核銷並作廢這條記錄嗎?" #. module: account_voucher #: view:account.voucher:0 @@ -426,7 +426,7 @@ msgstr "銷售收據" #: code:addons/account_voucher/account_voucher.py:797 #, python-format msgid "Invalid action !" -msgstr "" +msgstr "無效操作 !" #. module: account_voucher #: view:account.voucher:0 @@ -441,12 +441,12 @@ msgstr "七月" #. module: account_voucher #: view:account.voucher.unreconcile:0 msgid "Unreconciliation" -msgstr "" +msgstr "取消對帳" #. module: account_voucher #: field:account.voucher,writeoff_amount:0 msgid "Difference Amount" -msgstr "" +msgstr "差異金額" #. module: account_voucher #: view:sale.receipt.report:0 field:sale.receipt.report,due_delay:0 @@ -456,13 +456,13 @@ msgstr "平均到期延誤" #. module: account_voucher #: field:res.company,income_currency_exchange_account_id:0 msgid "Income Currency Rate" -msgstr "" +msgstr "收款幣種匯率" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1063 #, python-format msgid "No Account Base Code and Account Tax Code!" -msgstr "" +msgstr "沒有科目和稅碼!" #. module: account_voucher #: field:account.voucher,tax_amount:0 @@ -472,7 +472,7 @@ msgstr "稅金總額" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Validated Vouchers" -msgstr "" +msgstr "以覆核的憑證" #. module: account_voucher #: field:account.voucher,line_ids:0 view:account.voucher.line:0 @@ -495,19 +495,19 @@ msgstr "伙伴" #. module: account_voucher #: field:account.voucher,payment_option:0 msgid "Payment Difference" -msgstr "" +msgstr "付款差額" #. module: account_voucher #: constraint:account.bank.statement.line:0 msgid "" "The amount of the voucher must be the same amount as the one on the " "statement line" -msgstr "" +msgstr "憑證金額必須和對賬單明細上的金額一致" #. module: account_voucher #: view:account.voucher:0 field:account.voucher,audit:0 msgid "To Review" -msgstr "" +msgstr "待審查" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:938 @@ -515,7 +515,7 @@ msgstr "" #: code:addons/account_voucher/account_voucher.py:1103 #, python-format msgid "change" -msgstr "" +msgstr "變更" #. module: account_voucher #: view:account.voucher:0 @@ -527,7 +527,7 @@ msgstr "支出明細" msgid "" "Fields with internal purpose only that depicts if the voucher is a multi " "currency one or not" -msgstr "" +msgstr "此字段由系統內部使用,區分該憑證是否涉及外幣" #. module: account_voucher #: field:account.statement.from.invoice,line_ids:0 @@ -543,7 +543,7 @@ msgstr "十二月" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by month of Invoice Date" -msgstr "" +msgstr "依發票月份分組" #. module: account_voucher #: view:sale.receipt.report:0 field:sale.receipt.report,month:0 @@ -560,7 +560,7 @@ msgstr "貨幣" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 msgid "Payable and Receivables" -msgstr "" +msgstr "應收應付" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_payment @@ -569,7 +569,7 @@ msgid "" "suppliers. When you select a supplier, the payment method and an amount for " "the payment, OpenERP will propose to reconcile your payment with the open " "supplier invoices or bills." -msgstr "" +msgstr "付款單用於跟踪你對供應商的付款。選擇供應商、付款方式和付款金額,OpenERP會自動提示你要針對哪張供應商發票付款." #. module: account_voucher #: view:sale.receipt.report:0 field:sale.receipt.report,user_id:0 @@ -584,12 +584,12 @@ msgstr "平均付款延誤" #. module: account_voucher #: help:account.voucher,paid:0 msgid "The Voucher has been totally paid." -msgstr "" +msgstr "這張憑證已全部付完." #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Reconcile Payment Balance" -msgstr "" +msgstr "核銷付款餘額" #. module: account_voucher #: view:account.voucher:0 selection:account.voucher,state:0 @@ -603,12 +603,12 @@ msgstr "草稿" msgid "" "Unable to create accounting entry for currency rate difference. You have to " "configure the field 'Income Currency Rate' on the company! " -msgstr "" +msgstr "無法創建匯兌損益會計憑證。你要在公司設置頁面上輸入“收款貨幣匯率” 字段! " #. module: account_voucher #: view:account.voucher:0 view:sale.receipt.report:0 msgid "Draft Vouchers" -msgstr "" +msgstr "草稿憑證" #. module: account_voucher #: view:sale.receipt.report:0 field:sale.receipt.report,price_total_tax:0 @@ -618,7 +618,7 @@ msgstr "連稅總額" #. module: account_voucher #: view:account.voucher:0 msgid "Allocation" -msgstr "" +msgstr "分配" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -630,7 +630,7 @@ msgstr "八月" msgid "" "Check this box if you are unsure of that journal entry and if you want to " "note it as 'to be reviewed' by an accounting expert." -msgstr "" +msgstr "請勾選,如果您不確定分錄而且標記為\"待審核\"給會計專員。" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -645,12 +645,12 @@ msgstr "六月" #. module: account_voucher #: field:account.voucher,payment_rate_currency_id:0 msgid "Payment Rate Currency" -msgstr "" +msgstr "付款匯率貨幣" #. module: account_voucher #: field:account.voucher,paid:0 msgid "Paid" -msgstr "" +msgstr "已付款" #. module: account_voucher #: view:account.voucher:0 @@ -660,7 +660,7 @@ msgstr "付款條件" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile this record ?" -msgstr "" +msgstr "確定要對此記錄反對賬嗎?" #. module: account_voucher #: field:account.voucher,date:0 field:account.voucher.line,date_original:0 @@ -676,22 +676,22 @@ msgstr "十一月" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "增加篩選條件..." #. module: account_voucher #: field:account.voucher,paid_amount_in_company_currency:0 msgid "Paid Amount in Company Currency" -msgstr "" +msgstr "按公司本位幣計的付款金額" #. module: account_voucher #: field:account.bank.statement.line,amount_reconciled:0 msgid "Amount reconciled" -msgstr "" +msgstr "已對帳金額" #. module: account_voucher #: field:account.voucher,analytic_id:0 msgid "Write-Off Analytic Account" -msgstr "" +msgstr "註銷輔助核算項目" #. module: account_voucher #: selection:account.voucher,pay_now:0 selection:sale.receipt.report,pay_now:0 @@ -701,12 +701,12 @@ msgstr "直接付款" #. module: account_voucher #: field:account.voucher.line,type:0 msgid "Dr/Cr" -msgstr "" +msgstr "借/貸" #. module: account_voucher #: field:account.voucher,pre_line:0 msgid "Previous Payments ?" -msgstr "" +msgstr "預付款?" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -717,7 +717,7 @@ msgstr "一月" #: model:ir.actions.act_window,name:account_voucher.action_voucher_list #: model:ir.ui.menu,name:account_voucher.menu_encode_entries_by_voucher msgid "Journal Vouchers" -msgstr "" +msgstr "傳票" #. module: account_voucher #: view:account.voucher:0 @@ -727,44 +727,44 @@ msgstr "計算稅項" #. module: account_voucher #: model:ir.model,name:account_voucher.model_res_company msgid "Companies" -msgstr "" +msgstr "公司" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:462 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\" !" -msgstr "" +msgstr "請為憑​​證簿\"%s\" 設置默認借方科目和默認貸方科目" #. module: account_voucher #: selection:account.voucher.line,type:0 msgid "Credit" -msgstr "" +msgstr "貸方" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:895 #, python-format msgid "Please define a sequence on the journal !" -msgstr "" +msgstr "在該賬簿請定義一個序列 !" #. module: account_voucher #: view:account.voucher:0 msgid "Open Supplier Journal Entries" -msgstr "" +msgstr "打開供應商的分錄" #. module: account_voucher #: view:account.voucher:0 msgid "Total Allocation" -msgstr "" +msgstr "憑證總額" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by Invoice Date" -msgstr "" +msgstr "依發票日期分組" #. module: account_voucher #: view:account.voucher:0 msgid "Post" -msgstr "" +msgstr "過帳" #. module: account_voucher #: view:account.voucher:0 @@ -774,12 +774,12 @@ msgstr "發票及未完成交易" #. module: account_voucher #: field:res.company,expense_currency_exchange_account_id:0 msgid "Expense Currency Rate" -msgstr "" +msgstr "費用外幣匯率" #. module: account_voucher #: sql_constraint:account.invoice:0 msgid "Invoice Number must be unique per Company!" -msgstr "" +msgstr "發票號必須在公司範圍內唯一" #. module: account_voucher #: view:sale.receipt.report:0 field:sale.receipt.report,price_total:0 @@ -803,12 +803,16 @@ msgid "" "\n" "* The 'Cancelled' state is used when user cancel voucher." msgstr "" +" 新建的憑證是草稿狀態\n" +"當憑證沒有編號的時候是形式放票狀態\n" +"當憑證有了編號並生成了會計憑證時是已過帳狀態\n" +"當用戶作廢了憑證後是作廢狀態" #. module: account_voucher #: view:account.voucher:0 #: model:ir.model,name:account_voucher.model_account_voucher msgid "Accounting Voucher" -msgstr "" +msgstr "會計憑證" #. module: account_voucher #: field:account.voucher,number:0 @@ -818,7 +822,7 @@ msgstr "編號" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement msgid "Bank Statement" -msgstr "" +msgstr "銀行對賬單" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -864,12 +868,12 @@ msgstr "取消" #: selection:account.voucher,state:0 view:sale.receipt.report:0 #: selection:sale.receipt.report,state:0 msgid "Pro-forma" -msgstr "" +msgstr "形式發票" #. module: account_voucher #: view:account.voucher:0 field:account.voucher,move_ids:0 msgid "Journal Items" -msgstr "" +msgstr "帳簿明細" #. module: account_voucher #: view:account.voucher:0 @@ -883,7 +887,7 @@ msgstr "客戶付款" #: view:account.statement.from.invoice:0 #: model:ir.actions.act_window,name:account_voucher.action_view_account_statement_from_invoice msgid "Import Invoices in Statement" -msgstr "" +msgstr "在銀行單據裡導入發票" #. module: account_voucher #: selection:account.voucher,type:0 selection:sale.receipt.report,type:0 @@ -898,12 +902,12 @@ msgstr "付款" #. module: account_voucher #: view:sale.receipt.report:0 msgid "year" -msgstr "" +msgstr "年" #. module: account_voucher #: view:account.voucher:0 msgid "Currency Options" -msgstr "" +msgstr "外幣選項" #. module: account_voucher #: help:account.voucher,payment_option:0 @@ -912,12 +916,12 @@ msgid "" "difference between the paid amount and the sum of allocated amounts. You can " "either choose to keep open this difference on the partner's account, or " "reconcile it with the payment(s)" -msgstr "" +msgstr "此字段用於選擇對已支付金額和已分配金額的差異如何處理。可以選擇保持欠款狀態,也可以用其他付款來核銷。" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to confirm this record ?" -msgstr "" +msgstr "你要確認這條紀錄嗎 ?" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_sale_receipt_report_all @@ -925,17 +929,17 @@ msgid "" "From this report, you can have an overview of the amount invoiced to your " "customer as well as payment delays. The tool search can also be used to " "personalise your Invoices reports and so, match this analysis to your needs." -msgstr "" +msgstr "在這報表中,您能了解到給您的客戶開發票的金額以及拖欠款項。這工具也可以用於搜索您特定的發票報表等。" #. module: account_voucher #: view:account.voucher:0 msgid "Posted Vouchers" -msgstr "" +msgstr "已過帳憑證" #. module: account_voucher #: field:account.voucher,payment_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "匯率" #. module: account_voucher #: view:account.voucher:0 @@ -957,7 +961,7 @@ msgstr "五月" #: field:account.voucher,journal_id:0 view:sale.receipt.report:0 #: field:sale.receipt.report,journal_id:0 msgid "Journal" -msgstr "" +msgstr "帳簿" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment @@ -973,7 +977,7 @@ msgstr "內部備註" #. module: account_voucher #: view:account.voucher:0 field:account.voucher,line_cr_ids:0 msgid "Credits" -msgstr "" +msgstr "貸方" #. module: account_voucher #: field:account.voucher.line,amount_original:0 @@ -984,14 +988,14 @@ msgstr "原總額" #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipt" -msgstr "" +msgstr "採購付款" #. module: account_voucher #: help:account.voucher,payment_rate:0 msgid "" "The specific rate that will be used, in this voucher, between the selected " "currency (in 'Payment Rate Currency' field) and the voucher currency." -msgstr "" +msgstr "用於特定的匯率,適用於這張憑證,用於轉換所選貨幣(在“付款匯率貨幣”字段輸入)和憑證貨幣。" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 view:account.invoice:0 @@ -1004,7 +1008,7 @@ msgstr "付款" #: view:account.voucher:0 selection:account.voucher,state:0 #: view:sale.receipt.report:0 selection:sale.receipt.report,state:0 msgid "Posted" -msgstr "" +msgstr "已登帳" #. module: account_voucher #: view:account.voucher:0 @@ -1024,7 +1028,7 @@ msgstr "供應商發票及未完成交易" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Month-1" -msgstr "" +msgstr "上月" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -1034,7 +1038,7 @@ msgstr "四月" #. module: account_voucher #: help:account.voucher,tax_id:0 msgid "Only for tax excluded from price" -msgstr "" +msgstr "僅針對價外稅" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:931 @@ -1042,7 +1046,7 @@ msgstr "" msgid "" "Unable to create accounting entry for currency rate difference. You have to " "configure the field 'Expense Currency Rate' on the company! " -msgstr "" +msgstr "無法為匯兌損益創建會計憑證。你必須在公司設置裡輸入“費用貨幣匯率”字段! " #. module: account_voucher #: field:account.voucher,type:0 @@ -1053,12 +1057,12 @@ msgstr "預設類型" #: model:ir.model,name:account_voucher.model_account_statement_from_invoice #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines msgid "Entries by Statement from Invoices" -msgstr "" +msgstr "按發票收付款的憑證行" #. module: account_voucher #: field:account.voucher,move_id:0 msgid "Account Entry" -msgstr "" +msgstr "分錄" #. module: account_voucher #: field:account.voucher,reference:0 @@ -1073,7 +1077,7 @@ msgstr "換領券狀態" #. module: account_voucher #: help:account.voucher,date:0 msgid "Effective date for accounting entries" -msgstr "" +msgstr "會計分錄的生效日期" #. module: account_voucher #: selection:account.voucher,payment_option:0 @@ -1085,7 +1089,7 @@ msgstr "保持開啟" msgid "" "If you unreconciliate transactions, you must also verify all the actions " "that are linked to those transactions because they will not be disable" -msgstr "" +msgstr "如果進行取消對賬處理你必須檢驗處理的所有操作。因為他們不會被禁止" #. module: account_voucher #: field:account.voucher.line,untax_amount:0 @@ -1105,7 +1109,7 @@ msgstr "年份" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 msgid "Open Balance" -msgstr "" +msgstr "未結餘額" #. module: account_voucher #: view:account.voucher:0 field:account.voucher,amount:0 @@ -1150,3 +1154,6 @@ msgstr "總計" #~ msgid "Write-Off Comment" #~ msgstr "注銷評語" + +#~ msgid "Unreconciliation transactions" +#~ msgstr "取消對帳交易" diff --git a/addons/account_voucher/test/account_voucher.yml b/addons/account_voucher/test/account_voucher.yml index 9cfb9d61229..2ea6c0b7890 100644 --- a/addons/account_voucher/test/account_voucher.yml +++ b/addons/account_voucher/test/account_voucher.yml @@ -54,7 +54,7 @@ currency_id: base.EUR journal_id: account.bank_journal name: Voucher Axelor - narration: Basic PC + narration: PC Assemble SC234 line_dr_ids: - account_id: account.cash amount: 1000.0 diff --git a/addons/account_voucher/test/account_voucher_report.yml b/addons/account_voucher/test/account_voucher_report.yml index 85432f747aa..3996e0c27e4 100644 --- a/addons/account_voucher/test/account_voucher_report.yml +++ b/addons/account_voucher/test/account_voucher_report.yml @@ -6,7 +6,7 @@ company_id: base.main_company journal_id: account.bank_journal name: Voucher Axelor - narration: Basic PC + narration: PC Assemble SC234 amount: 1000.0 line_ids: - account_id: account.cash diff --git a/addons/account_voucher/test/case1_usd_usd.yml b/addons/account_voucher/test/case1_usd_usd.yml index 45c352955f4..b706e6f0644 100644 --- a/addons/account_voucher/test/case1_usd_usd.yml +++ b/addons/account_voucher/test/case1_usd_usd.yml @@ -79,7 +79,7 @@ period_id: account.period_1 invoice_line: - account_id: account.a_sale - name: '[PC1] Basic PC' + name: '[PCSC234] PC Assemble SC234' price_unit: 200.0 quantity: 1.0 product_id: product.product_product_3 @@ -112,7 +112,7 @@ period_id: account.period_2 invoice_line: - account_id: account.a_sale - name: '[PC1] Basic PC' + name: '[PCSC234] PC Assemble SC234' price_unit: 100.0 quantity: 1.0 product_id: product.product_product_3 diff --git a/addons/account_voucher/test/case2_suppl_usd_eur.yml b/addons/account_voucher/test/case2_suppl_usd_eur.yml index cc4c238aaaf..1a0c250395e 100644 --- a/addons/account_voucher/test/case2_suppl_usd_eur.yml +++ b/addons/account_voucher/test/case2_suppl_usd_eur.yml @@ -50,7 +50,7 @@ period_id: account.period_1 invoice_line: - account_id: account.a_expense - name: '[PC1] Basic PC' + name: '[PCSC234] PC Assemble SC234' price_unit: 200.0 quantity: 1.0 product_id: product.product_product_3 @@ -85,7 +85,7 @@ type : in_invoice invoice_line: - account_id: account.a_expense - name: '[PC1] Basic PC' + name: '[PCSC234] PC Assemble SC234' price_unit: 100.0 quantity: 1.0 product_id: product.product_product_3 diff --git a/addons/account_voucher/test/case2_usd_eur_debtor_in_eur.yml b/addons/account_voucher/test/case2_usd_eur_debtor_in_eur.yml index c37783247db..91f8a629cbb 100644 --- a/addons/account_voucher/test/case2_usd_eur_debtor_in_eur.yml +++ b/addons/account_voucher/test/case2_usd_eur_debtor_in_eur.yml @@ -85,7 +85,7 @@ period_id: account.period_1 invoice_line: - account_id: account.a_sale - name: '[PC1] Basic PC' + name: '[PCSC234] PC Assemble SC234' price_unit: 200.0 quantity: 1.0 product_id: product.product_product_3 @@ -118,7 +118,7 @@ period_id: account.period_2 invoice_line: - account_id: account.a_sale - name: '[PC1] Basic PC' + name: '[PCSC234] PC Assemble SC234' price_unit: 100.0 quantity: 1.0 product_id: product.product_product_3 diff --git a/addons/account_voucher/test/case2_usd_eur_debtor_in_usd.yml b/addons/account_voucher/test/case2_usd_eur_debtor_in_usd.yml index 36593a2b9cd..cc5e819af30 100644 --- a/addons/account_voucher/test/case2_usd_eur_debtor_in_usd.yml +++ b/addons/account_voucher/test/case2_usd_eur_debtor_in_usd.yml @@ -85,7 +85,7 @@ period_id: account.period_1 invoice_line: - account_id: account.a_sale - name: '[PC1] Basic PC' + name: '[PCSC234] PC Assemble SC234' price_unit: 200.0 quantity: 1.0 product_id: product.product_product_3 @@ -118,7 +118,7 @@ period_id: account.period_2 invoice_line: - account_id: account.a_sale - name: '[PC1] Basic PC' + name: '[PCSC234] PC Assemble SC234' price_unit: 100.0 quantity: 1.0 product_id: product.product_product_3 diff --git a/addons/account_voucher/test/case3_eur_eur.yml b/addons/account_voucher/test/case3_eur_eur.yml index d70bd41a2ff..37ea7ea981a 100644 --- a/addons/account_voucher/test/case3_eur_eur.yml +++ b/addons/account_voucher/test/case3_eur_eur.yml @@ -39,7 +39,7 @@ period_id: account.period_1 invoice_line: - account_id: account.a_sale - name: '[PC1] Basic PC' + name: '[PCSC234] PC Assemble SC234' price_unit: 150.0 quantity: 1.0 product_id: product.product_product_3 @@ -72,7 +72,7 @@ period_id: account.period_1 invoice_line: - account_id: account.a_sale - name: '[PC1] Basic PC' + name: '[PCSC234] PC Assemble SC234' price_unit: 80.0 quantity: 1.0 product_id: product.product_product_3 diff --git a/addons/account_voucher/test/case4_cad_chf.yml b/addons/account_voucher/test/case4_cad_chf.yml index 5ca901cdbca..a78669c95ef 100644 --- a/addons/account_voucher/test/case4_cad_chf.yml +++ b/addons/account_voucher/test/case4_cad_chf.yml @@ -73,7 +73,7 @@ period_id: account.period_1 invoice_line: - account_id: account.a_sale - name: '[PC1] Basic PC' + name: '[PCSC234] PC Assemble SC234' price_unit: 200.0 quantity: 1.0 product_id: product.product_product_3 diff --git a/addons/account_voucher/test/case_eur_usd.yml b/addons/account_voucher/test/case_eur_usd.yml index 2ca2ded1a72..125277191cb 100644 --- a/addons/account_voucher/test/case_eur_usd.yml +++ b/addons/account_voucher/test/case_eur_usd.yml @@ -52,7 +52,7 @@ period_id: account.period_1 invoice_line: - account_id: account.a_sale - name: '[PC1] Basic PC' + name: '[PCSC234] PC Assemble SC234' price_unit: 1000.0 quantity: 1.0 product_id: product.product_product_3 diff --git a/addons/account_voucher/test/sales_payment.yml b/addons/account_voucher/test/sales_payment.yml index 585ce23aace..88f10e55918 100644 --- a/addons/account_voucher/test/sales_payment.yml +++ b/addons/account_voucher/test/sales_payment.yml @@ -7,7 +7,7 @@ currency_id: base.EUR invoice_line: - account_id: account.a_sale - name: '[PC1] Basic PC' + name: '[PCSC234] PC Assemble SC234' price_unit: 450.0 quantity: 1.0 product_id: product.product_product_3 diff --git a/addons/analytic/__openerp__.py b/addons/analytic/__openerp__.py index 859a65e7856..10762a1d2be 100644 --- a/addons/analytic/__openerp__.py +++ b/addons/analytic/__openerp__.py @@ -20,13 +20,13 @@ ############################################################################## { - "name" : "Analytic Accounting", - "version": "1.1", - "author" : "OpenERP SA", - "website" : "http://www.openerp.com", - "category": 'Hidden/Dependency', - "depends" : ["base", "decimal_precision", "mail"], - "description": """ + 'name' : 'Analytic Accounting', + 'version': '1.1', + 'author' : 'OpenERP SA', + 'website' : 'http://www.openerp.com', + 'category': 'Hidden/Dependency', + 'depends' : ['base', 'decimal_precision', 'mail'], + 'description': """ Module for defining analytic accounting object. =============================================== @@ -34,16 +34,15 @@ In OpenERP, analytic accounts are linked to general accounts but are treated totally independently. So, you can enter various different analytic operations that have no counterpart in the general financial accounts. """, - "init_xml" : [], - "update_xml": ['security/analytic_security.xml', - "security/ir.model.access.csv", - "analytic_sequence.xml", - "analytic_view.xml" - ], - 'demo_xml': [ + 'data': [ + 'security/analytic_security.xml', + 'security/ir.model.access.csv', + 'analytic_sequence.xml', + 'analytic_view.xml' ], + 'demo': [], 'installable': True, 'auto_install': False, - 'certificate' : "00462253285027988541", + 'certificate' : '00462253285027988541', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/analytic/analytic.py b/addons/analytic/analytic.py index 3231b1e6d95..d90e2006a71 100644 --- a/addons/analytic/analytic.py +++ b/addons/analytic/analytic.py @@ -153,9 +153,9 @@ class account_analytic_account(osv.osv): return result _columns = { - 'name': fields.char('Account Name', size=128, required=True), + 'name': fields.char('Account/Contract Name', size=128, required=True), 'complete_name': fields.function(_complete_name_calc, type='char', string='Full Account Name'), - 'code': fields.char('Code/Reference', size=24, select=True), + 'code': fields.char('Reference', size=24, select=True), 'type': fields.selection([('view','Analytic View'), ('normal','Analytic Account'),('contract','Contract or Project'),('template','Template of Project')], 'Type of Account', required=True, help="If you select the View Type, it means you won\'t allow to create journal entries using that account.\n"\ "The type 'Analytic account' stands for usual accounts that you only want to use in accounting.\n"\ @@ -171,7 +171,7 @@ class account_analytic_account(osv.osv): 'debit': fields.function(_debit_credit_bal_qtty, type='float', string='Debit', multi='debit_credit_bal_qtty', digits_compute=dp.get_precision('Account')), 'credit': fields.function(_debit_credit_bal_qtty, type='float', string='Credit', multi='debit_credit_bal_qtty', digits_compute=dp.get_precision('Account')), 'quantity': fields.function(_debit_credit_bal_qtty, type='float', string='Quantity', multi='debit_credit_bal_qtty'), - 'quantity_max': fields.float('Maximum Time', help='Sets the higher limit of time to work on the contract.'), + 'quantity_max': fields.float('Prepaid Units', help='Sets the higher limit of time to work on the contract.'), 'partner_id': fields.many2one('res.partner', 'Customer'), 'user_id': fields.many2one('res.users', 'Project Manager'), 'manager_id': fields.many2one('res.users', 'Account Manager'), @@ -297,7 +297,7 @@ class account_analytic_account(osv.osv): def create_send_note(self, cr, uid, ids, context=None): for obj in self.browse(cr, uid, ids, context=context): - self.message_append_note(cr, uid, [obj.id], body=_("Contract for %s has been created.") % (obj.partner_id.name), context=context) + self.message_post(cr, uid, [obj.id], body=_("Contract for %s has been created.") % (obj.partner_id.name), context=context) account_analytic_account() diff --git a/addons/analytic/analytic_view.xml b/addons/analytic/analytic_view.xml index 16100e73fff..704d9bb8244 100644 --- a/addons/analytic/analytic_view.xml +++ b/addons/analytic/analytic_view.xml @@ -8,35 +8,43 @@ +
+
+ +
@@ -37,8 +36,6 @@ - - crm.lead.geo_assign.tree.inherit crm.lead @@ -49,6 +46,7 @@ + crm.opportunity.partner.filter.assigned crm.lead @@ -63,5 +61,6 @@ + diff --git a/addons/crm_partner_assign/i18n/ar.po b/addons/crm_partner_assign/i18n/ar.po index af2b96e8019..53d88fd259a 100644 --- a/addons/crm_partner_assign/i18n/ar.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "التمركز الجغرافي" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -134,7 +134,7 @@ msgid "Highest" msgstr "أعلى" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/bg.po b/addons/crm_partner_assign/i18n/bg.po index dd7d8e8446d..cb670286522 100644 --- a/addons/crm_partner_assign/i18n/bg.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -133,7 +133,7 @@ msgid "Highest" msgstr "Най-висок" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/ca.po b/addons/crm_partner_assign/i18n/ca.po index f012dc16dfb..1f73a19b35a 100644 --- a/addons/crm_partner_assign/i18n/ca.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "Geo localitzar" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -135,7 +135,7 @@ msgid "Highest" msgstr "El més alt" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/crm_partner_assign.pot b/addons/crm_partner_assign/i18n/crm_partner_assign.pot index 3fb9fc0e915..c3ddc66fa3b 100644 --- a/addons/crm_partner_assign/i18n/crm_partner_assign.pot +++ b/addons/crm_partner_assign/i18n/crm_partner_assign.pot @@ -72,7 +72,7 @@ msgid "Geo Localize" msgstr "" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -129,7 +129,7 @@ msgid "Highest" msgstr "" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/da.po b/addons/crm_partner_assign/i18n/da.po index ae5ebe38ebb..5bb8265399f 100644 --- a/addons/crm_partner_assign/i18n/da.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -133,7 +133,7 @@ msgid "Highest" msgstr "" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/de.po b/addons/crm_partner_assign/i18n/de.po index 351a5d1f7b5..20a3352bc3f 100644 --- a/addons/crm_partner_assign/i18n/de.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "Geogr. Lokalisierung" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "Text Version der Mitteilung" @@ -135,7 +135,7 @@ msgid "Highest" msgstr "Sehr Hoch" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "Text Inhalt" diff --git a/addons/crm_partner_assign/i18n/el.po b/addons/crm_partner_assign/i18n/el.po index 97bdb8238a8..edad942b005 100644 --- a/addons/crm_partner_assign/i18n/el.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -133,7 +133,7 @@ msgid "Highest" msgstr "Υψηλότερο" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/es.po b/addons/crm_partner_assign/i18n/es.po index 827161206de..f4e6d399e15 100644 --- a/addons/crm_partner_assign/i18n/es.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "Geo localizar" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -135,7 +135,7 @@ msgid "Highest" msgstr "Más alta" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/es_CR.po b/addons/crm_partner_assign/i18n/es_CR.po index 249f9e9b24c..383f2669379 100644 --- a/addons/crm_partner_assign/i18n/es_CR.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" "Language: es\n" #. module: crm_partner_assign @@ -75,7 +75,7 @@ msgid "Geo Localize" msgstr "Geo localizar" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "Versión en texto plano del mensaje" @@ -136,7 +136,7 @@ msgid "Highest" msgstr "Más alta" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "Contenido del Texto" diff --git a/addons/crm_partner_assign/i18n/es_PY.po b/addons/crm_partner_assign/i18n/es_PY.po index 8c5343be3ac..b250c96e070 100644 --- a/addons/crm_partner_assign/i18n/es_PY.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "Geo localizar" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -135,7 +135,7 @@ msgid "Highest" msgstr "Muy alto" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/fi.po b/addons/crm_partner_assign/i18n/fi.po index 54cd578ce0b..9c237cf5495 100644 --- a/addons/crm_partner_assign/i18n/fi.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "Alueellista" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -133,7 +133,7 @@ msgid "Highest" msgstr "Korkein" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/fr.po b/addons/crm_partner_assign/i18n/fr.po index 7499444cdce..0d3f4e07808 100644 --- a/addons/crm_partner_assign/i18n/fr.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -75,7 +75,7 @@ msgid "Geo Localize" msgstr "Géolocalisation" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "Version plein texte du message" @@ -136,7 +136,7 @@ msgid "Highest" msgstr "La Plus haute" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "Contenu du texte" diff --git a/addons/crm_partner_assign/i18n/gl.po b/addons/crm_partner_assign/i18n/gl.po index 93def92dc17..184f3a25386 100644 --- a/addons/crm_partner_assign/i18n/gl.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "Xeolocalizar" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -135,7 +135,7 @@ msgid "Highest" msgstr "A máis alta" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/hr.po b/addons/crm_partner_assign/i18n/hr.po index d41efee23a3..3236f0bd3ac 100644 --- a/addons/crm_partner_assign/i18n/hr.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -133,7 +133,7 @@ msgid "Highest" msgstr "Najviši" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/hu.po b/addons/crm_partner_assign/i18n/hu.po index 96a1ea38f80..daaeca2363e 100644 --- a/addons/crm_partner_assign/i18n/hu.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "Földrajzi fekvés meghatározása" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -133,7 +133,7 @@ msgid "Highest" msgstr "Legmagasabb" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/it.po b/addons/crm_partner_assign/i18n/it.po index 9ffbeac4a0d..21d3c30d82b 100644 --- a/addons/crm_partner_assign/i18n/it.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "Geo localizzazione" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -135,7 +135,7 @@ msgid "Highest" msgstr "Maggiore" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/ja.po b/addons/crm_partner_assign/i18n/ja.po index 71118b510d3..93dcbe346ca 100644 --- a/addons/crm_partner_assign/i18n/ja.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "ジオロカライゼーション" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "メッセージのテキスト版" @@ -133,7 +133,7 @@ msgid "Highest" msgstr "最高" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "テキストの内容" diff --git a/addons/crm_partner_assign/i18n/lt.po b/addons/crm_partner_assign/i18n/lt.po index bec6492db36..8e89e14575c 100644 --- a/addons/crm_partner_assign/i18n/lt.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -133,7 +133,7 @@ msgid "Highest" msgstr "" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/lv.po b/addons/crm_partner_assign/i18n/lv.po index cf9563af198..182f8990341 100644 --- a/addons/crm_partner_assign/i18n/lv.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "Ģeo. lokalizācija" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -133,7 +133,7 @@ msgid "Highest" msgstr "Augstākā" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/nl.po b/addons/crm_partner_assign/i18n/nl.po index 3491555f881..ac9dc276e82 100644 --- a/addons/crm_partner_assign/i18n/nl.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "Geo lokaliseren" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "Platte tekst versie van het bericht" @@ -135,7 +135,7 @@ msgid "Highest" msgstr "Hoogste" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "Tekst inhoud" diff --git a/addons/crm_partner_assign/i18n/pl.po b/addons/crm_partner_assign/i18n/pl.po index a069dbb164d..31936f2794c 100644 --- a/addons/crm_partner_assign/i18n/pl.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "Lokalizacja geograficzna" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -135,7 +135,7 @@ msgid "Highest" msgstr "Najwyższy" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/pt.po b/addons/crm_partner_assign/i18n/pt.po index b6be865392d..ba250d4519b 100644 --- a/addons/crm_partner_assign/i18n/pt.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "Localizar Geograficamente" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "Formatação do texto da versão da mensagem" @@ -135,7 +135,7 @@ msgid "Highest" msgstr "Maior" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "Conteúdos do texto" diff --git a/addons/crm_partner_assign/i18n/pt_BR.po b/addons/crm_partner_assign/i18n/pt_BR.po index 2cbcff71b56..fa7a7d0561c 100644 --- a/addons/crm_partner_assign/i18n/pt_BR.po +++ b/addons/crm_partner_assign/i18n/pt_BR.po @@ -9,13 +9,14 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 00:36+0000\n" "PO-Revision-Date: 2012-07-28 18:41+0000\n" -"Last-Translator: Fábio Martinelli \n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +75,7 @@ msgid "Geo Localize" msgstr "Localização Geográfica" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "Versão em texto" @@ -135,7 +136,7 @@ msgid "Highest" msgstr "Mais Alta" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "Conteúdo" diff --git a/addons/crm_partner_assign/i18n/ro.po b/addons/crm_partner_assign/i18n/ro.po index e812b698222..c385587a99b 100644 --- a/addons/crm_partner_assign/i18n/ro.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "Localizare Geo" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "Versiune text-simplu a mesajului" @@ -135,7 +135,7 @@ msgid "Highest" msgstr "Cel mai ridicat (cea mai ridicata)" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "Cuprins text" diff --git a/addons/crm_partner_assign/i18n/ru.po b/addons/crm_partner_assign/i18n/ru.po index db52331d16c..0a354515bf8 100644 --- a/addons/crm_partner_assign/i18n/ru.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "Геолоцировать" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -135,7 +135,7 @@ msgid "Highest" msgstr "Высший" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/sq.po b/addons/crm_partner_assign/i18n/sq.po index 90730a5ed8a..7d2f01a6693 100644 --- a/addons/crm_partner_assign/i18n/sq.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -133,7 +133,7 @@ msgid "Highest" msgstr "" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/sr@latin.po b/addons/crm_partner_assign/i18n/sr@latin.po index d01d4949341..0605ee65706 100644 --- a/addons/crm_partner_assign/i18n/sr@latin.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "" @@ -133,7 +133,7 @@ msgid "Highest" msgstr "" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "" diff --git a/addons/crm_partner_assign/i18n/sv.po b/addons/crm_partner_assign/i18n/sv.po index b691d189b8a..0605d54bcaa 100644 --- a/addons/crm_partner_assign/i18n/sv.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "Geoplacering" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "Textversion av meddelandet" @@ -135,7 +135,7 @@ msgid "Highest" msgstr "Högsta" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "Textinnehåll" diff --git a/addons/crm_partner_assign/i18n/tr.po b/addons/crm_partner_assign/i18n/tr.po index fae0ed2b8f5..11fcc743002 100644 --- a/addons/crm_partner_assign/i18n/tr.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -25,12 +25,12 @@ msgstr "Gönder" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,subtype:0 msgid "Message type" -msgstr "" +msgstr "Mesaj tipi" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,auto_delete:0 msgid "Permanently delete emails after sending" -msgstr "" +msgstr "Gönderdikten sonra epostaları kalıcı olarak sil." #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 @@ -40,7 +40,7 @@ msgstr "Kapanmada gecikme" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,email_to:0 msgid "Message recipients" -msgstr "" +msgstr "Mesaj Alıcıları" #. module: crm_partner_assign #: field:crm.lead.report.assign,planned_revenue:0 @@ -61,7 +61,7 @@ msgstr "Grupla..." #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,template_id:0 msgid "Template" -msgstr "" +msgstr "Şablon" #. module: crm_partner_assign #: view:crm.lead:0 @@ -74,14 +74,14 @@ msgid "Geo Localize" msgstr "Coğrafi konumlama" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" -msgstr "" +msgstr "Mesajın düz-metin versiyonu" #. module: crm_partner_assign #: view:crm.lead.forward.to.partner:0 msgid "Body" -msgstr "" +msgstr "Gövde" #. module: crm_partner_assign #: selection:crm.lead.report.assign,month:0 @@ -101,7 +101,7 @@ msgstr "Kapanmada gecikme" #. module: crm_partner_assign #: view:crm.partner.report.assign:0 msgid "#Partner" -msgstr "" +msgstr "#Paydaş" #. module: crm_partner_assign #: selection:crm.lead.forward.to.partner,history:0 @@ -135,9 +135,9 @@ msgid "Highest" msgstr "En yüksek" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" -msgstr "" +msgstr "Metin içeriği" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -148,7 +148,7 @@ msgstr "Gün" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,message_id:0 msgid "Message unique identifier" -msgstr "" +msgstr "Benzersiz mesaj tanımlayıcısı" #. module: crm_partner_assign #: selection:crm.lead.forward.to.partner,history:0 @@ -167,6 +167,7 @@ msgid "" "Add here all attachments of the current document you want to include in the " "Email." msgstr "" +"Epostada yer almasını istediğiniz dökümana ait tüm ekleri buraya ekleyiniz." #. module: crm_partner_assign #: selection:crm.lead.report.assign,state:0 @@ -194,17 +195,17 @@ msgstr "" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,body_html:0 msgid "Rich-text/HTML version of the message" -msgstr "" +msgstr "Mesajın Zengin-metin/HTML versiyonu" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,auto_delete:0 msgid "Auto Delete" -msgstr "" +msgstr "Otomatik Sil" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,email_bcc:0 msgid "Blind carbon copy message recipients" -msgstr "" +msgstr "Mesaj alıcıları görünmeyen mektup kopyası" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,partner_id:0 @@ -253,7 +254,7 @@ msgstr "Bölüm" #. module: crm_partner_assign #: view:crm.lead.forward.to.partner:0 msgid "Send" -msgstr "" +msgstr "Gönder" #. module: crm_partner_assign #: view:res.partner:0 @@ -285,7 +286,7 @@ msgstr "Tür" #. module: crm_partner_assign #: view:crm.partner.report.assign:0 msgid "Name" -msgstr "" +msgstr "Adı" #. module: crm_partner_assign #: selection:crm.lead.report.assign,priority:0 @@ -298,11 +299,13 @@ msgid "" "Type of message, usually 'html' or 'plain', used to select plaintext or rich " "text contents accordingly" msgstr "" +"Mesaj tipi, genellikle \"HTML\" ya da \"düz metin\", düz metin ya da HTML " +"içerikleri seçmek için kullanılır." #. module: crm_partner_assign #: view:crm.lead.report.assign:0 msgid "Assign Date" -msgstr "" +msgstr "Tarih Ata" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -317,7 +320,7 @@ msgstr "Oluşturulma Tarihi" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,res_id:0 msgid "Related Document ID" -msgstr "" +msgstr "İlgili Döküman ID" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -348,7 +351,7 @@ msgstr "Aşama" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,model:0 msgid "Related Document model" -msgstr "" +msgstr "İlgili Döküman Modeli" #. module: crm_partner_assign #: code:addons/crm_partner_assign/wizard/crm_forward_to_partner.py:192 @@ -391,7 +394,7 @@ msgstr "Kapat" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,use_template:0 msgid "Use Template" -msgstr "" +msgstr "Şablon Kullan" #. module: crm_partner_assign #: model:ir.actions.act_window,name:crm_partner_assign.action_report_crm_opportunity_assign @@ -463,12 +466,12 @@ msgstr "#Fırsatlar" #. module: crm_partner_assign #: view:crm.lead:0 msgid "Team" -msgstr "" +msgstr "Takım" #. module: crm_partner_assign #: view:crm.lead:0 msgid "Referred Partner" -msgstr "" +msgstr "Yönlendirilmiş Paydaş" #. module: crm_partner_assign #: selection:crm.lead.report.assign,state:0 @@ -489,7 +492,7 @@ msgstr "Kapandı" #. module: crm_partner_assign #: model:ir.actions.act_window,name:crm_partner_assign.action_crm_send_mass_forward msgid "Mass forward to partner" -msgstr "" +msgstr "Paydaşa toplu iletme" #. module: crm_partner_assign #: view:res.partner:0 @@ -569,7 +572,7 @@ msgstr "Coğ Boylam" #. module: crm_partner_assign #: field:crm.partner.report.assign,opp:0 msgid "# of Opportunity" -msgstr "" +msgstr "# Fırsat" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -599,12 +602,12 @@ msgstr "Bu vak'anın iletildiği/ atandığı İş Ortağı" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,date:0 msgid "Date" -msgstr "" +msgstr "Tarih" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,body_html:0 msgid "Rich-text contents" -msgstr "" +msgstr "Zengin-metin içeriği" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -619,18 +622,18 @@ msgstr "res.partner.grade" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,message_id:0 msgid "Message-Id" -msgstr "" +msgstr "Mesaj-Id" #. module: crm_partner_assign #: view:crm.lead.forward.to.partner:0 #: field:crm.lead.forward.to.partner,attachment_ids:0 msgid "Attachments" -msgstr "" +msgstr "Ekler" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,email_cc:0 msgid "Cc" -msgstr "" +msgstr "Cc" #. module: crm_partner_assign #: selection:crm.lead.report.assign,month:0 @@ -640,7 +643,7 @@ msgstr "Eylül" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,references:0 msgid "References" -msgstr "" +msgstr "Kaynaklar" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -666,7 +669,7 @@ msgstr "Açık" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,email_cc:0 msgid "Carbon copy message recipients" -msgstr "" +msgstr "Mesaj alıcıları karbon kopyası" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,headers:0 @@ -674,6 +677,8 @@ msgid "" "Full message headers, e.g. SMTP session headers (usually available on " "inbound messages only)" msgstr "" +"Tam mesaj başlığı, ör: SMTP oturum başlıkları (genelde sadece gelen " +"mesajlarda bulunur)" #. module: crm_partner_assign #: field:res.partner,date_localization:0 @@ -696,11 +701,13 @@ msgid "" "Message sender, taken from user preferences. If empty, this is not a mail " "but a message." msgstr "" +"Mesaj gönderen, kullanıcı önceliklerinden alındı. Eğer boşsa bu bir e-posta " +"değil mesajdır." #. module: crm_partner_assign #: field:crm.partner.report.assign,nbr:0 msgid "# of Partner" -msgstr "" +msgstr "Paydaş #" #. module: crm_partner_assign #: view:crm.lead.forward.to.partner:0 @@ -711,7 +718,7 @@ msgstr "Paydaşa İlet" #. module: crm_partner_assign #: field:crm.partner.report.assign,name:0 msgid "Partner name" -msgstr "" +msgstr "Paydaş adı" #. module: crm_partner_assign #: selection:crm.lead.report.assign,month:0 @@ -726,7 +733,7 @@ msgstr "Olası Gelir" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,reply_to:0 msgid "Reply-To" -msgstr "" +msgstr "Yanıtla" #. module: crm_partner_assign #: field:crm.lead,partner_assigned_id:0 @@ -746,7 +753,7 @@ msgstr "Fırsat" #. module: crm_partner_assign #: view:crm.lead.forward.to.partner:0 msgid "Send Mail" -msgstr "" +msgstr "İleti Gönder" #. module: crm_partner_assign #: field:crm.lead.report.assign,partner_id:0 @@ -774,7 +781,7 @@ msgstr "Ülke" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,headers:0 msgid "Message headers" -msgstr "" +msgstr "İleti Başlıkları" #. module: crm_partner_assign #: view:res.partner:0 @@ -784,7 +791,7 @@ msgstr "Fırsata Dönüştür" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,email_bcc:0 msgid "Bcc" -msgstr "" +msgstr "Bcc" #. module: crm_partner_assign #: view:crm.lead:0 @@ -800,7 +807,7 @@ msgstr "Nisan" #: model:ir.actions.act_window,name:crm_partner_assign.action_report_crm_partner_assign #: model:ir.ui.menu,name:crm_partner_assign.menu_report_crm_partner_assign_tree msgid "Partnership Analysis" -msgstr "" +msgstr "Paydaşlık İncelemesi" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_crm_lead @@ -815,7 +822,7 @@ msgstr "Bekliyor" #. module: crm_partner_assign #: view:crm.partner.report.assign:0 msgid "Partner assigned Analysis" -msgstr "" +msgstr "İncelenmeye atanmış Aday" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_crm_lead_report_assign @@ -825,12 +832,12 @@ msgstr "MİY Aday Raporu" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,references:0 msgid "Message references, such as identifiers of previous messages" -msgstr "" +msgstr "Mesaj kaynakları, önceki mesajların tanımlayıcıları gibi" #. module: crm_partner_assign #: constraint:res.partner:0 msgid "Error ! You cannot create recursive associated members." -msgstr "" +msgstr "Hata ! yinelenen ilişkili üyeler oluşturamazsınız." #. module: crm_partner_assign #: selection:crm.lead.forward.to.partner,history:0 @@ -845,7 +852,7 @@ msgstr "Dizi" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_crm_partner_report_assign msgid "CRM Partner Report" -msgstr "" +msgstr "CRM Paydaş Raporu" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_crm_lead_forward_to_partner @@ -871,7 +878,7 @@ msgstr "Tarih Oluştur" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,filter_id:0 msgid "Filters" -msgstr "" +msgstr "Süzgeçler" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -882,7 +889,7 @@ msgstr "Yıl" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,reply_to:0 msgid "Preferred response address for the message" -msgstr "" +msgstr "Mesaj için tercih edilen yanıt adresi" #~ msgid "Reply-to of the Sales team defined on this case" #~ msgstr "Bu vak'ada tanımlanan Satış Ekibi'ne gönder" @@ -939,3 +946,6 @@ msgstr "" #~ "müşterileri \n" #~ "paydaşlarına yönlendirmek için kullanılır.\n" #~ " " + +#~ msgid "E-mail composition wizard" +#~ msgstr "E-posta oluşturma sihirbazı" diff --git a/addons/crm_partner_assign/i18n/zh_CN.po b/addons/crm_partner_assign/i18n/zh_CN.po index cbba81541cd..ff25feafd25 100644 --- a/addons/crm_partner_assign/i18n/zh_CN.po +++ b/addons/crm_partner_assign/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: 2012-08-09 04:59+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,send_to:0 @@ -74,7 +74,7 @@ msgid "Geo Localize" msgstr "geolocalization定位" #. module: crm_partner_assign -#: help:crm.lead.forward.to.partner,body_text:0 +#: help:crm.lead.forward.to.partner,body:0 msgid "Plain-text version of the message" msgstr "内容的纯文本版本" @@ -133,7 +133,7 @@ msgid "Highest" msgstr "最高" #. module: crm_partner_assign -#: field:crm.lead.forward.to.partner,body_text:0 +#: field:crm.lead.forward.to.partner,body:0 msgid "Text contents" msgstr "文本内容" diff --git a/addons/crm_partner_assign/i18n/zh_TW.po b/addons/crm_partner_assign/i18n/zh_TW.po new file mode 100644 index 00000000000..4870b464035 --- /dev/null +++ b/addons/crm_partner_assign/i18n/zh_TW.po @@ -0,0 +1,885 @@ +# Chinese (Traditional) translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-02-08 00:36+0000\n" +"PO-Revision-Date: 2012-08-30 10:14+0000\n" +"Last-Translator: Bonnie Duan \n" +"Language-Team: Cenoq Corp.MIME-Version: 1.0\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,send_to:0 +msgid "Send to" +msgstr "傳送給" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,subtype:0 +msgid "Message type" +msgstr "訊息類型" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,auto_delete:0 +msgid "Permanently delete emails after sending" +msgstr "電子郵件發送後永久刪除" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,delay_close:0 +msgid "Delay to Close" +msgstr "延遲關閉" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,email_to:0 +msgid "Message recipients" +msgstr "收件人" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,planned_revenue:0 +msgid "Planned Revenue" +msgstr "計劃收入" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,nbr:0 +msgid "# of Cases" +msgstr "# 業務量" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: view:crm.partner.report.assign:0 +msgid "Group By..." +msgstr "分組..." + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,template_id:0 +msgid "Template" +msgstr "範本" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Forward" +msgstr "轉寄" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Geo Localize" +msgstr "Geo 定位" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,body:0 +msgid "Plain-text version of the message" +msgstr "內容的純文字版本" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +msgid "Body" +msgstr "內文" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "March" +msgstr "3月" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,type:0 +msgid "Lead" +msgstr "潛在客戶" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Delay to close" +msgstr "延遲關閉" + +#. module: crm_partner_assign +#: view:crm.partner.report.assign:0 +msgid "#Partner" +msgstr "#Partner" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,history:0 +msgid "Whole Story" +msgstr "完整的情況" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,company_id:0 +msgid "Company" +msgstr "公司" + +#. module: crm_partner_assign +#: code:addons/crm_partner_assign/partner_geo_assign.py:37 +#, python-format +msgid "" +"Could not contact geolocation servers, please make sure you have a working " +"internet connection (%s)" +msgstr "無法連接到服務器,請確保你的連線(%s) 正常。" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,date_assign:0 +msgid "Partner Date" +msgstr "業務夥伴日期" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,priority:0 +msgid "Highest" +msgstr "最高" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,body:0 +msgid "Text contents" +msgstr "文本內容" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,day:0 +msgid "Day" +msgstr "日" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,message_id:0 +msgid "Message unique identifier" +msgstr "訊息唯一編號" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,history:0 +msgid "Latest email" +msgstr "最近的郵件" + +#. module: crm_partner_assign +#: field:crm.lead,partner_latitude:0 +#: field:res.partner,partner_latitude:0 +msgid "Geo Latitude" +msgstr "Geo 緯度" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +msgid "" +"Add here all attachments of the current document you want to include in the " +"Email." +msgstr "在這裡加入你在郵件裡要加入現有的單據附件。" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,state:0 +msgid "Cancelled" +msgstr "已取消" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Geo Assignation" +msgstr "Geo 指派的" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,date_closed:0 +msgid "Close Date" +msgstr "結束日期" + +#. module: crm_partner_assign +#: help:res.partner,partner_weight:0 +msgid "" +"Gives the probability to assign a lead to this partner. (0 means no " +"assignation.)" +msgstr "為潛在客戶指定一個業務夥伴的概率(表示沒指派)" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,body_html:0 +msgid "Rich-text/HTML version of the message" +msgstr "內容的富文本/HTML版本" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,auto_delete:0 +msgid "Auto Delete" +msgstr "自動刪除" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,email_bcc:0 +msgid "Blind carbon copy message recipients" +msgstr "密件副本收件人" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,partner_id:0 +#: selection:crm.lead.forward.to.partner,send_to:0 +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,partner_assigned_id:0 +#: model:ir.model,name:crm_partner_assign.model_res_partner +msgid "Partner" +msgstr "業務夥伴" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,probability:0 +msgid "Avg Probability" +msgstr "平均概率" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Previous" +msgstr "前一個" + +#. module: crm_partner_assign +#: code:addons/crm_partner_assign/partner_geo_assign.py:36 +#, python-format +msgid "Network error" +msgstr "網絡錯誤" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,email_from:0 +msgid "From" +msgstr "來自" + +#. module: crm_partner_assign +#: model:ir.actions.act_window,name:crm_partner_assign.res_partner_grade_action +#: model:ir.ui.menu,name:crm_partner_assign.menu_res_partner_grade_action +#: field:res.partner,grade_id:0 +#: view:res.partner.grade:0 +msgid "Partner Grade" +msgstr "業務夥伴級別" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: view:crm.partner.report.assign:0 +msgid "Section" +msgstr "劃分" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +msgid "Send" +msgstr "發送" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Next" +msgstr "下一個" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,priority:0 +msgid "Priority" +msgstr "優先級" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,state:0 +msgid "State" +msgstr "狀態" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,delay_expected:0 +msgid "Overpassed Deadline" +msgstr "超過截止日期" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,type:0 +msgid "Type" +msgstr "類型" + +#. module: crm_partner_assign +#: view:crm.partner.report.assign:0 +msgid "Name" +msgstr "名稱" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,priority:0 +msgid "Lowest" +msgstr "最低" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,subtype:0 +msgid "" +"Type of message, usually 'html' or 'plain', used to select plaintext or rich " +"text contents accordingly" +msgstr "內容類型,一般是“html”或“純文本”,用於對應地選擇純文本或富文本" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Assign Date" +msgstr "分配日期" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Leads Analysis" +msgstr "潛在客戶分析" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,creation_date:0 +msgid "Creation Date" +msgstr "建立日期" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,res_id:0 +msgid "Related Document ID" +msgstr "相關單據編號" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "7 Days" +msgstr "7天" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Partner Assignation" +msgstr "指定業務夥伴" + +#. module: crm_partner_assign +#: help:crm.lead.report.assign,type:0 +msgid "Type is used to separate Leads and Opportunities" +msgstr "類型用於區分線索和商機" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "July" +msgstr "7月" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,stage_id:0 +msgid "Stage" +msgstr "階段" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,model:0 +msgid "Related Document model" +msgstr "相關單據模組" + +#. module: crm_partner_assign +#: code:addons/crm_partner_assign/wizard/crm_forward_to_partner.py:192 +#, python-format +msgid "Fwd" +msgstr "轉發" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Geo Localization" +msgstr "Geo 定位" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: view:crm.partner.report.assign:0 +msgid "Opportunities Assignment Analysis" +msgstr "商機指定分析" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Cancel" +msgstr "取消" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,history:0 +msgid "Send history" +msgstr "發送日誌" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +msgid "Contact" +msgstr "聯絡人" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +#: view:res.partner:0 +msgid "Close" +msgstr "結束" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,use_template:0 +msgid "Use Template" +msgstr "使用者範本" + +#. module: crm_partner_assign +#: model:ir.actions.act_window,name:crm_partner_assign.action_report_crm_opportunity_assign +#: model:ir.ui.menu,name:crm_partner_assign.menu_report_crm_opportunities_assign_tree +msgid "Opp. Assignment Analysis" +msgstr "商機指定分析" + +#. module: crm_partner_assign +#: help:crm.lead.report.assign,delay_close:0 +msgid "Number of Days to close the case" +msgstr "到期天數" + +#. module: crm_partner_assign +#: field:res.partner,partner_weight:0 +msgid "Weight" +msgstr "重要性" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Delay to open" +msgstr "延遲開啟" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,grade_id:0 +#: view:crm.partner.report.assign:0 +#: field:crm.partner.report.assign,grade_id:0 +msgid "Grade" +msgstr "級別" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "December" +msgstr "12月" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,month:0 +msgid "Month" +msgstr "月" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,opening_date:0 +msgid "Opening Date" +msgstr "開啟日期" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,subject:0 +msgid "Subject" +msgstr "主題" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: view:crm.partner.report.assign:0 +msgid "Salesman" +msgstr "業務員" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,categ_id:0 +msgid "Category" +msgstr "分類" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "#Opportunities" +msgstr "#商機" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Team" +msgstr "團隊" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Referred Partner" +msgstr "推薦的業務夥伴" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,state:0 +msgid "Draft" +msgstr "草稿" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,priority:0 +msgid "Low" +msgstr "低" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: selection:crm.lead.report.assign,state:0 +msgid "Closed" +msgstr "已結束" + +#. module: crm_partner_assign +#: model:ir.actions.act_window,name:crm_partner_assign.action_crm_send_mass_forward +msgid "Mass forward to partner" +msgstr "批量轉發給業務夥伴" + +#. module: crm_partner_assign +#: view:res.partner:0 +#: field:res.partner,opportunity_assigned_ids:0 +msgid "Assigned Opportunities" +msgstr "轉為商機" + +#. module: crm_partner_assign +#: field:crm.lead,date_assign:0 +msgid "Assignation Date" +msgstr "指定日期" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,probability_max:0 +msgid "Max Probability" +msgstr "最大可能" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "August" +msgstr "8月" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,priority:0 +msgid "Normal" +msgstr "普通" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Escalate" +msgstr "提升" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "June" +msgstr "6月" + +#. module: crm_partner_assign +#: help:crm.lead.report.assign,delay_open:0 +msgid "Number of Days to open the case" +msgstr "業務開啟的天數" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,delay_open:0 +msgid "Delay to Open" +msgstr "延遲開啟" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,send_to:0 +#: field:crm.lead.forward.to.partner,user_id:0 +#: field:crm.lead.report.assign,user_id:0 +#: field:crm.partner.report.assign,user_id:0 +msgid "User" +msgstr "使用者" + +#. module: crm_partner_assign +#: field:res.partner.grade,active:0 +msgid "Active" +msgstr "生效" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "November" +msgstr "11月" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Extended Filters..." +msgstr "增加篩選條件" + +#. module: crm_partner_assign +#: field:crm.lead,partner_longitude:0 +#: field:res.partner,partner_longitude:0 +msgid "Geo Longitude" +msgstr "Geo 經度" + +#. module: crm_partner_assign +#: field:crm.partner.report.assign,opp:0 +msgid "# of Opportunity" +msgstr "商機編號" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Lead Assign" +msgstr "潛在客戶指定" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "October" +msgstr "10月" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Assignation" +msgstr "指定" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "January" +msgstr "1月" + +#. module: crm_partner_assign +#: help:crm.lead,partner_assigned_id:0 +msgid "Partner this case has been forwarded/assigned to." +msgstr "這業務的業務夥伴已提出/已指定" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,date:0 +msgid "Date" +msgstr "日期" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,body_html:0 +msgid "Rich-text contents" +msgstr "Rich-text內容" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Planned Revenues" +msgstr "已計劃收入" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_res_partner_grade +msgid "res.partner.grade" +msgstr "res.partner.grade" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,message_id:0 +msgid "Message-Id" +msgstr "訊息-Id" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +#: field:crm.lead.forward.to.partner,attachment_ids:0 +msgid "Attachments" +msgstr "附件" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,email_cc:0 +msgid "Cc" +msgstr "副本收件人" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "September" +msgstr "9月" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,references:0 +msgid "References" +msgstr "關聯" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Last 30 Days" +msgstr "最近30天" + +#. module: crm_partner_assign +#: field:res.partner.grade,name:0 +msgid "Grade Name" +msgstr "級別名稱" + +#. module: crm_partner_assign +#: help:crm.lead,date_assign:0 +msgid "Last date this case was forwarded/assigned to a partner" +msgstr "這業務指定/轉發的業務夥伴的最後期限" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,state:0 +#: view:res.partner:0 +msgid "Open" +msgstr "開啟" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,email_cc:0 +msgid "Carbon copy message recipients" +msgstr "郵件副本收件人" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,headers:0 +msgid "" +"Full message headers, e.g. SMTP session headers (usually available on " +"inbound messages only)" +msgstr "完整的郵件標題,例如僅SMTP會話頭(通常可在入站消息)" + +#. module: crm_partner_assign +#: field:res.partner,date_localization:0 +msgid "Geo Localization Date" +msgstr "Geo 定位的日期" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Current" +msgstr "當前的" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,email_to:0 +msgid "To" +msgstr "給" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,email_from:0 +msgid "" +"Message sender, taken from user preferences. If empty, this is not a mail " +"but a message." +msgstr "郵件發件人,​​來自使用者的個人設置。如果為空,不發郵件而是發內部消息。" + +#. module: crm_partner_assign +#: field:crm.partner.report.assign,nbr:0 +msgid "# of Partner" +msgstr "# of Partner" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +#: model:ir.actions.act_window,name:crm_partner_assign.crm_lead_forward_to_partner_act +msgid "Forward to Partner" +msgstr "轉發給業務夥伴" + +#. module: crm_partner_assign +#: field:crm.partner.report.assign,name:0 +msgid "Partner name" +msgstr "上級名稱" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "May" +msgstr "5月" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,probable_revenue:0 +msgid "Probable Revenue" +msgstr "預計收入" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,reply_to:0 +msgid "Reply-To" +msgstr "回覆給" + +#. module: crm_partner_assign +#: field:crm.lead,partner_assigned_id:0 +msgid "Assigned Partner" +msgstr "指定的業務夥伴" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,address_id:0 +msgid "Address" +msgstr "地址" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,type:0 +msgid "Opportunity" +msgstr "商機" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +msgid "Send Mail" +msgstr "發送郵件" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,partner_id:0 +msgid "Customer" +msgstr "客戶" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "February" +msgstr "2月" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,send_to:0 +msgid "Email Address" +msgstr "電子郵件地址" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,country_id:0 +#: view:crm.partner.report.assign:0 +#: field:crm.partner.report.assign,country_id:0 +msgid "Country" +msgstr "國家" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,headers:0 +msgid "Message headers" +msgstr "郵件頭" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Convert to Opportunity" +msgstr "轉換為商機" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,email_bcc:0 +msgid "Bcc" +msgstr "密件副本" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Geo Assign" +msgstr "指定geolocalization" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "April" +msgstr "4月" + +#. module: crm_partner_assign +#: model:ir.actions.act_window,name:crm_partner_assign.action_report_crm_partner_assign +#: model:ir.ui.menu,name:crm_partner_assign.menu_report_crm_partner_assign_tree +msgid "Partnership Analysis" +msgstr "業務夥伴分析" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_crm_lead +msgid "crm.lead" +msgstr "crm.lead" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,state:0 +msgid "Pending" +msgstr "待處理" + +#. module: crm_partner_assign +#: view:crm.partner.report.assign:0 +msgid "Partner assigned Analysis" +msgstr "業務夥伴分配分析" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_crm_lead_report_assign +msgid "CRM Lead Report" +msgstr "客戶關係管理 線索報表" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,references:0 +msgid "Message references, such as identifiers of previous messages" +msgstr "郵件引用,例如前一個郵件的ID" + +#. module: crm_partner_assign +#: constraint:res.partner:0 +msgid "Error ! You cannot create recursive associated members." +msgstr "錯誤,您不能建立循環引用的會員用戶" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,history:0 +msgid "Case Information" +msgstr "業務資訊" + +#. module: crm_partner_assign +#: field:res.partner.grade,sequence:0 +msgid "Sequence" +msgstr "順序" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_crm_partner_report_assign +msgid "CRM Partner Report" +msgstr "CRM業務夥伴報表" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_crm_lead_forward_to_partner +msgid "Email composition wizard" +msgstr "電子郵件成分嚮導" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,priority:0 +msgid "High" +msgstr "高" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,section_id:0 +#: field:crm.partner.report.assign,section_id:0 +msgid "Sales Team" +msgstr "銷售團隊" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,create_date:0 +msgid "Create Date" +msgstr "建立日期" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,filter_id:0 +msgid "Filters" +msgstr "篩選" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,year:0 +msgid "Year" +msgstr "年" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,reply_to:0 +msgid "Preferred response address for the message" +msgstr "本郵件推薦的回覆地址" + +#~ msgid "E-mail composition wizard" +#~ msgstr "郵件協同作業" diff --git a/addons/crm_partner_assign/test/partner_assign.yml b/addons/crm_partner_assign/test/partner_assign.yml index bc4cd0d6e57..a055fc6cd6d 100644 --- a/addons/crm_partner_assign/test/partner_assign.yml +++ b/addons/crm_partner_assign/test/partner_assign.yml @@ -29,8 +29,8 @@ I forward this opportunity to its nearest partner. - !python {model: crm.lead.forward.to.partner}: | - context.update({'active_model': 'crm.lead', 'active_id': ref('crm.crm_case_19'), 'active_ids': [ref('crm.crm_case_19')]}) - forward_id = self.create(cr, uid, {'email_from': 'test@openerp.com', 'send_to': 'partner'}, context=context) + context.update({'default_model': 'crm.lead', 'default_res_id': ref('crm.crm_case_19'), 'active_ids': [ref('crm.crm_case_19')]}) + forward_id = self.create(cr, uid, {}, context=context) try: self.action_forward(cr, uid, [forward_id], context=context) except: diff --git a/addons/crm_partner_assign/wizard/crm_forward_to_partner.py b/addons/crm_partner_assign/wizard/crm_forward_to_partner.py index d479f8b1bd5..0cac38e0163 100644 --- a/addons/crm_partner_assign/wizard/crm_forward_to_partner.py +++ b/addons/crm_partner_assign/wizard/crm_forward_to_partner.py @@ -20,186 +20,153 @@ # ############################################################################## -import time import re +import time +import tools + from osv import osv, fields from tools.translate import _ -from mail.mail_message import to_email class crm_lead_forward_to_partner(osv.osv_memory): - """Forwards lead history""" + """ Forward info history to partners. """ _name = 'crm.lead.forward.to.partner' _inherit = "mail.compose.message" + def default_get(self, cr, uid, fields, context=None): + if context is None: + context = {} + # set as comment, perform overrided document-like action that calls get_record_data + old_mode = context.get('default_composition_mode', 'forward') + context['default_composition_mode'] = 'comment' + res = super(crm_lead_forward_to_partner, self).default_get(cr, uid, fields, context=context) + # back to forward mode + context['default_composition_mode'] = old_mode + res['composition_mode'] = context['default_composition_mode'] + return res + + def _get_composition_mode_selection(self, cr, uid, context=None): + composition_mode = super(crm_lead_forward_to_partner, self)._get_composition_mode_selection(cr, uid, context=context) + composition_mode.append(('forward', 'Forward')) + return composition_mode + _columns = { - 'send_to': fields.selection([('user', 'User'), ('partner', 'Partner'), \ - ('email', 'Email Address')], 'Send to', required=True), - 'user_id': fields.many2one('res.users', "User"), - 'attachment_ids': fields.many2many('ir.attachment','lead_forward_to_partner_attachment_rel', 'wizard_id', 'attachment_id', 'Attachments'), - 'partner_id' : fields.many2one('res.partner', 'Partner'), - 'history': fields.selection([('info', 'Case Information'), ('latest', 'Latest email'), ('whole', 'Whole Story')], 'Send history', required=True), + 'partner_ids': fields.many2many('res.partner', + 'lead_forward_to_partner_res_partner_rel', + 'wizard_id', 'partner_id', 'Additional contacts'), + 'attachment_ids': fields.many2many('ir.attachment', + 'lead_forward_to_partner_attachment_rel', + 'wizard_id', 'attachment_id', 'Attachments'), + 'history_mode': fields.selection([('info', 'Case Information'), + ('latest', 'Latest email'), ('whole', 'Whole Story')], + 'Send history', required=True), } _defaults = { - 'send_to' : 'email', - 'history': 'latest', - 'email_from': lambda s, cr, uid, c: s.pool.get('res.users').browse(cr, uid, uid, c).email, + 'history_mode': 'latest', + 'content_subtype': lambda self,cr, uid, context={}: 'html', } - def on_change_email(self, cr, uid, ids, user, context=None): - if not user: - return {'value': {'email_to': False}} - return {'value': {'email_to': self.pool.get('res.users').browse(cr, uid, uid, context=context).email}} - - def on_change_history(self, cr, uid, ids, history_type, context=None): - """Gives message body according to type of history selected - * info: Forward the case information - * whole: Send the whole history - * latest: Send the latest histoy + def get_record_data(self, cr, uid, model, res_id, context=None): + """ Override of mail.compose.message, to add default values coming + form the related lead. """ - #TODO: ids and context are not comming - res = {} - res_id = context.get('active_id') - model = context.get('active_model') - lead = self.pool.get(model).browse(cr, uid, res_id, context) - body_text = self._get_message_body_text(cr, uid, lead, history_type, context=context) - if body_text: - res = {'value': {'body_text' : body_text}} + res = super(crm_lead_forward_to_partner, self).get_record_data(cr, uid, model, res_id, context=context) + if model not in ('crm.lead') or not res_id: + return res + lead_obj = self.pool.get(model) + lead = lead_obj.browse(cr, uid, res_id, context=context) + subject = '%s: %s - %s' % (_('Fwd'), _('Lead forward'), lead.name) + body = self._get_message_body(cr, uid, lead, 'info', context=context) + res.update({ + 'subject': subject, + 'body': body, + }) return res - - def on_change_partner(self, cr, uid, ids, partner_id): - """This function fills address information based on partner/user selected - """ - if not partner_id: - return {'value' : {'email_to' : False}} - partner_obj = self.pool.get('res.partner') - data = {} - partner = partner_obj.browse(cr, uid, [partner_id]) - user_id = partner and partner[0].user_id or False - data.update({'email_from': partner and partner[0].email or "", - 'email_cc' : user_id and user_id.user or '', - 'user_id': user_id and user_id.id or False}) - return {'value' : data} + + def on_change_history_mode(self, cr, uid, ids, history_mode, model, res_id, context=None): + """ Update body when changing history_mode """ + if model and model == 'crm.lead' and res_id: + lead = self.pool.get(model).browse(cr, uid, res_id, context=context) + body = self._get_message_body(cr, uid, lead, history_mode, context=context) + return {'value': {'body': body}} + + def create(self, cr, uid, values, context=None): + """ TDE-HACK: remove 'type' from context, because when viewing an + opportunity form view, a default_type is set and propagated + to the wizard, that has a not matching type field. """ + default_type = context.pop('default_type', None) + new_id = super(crm_lead_forward_to_partner, self).create(cr, uid, values, context=context) + if default_type: + context['default_type'] = default_type + return new_id def action_forward(self, cr, uid, ids, context=None): - """ - Forward the lead to a partner - """ + """ Forward the lead to a partner """ if context is None: context = {} res = {'type': 'ir.actions.act_window_close'} - model = context.get('active_model') - if model not in ('crm.lead'): + wizard = self.browse(cr, uid, ids[0], context=context) + if wizard.model not in ('crm.lead'): return res - this = self.browse(cr, uid, ids[0], context=context) - lead = self.pool.get(model) - lead_id = context and context.get('active_id', False) or False - lead_ids = lead_id and [lead_id] or [] - mode = context.get('mail.compose.message.mode') - if mode == 'mass_mail': + lead = self.pool.get(wizard.model) + lead_ids = wizard.res_id and [wizard.res_id] or [] + + if wizard.composition_mode == 'mass_mail': lead_ids = context and context.get('active_ids', []) or [] - value = self.default_get(cr, uid, ['body_text', 'email_to', 'email_cc', 'subject', 'history'], context=context) + value = self.default_get(cr, uid, ['body', 'email_to', 'email_cc', 'subject', 'history_mode'], context=context) self.write(cr, uid, ids, value, context=context) - context['mail.compose.message.mode'] = mode self.send_mail(cr, uid, ids, context=context) - for case in lead.browse(cr, uid, lead_ids, context=context): - if (this.send_to == 'partner' and this.partner_id): - lead.assign_partner(cr, uid, [case.id], this.partner_id.id, context=context) + # for case in lead.browse(cr, uid, lead_ids, context=context): + # TODO: WHAT TO DO WITH THAT ? + # if (this.send_to == 'partner' and this.partner_id): + # lead.assign_partner(cr, uid, [case.id], this.partner_id.id, context=context) - if this.send_to == 'user': - lead.allocate_salesman(cr, uid, [case.id], [this.user_id.id], context=context) - - email_cc = to_email(case.email_cc) - email_cc = email_cc and email_cc[0] or '' - new_cc = [] - if email_cc: - new_cc.append(email_cc) - for to in this.email_to.split(','): - email_to = to_email(to) - email_to = email_to and email_to[0] or '' - if email_to not in new_cc: - new_cc.append(to) - update_vals = {'email_cc' : ', '.join(new_cc) } - lead.write(cr, uid, [case.id], update_vals, context=context) + # if this.send_to == 'user': + # lead.allocate_salesman(cr, uid, [case.id], [this.user_id.id], context=context) return res - def _get_info_body_text(self, cr, uid, lead, context=None): + def _get_info_body(self, cr, uid, lead, context=None): field_names = [] proxy = self.pool.get(lead._name) if lead.type == 'opportunity': field_names += ['partner_id'] field_names += [ - 'partner_name' , 'title', 'function', 'street', 'street2', + 'partner_name' , 'title', 'function', 'street', 'street2', 'zip', 'city', 'country_id', 'state_id', 'email_from', 'phone', 'fax', 'mobile', 'categ_id', 'description', ] - return proxy._mail_body_text(cr, uid, lead, field_names, context=context) + return proxy._mail_body(cr, uid, lead, field_names, context=context) - def _get_message_body_text(self, cr, uid, lead, mode='whole', context=None): - """This function gets whole communication history and returns as top posting style + def _get_message_body(self, cr, uid, lead, history_mode='whole', context=None): + """ This function gets whole communication history and returns as top + posting style + #1: form a body, based on the lead + #2: append to the body the communication history, based on the + history_mode parameter + + - info: Forward the case information + - latest: Send the latest history + - whole: Send the whole history + + :param lead: browse_record on crm.lead + :param history_mode: 'whole' or 'latest' """ mail_message = self.pool.get('mail.message') - message_ids = [] - body = self._get_info_body_text(cr, uid, lead, context=context) - if mode in ('whole', 'latest'): - message_ids = lead.message_ids - message_ids = map(lambda x: x.id, filter(lambda x: x.email_from, message_ids)) - if mode == 'latest' and len(message_ids): - message_ids = [message_ids[0]] - for message in mail_message.browse(cr, uid, message_ids, context=context): - header = '-------- Original Message --------' - sender = 'From: %s' %(message.email_from or '') - to = 'To: %s' % (message.email_to or '') - sentdate = 'Date: %s' % (message.date or '') - desc = '\n%s'%(message.body_text) - original = [header, sender, to, sentdate, desc, '\n'] - original = '\n'.join(original) - body += original + body = self._get_info_body(cr, uid, lead, context=context) + if history_mode not in ('whole', 'latest'): + return body or '' + for message in lead.message_ids: + header = '-------- Original Message --------' + sentdate = 'Date: %s' % (message.date or '') + desc = '\n%s'%(message.body) + original = [header, sentdate, desc, '\n'] + original = '\n'.join(original) + body += original + if history_mode == 'latest': + break return body or '' - def get_value(self, cr, uid, model, res_id, context=None): - if context is None: - context = {} - res = super(crm_lead_forward_to_partner, self).get_value(cr, uid, model, res_id, context=context) - if model not in ("crm.lead"): - return res - proxy = self.pool.get(model) - partner = self.pool.get('res.partner') - lead = proxy.browse(cr, uid, res_id, context=context) - mode = context.get('mail.compose.message.mode') - if mode == "forward": - body_type = context.get('mail.compose.message.body') - email_cc = res.get('email_cc', "") - email = res.get('email_to', "") - subject = '%s: %s - %s' % (_('Fwd'), 'Lead forward', lead.name) - body = self._get_message_body_text(cr, uid, lead, body_type, context=context) - partner_assigned_id = lead.partner_assigned_id and lead.partner_assigned_id.id or False - user_id = False - if not partner_assigned_id: - partner_assigned_id = proxy.search_geo_partner(cr, uid, [lead.id], context=None).get(lead.id, False) - if partner_assigned_id: - assigned_partner = partner.browse(cr, uid, partner_assigned_id, context=context) - user_id = assigned_partner.user_id and assigned_partner.user_id.id or False - email_cc = assigned_partner.user_id and assigned_partner.user_id.email or '' - email = assigned_partner.email - - res.update({ - 'subject' : subject, - 'body_text' : body, - 'email_cc' : email_cc, - 'email_to' : email, - 'partner_assigned_id': partner_assigned_id, - 'user_id': user_id, - }) - return res - - def default_get(self, cr, uid, fields, context=None): - if context is None: - context = {} - context['mail.compose.message.mode'] = 'forward' - context['mail.compose.message.body'] = 'info' - return super(crm_lead_forward_to_partner, self).default_get(cr, uid, fields, context=context) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/crm_partner_assign/wizard/crm_forward_to_partner_view.xml b/addons/crm_partner_assign/wizard/crm_forward_to_partner_view.xml index cecf73954e5..0d8f27eec74 100644 --- a/addons/crm_partner_assign/wizard/crm_forward_to_partner_view.xml +++ b/addons/crm_partner_assign/wizard/crm_forward_to_partner_view.xml @@ -7,42 +7,31 @@ crm.lead.forward.to.partner
+ + + - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - -
-
@@ -57,18 +46,14 @@ new - - - - + /> diff --git a/addons/crm_profiling/__openerp__.py b/addons/crm_profiling/__openerp__.py index 68594281b9b..99e1b6c5f41 100644 --- a/addons/crm_profiling/__openerp__.py +++ b/addons/crm_profiling/__openerp__.py @@ -35,15 +35,13 @@ questionnaire and directly use it on a partner. It also has been merged with the earlier CRM & SRM segmentation tool because they were overlapping. - * Note: this module is not compatible with the module segmentation, since - it's the same which has been renamed. + **Note:** this module is not compatible with the module segmentation, since it's the same which has been renamed. """, 'author': 'OpenERP SA', 'website': 'http://www.openerp.com', 'depends': ['base', 'crm'], - 'init_xml': [], - 'update_xml': ['security/ir.model.access.csv', 'wizard/open_questionnaire_view.xml', 'crm_profiling_view.xml'], - 'demo_xml': ['crm_profiling_demo.xml'], + 'data': ['security/ir.model.access.csv', 'wizard/open_questionnaire_view.xml', 'crm_profiling_view.xml'], + 'demo': ['crm_profiling_demo.xml'], 'test': [ #'test/process/profiling.yml', #TODO:It's not debuging because problem to write data for open.questionnaire from partner section. ], diff --git a/addons/crm_profiling/i18n/ar.po b/addons/crm_profiling/i18n/ar.po index 4e288764ee1..c62465ae613 100644 --- a/addons/crm_profiling/i18n/ar.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/bg.po b/addons/crm_profiling/i18n/bg.po index aa3d39cafe4..0f9e5e308f1 100644 --- a/addons/crm_profiling/i18n/bg.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/bs.po b/addons/crm_profiling/i18n/bs.po index 9ab36cd9b2a..17f53523b3e 100644 --- a/addons/crm_profiling/i18n/bs.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ca.po b/addons/crm_profiling/i18n/ca.po index 015701431ff..87672984fd4 100644 --- a/addons/crm_profiling/i18n/ca.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/cs.po b/addons/crm_profiling/i18n/cs.po index b8b067ea552..19ce03b1263 100644 --- a/addons/crm_profiling/i18n/cs.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/da.po b/addons/crm_profiling/i18n/da.po index ec200a94112..fa1a3f9c4f7 100644 --- a/addons/crm_profiling/i18n/da.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/de.po b/addons/crm_profiling/i18n/de.po index 903ca170874..894e7948958 100644 --- a/addons/crm_profiling/i18n/de.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/el.po b/addons/crm_profiling/i18n/el.po index d11b4c42847..4bd82228a17 100644 --- a/addons/crm_profiling/i18n/el.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/crm_profiling/i18n/en_GB.po b/addons/crm_profiling/i18n/en_GB.po index 5c06199a817..5731f47489b 100644 --- a/addons/crm_profiling/i18n/en_GB.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es.po b/addons/crm_profiling/i18n/es.po index 8f306933852..faa61f0b931 100644 --- a/addons/crm_profiling/i18n/es.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_AR.po b/addons/crm_profiling/i18n/es_AR.po index 56bb7c5d81d..f3b9b500c12 100644 --- a/addons/crm_profiling/i18n/es_AR.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_CR.po b/addons/crm_profiling/i18n/es_CR.po index 1dab03e360a..28e8a69facf 100644 --- a/addons/crm_profiling/i18n/es_CR.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: \n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/es_EC.po b/addons/crm_profiling/i18n/es_EC.po index 4683c1f1749..54bd5fd281e 100644 --- a/addons/crm_profiling/i18n/es_EC.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_PY.po b/addons/crm_profiling/i18n/es_PY.po index c50d38652ab..5234086f46b 100644 --- a/addons/crm_profiling/i18n/es_PY.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/et.po b/addons/crm_profiling/i18n/et.po index 687ff3f6ed8..86dcc88be1d 100644 --- a/addons/crm_profiling/i18n/et.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/fi.po b/addons/crm_profiling/i18n/fi.po index 402d48c3a18..6016d397f75 100644 --- a/addons/crm_profiling/i18n/fi.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/fr.po b/addons/crm_profiling/i18n/fr.po index d73cb9ec4b2..2333d7ae9da 100644 --- a/addons/crm_profiling/i18n/fr.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/gl.po b/addons/crm_profiling/i18n/gl.po index d75b0528b24..39608d4188c 100644 --- a/addons/crm_profiling/i18n/gl.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/gu.po b/addons/crm_profiling/i18n/gu.po index 5fea19b2ed8..2ea4fa333ef 100644 --- a/addons/crm_profiling/i18n/gu.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/hr.po b/addons/crm_profiling/i18n/hr.po index 637e8885b88..67fa018a010 100644 --- a/addons/crm_profiling/i18n/hr.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: hr\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/hu.po b/addons/crm_profiling/i18n/hu.po index 52c05d01e5a..5555d4e7dd1 100644 --- a/addons/crm_profiling/i18n/hu.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/id.po b/addons/crm_profiling/i18n/id.po index 174fda8f7ec..976cbdb3a11 100644 --- a/addons/crm_profiling/i18n/id.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/it.po b/addons/crm_profiling/i18n/it.po index 7cb0b549ae5..262d69ef460 100644 --- a/addons/crm_profiling/i18n/it.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ja.po b/addons/crm_profiling/i18n/ja.po index ef0a9c5595a..d0ddf5a51d6 100644 --- a/addons/crm_profiling/i18n/ja.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ko.po b/addons/crm_profiling/i18n/ko.po index 388b1543f8c..7bd9789f6bf 100644 --- a/addons/crm_profiling/i18n/ko.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/lt.po b/addons/crm_profiling/i18n/lt.po index 29c7417e4d7..2b23c0fb49c 100644 --- a/addons/crm_profiling/i18n/lt.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/lv.po b/addons/crm_profiling/i18n/lv.po index bd61cf86778..1293199d825 100644 --- a/addons/crm_profiling/i18n/lv.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/mn.po b/addons/crm_profiling/i18n/mn.po index be36fa5aa50..f8478bac764 100644 --- a/addons/crm_profiling/i18n/mn.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/nb.po b/addons/crm_profiling/i18n/nb.po new file mode 100644 index 00000000000..653dc05522e --- /dev/null +++ b/addons/crm_profiling/i18n/nb.po @@ -0,0 +1,212 @@ +# Norwegian Bokmal translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-02-08 00:36+0000\n" +"PO-Revision-Date: 2012-09-06 14:26+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Norwegian Bokmal \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-09-07 04:58+0000\n" +"X-Generator: Launchpad (build 15914)\n" + +#. module: crm_profiling +#: view:crm_profiling.questionnaire:0 +msgid "Questions List" +msgstr "Spørsmål liste." + +#. module: crm_profiling +#: model:ir.actions.act_window,help:crm_profiling.open_questionnaires +msgid "" +"You can create specific topic-related questionnaires to guide your team(s) " +"in the sales cycle by helping them to ask the right questions. The " +"segmentation tool allows you to automatically assign a partner to a category " +"according to his answers to the different questionnaires." +msgstr "" +"Du kan opprette spesifikke tema-relaterte spørreskjemaer for å styre lag (e) " +"i salgsperioden ved å hjelpe dem til å stille de riktige spørsmålene. " +"Segmentering verktøyet lar deg automatisk tildele en partner til en kategori " +"i henhold til hans svar til de ulike spørreskjemaer." + +#. module: crm_profiling +#: field:crm_profiling.answer,question_id:0 +#: field:crm_profiling.question,name:0 +#: model:ir.model,name:crm_profiling.model_crm_profiling_question +#: field:open.questionnaire.line,question_id:0 +msgid "Question" +msgstr "Spørsmål" + +#. module: crm_profiling +#: model:ir.actions.act_window,name:crm_profiling.action_open_questionnaire +#: view:open.questionnaire:0 +msgid "Open Questionnaire" +msgstr "åpen Spørreskjema" + +#. module: crm_profiling +#: field:crm.segmentation,child_ids:0 +msgid "Child Profiles" +msgstr "Barn profiler" + +#. module: crm_profiling +#: view:crm.segmentation:0 +msgid "Partner Segmentations" +msgstr "Partner segmenteringer" + +#. module: crm_profiling +#: field:crm_profiling.answer,name:0 +#: model:ir.model,name:crm_profiling.model_crm_profiling_answer +#: field:open.questionnaire.line,answer_id:0 +msgid "Answer" +msgstr "Svar" + +#. module: crm_profiling +#: model:ir.model,name:crm_profiling.model_open_questionnaire_line +msgid "open.questionnaire.line" +msgstr "Åpen.Spørreskjema.Linje" + +#. module: crm_profiling +#: model:ir.model,name:crm_profiling.model_crm_segmentation +msgid "Partner Segmentation" +msgstr "Partnersegmentering" + +#. module: crm_profiling +#: view:res.partner:0 +msgid "Profiling" +msgstr "Profilering" + +#. module: crm_profiling +#: view:crm_profiling.questionnaire:0 +#: field:crm_profiling.questionnaire,description:0 +msgid "Description" +msgstr "Beskrivelse:" + +#. module: crm_profiling +#: field:crm.segmentation,answer_no:0 +msgid "Excluded Answers" +msgstr "Ekskluderte svar" + +#. module: crm_profiling +#: view:crm_profiling.answer:0 +#: view:crm_profiling.question:0 +#: field:res.partner,answers_ids:0 +msgid "Answers" +msgstr "Svar" + +#. module: crm_profiling +#: model:ir.model,name:crm_profiling.model_open_questionnaire +msgid "open.questionnaire" +msgstr "Åpen.Spørresjema" + +#. module: crm_profiling +#: field:open.questionnaire,questionnaire_id:0 +msgid "Questionnaire name" +msgstr "Spørresjema navn." + +#. module: crm_profiling +#: view:res.partner:0 +msgid "Use a questionnaire" +msgstr "Bruk et spørresjema." + +#. module: crm_profiling +#: view:open.questionnaire:0 +msgid "_Cancel" +msgstr "_Avbryt" + +#. module: crm_profiling +#: field:open.questionnaire,question_ans_ids:0 +msgid "Question / Answers" +msgstr "Spørsmål / Svar" + +#. module: crm_profiling +#: view:crm_profiling.questionnaire:0 +#: model:ir.actions.act_window,name:crm_profiling.open_questionnaires +#: model:ir.ui.menu,name:crm_profiling.menu_segm_questionnaire +#: view:open.questionnaire:0 +msgid "Questionnaires" +msgstr "Spørreskjemaer" + +#. module: crm_profiling +#: help:crm.segmentation,profiling_active:0 +msgid "" +"Check this box if you want to use this tab as " +"part of the segmentation rule. If not checked, " +"the criteria beneath will be ignored" +msgstr "" +"Kryss av her hvis du ønsker å bruke denne kategorien som en del av " +"segmentering regelen. Hvis det ikke er merket, vil kriteriene under bli " +"ignorert." + +#. module: crm_profiling +#: constraint:crm.segmentation:0 +msgid "Error ! You can not create recursive profiles." +msgstr "Feil ! Du kan ikke lage rekursive profiler." + +#. module: crm_profiling +#: field:crm.segmentation,profiling_active:0 +msgid "Use The Profiling Rules" +msgstr "Bruk profileringen Regler" + +#. module: crm_profiling +#: constraint:res.partner:0 +msgid "Error ! You cannot create recursive associated members." +msgstr "Feil! Du kan ikke opprette rekursive tilknyttede medlemmer." + +#. module: crm_profiling +#: view:crm_profiling.question:0 +#: field:crm_profiling.question,answers_ids:0 +msgid "Avalaible Answers" +msgstr "" + +#. module: crm_profiling +#: field:crm.segmentation,answer_yes:0 +msgid "Included Answers" +msgstr "Inkluderte svar." + +#. module: crm_profiling +#: view:crm_profiling.question:0 +#: field:crm_profiling.questionnaire,questions_ids:0 +#: model:ir.actions.act_window,name:crm_profiling.open_questions +#: model:ir.ui.menu,name:crm_profiling.menu_segm_answer +msgid "Questions" +msgstr "Spørsmål" + +#. module: crm_profiling +#: field:crm.segmentation,parent_id:0 +msgid "Parent Profile" +msgstr "Overordnede profil" + +#. module: crm_profiling +#: view:open.questionnaire:0 +msgid "Cancel" +msgstr "Kanseller" + +#. module: crm_profiling +#: model:ir.model,name:crm_profiling.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: crm_profiling +#: code:addons/crm_profiling/wizard/open_questionnaire.py:77 +#: field:crm_profiling.questionnaire,name:0 +#: model:ir.model,name:crm_profiling.model_crm_profiling_questionnaire +#: view:open.questionnaire:0 +#: view:open.questionnaire.line:0 +#: field:open.questionnaire.line,wizard_id:0 +#, python-format +msgid "Questionnaire" +msgstr "Spørreskjemaet" + +#. module: crm_profiling +#: view:open.questionnaire:0 +msgid "Save Data" +msgstr "Lagre data" + +#~ msgid "Avalaible answers" +#~ msgstr "Tilgjengelige svar." diff --git a/addons/crm_profiling/i18n/nl.po b/addons/crm_profiling/i18n/nl.po index e35cd232166..5930ec5b1ff 100644 --- a/addons/crm_profiling/i18n/nl.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/nl_BE.po b/addons/crm_profiling/i18n/nl_BE.po index 56965202abb..cdae2f0ec14 100644 --- a/addons/crm_profiling/i18n/nl_BE.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/pl.po b/addons/crm_profiling/i18n/pl.po index 0a7933e888b..96063b20cb4 100644 --- a/addons/crm_profiling/i18n/pl.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/pt.po b/addons/crm_profiling/i18n/pt.po index fef3bf04c5c..24d30817bc2 100644 --- a/addons/crm_profiling/i18n/pt.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/pt_BR.po b/addons/crm_profiling/i18n/pt_BR.po index 3deee53d950..449466abde0 100644 --- a/addons/crm_profiling/i18n/pt_BR.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ro.po b/addons/crm_profiling/i18n/ro.po index d40999febce..58176faa5fe 100644 --- a/addons/crm_profiling/i18n/ro.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ru.po b/addons/crm_profiling/i18n/ru.po index 9096decb1fa..8656a859f6a 100644 --- a/addons/crm_profiling/i18n/ru.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sk.po b/addons/crm_profiling/i18n/sk.po index 708e6b0ad9e..082a9d13b49 100644 --- a/addons/crm_profiling/i18n/sk.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sl.po b/addons/crm_profiling/i18n/sl.po index 00915158102..2e0415548fe 100644 --- a/addons/crm_profiling/i18n/sl.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sq.po b/addons/crm_profiling/i18n/sq.po index 548b9e13c1f..8bd0cede4be 100644 --- a/addons/crm_profiling/i18n/sq.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sr.po b/addons/crm_profiling/i18n/sr.po index b8cfb81ab7b..146f25bc2f8 100644 --- a/addons/crm_profiling/i18n/sr.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sr@latin.po b/addons/crm_profiling/i18n/sr@latin.po index 145a067d28b..47952f69459 100644 --- a/addons/crm_profiling/i18n/sr@latin.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sv.po b/addons/crm_profiling/i18n/sv.po index 62d7e64ecdc..d615af45d8e 100644 --- a/addons/crm_profiling/i18n/sv.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/tlh.po b/addons/crm_profiling/i18n/tlh.po index d573b5d8e99..f760ef811a5 100644 --- a/addons/crm_profiling/i18n/tlh.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/tr.po b/addons/crm_profiling/i18n/tr.po index e1faa9a2bb7..c444be9daa8 100644 --- a/addons/crm_profiling/i18n/tr.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/uk.po b/addons/crm_profiling/i18n/uk.po index 405f0c0921d..f97f5524327 100644 --- a/addons/crm_profiling/i18n/uk.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/vi.po b/addons/crm_profiling/i18n/vi.po index 318a0411c11..d79cbd1e526 100644 --- a/addons/crm_profiling/i18n/vi.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/zh_CN.po b/addons/crm_profiling/i18n/zh_CN.po index 95834983223..79527a5f895 100644 --- a/addons/crm_profiling/i18n/zh_CN.po +++ b/addons/crm_profiling/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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:25+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/zh_TW.po b/addons/crm_profiling/i18n/zh_TW.po index 8b2e24dab05..51632d83b0b 100644 --- a/addons/crm_profiling/i18n/zh_TW.po +++ b/addons/crm_profiling/i18n/zh_TW.po @@ -7,19 +7,19 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 00:36+0000\n" -"PO-Revision-Date: 2012-05-10 18:26+0000\n" -"Last-Translator: Walter Cheuk \n" +"PO-Revision-Date: 2012-08-29 08:56+0000\n" +"Last-Translator: Bonnie Duan \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: 2012-08-09 04:53+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-30 05:12+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 msgid "Questions List" -msgstr "問題表" +msgstr "問題列表" #. module: crm_profiling #: model:ir.actions.act_window,help:crm_profiling.open_questionnaires @@ -28,7 +28,7 @@ msgid "" "in the sales cycle by helping them to ask the right questions. The " "segmentation tool allows you to automatically assign a partner to a category " "according to his answers to the different questionnaires." -msgstr "" +msgstr "你能建立特定主題的問卷調查去指導你的團隊在銷售週期向客戶詢問合適的問題。這細分工具能根據不同問題的答案自動劃分業務夥伴到不同的類型。" #. module: crm_profiling #: field:crm_profiling.answer,question_id:0 @@ -47,12 +47,12 @@ msgstr "開啟問卷" #. module: crm_profiling #: field:crm.segmentation,child_ids:0 msgid "Child Profiles" -msgstr "" +msgstr "子客戶特徵" #. module: crm_profiling #: view:crm.segmentation:0 msgid "Partner Segmentations" -msgstr "伙伴分割" +msgstr "業務夥伴分類" #. module: crm_profiling #: field:crm_profiling.answer,name:0 @@ -64,17 +64,17 @@ msgstr "答案" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_open_questionnaire_line msgid "open.questionnaire.line" -msgstr "" +msgstr "open.questionnaire.line" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_crm_segmentation msgid "Partner Segmentation" -msgstr "伙伴區間" +msgstr "業務夥伴分類" #. module: crm_profiling #: view:res.partner:0 msgid "Profiling" -msgstr "" +msgstr "紀錄運行效能(Profiling)" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 @@ -97,7 +97,7 @@ msgstr "答案" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_open_questionnaire msgid "open.questionnaire" -msgstr "" +msgstr "open.questionnaire" #. module: crm_profiling #: field:open.questionnaire,questionnaire_id:0 @@ -112,12 +112,12 @@ msgstr "使用問卷" #. module: crm_profiling #: view:open.questionnaire:0 msgid "_Cancel" -msgstr "" +msgstr "取消(_C)" #. module: crm_profiling #: field:open.questionnaire,question_ans_ids:0 msgid "Question / Answers" -msgstr "" +msgstr "問/答" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 @@ -133,22 +133,22 @@ msgid "" "Check this box if you want to use this tab as " "part of the segmentation rule. If not checked, " "the criteria beneath will be ignored" -msgstr "" +msgstr "勾選這選項,如果你想使用這標籤作為細分規則的一部分。如果勾選,這規則將被忽略" #. module: crm_profiling #: constraint:crm.segmentation:0 msgid "Error ! You can not create recursive profiles." -msgstr "" +msgstr "錯誤! 你不能建立相關的簡介。" #. module: crm_profiling #: field:crm.segmentation,profiling_active:0 msgid "Use The Profiling Rules" -msgstr "" +msgstr "使用這客戶特徵的規則" #. module: crm_profiling #: constraint:res.partner:0 msgid "Error ! You cannot create recursive associated members." -msgstr "" +msgstr "錯誤! 您不能建立相關的會員用戶" #. module: crm_profiling #: view:crm_profiling.question:0 @@ -172,7 +172,7 @@ msgstr "問題" #. module: crm_profiling #: field:crm.segmentation,parent_id:0 msgid "Parent Profile" -msgstr "" +msgstr "上級客戶簡介" #. module: crm_profiling #: view:open.questionnaire:0 diff --git a/addons/crm_todo/__openerp__.py b/addons/crm_todo/__openerp__.py index 824dac13c21..255f7dce1c3 100644 --- a/addons/crm_todo/__openerp__.py +++ b/addons/crm_todo/__openerp__.py @@ -23,18 +23,15 @@ { 'name': 'Tasks on CRM', 'version': '1.0', - "category": 'Customer Relationship Management', + 'category': 'Customer Relationship Management', 'description': """ Todo list for CRM leads and opportunities. +========================================== """, 'author': 'OpenERP SA', 'depends': ['crm','project_gtd'], - 'update_xml': [ - 'crm_todo_view.xml', - ], - 'demo': [ - 'crm_todo_demo.xml', - ], + 'data': ['crm_todo_view.xml'], + 'demo': ['crm_todo_demo.xml'], 'installable': True, 'auto_install': False, } diff --git a/addons/crm_todo/i18n/ar.po b/addons/crm_todo/i18n/ar.po index a1228c2f027..23706dc83e5 100644 --- a/addons/crm_todo/i18n/ar.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/de.po b/addons/crm_todo/i18n/de.po index 6b8fbe1f16f..d769e5f4ea2 100644 --- a/addons/crm_todo/i18n/de.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/en_GB.po b/addons/crm_todo/i18n/en_GB.po index e8f5ca46b1f..341768a7ee1 100644 --- a/addons/crm_todo/i18n/en_GB.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/es_CR.po b/addons/crm_todo/i18n/es_CR.po index a6293c64cde..223d597f63b 100644 --- a/addons/crm_todo/i18n/es_CR.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/fi.po b/addons/crm_todo/i18n/fi.po index 481421e8d29..16cc1352fa2 100644 --- a/addons/crm_todo/i18n/fi.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/fr.po b/addons/crm_todo/i18n/fr.po index 5436af50b3a..2c0078564ed 100644 --- a/addons/crm_todo/i18n/fr.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/gu.po b/addons/crm_todo/i18n/gu.po index 16a415cfde6..5a5168e85fe 100644 --- a/addons/crm_todo/i18n/gu.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/it.po b/addons/crm_todo/i18n/it.po index 012a769a70a..5f9f92f1eb8 100644 --- a/addons/crm_todo/i18n/it.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ja.po b/addons/crm_todo/i18n/ja.po index 49855e7d195..195a1f30cff 100644 --- a/addons/crm_todo/i18n/ja.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/lt.po b/addons/crm_todo/i18n/lt.po index 92a1a6b1426..902b95da3af 100644 --- a/addons/crm_todo/i18n/lt.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/mn.po b/addons/crm_todo/i18n/mn.po index 1b3b6ed69ee..45eb8c2817c 100644 --- a/addons/crm_todo/i18n/mn.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/nb.po b/addons/crm_todo/i18n/nb.po new file mode 100644 index 00000000000..44a49165e40 --- /dev/null +++ b/addons/crm_todo/i18n/nb.po @@ -0,0 +1,95 @@ +# Norwegian Bokmal translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-02-08 00:36+0000\n" +"PO-Revision-Date: 2012-09-04 14:07+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Norwegian Bokmal \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-09-05 04:46+0000\n" +"X-Generator: Launchpad (build 15901)\n" + +#. module: crm_todo +#: model:ir.model,name:crm_todo.model_project_task +msgid "Task" +msgstr "Oppgave" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Timebox" +msgstr "Timeboks" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "For cancelling the task" +msgstr "For å avbryte oppgaven" + +#. module: crm_todo +#: constraint:project.task:0 +msgid "Error ! Task end-date must be greater then task start-date" +msgstr "Feil! Oppgave sluttdato må være større enn oppgave startdato" + +#. module: crm_todo +#: model:ir.model,name:crm_todo.model_crm_lead +msgid "crm.lead" +msgstr "crm.lead" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Next" +msgstr "Neste" + +#. module: crm_todo +#: model:ir.actions.act_window,name:crm_todo.crm_todo_action +#: model:ir.ui.menu,name:crm_todo.menu_crm_todo +msgid "My Tasks" +msgstr "Mine oppgaver" + +#. module: crm_todo +#: view:crm.lead:0 +#: field:crm.lead,task_ids:0 +msgid "Tasks" +msgstr "Oppgaver" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Done" +msgstr "Utført" + +#. module: crm_todo +#: constraint:project.task:0 +msgid "Error ! You cannot create recursive tasks." +msgstr "Feil! Du kan ikke lage en rekursive oppgaver." + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Cancel" +msgstr "Kanseller" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Extra Info" +msgstr "Ekstra informasjon" + +#. module: crm_todo +#: field:project.task,lead_id:0 +msgid "Lead / Opportunity" +msgstr "Lede / mulighet" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "For changing to done state" +msgstr "For å bytte til ferdig tilstand" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Previous" +msgstr "Tidligere" diff --git a/addons/crm_todo/i18n/nl.po b/addons/crm_todo/i18n/nl.po index f0f357bddeb..431242d80c4 100644 --- a/addons/crm_todo/i18n/nl.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/pl.po b/addons/crm_todo/i18n/pl.po index 36ae9707f34..39dd964a49f 100644 --- a/addons/crm_todo/i18n/pl.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/pt.po b/addons/crm_todo/i18n/pt.po index d4170a80627..261952c4f0f 100644 --- a/addons/crm_todo/i18n/pt.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/pt_BR.po b/addons/crm_todo/i18n/pt_BR.po index 5c8e5657723..672b10de908 100644 --- a/addons/crm_todo/i18n/pt_BR.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ro.po b/addons/crm_todo/i18n/ro.po index c0ebdc71182..61abfa26e23 100644 --- a/addons/crm_todo/i18n/ro.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/sr@latin.po b/addons/crm_todo/i18n/sr@latin.po index 05161713988..19324c5e370 100644 --- a/addons/crm_todo/i18n/sr@latin.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/sv.po b/addons/crm_todo/i18n/sv.po index 56b6c302452..9f3c43c5899 100644 --- a/addons/crm_todo/i18n/sv.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/tr.po b/addons/crm_todo/i18n/tr.po index 26fecb4b419..e4b16d0ba67 100644 --- a/addons/crm_todo/i18n/tr.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/zh_CN.po b/addons/crm_todo/i18n/zh_CN.po index 9c6a8bd09bd..f09fb1c65be 100644 --- a/addons/crm_todo/i18n/zh_CN.po +++ b/addons/crm_todo/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/zh_TW.po b/addons/crm_todo/i18n/zh_TW.po new file mode 100644 index 00000000000..e092528ac19 --- /dev/null +++ b/addons/crm_todo/i18n/zh_TW.po @@ -0,0 +1,95 @@ +# Chinese (Traditional) translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-02-08 00:36+0000\n" +"PO-Revision-Date: 2012-08-29 09:15+0000\n" +"Last-Translator: Bonnie Duan \n" +"Language-Team: Chinese (Traditional) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-08-30 05:12+0000\n" +"X-Generator: Launchpad (build 15864)\n" + +#. module: crm_todo +#: model:ir.model,name:crm_todo.model_project_task +msgid "Task" +msgstr "任務" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Timebox" +msgstr "時間區間" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "For cancelling the task" +msgstr "取消任務" + +#. module: crm_todo +#: constraint:project.task:0 +msgid "Error ! Task end-date must be greater then task start-date" +msgstr "錯誤!任務結束日期必須大於任務開始日期" + +#. module: crm_todo +#: model:ir.model,name:crm_todo.model_crm_lead +msgid "crm.lead" +msgstr "crm.lead" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Next" +msgstr "下一步" + +#. module: crm_todo +#: model:ir.actions.act_window,name:crm_todo.crm_todo_action +#: model:ir.ui.menu,name:crm_todo.menu_crm_todo +msgid "My Tasks" +msgstr "我的任務" + +#. module: crm_todo +#: view:crm.lead:0 +#: field:crm.lead,task_ids:0 +msgid "Tasks" +msgstr "任務" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Done" +msgstr "完成" + +#. module: crm_todo +#: constraint:project.task:0 +msgid "Error ! You cannot create recursive tasks." +msgstr "錯誤!不能創建循環引用的任務" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Cancel" +msgstr "刪除" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Extra Info" +msgstr "額外資訊" + +#. module: crm_todo +#: field:project.task,lead_id:0 +msgid "Lead / Opportunity" +msgstr "潛在客戶/機會" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "For changing to done state" +msgstr "要設置為完成狀態" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Previous" +msgstr "前一頁" diff --git a/addons/decimal_precision/__openerp__.py b/addons/decimal_precision/__openerp__.py index 9da1f2161a1..107fb49a1c5 100644 --- a/addons/decimal_precision/__openerp__.py +++ b/addons/decimal_precision/__openerp__.py @@ -20,25 +20,24 @@ ############################################################################## { - "name": "Decimal Precision Configuration", - "description": """ + 'name': 'Decimal Precision Configuration', + 'description': """ Configure the price accuracy you need for different kinds of usage: accounting, sales, purchases. ================================================================================================= The decimal precision is configured per company. """, - "author": "OpenERP SA", - "version": "0.1", - "depends": ["base"], - "category" : "Hidden/Dependency", - "init_xml": [], - "update_xml": [ + 'author': 'OpenERP SA', + 'version': '0.1', + 'depends': ['base'], + 'category' : 'Hidden/Dependency', + 'data': [ 'decimal_precision_view.xml', 'security/ir.model.access.csv', ], - "demo_xml": [], - "installable": True, - "certificate" : "001307317809612974621", + 'demo': [], + 'installable': True, + 'certificate' : '001307317809612974621', 'images': ['images/1_decimal_accuracy_form.jpeg','images/1_decimal_accuracy_list.jpeg'], } diff --git a/addons/decimal_precision/decimal_precision.py b/addons/decimal_precision/decimal_precision.py index d9f6aa7b8db..93d69eb3093 100644 --- a/addons/decimal_precision/decimal_precision.py +++ b/addons/decimal_precision/decimal_precision.py @@ -22,6 +22,7 @@ from osv import osv, fields import tools import pooler +from openerp import SUPERUSER_ID class decimal_precision(osv.osv): _name = 'decimal.precision' @@ -56,7 +57,7 @@ decimal_precision() def get_precision(application): def change_digit(cr): - res = pooler.get_pool(cr.dbname).get('decimal.precision').precision_get(cr, 1, application) + res = pooler.get_pool(cr.dbname).get('decimal.precision').precision_get(cr, SUPERUSER_ID, application) return (16, res) return change_digit diff --git a/addons/decimal_precision/i18n/ar.po b/addons/decimal_precision/i18n/ar.po index ffe43df093e..6e4699b1816 100644 --- a/addons/decimal_precision/i18n/ar.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/bg.po b/addons/decimal_precision/i18n/bg.po index 904f8b23333..6cd6229333b 100644 --- a/addons/decimal_precision/i18n/bg.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ca.po b/addons/decimal_precision/i18n/ca.po index b14c761b381..9fc3c0ecd31 100644 --- a/addons/decimal_precision/i18n/ca.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/cs.po b/addons/decimal_precision/i18n/cs.po index c64062971eb..1aa63038560 100644 --- a/addons/decimal_precision/i18n/cs.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/da.po b/addons/decimal_precision/i18n/da.po index 5fc3e0e6878..4280e173506 100644 --- a/addons/decimal_precision/i18n/da.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/de.po b/addons/decimal_precision/i18n/de.po index 08311b1b80f..956106ad94d 100644 --- a/addons/decimal_precision/i18n/de.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/el.po b/addons/decimal_precision/i18n/el.po index bfb6152a204..48d33afc39e 100644 --- a/addons/decimal_precision/i18n/el.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/en_GB.po b/addons/decimal_precision/i18n/en_GB.po index d40d28963b2..51bdd155022 100644 --- a/addons/decimal_precision/i18n/en_GB.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es.po b/addons/decimal_precision/i18n/es.po index 1dc55b8a52d..8a474f33a02 100644 --- a/addons/decimal_precision/i18n/es.po +++ b/addons/decimal_precision/i18n/es.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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_CR.po b/addons/decimal_precision/i18n/es_CR.po index 027718ff620..eedbe9711ad 100644 --- a/addons/decimal_precision/i18n/es_CR.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: es\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/es_EC.po b/addons/decimal_precision/i18n/es_EC.po index fced7f1ba60..50404788aeb 100644 --- a/addons/decimal_precision/i18n/es_EC.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_PY.po b/addons/decimal_precision/i18n/es_PY.po index 8bcb235c12b..283e63a663e 100644 --- a/addons/decimal_precision/i18n/es_PY.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/fi.po b/addons/decimal_precision/i18n/fi.po index f8ab99795ac..0bf930d632d 100644 --- a/addons/decimal_precision/i18n/fi.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/fr.po b/addons/decimal_precision/i18n/fr.po index 43f8a35e092..09e83c09be2 100644 --- a/addons/decimal_precision/i18n/fr.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/gl.po b/addons/decimal_precision/i18n/gl.po index 92cb7d78679..9909421cf8a 100644 --- a/addons/decimal_precision/i18n/gl.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/gu.po b/addons/decimal_precision/i18n/gu.po index bbf99985ea3..1d27e9eef78 100644 --- a/addons/decimal_precision/i18n/gu.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/hr.po b/addons/decimal_precision/i18n/hr.po index 6ea24610963..0f36a78fd48 100644 --- a/addons/decimal_precision/i18n/hr.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/hu.po b/addons/decimal_precision/i18n/hu.po index acf788fe025..93df71b6645 100644 --- a/addons/decimal_precision/i18n/hu.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/id.po b/addons/decimal_precision/i18n/id.po index 3efe692b376..e765b42e2a7 100644 --- a/addons/decimal_precision/i18n/id.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/it.po b/addons/decimal_precision/i18n/it.po index 698e1dab386..d178929919b 100644 --- a/addons/decimal_precision/i18n/it.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ja.po b/addons/decimal_precision/i18n/ja.po index c306c8658c5..dbc661db549 100644 --- a/addons/decimal_precision/i18n/ja.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/lt.po b/addons/decimal_precision/i18n/lt.po index 5ef2ce51d5e..0cf792e40e0 100644 --- a/addons/decimal_precision/i18n/lt.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/lv.po b/addons/decimal_precision/i18n/lv.po index eb00fe3fa16..eb907142d8b 100644 --- a/addons/decimal_precision/i18n/lv.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/mn.po b/addons/decimal_precision/i18n/mn.po index 28da228a2da..63145d41e7a 100644 --- a/addons/decimal_precision/i18n/mn.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/nb.po b/addons/decimal_precision/i18n/nb.po index ef17a875801..5da2287b7cc 100644 --- a/addons/decimal_precision/i18n/nb.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/nl.po b/addons/decimal_precision/i18n/nl.po index 5dc84b3e73a..88b6e0a94aa 100644 --- a/addons/decimal_precision/i18n/nl.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/nl_BE.po b/addons/decimal_precision/i18n/nl_BE.po index e9fc80cced0..37d0f16bf8d 100644 --- a/addons/decimal_precision/i18n/nl_BE.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/pt.po b/addons/decimal_precision/i18n/pt.po index 84478c3d123..00e4059a25f 100644 --- a/addons/decimal_precision/i18n/pt.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/pt_BR.po b/addons/decimal_precision/i18n/pt_BR.po index 08ea274ef4c..d5cddc4b085 100644 --- a/addons/decimal_precision/i18n/pt_BR.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ro.po b/addons/decimal_precision/i18n/ro.po index e2f31c4e0ff..a9ff344dc2f 100644 --- a/addons/decimal_precision/i18n/ro.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ru.po b/addons/decimal_precision/i18n/ru.po index f5c6aa388a9..eb823db5d61 100644 --- a/addons/decimal_precision/i18n/ru.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sk.po b/addons/decimal_precision/i18n/sk.po index 89f75649ac3..6055c35caca 100644 --- a/addons/decimal_precision/i18n/sk.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sl.po b/addons/decimal_precision/i18n/sl.po index 2e311bc1d56..b30a4beb0eb 100644 --- a/addons/decimal_precision/i18n/sl.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sr.po b/addons/decimal_precision/i18n/sr.po index 28b590172a1..eb507f3da56 100644 --- a/addons/decimal_precision/i18n/sr.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sr@latin.po b/addons/decimal_precision/i18n/sr@latin.po index 4c787801769..2e83aeaaf11 100644 --- a/addons/decimal_precision/i18n/sr@latin.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sv.po b/addons/decimal_precision/i18n/sv.po index 265adf51edc..f7766588f76 100644 --- a/addons/decimal_precision/i18n/sv.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/tr.po b/addons/decimal_precision/i18n/tr.po index 9d2f56379d3..d76d8baed77 100644 --- a/addons/decimal_precision/i18n/tr.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/vi.po b/addons/decimal_precision/i18n/vi.po index c81e7b48008..4b2d6a536b1 100644 --- a/addons/decimal_precision/i18n/vi.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/zh_CN.po b/addons/decimal_precision/i18n/zh_CN.po index 5b3ecb3c4aa..3326eb0ca51 100644 --- a/addons/decimal_precision/i18n/zh_CN.po +++ b/addons/decimal_precision/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: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:34+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/zh_TW.po b/addons/decimal_precision/i18n/zh_TW.po index a1e73c5cbc5..511eb20fafb 100644 --- a/addons/decimal_precision/i18n/zh_TW.po +++ b/addons/decimal_precision/i18n/zh_TW.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 00:36+0000\n" -"PO-Revision-Date: 2011-09-27 08:06+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2012-08-29 07:43+0000\n" +"Last-Translator: Bonnie Duan \n" "Language-Team: Chinese (Traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:29+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-30 05:12+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 @@ -46,7 +46,7 @@ msgstr "小數精確度" #. module: decimal_precision #: model:ir.model,name:decimal_precision.model_decimal_precision msgid "decimal.precision" -msgstr "" +msgstr "decimal.precision" #~ msgid "Decimal Precision Configuration" #~ msgstr "小數精確度設定" diff --git a/addons/delivery/__openerp__.py b/addons/delivery/__openerp__.py index 092258f5e91..6a355096e4e 100644 --- a/addons/delivery/__openerp__.py +++ b/addons/delivery/__openerp__.py @@ -33,17 +33,15 @@ invoices from picking, OpenERP is able to add and compute the shipping line. """, 'author': 'OpenERP SA', 'depends': ['sale', 'purchase', 'stock'], - 'init_xml': ['delivery_data.xml'], - 'update_xml': [ + 'data': [ 'security/ir.model.access.csv', 'delivery_report.xml', 'delivery_view.xml', - 'partner_view.xml' - ], - 'demo_xml': ['delivery_demo.xml'], - 'test': [ - 'test/delivery_cost.yml', + 'partner_view.xml', + 'delivery_data.xml' ], + 'demo': ['delivery_demo.xml'], + 'test': ['test/delivery_cost.yml'], 'installable': True, 'auto_install': False, 'certificate': '0033981912253', diff --git a/addons/delivery/delivery_data.xml b/addons/delivery/delivery_data.xml index c1d9d99b33a..fec56b329b3 100644 --- a/addons/delivery/delivery_data.xml +++ b/addons/delivery/delivery_data.xml @@ -1,6 +1,6 @@ - + property_delivery_carrier diff --git a/addons/delivery/i18n/ar.po b/addons/delivery/i18n/ar.po index 9ff4e29dcbb..cd94bca8c98 100644 --- a/addons/delivery/i18n/ar.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 05:59+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/bg.po b/addons/delivery/i18n/bg.po index 511b0b43353..bdc502cbb4d 100644 --- a/addons/delivery/i18n/bg.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/bs.po b/addons/delivery/i18n/bs.po index dea64ae7dff..4c16dca970e 100644 --- a/addons/delivery/i18n/bs.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ca.po b/addons/delivery/i18n/ca.po index 99ecde1b1c4..d0ecd640d48 100644 --- a/addons/delivery/i18n/ca.po +++ b/addons/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/cs.po b/addons/delivery/i18n/cs.po index 8109457bd2d..af60b2630c9 100644 --- a/addons/delivery/i18n/cs.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" "X-Poedit-Language: Czech\n" #. module: delivery diff --git a/addons/delivery/i18n/da.po b/addons/delivery/i18n/da.po index ec301858065..5c9923b659a 100644 --- a/addons/delivery/i18n/da.po +++ b/addons/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/de.po b/addons/delivery/i18n/de.po index 2a068d2494f..560cfa3cdeb 100644 --- a/addons/delivery/i18n/de.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/el.po b/addons/delivery/i18n/el.po index 1da5e618ec3..5e1312003c8 100644 --- a/addons/delivery/i18n/el.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es.po b/addons/delivery/i18n/es.po index f44dbfd8e83..5809e3ad40f 100644 --- a/addons/delivery/i18n/es.po +++ b/addons/delivery/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 00:36+0000\n" "PO-Revision-Date: 2011-01-13 14:31+0000\n" -"Last-Translator: Carlos @ smile-iberia \n" +"Last-Translator: Carlos Ch. \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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_AR.po b/addons/delivery/i18n/es_AR.po index a34cf1d70d6..96b950c88d3 100644 --- a/addons/delivery/i18n/es_AR.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_CR.po b/addons/delivery/i18n/es_CR.po index 8a6cff102da..da99c6963df 100644 --- a/addons/delivery/i18n/es_CR.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: \n" #. module: delivery diff --git a/addons/delivery/i18n/es_EC.po b/addons/delivery/i18n/es_EC.po index e7f21252e44..b52a1a03548 100644 --- a/addons/delivery/i18n/es_EC.po +++ b/addons/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_PY.po b/addons/delivery/i18n/es_PY.po index 54175e93a72..81dcb324fd7 100644 --- a/addons/delivery/i18n/es_PY.po +++ b/addons/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/et.po b/addons/delivery/i18n/et.po index ea1fe8b4a96..4741a8df5a4 100644 --- a/addons/delivery/i18n/et.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/fi.po b/addons/delivery/i18n/fi.po index 5e63e4716a0..c8bda2f24cf 100644 --- a/addons/delivery/i18n/fi.po +++ b/addons/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/fr.po b/addons/delivery/i18n/fr.po index 1b420912e2e..b6dcb1f552b 100644 --- a/addons/delivery/i18n/fr.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "XML non valide pour l'architecture de la vue !" diff --git a/addons/delivery/i18n/gl.po b/addons/delivery/i18n/gl.po index 0502295e759..edd2bcba1de 100644 --- a/addons/delivery/i18n/gl.po +++ b/addons/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/hi.po b/addons/delivery/i18n/hi.po index c4a0805c1c0..8bde315261a 100644 --- a/addons/delivery/i18n/hi.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/hr.po b/addons/delivery/i18n/hr.po index 6a77dce3999..09b67dc0f64 100644 --- a/addons/delivery/i18n/hr.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: hr\n" #. module: delivery diff --git a/addons/delivery/i18n/hu.po b/addons/delivery/i18n/hu.po index 253036b17d8..4b959563a7a 100644 --- a/addons/delivery/i18n/hu.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/id.po b/addons/delivery/i18n/id.po index f70c211f57d..04c9a8fc546 100644 --- a/addons/delivery/i18n/id.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/it.po b/addons/delivery/i18n/it.po index dc254d1581f..8be95a1c5cb 100644 --- a/addons/delivery/i18n/it.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ja.po b/addons/delivery/i18n/ja.po index c00c2cdb51f..cfef0a94580 100644 --- a/addons/delivery/i18n/ja.po +++ b/addons/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ko.po b/addons/delivery/i18n/ko.po index 115fde6a36e..3c31903ce9b 100644 --- a/addons/delivery/i18n/ko.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/lt.po b/addons/delivery/i18n/lt.po index fae87218ceb..cadb88c452e 100644 --- a/addons/delivery/i18n/lt.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/lv.po b/addons/delivery/i18n/lv.po index 6419cca483b..d89d40f8afc 100644 --- a/addons/delivery/i18n/lv.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/mn.po b/addons/delivery/i18n/mn.po index 7665b33fe96..0d0312cedd3 100644 --- a/addons/delivery/i18n/mn.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nb.po b/addons/delivery/i18n/nb.po index 8d0dc49852e..c19eb4992ad 100644 --- a/addons/delivery/i18n/nb.po +++ b/addons/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nl.po b/addons/delivery/i18n/nl.po index 56eb7804dec..9d0666ac0eb 100644 --- a/addons/delivery/i18n/nl.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nl_BE.po b/addons/delivery/i18n/nl_BE.po index 5b90799e8fd..bae6c25bdf1 100644 --- a/addons/delivery/i18n/nl_BE.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/pl.po b/addons/delivery/i18n/pl.po index 776071ea16a..f2d56a4a2bb 100644 --- a/addons/delivery/i18n/pl.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/pt.po b/addons/delivery/i18n/pt.po index 941565a1fd8..2a5d921325a 100644 --- a/addons/delivery/i18n/pt.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/pt_BR.po b/addons/delivery/i18n/pt_BR.po index d3bb29c0665..e0cb2fb91d8 100644 --- a/addons/delivery/i18n/pt_BR.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ro.po b/addons/delivery/i18n/ro.po index 50784682726..448d531e51f 100644 --- a/addons/delivery/i18n/ro.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ru.po b/addons/delivery/i18n/ru.po index c9039f999c9..89c461ef431 100644 --- a/addons/delivery/i18n/ru.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sl.po b/addons/delivery/i18n/sl.po index 8b88494882e..2cc27557d76 100644 --- a/addons/delivery/i18n/sl.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sq.po b/addons/delivery/i18n/sq.po index b48e450e909..33be8869538 100644 --- a/addons/delivery/i18n/sq.po +++ b/addons/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 05:59+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sr.po b/addons/delivery/i18n/sr.po index 36312862e3d..b56f0069954 100644 --- a/addons/delivery/i18n/sr.po +++ b/addons/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sr@latin.po b/addons/delivery/i18n/sr@latin.po index 45bd3c38a98..b3a7ebb6fcb 100644 --- a/addons/delivery/i18n/sr@latin.po +++ b/addons/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sv.po b/addons/delivery/i18n/sv.po index c7f1a27cffd..ab7a85ad458 100644 --- a/addons/delivery/i18n/sv.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/th.po b/addons/delivery/i18n/th.po index b13458a1498..2bd4fa89f24 100644 --- a/addons/delivery/i18n/th.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/tlh.po b/addons/delivery/i18n/tlh.po index f954d69c1bf..1844e7a4d45 100644 --- a/addons/delivery/i18n/tlh.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/tr.po b/addons/delivery/i18n/tr.po index bf2022ac968..7a2a1b69ad7 100644 --- a/addons/delivery/i18n/tr.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/uk.po b/addons/delivery/i18n/uk.po index 4b042da3074..40c7f792153 100644 --- a/addons/delivery/i18n/uk.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/vi.po b/addons/delivery/i18n/vi.po index e658f646c5e..a618d40633a 100644 --- a/addons/delivery/i18n/vi.po +++ b/addons/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/zh_CN.po b/addons/delivery/i18n/zh_CN.po index 06bbdecf0b0..fedb9f2e2c4 100644 --- a/addons/delivery/i18n/zh_CN.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/zh_TW.po b/addons/delivery/i18n/zh_TW.po index e80d2e9599d..60c0cbe4e46 100644 --- a/addons/delivery/i18n/zh_TW.po +++ b/addons/delivery/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: 2012-08-07 04:53+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:00+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/document/__openerp__.py b/addons/document/__openerp__.py index d9ad9a09675..212965a8162 100644 --- a/addons/document/__openerp__.py +++ b/addons/document/__openerp__.py @@ -37,6 +37,7 @@ This is a complete document management system. * Files Size by Month (graph) ATTENTION: +---------- - When you install this module in a running company that have already PDF files stored into the database, you will lose them all. - After installing this module PDF's are no longer stored into the database, @@ -45,8 +46,7 @@ ATTENTION: 'author': 'OpenERP SA', 'website': 'http://www.openerp.com', 'depends': ['process','board', 'knowledge'], - 'init_xml': [], - 'update_xml': [ + 'data': [ 'security/document_security.xml', 'document_view.xml', 'document_data.xml', @@ -55,10 +55,8 @@ ATTENTION: 'report/document_report_view.xml', 'board_document_view.xml', ], - 'demo_xml': [ 'document_demo.xml','board_document_demo.xml'], - 'test': [ - 'test/document_test2.yml', - ], + 'demo': [ 'document_demo.xml','board_document_demo.xml'], + 'test': ['test/document_test2.yml'], 'installable': True, 'auto_install': False, 'certificate': '0070515416461', diff --git a/addons/document/board_document_view.xml b/addons/document/board_document_view.xml index a802d788e05..986b054383f 100644 --- a/addons/document/board_document_view.xml +++ b/addons/document/board_document_view.xml @@ -8,9 +8,6 @@
- diff --git a/addons/document/i18n/ar.po b/addons/document/i18n/ar.po index 49a0c9ad646..d2ef2aef2af 100644 --- a/addons/document/i18n/ar.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/bg.po b/addons/document/i18n/bg.po index 98952bd2806..eca85f00ad7 100644 --- a/addons/document/i18n/bg.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/bs.po b/addons/document/i18n/bs.po index 8e9cf19c19f..4e68d5aa0f0 100644 --- a/addons/document/i18n/bs.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ca.po b/addons/document/i18n/ca.po index 075eee4906a..5966795072a 100644 --- a/addons/document/i18n/ca.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/cs.po b/addons/document/i18n/cs.po index b64f9d34d34..62dd1dde6b0 100644 --- a/addons/document/i18n/cs.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" "X-Poedit-Language: Czech\n" #. module: document diff --git a/addons/document/i18n/da.po b/addons/document/i18n/da.po index 0478e923135..b0aa4b8ab29 100644 --- a/addons/document/i18n/da.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/de.po b/addons/document/i18n/de.po index 6a22cbc0e83..aae303c2bba 100644 --- a/addons/document/i18n/de.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/el.po b/addons/document/i18n/el.po index ff70f1473ca..fb4ff67a53d 100644 --- a/addons/document/i18n/el.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es.po b/addons/document/i18n/es.po index 7fac82bee79..56d03fb1b94 100644 --- a/addons/document/i18n/es.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_AR.po b/addons/document/i18n/es_AR.po index 4b270f1a20e..fff2544d5be 100644 --- a/addons/document/i18n/es_AR.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_CR.po b/addons/document/i18n/es_CR.po index acc6bad0d78..65c17cb402a 100644 --- a/addons/document/i18n/es_CR.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: \n" #. module: document diff --git a/addons/document/i18n/es_EC.po b/addons/document/i18n/es_EC.po index 69ed68fec0b..6cf54ff2182 100644 --- a/addons/document/i18n/es_EC.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_PY.po b/addons/document/i18n/es_PY.po index af09dc6bc79..9871351d1c4 100644 --- a/addons/document/i18n/es_PY.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/et.po b/addons/document/i18n/et.po index 60af115355c..ef4c30f5cf5 100644 --- a/addons/document/i18n/et.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/fi.po b/addons/document/i18n/fi.po index 432079e9431..26d2bd11b39 100644 --- a/addons/document/i18n/fi.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/fr.po b/addons/document/i18n/fr.po index 11ba811195a..c4b6d0b4d5f 100644 --- a/addons/document/i18n/fr.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/gl.po b/addons/document/i18n/gl.po index 4bdcdcf1364..26dadbbfb9d 100644 --- a/addons/document/i18n/gl.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/gu.po b/addons/document/i18n/gu.po index 81114cbb22c..d96e2dbcdd6 100644 --- a/addons/document/i18n/gu.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/hi.po b/addons/document/i18n/hi.po index 5d8362dd745..0e5af91b729 100644 --- a/addons/document/i18n/hi.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/hr.po b/addons/document/i18n/hr.po index 9d0fc7f18f4..1b089c87c5c 100644 --- a/addons/document/i18n/hr.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: hr\n" #. module: document diff --git a/addons/document/i18n/hu.po b/addons/document/i18n/hu.po index 49ac94305d0..fbb576107a3 100644 --- a/addons/document/i18n/hu.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/id.po b/addons/document/i18n/id.po index a12b7e28ab2..2c562e9ed95 100644 --- a/addons/document/i18n/id.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/it.po b/addons/document/i18n/it.po index 05b30fd5259..dd97c943c1f 100644 --- a/addons/document/i18n/it.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ja.po b/addons/document/i18n/ja.po index e89800eccf1..f2c12bd7209 100644 --- a/addons/document/i18n/ja.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ko.po b/addons/document/i18n/ko.po index 3cc699fa6d1..9faf8699a5e 100644 --- a/addons/document/i18n/ko.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/lt.po b/addons/document/i18n/lt.po index 7a24ef1b7ed..fc958406b2a 100644 --- a/addons/document/i18n/lt.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/lv.po b/addons/document/i18n/lv.po index 9c45abbf1d1..a84a9d5ed56 100644 --- a/addons/document/i18n/lv.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/mn.po b/addons/document/i18n/mn.po index 9696dc1f54a..28ea8eadb76 100644 --- a/addons/document/i18n/mn.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nl.po b/addons/document/i18n/nl.po index afdb957d360..cb78afbdb86 100644 --- a/addons/document/i18n/nl.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nl_BE.po b/addons/document/i18n/nl_BE.po index cc83748032f..2985401bf32 100644 --- a/addons/document/i18n/nl_BE.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/pl.po b/addons/document/i18n/pl.po index 0ba8695d695..227e07eb2d0 100644 --- a/addons/document/i18n/pl.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/pt.po b/addons/document/i18n/pt.po index ce51edffd3f..40b86960004 100644 --- a/addons/document/i18n/pt.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/pt_BR.po b/addons/document/i18n/pt_BR.po index d846deb6f9c..695f106083a 100644 --- a/addons/document/i18n/pt_BR.po +++ b/addons/document/i18n/pt_BR.po @@ -8,13 +8,14 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 00:36+0000\n" "PO-Revision-Date: 2012-07-28 18:51+0000\n" -"Last-Translator: Fábio Martinelli \n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ro.po b/addons/document/i18n/ro.po index 2d377ccddc2..db47b206b59 100644 --- a/addons/document/i18n/ro.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ru.po b/addons/document/i18n/ru.po index 217f3c830e8..2705617a161 100644 --- a/addons/document/i18n/ru.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sk.po b/addons/document/i18n/sk.po index 674774572ab..0cc487b6548 100644 --- a/addons/document/i18n/sk.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sl.po b/addons/document/i18n/sl.po index 4f43506b6b9..eb12a442bfa 100644 --- a/addons/document/i18n/sl.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sq.po b/addons/document/i18n/sq.po index f6c02e85169..8356f5f9a20 100644 --- a/addons/document/i18n/sq.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sr.po b/addons/document/i18n/sr.po index 9e8ec311227..72acfdddd06 100644 --- a/addons/document/i18n/sr.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sr@latin.po b/addons/document/i18n/sr@latin.po index 49d06f208a4..a096766532b 100644 --- a/addons/document/i18n/sr@latin.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sv.po b/addons/document/i18n/sv.po index 9c3ec2c2f29..c8eaa4357b2 100644 --- a/addons/document/i18n/sv.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/tlh.po b/addons/document/i18n/tlh.po index 1b7ecdf8204..41b373f151e 100644 --- a/addons/document/i18n/tlh.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/tr.po b/addons/document/i18n/tr.po index b828a9c0961..e9e94073d66 100644 --- a/addons/document/i18n/tr.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/uk.po b/addons/document/i18n/uk.po index f1104ea53c7..03fff842b39 100644 --- a/addons/document/i18n/uk.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/vi.po b/addons/document/i18n/vi.po index 7709b3f5536..b286c555c10 100644 --- a/addons/document/i18n/vi.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/zh_CN.po b/addons/document/i18n/zh_CN.po index 0de55fdab5a..4521ee4d950 100644 --- a/addons/document/i18n/zh_CN.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/zh_HK.po b/addons/document/i18n/zh_HK.po index 2c4fc1ddbef..32690ccb60e 100644 --- a/addons/document/i18n/zh_HK.po +++ b/addons/document/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: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:28+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/zh_TW.po b/addons/document/i18n/zh_TW.po index 116ad3e0868..84e7f3c7cfa 100644 --- a/addons/document/i18n/zh_TW.po +++ b/addons/document/i18n/zh_TW.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 00:36+0000\n" -"PO-Revision-Date: 2011-01-28 03:53+0000\n" -"Last-Translator: Walter Cheuk \n" -"Language-Team: \n" +"PO-Revision-Date: 2012-08-30 11:51+0000\n" +"Last-Translator: Bonnie Duan \n" +"Language-Team: Cenoq Corp.\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-09 04:55+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-31 04:56+0000\n" +"X-Generator: Launchpad (build 15887)\n" #. module: document #: field:document.directory,parent_id:0 @@ -35,7 +35,7 @@ msgstr "名稱欄位" #. module: document #: view:board.board:0 msgid "Document board" -msgstr "" +msgstr "文件佈告欄" #. module: document #: model:ir.model,name:document.model_process_node @@ -58,7 +58,7 @@ msgstr "用作資源目錄名稱之欄位。如留空,會用該「名稱」。 #: view:document.directory:0 #: view:document.storage:0 msgid "Group By..." -msgstr "分組根據..." +msgstr "分類方式..." #. module: document #: model:ir.model,name:document.model_document_directory_content_type @@ -79,7 +79,7 @@ msgstr "檔案" #. module: document #: view:report.files.partner:0 msgid "Files per Month" -msgstr "" +msgstr "當月文件" #. module: document #: selection:report.document.user,month:0 @@ -90,12 +90,12 @@ msgstr "三月" #. module: document #: view:document.configuration:0 msgid "title" -msgstr "" +msgstr "抬頭" #. module: document #: field:document.directory.dctx,expr:0 msgid "Expression" -msgstr "表達式" +msgstr "表達方式" #. module: document #: view:document.directory:0 @@ -111,7 +111,7 @@ msgstr "目錄內容" #. module: document #: view:document.directory:0 msgid "Dynamic context" -msgstr "" +msgstr "動態背景" #. module: document #: model:ir.ui.menu,name:document.menu_document_management_configuration @@ -125,11 +125,14 @@ msgid "" "You can use 'dir_id' for current dir, 'res_id', 'res_model' as a reference " "to the current record, in dynamic folders" msgstr "" +"A python expression used to evaluate the field.\n" +"You can use 'dir_id' for current dir, 'res_id', 'res_model' as a reference " +"to the current record, in dynamic folders" #. module: document #: view:report.document.user:0 msgid "This Year" -msgstr "本年" +msgstr "今年" #. module: document #: field:document.storage,path:0 @@ -146,7 +149,7 @@ msgstr "目錄名不能重覆!" #. module: document #: view:ir.attachment:0 msgid "Filter on my documents" -msgstr "" +msgstr "過濾我的文件" #. module: document #: field:ir.attachment,index_content:0 @@ -158,12 +161,12 @@ msgstr "已索引內容" msgid "" "If true, all attachments that match this resource will be located. If " "false, only ones that have this as parent." -msgstr "" +msgstr "如果正確,所有符合資源的附件會被發現。如果錯誤,只有符合資源的附件會被歸屬。" #. module: document #: model:ir.actions.todo.category,name:document.category_knowledge_mgmt_config msgid "Knowledge Management" -msgstr "" +msgstr "知識管理" #. module: document #: view:document.directory:0 @@ -175,7 +178,7 @@ msgstr "目錄" #. module: document #: model:ir.model,name:document.model_report_document_user msgid "Files details by Users" -msgstr "各用戶檔案詳情" +msgstr "各使用者檔案詳情" #. module: document #: code:addons/document/document_storage.py:573 @@ -187,17 +190,17 @@ msgstr "錯誤!" #. module: document #: field:document.directory,resource_find_all:0 msgid "Find all resources" -msgstr "" +msgstr "尋找所有資源" #. module: document #: selection:document.directory,type:0 msgid "Folders per resource" -msgstr "" +msgstr "按資源歸類檔案夾" #. module: document #: field:document.directory.content,suffix:0 msgid "Suffix" -msgstr "後綴" +msgstr "字尾" #. module: document #: field:report.document.user,change_date:0 @@ -207,7 +210,7 @@ msgstr "修改日期" #. module: document #: view:document.configuration:0 msgid "Knowledge Application Configuration" -msgstr "" +msgstr "文管設定" #. module: document #: view:ir.attachment:0 @@ -219,7 +222,7 @@ msgstr "伙伴" #. module: document #: view:board.board:0 msgid "Files by Users" -msgstr "各用戶檔案" +msgstr "使用者檔案" #. module: document #: field:process.node,directory_id:0 @@ -239,7 +242,7 @@ msgstr "檢驗錯誤" #. module: document #: model:ir.model,name:document.model_ir_actions_report_xml msgid "ir.actions.report.xml" -msgstr "" +msgstr "ir.actions.report.xml" #. module: document #: model:ir.actions.act_window,name:document.action_document_file_form @@ -252,13 +255,13 @@ msgstr "文件" #. module: document #: constraint:document.directory:0 msgid "Error! You can not create recursive Directories." -msgstr "" +msgstr "錯誤! 您不可以建立循環目錄。" #. module: document #: view:document.directory:0 #: field:document.directory,storage_id:0 msgid "Storage" -msgstr "" +msgstr "存儲器" #. module: document #: field:document.directory,ressource_type_id:0 @@ -292,28 +295,28 @@ msgstr "類型" msgid "" "Select an object here and there will be one folder per record of that " "resource." -msgstr "" +msgstr "在這裡選擇一個目標,這個資源將會是一筆記錄一個檔案夾" #. module: document #: help:document.directory,domain:0 msgid "" "Use a domain if you want to apply an automatic filter on visible resources." -msgstr "" +msgstr "請使用一個領域,如果您要將可見的資源自動過濾。" #. module: document #: model:ir.actions.act_window,name:document.action_view_files_by_partner msgid "Files Per Partner" -msgstr "" +msgstr "夥伴文件" #. module: document #: field:document.directory,dctx_ids:0 msgid "Context fields" -msgstr "脈絡欄位" +msgstr "內文欄位" #. module: document #: field:ir.attachment,store_fname:0 msgid "Stored Filename" -msgstr "" +msgstr "儲存名稱" #. module: document #: view:document.directory:0 @@ -336,7 +339,7 @@ msgstr "七月" #: model:ir.actions.act_window,name:document.open_board_document_manager #: model:ir.ui.menu,name:document.menu_reports_document_manager msgid "Document Dashboard" -msgstr "文件儀錶板" +msgstr "文件控制台" #. module: document #: field:document.directory.content.type,code:0 @@ -346,7 +349,7 @@ msgstr "延伸檔案" #. module: document #: view:ir.attachment:0 msgid "Created" -msgstr "" +msgstr "已建立" #. module: document #: field:document.directory,content_ids:0 @@ -356,25 +359,25 @@ msgstr "虛擬檔案" #. module: document #: view:ir.attachment:0 msgid "Modified" -msgstr "" +msgstr "已修改" #. module: document #: code:addons/document/document_storage.py:639 #, python-format msgid "Error at doc write!" -msgstr "" +msgstr "文件書寫錯誤!" #. module: document #: view:document.directory:0 msgid "Generated Files" -msgstr "" +msgstr "已產生檔案" #. module: document #: view:document.configuration:0 msgid "" "When executing this wizard, it will configure your directories automatically " "according to modules installed." -msgstr "" +msgstr "執行這個精靈,它會根據已安裝的模組自動組態您的目錄。" #. module: document #: field:document.directory.content,directory_id:0 @@ -397,7 +400,7 @@ msgstr "安全" #: field:document.storage,write_uid:0 #: field:ir.attachment,write_uid:0 msgid "Last Modification User" -msgstr "最後修改用戶" +msgstr "最後修改使用者" #. module: document #: model:ir.actions.act_window,name:document.act_res_partner_document @@ -425,7 +428,7 @@ msgstr "各目錄檔案詳情" #. module: document #: view:report.document.user:0 msgid "All users files" -msgstr "所有用戶檔案" +msgstr "所有使用者檔案" #. module: document #: view:board.board:0 @@ -453,18 +456,18 @@ msgstr "靜態目錄" #. module: document #: field:document.directory,child_ids:0 msgid "Children" -msgstr "" +msgstr "子目錄" #. module: document #: view:document.directory:0 msgid "Define words in the context, for all child directories and files" -msgstr "" +msgstr "在內文中定義所有的子目錄及檔案" #. module: document #: help:document.storage,online:0 msgid "" "If not checked, media is currently offline and its contents not available" -msgstr "" +msgstr "如果未檢查,媒體已離線且其內容也無法使用。" #. module: document #: view:document.directory:0 @@ -475,7 +478,7 @@ msgstr "" #: field:report.document.user,user_id:0 #: field:report.document.wall,user_id:0 msgid "Owner" -msgstr "" +msgstr "擁有人" #. module: document #: view:document.directory:0 @@ -492,7 +495,7 @@ msgstr "內容" #: field:document.storage,create_date:0 #: field:report.document.user,create_date:0 msgid "Date Created" -msgstr "" +msgstr "產生的日期" #. module: document #: help:document.directory.content,include_name:0 @@ -501,12 +504,14 @@ msgid "" "name.\n" "If set, the directory will have to be a resource one." msgstr "" +"如果您要檔案名稱包含記錄名稱,請檢查這個欄位。\n" +"如果設定, 這個目錄將會是第一個資源" #. module: document #: view:document.configuration:0 #: model:ir.actions.act_window,name:document.action_config_auto_directory msgid "Configure Directories" -msgstr "" +msgstr "目錄組態" #. module: document #: field:document.directory.content,include_name:0 @@ -521,26 +526,26 @@ msgstr "附件" #. module: document #: field:ir.actions.report.xml,model_id:0 msgid "Model Id" -msgstr "" +msgstr "模型 Id" #. module: document #: field:document.storage,online:0 msgid "Online" -msgstr "" +msgstr "在線上" #. module: document #: help:document.directory,ressource_tree:0 msgid "" "Check this if you want to use the same tree structure as the object selected " "in the system." -msgstr "" +msgstr "檢查這個項目,如果您要在系統中使用相同的樹狀結構當作選擇的目標。" #. module: document #: help:document.directory,ressource_id:0 msgid "" "Along with Parent Model, this ID attaches this folder to a specific record " "of Parent Model." -msgstr "" +msgstr "隨著母模型,這個ID在這個檔案夾附屬在母模型的特定記錄上。" #. module: document #: selection:report.document.user,month:0 @@ -551,7 +556,7 @@ msgstr "八月" #. module: document #: sql_constraint:document.directory:0 msgid "Directory cannot be parent of itself!" -msgstr "" +msgstr "目錄不能作自己的母目錄!" #. module: document #: selection:report.document.user,month:0 @@ -563,7 +568,7 @@ msgstr "六月" #: field:report.document.user,user:0 #: field:report.document.wall,user:0 msgid "User" -msgstr "用戶" +msgstr "使用者" #. module: document #: field:document.directory,group_ids:0 @@ -574,7 +579,7 @@ msgstr "群組" #. module: document #: field:document.directory.content.type,active:0 msgid "Active" -msgstr "" +msgstr "啟用" #. module: document #: selection:report.document.user,month:0 @@ -596,6 +601,8 @@ msgid "" "record, just like attachments. Don't put a parent directory if you select a " "parent model." msgstr "" +"如果您在這裡放置一個目標,這個目錄範本將會出現下列所有目標。這種目錄是 \"附件\" " +"於特定的模型或記錄,就像附屬文件。如果您選擇一個母模型,就不要放置母目錄。" #. module: document #: view:document.directory:0 @@ -611,7 +618,7 @@ msgstr "十月" #. module: document #: view:document.directory:0 msgid "Seq." -msgstr "" +msgstr "Seq." #. module: document #: selection:document.storage,type:0 @@ -637,12 +644,12 @@ msgstr "" #. module: document #: model:ir.ui.menu,name:document.menu_reports_document msgid "Dashboard" -msgstr "儀錶板" +msgstr "控制台" #. module: document #: model:ir.actions.act_window,name:document.action_view_user_graph msgid "Files By Users" -msgstr "各用戶檔案" +msgstr "各使用者檔案" #. module: document #: field:document.storage,readonly:0 @@ -652,7 +659,7 @@ msgstr "唯讀" #. module: document #: model:ir.actions.act_window,name:document.action_document_directory_form msgid "Document Directory" -msgstr "" +msgstr "文件目錄" #. module: document #: sql_constraint:document.directory:0 @@ -663,12 +670,12 @@ msgstr "目錄名不能重覆!" #: field:document.directory,create_uid:0 #: field:document.storage,create_uid:0 msgid "Creator" -msgstr "" +msgstr "建置者" #. module: document #: field:document.directory.content,sequence:0 msgid "Sequence" -msgstr "" +msgstr "順序" #. module: document #: view:document.configuration:0 @@ -678,6 +685,8 @@ msgid "" "attached to the document, or to print and download any report. This tool " "will create directories automatically according to modules installed." msgstr "" +"OpenERP's " +"文件管理系統支援虛擬檔案夾與文件配對。文件的虛擬檔案夾可以用來管理文件的附件,或列印及下載任何報表。這個工具會根據安裝的模組自動產生目錄。" #. module: document #: view:board.board:0 @@ -695,7 +704,7 @@ msgstr "九月" #. module: document #: field:document.directory.content,prefix:0 msgid "Prefix" -msgstr "前綴" +msgstr "字尾" #. module: document #: field:report.document.wall,last:0 @@ -710,7 +719,7 @@ msgstr "檔案名稱" #. module: document #: view:document.configuration:0 msgid "res_config_contents" -msgstr "" +msgstr "res_config_contents" #. module: document #: field:document.directory,ressource_id:0 @@ -720,19 +729,19 @@ msgstr "資源ID" #. module: document #: selection:document.storage,type:0 msgid "External file storage" -msgstr "" +msgstr "外部檔案儲存" #. module: document #: view:board.board:0 #: model:ir.actions.act_window,name:document.action_view_wall #: view:report.document.wall:0 msgid "Wall of Shame" -msgstr "" +msgstr "排行榜" #. module: document #: help:document.storage,path:0 msgid "For file storage, the root path of the storage" -msgstr "" +msgstr "關於檔案儲存,儲存的根路徑" #. module: document #: model:ir.model,name:document.model_report_files_partner @@ -747,17 +756,17 @@ msgstr "欄位" #. module: document #: model:ir.model,name:document.model_document_directory_dctx msgid "Directory Dynamic Context" -msgstr "" +msgstr "目錄動態內文" #. module: document #: field:document.directory,ressource_parent_type_id:0 msgid "Parent Model" -msgstr "" +msgstr "母模型" #. module: document #: view:report.document.user:0 msgid "Files by users" -msgstr "各用戶檔案" +msgstr "各使用者檔案" #. module: document #: field:report.document.file,month:0 @@ -771,12 +780,12 @@ msgstr "月" #. module: document #: view:report.document.user:0 msgid "This Months Files" -msgstr "" +msgstr "當月檔案" #. module: document #: model:ir.ui.menu,name:document.menu_reporting msgid "Reporting" -msgstr "報告" +msgstr "報表" #. module: document #: field:document.directory,ressource_tree:0 @@ -792,29 +801,29 @@ msgstr "五月" #. module: document #: model:ir.actions.act_window,name:document.action_view_all_document_tree1 msgid "All Users files" -msgstr "所有用戶檔案" +msgstr "所有使用者檔案" #. module: document #: model:ir.model,name:document.model_report_document_wall msgid "Users that did not inserted documents since one month" -msgstr "" +msgstr "使用者已經一個月未插入文件" #. module: document #: model:ir.actions.act_window,help:document.action_document_file_form msgid "" "The Documents repository gives you access to all attachments, such as mails, " "project documents, invoices etc." -msgstr "" +msgstr "文件儲存室讓您可以存取所有附件,如電郵、專案文件、商業發票等" #. module: document #: view:document.directory:0 msgid "For each entry here, virtual files will appear in this folder." -msgstr "" +msgstr "對於每一輸入,虛擬檔案在檔案夾中出現" #. module: document #: model:ir.model,name:document.model_ir_attachment msgid "ir.attachment" -msgstr "" +msgstr "ir.attachment" #. module: document #: view:board.board:0 @@ -834,7 +843,7 @@ msgstr "各伙伴檔案" #. module: document #: view:ir.attachment:0 msgid "Indexed Content - experimental" -msgstr "" +msgstr "已索引內容 - 實驗性質" #. module: document #: view:report.document.user:0 @@ -844,12 +853,12 @@ msgstr "本月" #. module: document #: view:ir.attachment:0 msgid "Notes" -msgstr "注解" +msgstr "備註" #. module: document #: model:ir.model,name:document.model_document_configuration msgid "Directory Configuration" -msgstr "" +msgstr "目錄組態" #. module: document #: help:document.directory,type:0 @@ -860,6 +869,8 @@ msgid "" "resources automatically possess sub-directories for each of resource types " "defined in the parent directory." msgstr "" +"每一個目錄可以是靜態或連接於另一個資源。一個靜態的目錄與其作業系統,是一個典型的目錄可以包含一組檔案。這個目錄連接於系統資源,在母目錄中按資源別自動持有次" +"目錄。" #. module: document #: selection:report.document.user,month:0 @@ -871,14 +882,14 @@ msgstr "二月" #: model:ir.actions.act_window,name:document.open_board_document_manager1 #: model:ir.ui.menu,name:document.menu_reports_document_manager1 msgid "Statistics by User" -msgstr "各用戶統計" +msgstr "各使用者統計" #. module: document #: help:document.directory.dctx,field:0 msgid "" "The name of the field. Note that the prefix \"dctx_\" will be prepended to " "what is typed here." -msgstr "" +msgstr "這個欄位名稱的字首包含\"dctx_\" 將會根據這裡的輸入預先決定。" #. module: document #: field:document.directory,name:0 @@ -889,7 +900,7 @@ msgstr "名稱" #. module: document #: sql_constraint:document.storage:0 msgid "The storage path must be unique!" -msgstr "" +msgstr "儲存路徑不能重複!" #. module: document #: view:document.directory:0 @@ -899,7 +910,7 @@ msgstr "欄位" #. module: document #: help:document.storage,readonly:0 msgid "If set, media is for reading only" -msgstr "" +msgstr "如果設定,媒體只能唯讀。" #. module: document #: selection:report.document.user,month:0 @@ -918,21 +929,21 @@ msgstr "檔案數" #: code:addons/document/document.py:209 #, python-format msgid "(copy)" -msgstr "" +msgstr "(copy)" #. module: document #: view:document.directory:0 msgid "" "Only members of these groups will have access to this directory and its " "files." -msgstr "" +msgstr "只有這個群組中的數字,才能存取這個目錄及其檔案。" #. module: document #: view:document.directory:0 msgid "" "These groups, however, do NOT apply to children directories, which must " "define their own groups." -msgstr "" +msgstr "雖然這些模組沒有子目錄,但是還是要定義它們自己的群組。" #. module: document #: field:document.directory.content.type,mimetype:0 @@ -942,7 +953,7 @@ msgstr "Mime 類型" #. module: document #: view:report.document.user:0 msgid "All Months Files" -msgstr "" +msgstr "所有月份文件" #. module: document #: field:document.directory.content,name:0 @@ -959,12 +970,12 @@ msgstr "檔案名不能重覆!" #. module: document #: selection:document.storage,type:0 msgid "Internal File storage" -msgstr "" +msgstr "內部文件儲存" #. module: document #: sql_constraint:document.directory:0 msgid "Directory must have a parent or a storage" -msgstr "" +msgstr "目錄必須要有母目錄或儲存" #. module: document #: model:ir.actions.act_window,name:document.action_document_directory_tree @@ -1030,3 +1041,6 @@ msgstr "文件類型" #~ msgid "Product" #~ msgstr "產品" + +#~ msgid "Attached To" +#~ msgstr "附屬於" diff --git a/addons/document/report/document_report.py b/addons/document/report/document_report.py index 7b09f131178..92e33c13746 100644 --- a/addons/document/report/document_report.py +++ b/addons/document/report/document_report.py @@ -32,7 +32,7 @@ class report_document_user(osv.osv): 'month':fields.selection([('01','January'), ('02','February'), ('03','March'), ('04','April'), ('05','May'), ('06','June'), ('07','July'), ('08','August'), ('09','September'), ('10','October'), ('11','November'), ('12','December')],'Month',readonly=True), 'user_id':fields.integer('Owner', readonly=True), - 'user':fields.char('User',size=64,readonly=True), + 'user': fields.related('user_id', 'name', type='char', size=64, readonly=True), 'directory': fields.char('Directory',size=64,readonly=True), 'datas_fname': fields.char('File Name',size=64,readonly=True), 'create_date': fields.datetime('Date Created', readonly=True), @@ -50,7 +50,6 @@ class report_document_user(osv.osv): to_char(f.create_date, 'YYYY') as name, to_char(f.create_date, 'MM') as month, f.user_id as user_id, - u.name as user, count(*) as nbr, d.name as directory, f.datas_fname as datas_fname, @@ -60,8 +59,7 @@ class report_document_user(osv.osv): f.write_date as change_date FROM ir_attachment f left join document_directory d on (f.parent_id=d.id and d.name<>'') - inner join res_users u on (f.user_id=u.id) - group by to_char(f.create_date, 'YYYY'), to_char(f.create_date, 'MM'),d.name,f.parent_id,d.type,f.create_date,f.user_id,f.file_size,u.name,d.type,f.write_date,f.datas_fname + group by to_char(f.create_date, 'YYYY'), to_char(f.create_date, 'MM'),d.name,f.parent_id,d.type,f.create_date,f.user_id,f.file_size,d.type,f.write_date,f.datas_fname ) """) diff --git a/addons/document_ftp/__openerp__.py b/addons/document_ftp/__openerp__.py index 17275eaebbd..f8968d6c3df 100644 --- a/addons/document_ftp/__openerp__.py +++ b/addons/document_ftp/__openerp__.py @@ -35,14 +35,13 @@ FTP client. 'author': 'OpenERP SA', 'website': 'http://www.openerp.com', 'depends': ['base', 'document'], - 'init_xml': [], - 'update_xml': [ + 'data': [ 'wizard/ftp_configuration_view.xml', 'wizard/ftp_browse_view.xml', 'security/ir.model.access.csv', 'res_config_view.xml', ], - 'demo_xml': [], + 'demo': [], 'test': [ 'test/document_ftp_test2.yml', 'test/document_ftp_test4.yml', diff --git a/addons/document_ftp/i18n/ar.po b/addons/document_ftp/i18n/ar.po index 7afe1f3c24f..ef35005be54 100644 --- a/addons/document_ftp/i18n/ar.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/bg.po b/addons/document_ftp/i18n/bg.po index 65a3e6f4f22..c075569741f 100644 --- a/addons/document_ftp/i18n/bg.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/ca.po b/addons/document_ftp/i18n/ca.po index 387f5aa3bb2..bb4eb1a0d42 100644 --- a/addons/document_ftp/i18n/ca.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/cs.po b/addons/document_ftp/i18n/cs.po index db81e19de42..3badc23aa44 100644 --- a/addons/document_ftp/i18n/cs.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/da.po b/addons/document_ftp/i18n/da.po index 97fd3f343d1..9b878ff3026 100644 --- a/addons/document_ftp/i18n/da.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/de.po b/addons/document_ftp/i18n/de.po index 873fbc31195..1161671d5cf 100644 --- a/addons/document_ftp/i18n/de.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/el.po b/addons/document_ftp/i18n/el.po index 678f6d11951..0cf223776d4 100644 --- a/addons/document_ftp/i18n/el.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/en_GB.po b/addons/document_ftp/i18n/en_GB.po index 7ac3aeb0096..45334746c33 100644 --- a/addons/document_ftp/i18n/en_GB.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/es.po b/addons/document_ftp/i18n/es.po index 57763cab2c5..217e8d5ea97 100644 --- a/addons/document_ftp/i18n/es.po +++ b/addons/document_ftp/i18n/es.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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/es_CR.po b/addons/document_ftp/i18n/es_CR.po index 09b71c7c254..bb831948586 100644 --- a/addons/document_ftp/i18n/es_CR.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: es\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/es_EC.po b/addons/document_ftp/i18n/es_EC.po index aacdd74eff4..be8cc7d3c18 100644 --- a/addons/document_ftp/i18n/es_EC.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/es_PY.po b/addons/document_ftp/i18n/es_PY.po index 34021fe7be3..9a9c031a18a 100644 --- a/addons/document_ftp/i18n/es_PY.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/et.po b/addons/document_ftp/i18n/et.po index 03d9ce901b3..d2c4965e9e3 100644 --- a/addons/document_ftp/i18n/et.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/fi.po b/addons/document_ftp/i18n/fi.po index 5f294b5a59e..ea95cd55fa3 100644 --- a/addons/document_ftp/i18n/fi.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/fr.po b/addons/document_ftp/i18n/fr.po index b7c54bdf01e..e5524629266 100644 --- a/addons/document_ftp/i18n/fr.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/gl.po b/addons/document_ftp/i18n/gl.po index ce39b718655..99a88c8dbc2 100644 --- a/addons/document_ftp/i18n/gl.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/hr.po b/addons/document_ftp/i18n/hr.po index 4e276f18569..6aed090f5c5 100644 --- a/addons/document_ftp/i18n/hr.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/hu.po b/addons/document_ftp/i18n/hu.po index 7b9931056b8..785eae18678 100644 --- a/addons/document_ftp/i18n/hu.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/it.po b/addons/document_ftp/i18n/it.po index c2c72215bf8..c802ccb4199 100644 --- a/addons/document_ftp/i18n/it.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/ja.po b/addons/document_ftp/i18n/ja.po index 35d4ca095a7..607dd45daf0 100644 --- a/addons/document_ftp/i18n/ja.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/mn.po b/addons/document_ftp/i18n/mn.po new file mode 100644 index 00000000000..bbfe6e83f11 --- /dev/null +++ b/addons/document_ftp/i18n/mn.po @@ -0,0 +1,119 @@ +# Mongolian translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-02-08 00:36+0000\n" +"PO-Revision-Date: 2012-08-22 03:45+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Mongolian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" + +#. module: document_ftp +#: model:ir.model,name:document_ftp.model_document_ftp_configuration +msgid "Auto Directory Configuration" +msgstr "Автомат Директорын Тохиргоо" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "" +"Indicate the network address on which your OpenERP server should be " +"reachable for end-users. This depends on your network topology and " +"configuration, and will only affect the links displayed to the users. The " +"format is HOST:PORT and the default host (localhost) is only suitable for " +"access from the server machine itself.." +msgstr "" +"Эцсийн хэрэглэгчидийн OpenERP-руу хандаж чадах сүлжээний хаягийг илэрхийлнэ. " +"Энэ танай сүлжээний бүтэц, тохиргооноос хамаарах бөгөөд зөвхөн хэрэглэгчдэд " +"харагдах холбоост л нөлөөтэй. Формат нь HOST:PORT гэсэн загвартай бөгөөд " +"анхын host нь (localhost) гэж байдаг нь зөвхөн сервер машин дээрээс хандахад " +"л тохирно." + +#. module: document_ftp +#: model:ir.actions.url,name:document_ftp.action_document_browse +msgid "Browse Files" +msgstr "Файлуудыг тольдох" + +#. module: document_ftp +#: field:document.ftp.configuration,config_logo:0 +msgid "Image" +msgstr "Зураг" + +#. module: document_ftp +#: field:document.ftp.configuration,host:0 +msgid "Address" +msgstr "Хаяг" + +#. module: document_ftp +#: field:document.ftp.browse,url:0 +msgid "FTP Server" +msgstr "FTP Сервер" + +#. module: document_ftp +#: model:ir.actions.act_window,name:document_ftp.action_config_auto_directory +msgid "FTP Server Configuration" +msgstr "FTP Серверийн тохиргоо" + +#. module: document_ftp +#: view:document.ftp.browse:0 +msgid "_Browse" +msgstr "_Тольдох" + +#. module: document_ftp +#: help:document.ftp.configuration,host:0 +msgid "" +"Server address or IP and port to which users should connect to for DMS access" +msgstr "DMS хандалтаар хандах серверийн хаяг эсвэл IP болон порт." + +#. module: document_ftp +#: model:ir.ui.menu,name:document_ftp.menu_document_browse +msgid "Shared Repository (FTP)" +msgstr "Агуулахыг хуваалцах (FTP)" + +#. module: document_ftp +#: view:document.ftp.browse:0 +msgid "_Cancel" +msgstr "_Цуцлах" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "Configure FTP Server" +msgstr "FTP Сервэр тохируулах" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "title" +msgstr "гарчиг" + +#. module: document_ftp +#: model:ir.model,name:document_ftp.model_document_ftp_browse +msgid "Document FTP Browse" +msgstr "FTP-ээр баримт оруулах" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "Knowledge Application Configuration" +msgstr "Мэдлэгийн Програмын Тохиргоо" + +#. module: document_ftp +#: model:ir.actions.act_window,name:document_ftp.action_ftp_browse +msgid "Document Browse" +msgstr "Баримт оруулах" + +#. module: document_ftp +#: view:document.ftp.browse:0 +msgid "Browse Document" +msgstr "Оруулах баримт" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "res_config_contents" +msgstr "res_config_contents" diff --git a/addons/document_ftp/i18n/nb.po b/addons/document_ftp/i18n/nb.po new file mode 100644 index 00000000000..3598b00f54c --- /dev/null +++ b/addons/document_ftp/i18n/nb.po @@ -0,0 +1,121 @@ +# Norwegian Bokmal translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-02-08 00:36+0000\n" +"PO-Revision-Date: 2012-09-06 14:45+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Norwegian Bokmal \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-09-07 04:59+0000\n" +"X-Generator: Launchpad (build 15914)\n" + +#. module: document_ftp +#: model:ir.model,name:document_ftp.model_document_ftp_configuration +msgid "Auto Directory Configuration" +msgstr "Automatisk Katalog Konfigurasjon." + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "" +"Indicate the network address on which your OpenERP server should be " +"reachable for end-users. This depends on your network topology and " +"configuration, and will only affect the links displayed to the users. The " +"format is HOST:PORT and the default host (localhost) is only suitable for " +"access from the server machine itself.." +msgstr "" +"Indikere nettverksadressen som din OpenERP server bør være tilgjengelige for " +"sluttbrukerne. Dette avhenger av nettverkstopologi og konfigurasjon, og vil " +"bare påvirke lenker som vises til brukerne. Formatet er HOST: PORT og " +"standard verten (lokalhost) er bare egnet for tilgang fra serveren maskinen " +"selv .." + +#. module: document_ftp +#: model:ir.actions.url,name:document_ftp.action_document_browse +msgid "Browse Files" +msgstr "Bla i filer" + +#. module: document_ftp +#: field:document.ftp.configuration,config_logo:0 +msgid "Image" +msgstr "Bilde" + +#. module: document_ftp +#: field:document.ftp.configuration,host:0 +msgid "Address" +msgstr "Adresse" + +#. module: document_ftp +#: field:document.ftp.browse,url:0 +msgid "FTP Server" +msgstr "FTP-tjener" + +#. module: document_ftp +#: model:ir.actions.act_window,name:document_ftp.action_config_auto_directory +msgid "FTP Server Configuration" +msgstr "FTP Serverkonfigurasjon" + +#. module: document_ftp +#: view:document.ftp.browse:0 +msgid "_Browse" +msgstr "_Bla gjennom" + +#. module: document_ftp +#: help:document.ftp.configuration,host:0 +msgid "" +"Server address or IP and port to which users should connect to for DMS access" +msgstr "" +"Server adresse eller IP og port til hvilke brukere som skal koble seg til " +"for DMS tilgang" + +#. module: document_ftp +#: model:ir.ui.menu,name:document_ftp.menu_document_browse +msgid "Shared Repository (FTP)" +msgstr "Wikimedia Commons (FTP)" + +#. module: document_ftp +#: view:document.ftp.browse:0 +msgid "_Cancel" +msgstr "_Avbryt" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "Configure FTP Server" +msgstr "Konfigurer FTP serveren" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "title" +msgstr "tittel" + +#. module: document_ftp +#: model:ir.model,name:document_ftp.model_document_ftp_browse +msgid "Document FTP Browse" +msgstr "Document FTP Bla i." + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "Knowledge Application Configuration" +msgstr "Kunnskap Programkonfigurasjon" + +#. module: document_ftp +#: model:ir.actions.act_window,name:document_ftp.action_ftp_browse +msgid "Document Browse" +msgstr "Dokument Bla i." + +#. module: document_ftp +#: view:document.ftp.browse:0 +msgid "Browse Document" +msgstr "Bla igjennom dokument" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "res_config_contents" +msgstr "res_konfig_innhold" diff --git a/addons/document_ftp/i18n/nl.po b/addons/document_ftp/i18n/nl.po index 274c59eb134..43e9ed21050 100644 --- a/addons/document_ftp/i18n/nl.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/pl.po b/addons/document_ftp/i18n/pl.po index 408fd4f3a40..fdfd4b6379e 100644 --- a/addons/document_ftp/i18n/pl.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/pt.po b/addons/document_ftp/i18n/pt.po index 5fa71c57864..d16ae2e8a9c 100644 --- a/addons/document_ftp/i18n/pt.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/pt_BR.po b/addons/document_ftp/i18n/pt_BR.po index 7f7554a492b..8d8850c328b 100644 --- a/addons/document_ftp/i18n/pt_BR.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/ro.po b/addons/document_ftp/i18n/ro.po index a91527939f8..b749f0be742 100644 --- a/addons/document_ftp/i18n/ro.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/ru.po b/addons/document_ftp/i18n/ru.po index e3ff6440252..eeafc805b6c 100644 --- a/addons/document_ftp/i18n/ru.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/sk.po b/addons/document_ftp/i18n/sk.po index d99fb8e83bb..f1b8b4afad1 100644 --- a/addons/document_ftp/i18n/sk.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/sl.po b/addons/document_ftp/i18n/sl.po index f1a9e21395f..26f80f33d8f 100644 --- a/addons/document_ftp/i18n/sl.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/sr.po b/addons/document_ftp/i18n/sr.po index aaa2cda98b7..03e64b85967 100644 --- a/addons/document_ftp/i18n/sr.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/sr@latin.po b/addons/document_ftp/i18n/sr@latin.po index ed919dbeb6e..d4a9d2b4740 100644 --- a/addons/document_ftp/i18n/sr@latin.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/sv.po b/addons/document_ftp/i18n/sv.po index ccf3b16ceea..91f44ed78e7 100644 --- a/addons/document_ftp/i18n/sv.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/tr.po b/addons/document_ftp/i18n/tr.po index dd79d1610b6..98e5b32cd13 100644 --- a/addons/document_ftp/i18n/tr.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/zh_CN.po b/addons/document_ftp/i18n/zh_CN.po index 20a52f0fd42..b1cb47017e8 100644 --- a/addons/document_ftp/i18n/zh_CN.po +++ b/addons/document_ftp/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_configuration diff --git a/addons/document_ftp/i18n/zh_TW.po b/addons/document_ftp/i18n/zh_TW.po new file mode 100644 index 00000000000..90a9e531a96 --- /dev/null +++ b/addons/document_ftp/i18n/zh_TW.po @@ -0,0 +1,116 @@ +# Chinese (Traditional) translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-02-08 00:36+0000\n" +"PO-Revision-Date: 2012-08-29 09:46+0000\n" +"Last-Translator: Bonnie Duan \n" +"Language-Team: Chinese (Traditional) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-08-30 05:12+0000\n" +"X-Generator: Launchpad (build 15864)\n" + +#. module: document_ftp +#: model:ir.model,name:document_ftp.model_document_ftp_configuration +msgid "Auto Directory Configuration" +msgstr "自動目錄配置" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "" +"Indicate the network address on which your OpenERP server should be " +"reachable for end-users. This depends on your network topology and " +"configuration, and will only affect the links displayed to the users. The " +"format is HOST:PORT and the default host (localhost) is only suitable for " +"access from the server machine itself.." +msgstr "" +"說明OpenERP的服務器上的網絡地址應該為最終用戶訪問。這取決於您的網絡拓撲和配置,而且只會影響顯示給用戶的鏈接。的格式為HOST:PORT和預設的主機" +"(localhost)的訪問從服務器本身只適合.." + +#. module: document_ftp +#: model:ir.actions.url,name:document_ftp.action_document_browse +msgid "Browse Files" +msgstr "瀏覽檔案" + +#. module: document_ftp +#: field:document.ftp.configuration,config_logo:0 +msgid "Image" +msgstr "圖像" + +#. module: document_ftp +#: field:document.ftp.configuration,host:0 +msgid "Address" +msgstr "地址" + +#. module: document_ftp +#: field:document.ftp.browse,url:0 +msgid "FTP Server" +msgstr "FTP 伺服器" + +#. module: document_ftp +#: model:ir.actions.act_window,name:document_ftp.action_config_auto_directory +msgid "FTP Server Configuration" +msgstr "FTP Server Configuration" + +#. module: document_ftp +#: view:document.ftp.browse:0 +msgid "_Browse" +msgstr "瀏覽(_B)" + +#. module: document_ftp +#: help:document.ftp.configuration,host:0 +msgid "" +"Server address or IP and port to which users should connect to for DMS access" +msgstr "服務器地址或IP地址和端口,用戶應該連接到DMS訪問" + +#. module: document_ftp +#: model:ir.ui.menu,name:document_ftp.menu_document_browse +msgid "Shared Repository (FTP)" +msgstr "供享的儲存庫" + +#. module: document_ftp +#: view:document.ftp.browse:0 +msgid "_Cancel" +msgstr "取消(_C)" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "Configure FTP Server" +msgstr "設置FTP 伺服器" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "title" +msgstr "標題" + +#. module: document_ftp +#: model:ir.model,name:document_ftp.model_document_ftp_browse +msgid "Document FTP Browse" +msgstr "瀏覽FTP文件" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "Knowledge Application Configuration" +msgstr "知識應用配置" + +#. module: document_ftp +#: model:ir.actions.act_window,name:document_ftp.action_ftp_browse +msgid "Document Browse" +msgstr "文件瀏覽" + +#. module: document_ftp +#: view:document.ftp.browse:0 +msgid "Browse Document" +msgstr "瀏覽文件" + +#. module: document_ftp +#: view:document.ftp.configuration:0 +msgid "res_config_contents" +msgstr "res_config_contents" diff --git a/addons/document_page/__openerp__.py b/addons/document_page/__openerp__.py index bff40744805..a88e1d827d7 100644 --- a/addons/document_page/__openerp__.py +++ b/addons/document_page/__openerp__.py @@ -31,20 +31,15 @@ Web pages 'author': ['OpenERP SA'], 'website': 'http://www.openerp.com/', 'depends': ['knowledge'], - 'init_xml': [], - 'update_xml': [ + 'data': [ 'wizard/document_page_create_menu_view.xml', 'wizard/document_page_show_diff_view.xml', 'document_page_view.xml', 'security/document_page_security.xml', 'security/ir.model.access.csv', ], - 'demo_xml': [ - 'document_page_demo.xml' - ], - 'test': [ - 'test/document_page_test00.yml' - ], + 'demo': ['document_page_demo.xml'], + 'test': ['test/document_page_test00.yml'], 'installable': True, 'auto_install': False, 'certificate': '0086363630317', @@ -53,8 +48,6 @@ Web pages 'static/src/lib/wiky/wiky.js', 'static/src/js/document_page.js' ], - 'css' : [ - "static/src/css/document_page.css" - ], + 'css' : ['static/src/css/document_page.css'], } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/document_page/i18n/ar.po b/addons/document_page/i18n/ar.po index e6f5bc399a4..661fc2c2706 100644 --- a/addons/document_page/i18n/ar.po +++ b/addons/document_page/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: 2012-08-14 04:45+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/bg.po b/addons/document_page/i18n/bg.po index 87848f9e862..4af4f6dc1e9 100644 --- a/addons/document_page/i18n/bg.po +++ b/addons/document_page/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: 2012-08-14 04:45+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/bs.po b/addons/document_page/i18n/bs.po index 3f9add4b5ca..3e5f45a37b8 100644 --- a/addons/document_page/i18n/bs.po +++ b/addons/document_page/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: 2012-08-14 04:45+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/ca.po b/addons/document_page/i18n/ca.po index f111b81d8ff..41eb6900fbf 100644 --- a/addons/document_page/i18n/ca.po +++ b/addons/document_page/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: 2012-08-14 04:45+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/cs.po b/addons/document_page/i18n/cs.po index a5cc644f19d..22d654f3945 100644 --- a/addons/document_page/i18n/cs.po +++ b/addons/document_page/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: 2012-08-14 04:45+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" "X-Poedit-Language: Czech\n" #. module: document_page diff --git a/addons/document_page/i18n/da.po b/addons/document_page/i18n/da.po index 7d82dca7794..9b4f075dcf8 100644 --- a/addons/document_page/i18n/da.po +++ b/addons/document_page/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: 2012-08-14 04:45+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/de.po b/addons/document_page/i18n/de.po index 616d1a36f6a..6ee48f2e39d 100644 --- a/addons/document_page/i18n/de.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/el.po b/addons/document_page/i18n/el.po index 7d87b199d23..a74b6b61bda 100644 --- a/addons/document_page/i18n/el.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/document_page/i18n/es.po b/addons/document_page/i18n/es.po index af15cbc8e81..39beccd58e3 100644 --- a/addons/document_page/i18n/es.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/et.po b/addons/document_page/i18n/et.po index 5d6564fdf80..72234538beb 100644 --- a/addons/document_page/i18n/et.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/fi.po b/addons/document_page/i18n/fi.po index 1514c5937b3..224ee816d98 100644 --- a/addons/document_page/i18n/fi.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/fr.po b/addons/document_page/i18n/fr.po index 5bcab4d5ccd..24d1286ff3f 100644 --- a/addons/document_page/i18n/fr.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/gl.po b/addons/document_page/i18n/gl.po index 70d96a3954c..77ab07fff03 100644 --- a/addons/document_page/i18n/gl.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/hr.po b/addons/document_page/i18n/hr.po index 3c5c2c6fd2d..ac4bf4fd8be 100644 --- a/addons/document_page/i18n/hr.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/hu.po b/addons/document_page/i18n/hu.po index b3048ad21f9..04edde523e8 100644 --- a/addons/document_page/i18n/hu.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/id.po b/addons/document_page/i18n/id.po index 6eeb7156829..35eb3b0bb20 100644 --- a/addons/document_page/i18n/id.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/it.po b/addons/document_page/i18n/it.po index 2d459fc5779..e869112dbad 100644 --- a/addons/document_page/i18n/it.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/ja.po b/addons/document_page/i18n/ja.po index 3bd025dd942..c0a44438903 100644 --- a/addons/document_page/i18n/ja.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/ko.po b/addons/document_page/i18n/ko.po index 373c112b907..8c98121f405 100644 --- a/addons/document_page/i18n/ko.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/lt.po b/addons/document_page/i18n/lt.po index 14c4abbb279..db480e52d19 100644 --- a/addons/document_page/i18n/lt.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: lt\n" #. module: document_page diff --git a/addons/document_page/i18n/lv.po b/addons/document_page/i18n/lv.po index c0073ae1ebf..3d912a286a0 100644 --- a/addons/document_page/i18n/lv.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/mn.po b/addons/document_page/i18n/mn.po index 48e0599dff2..9e34d791129 100644 --- a/addons/document_page/i18n/mn.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/nb.po b/addons/document_page/i18n/nb.po index 809b0cd1801..7c4108babda 100644 --- a/addons/document_page/i18n/nb.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/nl.po b/addons/document_page/i18n/nl.po index fee40c3032c..021b1cfd59e 100644 --- a/addons/document_page/i18n/nl.po +++ b/addons/document_page/i18n/nl.po @@ -7,25 +7,25 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2012-08-13 12:14+0000\n" -"Last-Translator: Antony Lesuisse (OpenERP) \n" +"PO-Revision-Date: 2012-08-26 14:00+0000\n" +"Last-Translator: Erwin \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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 msgid "Document page Template" -msgstr "" +msgstr "Document pagina sjabloon" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_wiki #: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki msgid "Document Pages" -msgstr "" +msgstr "Document pagina's" #. module: document_page #: field:document.page.type,method:0 @@ -56,7 +56,7 @@ msgstr "Geeft aan of deze pagina's een inhoudsopgave hebben of niet" #. module: document_page #: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 msgid "Document page History" -msgstr "" +msgstr "Document pagina historie" #. module: document_page #: field:document.page,minor_edit:0 @@ -270,7 +270,7 @@ msgstr "Historie van alle pagina's" #. module: document_page #: model:ir.model,name:document_page.model_wiki_wiki msgid "document.page" -msgstr "" +msgstr "document.page" #. module: document_page #: help:document.page.type,method:0 @@ -285,7 +285,7 @@ msgstr "Sluiten" #. module: document_page #: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff msgid "wizard.document.page.history.show_diff" -msgstr "" +msgstr "wizard.document.page.history.show_diff" #. module: document_page #: field:document.page.history,wiki_id:0 @@ -357,7 +357,7 @@ msgstr "Is dit een grote wijziging?" #: model:ir.model,name:document_page.model_wiki_groups #: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 msgid "Document Types" -msgstr "" +msgstr "Documentsoorten" #. module: document_page #: view:document.page:0 @@ -374,12 +374,12 @@ msgstr "Gewijzigd door" #: field:document.page,type:0 #, python-format msgid "Type" -msgstr "" +msgstr "Soort" #. module: document_page #: view:document.page.type:0 view:document.page.page.open:0 msgid "Open Document Page" -msgstr "" +msgstr "Open document pagina" #. module: document_page #: model:ir.model,name:document_page.model_wiki_wiki_page_open diff --git a/addons/document_page/i18n/pl.po b/addons/document_page/i18n/pl.po index 3fed2a579cb..52c0f17d4b5 100644 --- a/addons/document_page/i18n/pl.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/pt.po b/addons/document_page/i18n/pt.po index b85aabb87b5..ba5f05a4848 100644 --- a/addons/document_page/i18n/pt.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/pt_BR.po b/addons/document_page/i18n/pt_BR.po index 5c0f3097656..6d787998430 100644 --- a/addons/document_page/i18n/pt_BR.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/ro.po b/addons/document_page/i18n/ro.po index f9ab8a23e12..059da0e578e 100644 --- a/addons/document_page/i18n/ro.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/ru.po b/addons/document_page/i18n/ru.po index 9e362a098de..4a117339c3e 100644 --- a/addons/document_page/i18n/ru.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/sk.po b/addons/document_page/i18n/sk.po index 6df87913768..bcd31911734 100644 --- a/addons/document_page/i18n/sk.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/sl.po b/addons/document_page/i18n/sl.po index e5c48563eeb..a2e7c2555fa 100644 --- a/addons/document_page/i18n/sl.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/sq.po b/addons/document_page/i18n/sq.po index f6df8ed1b9e..55a1aad0116 100644 --- a/addons/document_page/i18n/sq.po +++ b/addons/document_page/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: 2012-08-14 04:45+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/sr.po b/addons/document_page/i18n/sr.po index 3b3f7ea8aef..3a018bf1630 100644 --- a/addons/document_page/i18n/sr.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/sr@latin.po b/addons/document_page/i18n/sr@latin.po index a6dd609306d..03f3ba8d30c 100644 --- a/addons/document_page/i18n/sr@latin.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/sv.po b/addons/document_page/i18n/sv.po index 7bc94e30a56..b48f057cba1 100644 --- a/addons/document_page/i18n/sv.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/tlh.po b/addons/document_page/i18n/tlh.po index 6eeb7156829..35eb3b0bb20 100644 --- a/addons/document_page/i18n/tlh.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/tr.po b/addons/document_page/i18n/tr.po index 5c80ed29d1c..8a5a41f03e6 100644 --- a/addons/document_page/i18n/tr.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/uk.po b/addons/document_page/i18n/uk.po index 95a1cccd166..059ebf6d8a4 100644 --- a/addons/document_page/i18n/uk.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/vi.po b/addons/document_page/i18n/vi.po index 53ca8599d2e..79cb446e11f 100644 --- a/addons/document_page/i18n/vi.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/zh_CN.po b/addons/document_page/i18n/zh_CN.po index 44468e289a1..50a5218f445 100644 --- a/addons/document_page/i18n/zh_CN.po +++ b/addons/document_page/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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_page #: field:document.page.type,template:0 diff --git a/addons/document_page/i18n/zh_TW.po b/addons/document_page/i18n/zh_TW.po index abfa870b47d..08d9b01e2d3 100644 --- a/addons/document_page/i18n/zh_TW.po +++ b/addons/document_page/i18n/zh_TW.po @@ -7,165 +7,165 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2012-08-13 12:08+0000\n" -"Last-Translator: <>\n" +"PO-Revision-Date: 2012-08-30 09:36+0000\n" +"Last-Translator: Bonnie Duan \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: 2012-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 15791)\n" +"X-Launchpad-Export-Date: 2012-08-31 04:56+0000\n" +"X-Generator: Launchpad (build 15887)\n" #. module: document_page #: field:document.page.type,template:0 msgid "Document page Template" -msgstr "" +msgstr "文檔頁面範本" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_wiki #: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki msgid "Document Pages" -msgstr "" +msgstr "文檔頁面" #. module: document_page #: field:document.page.type,method:0 msgid "Display Method" -msgstr "" +msgstr "展示方法" #. module: document_page #: view:document.page:0 field:document.page,create_uid:0 msgid "Author" -msgstr "" +msgstr "作者" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open #: view:document.page.page.open:0 msgid "Open Page" -msgstr "" +msgstr "開啓葉面" #. module: document_page #: field:document.page,menu_id:0 msgid "Menu" -msgstr "" +msgstr "選單" #. module: document_page #: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" -msgstr "" +msgstr "表示,這個頁面至少有一個表的內容" #. module: document_page #: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 msgid "Document page History" -msgstr "" +msgstr "頁面歷史文件" #. module: document_page #: field:document.page,minor_edit:0 msgid "Minor edit" -msgstr "" +msgstr "小編輯" #. module: document_page #: view:document.page:0 field:document.page,content:0 msgid "Content" -msgstr "" +msgstr "內容" #. module: document_page #: field:document.page,child_ids:0 msgid "Child Pages" -msgstr "" +msgstr "子頁面" #. module: document_page #: field:document.page,parent_id:0 msgid "Parent Page" -msgstr "" +msgstr "上級頁面" #. module: document_page #: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" -msgstr "" +msgstr "最後的貢獻者" #. module: document_page #: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" -msgstr "" +msgstr "上級選單" #. module: document_page #: field:document.page,name:0 msgid "Title" -msgstr "" +msgstr "標題" #. module: document_page #: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" -msgstr "" +msgstr "嚮導創建選單" #. module: document_page #: field:document.page,history_id:0 msgid "History Lines" -msgstr "" +msgstr "歷史記錄" #. module: document_page #: view:document.page:0 msgid "Page Content" -msgstr "" +msgstr "頁面內容" #. module: document_page #: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" -msgstr "" +msgstr "警告!" #. module: document_page #: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" -msgstr "" +msgstr "有沒有變化修訂" #. module: document_page #: field:document.page.create.menu,menu_name:0 msgid "Menu Name" -msgstr "" +msgstr "選單名稱" #. module: document_page #: field:document.page.type,notes:0 msgid "Description" -msgstr "" +msgstr "描述" #. module: document_page #: field:document.page,review:0 msgid "Needs Review" -msgstr "" +msgstr "需要回顧" #. module: document_page #: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" -msgstr "" +msgstr "表示這個頁面應該檢討,提高其他出資人的注意" #. module: document_page #: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" -msgstr "" +msgstr "選單資訊" #. module: document_page #: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" -msgstr "" +msgstr "頁面歷史記錄" #. module: document_page #: selection:document.page.type,method:0 msgid "Tree" -msgstr "" +msgstr "目錄樹" #. module: document_page #: view:document.page.type:0 msgid "Page Template" -msgstr "" +msgstr "頁面模版" #. module: document_page #: field:document.page,tags:0 msgid "Keywords" -msgstr "" +msgstr "關鍵字" #. module: document_page #: model:ir.actions.act_window,help:document_page.action_wiki @@ -175,173 +175,175 @@ msgid "" "(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. " "There is a basic wiki editing for text format." msgstr "" +"Wiki頁面,您可以與您的同事的想法和問題。您可以創建一個新的文件,可以連接到一個或多個應用程序(客戶關係管理(CRM),銷售等)。您可以使用關鍵字,以便" +"於訪問到您的wiki頁面。有一個基本的的維基編輯為文本格式。" #. module: document_page #: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" -msgstr "" +msgstr "警告" #. module: document_page #: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" -msgstr "" +msgstr "在首頁,需要選擇首頁顯示的方法" #. module: document_page #: field:document.page.history,create_date:0 msgid "Date" -msgstr "" +msgstr "日期" #. module: document_page #: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " -msgstr "" +msgstr "要選定的頁面上創建一個索引呢? " #. module: document_page #: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff #: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values #: view:wizard.document.page.history.show_diff:0 msgid "Difference" -msgstr "" +msgstr "差異" #. module: document_page #: field:document.page.type,page_ids:0 msgid "Pages" -msgstr "" +msgstr "頁面" #. module: document_page #: view:document.page.type:0 msgid "Group Description" -msgstr "" +msgstr "群組敘述" #. module: document_page #: view:document.page.page.open:0 msgid "Want to open a wiki page? " -msgstr "" +msgstr "要打開一個wiki頁面? " #. module: document_page #: field:document.page.history,content:0 msgid "Text area" -msgstr "" +msgstr "文本區域" #. module: document_page #: view:document.page:0 msgid "Meta Information" -msgstr "" +msgstr "中繼資訊" #. module: document_page #: field:document.page,create_date:0 msgid "Created on" -msgstr "" +msgstr "建立於" #. module: document_page #: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" -msgstr "" +msgstr "備註" #. module: document_page #: selection:document.page.type,method:0 msgid "List" -msgstr "" +msgstr "列表" #. module: document_page #: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" -msgstr "" +msgstr "摘要" #. module: document_page #: field:document.page.groups,create_date:0 msgid "Created Date" -msgstr "" +msgstr "建立日期" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" -msgstr "" +msgstr "所有頁面的歷史記錄" #. module: document_page #: model:ir.model,name:document_page.model_wiki_wiki msgid "document.page" -msgstr "" +msgstr "document.page" #. module: document_page #: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" -msgstr "" +msgstr "本組創建的選單中定義默認行為" #. module: document_page #: view:wizard.document.page.history.show_diff:0 msgid "Close" -msgstr "" +msgstr "結束" #. module: document_page #: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff msgid "wizard.document.page.history.show_diff" -msgstr "" +msgstr "wizard.document.page.history.show_diff" #. module: document_page #: field:document.page.history,wiki_id:0 msgid "Wiki Id" -msgstr "" +msgstr "維基標識" #. module: document_page #: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" -msgstr "" +msgstr "首頁" #. module: document_page #: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" -msgstr "" +msgstr "允許您與其他頁的鏈接,在當前主題" #. module: document_page #: view:document.page:0 msgid "Modification Information" -msgstr "" +msgstr "修改信息" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" -msgstr "" +msgstr "維基 (Wiki)" #. module: document_page #: field:document.page,write_date:0 msgid "Modification Date" -msgstr "" +msgstr "修改日期" #. module: document_page #: view:document.page.type:0 msgid "Configuration" -msgstr "" +msgstr "設置" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index #: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values #: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" -msgstr "" +msgstr "創建索引" #. module: document_page #: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" -msgstr "" +msgstr "您需要選擇最小或最大歷史修訂!" #. module: document_page #: view:document.page:0 msgid "Group By..." -msgstr "" +msgstr "分類方式..." #. module: document_page #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu #: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" -msgstr "" +msgstr "建立選單" #. module: document_page #: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" -msgstr "" +msgstr "這是一個主要的編輯嗎?" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_wiki_groups @@ -349,56 +351,56 @@ msgstr "" #: model:ir.model,name:document_page.model_wiki_groups #: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 msgid "Document Types" -msgstr "" +msgstr "文件類型" #. module: document_page #: view:document.page:0 msgid "Topic" -msgstr "" +msgstr "主題" #. module: document_page #: field:document.page.history,write_uid:0 msgid "Modify By" -msgstr "" +msgstr "修改者" #. module: document_page #: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 #: field:document.page,type:0 #, python-format msgid "Type" -msgstr "" +msgstr "類型" #. module: document_page #: view:document.page.type:0 view:document.page.page.open:0 msgid "Open Document Page" -msgstr "" +msgstr "開啓文件" #. module: document_page #: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" -msgstr "" +msgstr "WIZ打開的頁面" #. module: document_page #: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" -msgstr "" +msgstr "刪除" #. module: document_page #: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" -msgstr "" +msgstr "差異" #. module: document_page #: view:document.page:0 msgid "Need Review" -msgstr "" +msgstr "需要回顧" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" -msgstr "" +msgstr "頁面等待審查" #. module: document_page #: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" -msgstr "" +msgstr "搜尋頁面" diff --git a/addons/document_page/static/src/css/document_page.css b/addons/document_page/static/src/css/document_page.css index 723ff8d9b11..77597fb4281 100644 --- a/addons/document_page/static/src/css/document_page.css +++ b/addons/document_page/static/src/css/document_page.css @@ -1,7 +1,3 @@ -.oe_form_readonly .oe_notebook { - display: none; -} - .oe_document_page ul, .oe_document_page li { padding: 2px 8px; margin: 2px 8px; diff --git a/addons/document_page/static/src/js/document_page.js b/addons/document_page/static/src/js/document_page.js index 555a39d7796..836803bf700 100644 --- a/addons/document_page/static/src/js/document_page.js +++ b/addons/document_page/static/src/js/document_page.js @@ -11,7 +11,7 @@ openerp.document_page = function (openerp) { } } else { var wiki_value = wiky.process(show_value || ''); - this.$element.html(wiki_value); + this.$el.html(wiki_value); } }, }); diff --git a/addons/document_webdav/__openerp__.py b/addons/document_webdav/__openerp__.py index 4d39a4e8015..1f7cb20e795 100644 --- a/addons/document_webdav/__openerp__.py +++ b/addons/document_webdav/__openerp__.py @@ -29,12 +29,12 @@ ############################################################################## { - "name" : "Shared Repositories (WebDAV)", - "version" : "2.3", - "author" : "OpenERP SA", - "category" : "Knowledge Management", - "website": "http://www.openerp.com", - "description": """ + 'name': 'Shared Repositories (WebDAV)', + 'version': '2.3', + 'author': 'OpenERP SA', + 'category': 'Knowledge Management', + 'website': 'http://www.openerp.com', + 'description': """ With this module, the WebDAV server for documents is activated. =============================================================== @@ -42,35 +42,36 @@ You can then use any compatible browser to remotely see the attachments of OpenO After installation, the WebDAV server can be controlled by a [webdav] section in the server's config. -Server Configuration Parameter: - [webdav] - ; enable = True ; Serve webdav over the http(s) servers - ; vdir = webdav ; the directory that webdav will be served at - ; this default val means that webdav will be - ; on "http://localhost:8069/webdav/ - ; verbose = True ; Turn on the verbose messages of webdav - ; debug = True ; Turn on the debugging messages of webdav - ; since the messages are routed to the python logging, with - ; levels "debug" and "debug_rpc" respectively, you can leave - ; these options on +Server Configuration Parameter: +------------------------------- +[webdav]: ++++++++++ + * enable = True ; Serve webdav over the http(s) servers + * vdir = webdav ; the directory that webdav will be served at + * this default val means that webdav will be + * on "http://localhost:8069/webdav/ + * verbose = True ; Turn on the verbose messages of webdav + * debug = True ; Turn on the debugging messages of webdav + * since the messages are routed to the python logging, with + * levels "debug" and "debug_rpc" respectively, you can leave + * these options on Also implements IETF RFC 5785 for services discovery on a http server, which needs explicit configuration in openerp-server.conf too. """, - "depends" : ["base", "document"], - "init_xml" : [], - "update_xml" : ['security/ir.model.access.csv', - 'webdav_view.xml', - 'webdav_setup.xml', - ], - "demo_xml" : [], - "test": [ #'test/webdav_test1.yml', - ], - "auto_install": False, - "installable": True, - "certificate" : "001236490750845657973", - 'images': ['images/dav_properties.jpeg','images/directories_structure_principals.jpeg'], + 'depends': ['base', 'document'], + 'data': ['security/ir.model.access.csv', + 'webdav_view.xml', + 'webdav_setup.xml', + ], + 'demo': [], + 'test': [ #'test/webdav_test1.yml', + ], + 'auto_install': False, + 'installable': True, + 'certificate' : '001236490750845657973', + 'images': ['images/dav_properties.jpeg','images/directories_structure_principals.jpeg'], } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/document_webdav/i18n/ar.po b/addons/document_webdav/i18n/ar.po index be15d1886f1..9e294162c6c 100644 --- a/addons/document_webdav/i18n/ar.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/bg.po b/addons/document_webdav/i18n/bg.po index fde05f6faab..a8243f6f059 100644 --- a/addons/document_webdav/i18n/bg.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ca.po b/addons/document_webdav/i18n/ca.po index 0d1409a37c7..29b6e744d75 100644 --- a/addons/document_webdav/i18n/ca.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/cs.po b/addons/document_webdav/i18n/cs.po index d98c27df5b2..bb37042c376 100644 --- a/addons/document_webdav/i18n/cs.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/da.po b/addons/document_webdav/i18n/da.po index 79316ecf4ed..310918d06ce 100644 --- a/addons/document_webdav/i18n/da.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/de.po b/addons/document_webdav/i18n/de.po index be4b5dbd216..5ef52ff4cc5 100644 --- a/addons/document_webdav/i18n/de.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/el.po b/addons/document_webdav/i18n/el.po index cf4e4358a59..2bee1f221f9 100644 --- a/addons/document_webdav/i18n/el.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/en_GB.po b/addons/document_webdav/i18n/en_GB.po index 130cd04e8e9..bf03a3c7eaf 100644 --- a/addons/document_webdav/i18n/en_GB.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es.po b/addons/document_webdav/i18n/es.po index 0fddb6b85cc..8d944c6386a 100644 --- a/addons/document_webdav/i18n/es.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es_CR.po b/addons/document_webdav/i18n/es_CR.po index 8405f5b3e09..c99e2d4fe65 100644 --- a/addons/document_webdav/i18n/es_CR.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: es\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/es_EC.po b/addons/document_webdav/i18n/es_EC.po index 69731b31a33..3d68da9840a 100644 --- a/addons/document_webdav/i18n/es_EC.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es_PY.po b/addons/document_webdav/i18n/es_PY.po index 53990abd187..776d203789a 100644 --- a/addons/document_webdav/i18n/es_PY.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/et.po b/addons/document_webdav/i18n/et.po index 36ff37eab87..54147713cd8 100644 --- a/addons/document_webdav/i18n/et.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/eu.po b/addons/document_webdav/i18n/eu.po index 0abc054c139..7d401adbf20 100644 --- a/addons/document_webdav/i18n/eu.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/fi.po b/addons/document_webdav/i18n/fi.po index 053f8bed734..8c9797352ce 100644 --- a/addons/document_webdav/i18n/fi.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/fr.po b/addons/document_webdav/i18n/fr.po index 7b15e2a15c6..56a02aedf95 100644 --- a/addons/document_webdav/i18n/fr.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/gl.po b/addons/document_webdav/i18n/gl.po index d048adf1b40..48ad8c4e7d2 100644 --- a/addons/document_webdav/i18n/gl.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/gu.po b/addons/document_webdav/i18n/gu.po index b5768300597..1e430e9cb2c 100644 --- a/addons/document_webdav/i18n/gu.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/hr.po b/addons/document_webdav/i18n/hr.po index ac51f82627e..55659a43384 100644 --- a/addons/document_webdav/i18n/hr.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/hu.po b/addons/document_webdav/i18n/hu.po index 21d0c9974af..c431eaaab57 100644 --- a/addons/document_webdav/i18n/hu.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/id.po b/addons/document_webdav/i18n/id.po index 5ef97a916fe..6428cec4ed6 100644 --- a/addons/document_webdav/i18n/id.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/it.po b/addons/document_webdav/i18n/it.po index b6ca5326a8d..0de8cd2630f 100644 --- a/addons/document_webdav/i18n/it.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ja.po b/addons/document_webdav/i18n/ja.po index 179a2772de7..aa22e3d33df 100644 --- a/addons/document_webdav/i18n/ja.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/mn.po b/addons/document_webdav/i18n/mn.po index 5734661e2ec..5a223ac7a9c 100644 --- a/addons/document_webdav/i18n/mn.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 @@ -37,7 +37,7 @@ msgstr "" #: view:document.webdav.dir.property:0 #: view:document.webdav.file.property:0 msgid "Search Document properties" -msgstr "" +msgstr "Баримтыг төлөвөөр хайх" #. module: document_webdav #: view:document.webdav.dir.property:0 @@ -191,4 +191,4 @@ msgstr "" #: field:document.webdav.dir.property,do_subst:0 #: field:document.webdav.file.property,do_subst:0 msgid "Substitute" -msgstr "" +msgstr "Орлуулах" diff --git a/addons/document_webdav/i18n/nb.po b/addons/document_webdav/i18n/nb.po new file mode 100644 index 00000000000..d51ade795b3 --- /dev/null +++ b/addons/document_webdav/i18n/nb.po @@ -0,0 +1,197 @@ +# Norwegian Bokmal translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-02-08 00:36+0000\n" +"PO-Revision-Date: 2012-09-07 17:44+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Norwegian Bokmal \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-09-08 04:54+0000\n" +"X-Generator: Launchpad (build 15914)\n" + +#. module: document_webdav +#: field:document.webdav.dir.property,create_date:0 +#: field:document.webdav.file.property,create_date:0 +msgid "Date Created" +msgstr "Dato opprettet" + +#. module: document_webdav +#: model:ir.ui.menu,name:document_webdav.menu_document_props +msgid "Documents" +msgstr "Dokumenter" + +#. module: document_webdav +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "Feil! Du kan opprette rekursive kataloger." + +#. module: document_webdav +#: view:document.webdav.dir.property:0 +#: view:document.webdav.file.property:0 +msgid "Search Document properties" +msgstr "Søk Dokumentegenskaper." + +#. module: document_webdav +#: view:document.webdav.dir.property:0 +#: field:document.webdav.dir.property,namespace:0 +#: view:document.webdav.file.property:0 +#: field:document.webdav.file.property,namespace:0 +msgid "Namespace" +msgstr "Navnerom" + +#. module: document_webdav +#: field:document.directory,dav_prop_ids:0 +msgid "DAV properties" +msgstr "DAV egenskaper" + +#. module: document_webdav +#: model:ir.model,name:document_webdav.model_document_webdav_file_property +msgid "document.webdav.file.property" +msgstr "Dokumentet.WebDAV.fil.egenskap" + +#. module: document_webdav +#: view:document.webdav.dir.property:0 +#: view:document.webdav.file.property:0 +msgid "Group By..." +msgstr "Grupper etter ..." + +#. module: document_webdav +#: view:document.directory:0 +msgid "These properties will be added to WebDAV requests" +msgstr "Disse egenskapene vil bli lagt til WebDAV-forespørsler" + +#. module: document_webdav +#: model:ir.actions.act_window,name:document_webdav.action_file_props_form +msgid "DAV Properties for Documents" +msgstr "DAV Eiendommer for Dokumenter." + +#. module: document_webdav +#: code:addons/document_webdav/webdav.py:37 +#, python-format +msgid "PyWebDAV Import Error!" +msgstr "PyWebDAV importere Feil!" + +#. module: document_webdav +#: view:document.webdav.file.property:0 +#: field:document.webdav.file.property,file_id:0 +msgid "Document" +msgstr "Dokument" + +#. module: document_webdav +#: model:ir.ui.menu,name:document_webdav.menu_folder_props +msgid "Folders" +msgstr "Mapper" + +#. module: document_webdav +#: sql_constraint:document.directory:0 +msgid "Directory cannot be parent of itself!" +msgstr "Katalogen kan ikke være overordnede av seg selv!" + +#. module: document_webdav +#: view:document.directory:0 +msgid "Dynamic context" +msgstr "Dynamisk sammenheng" + +#. module: document_webdav +#: view:document.directory:0 +msgid "WebDAV properties" +msgstr "WebDAV egenskaper." + +#. module: document_webdav +#: sql_constraint:document.directory:0 +msgid "The directory name must be unique !" +msgstr "Katalogen Navnet må være unikt!" + +#. module: document_webdav +#: code:addons/document_webdav/webdav.py:37 +#, python-format +msgid "" +"Please install PyWebDAV from " +"http://code.google.com/p/pywebdav/downloads/detail?name=PyWebDAV-" +"0.9.4.tar.gz&can=2&q=/" +msgstr "" +"Vennligst installer PyWebDAV fra " +"http://code.google.com/p/pywebdav/downloads/detail?name=PyWebDAV-" +"0.9.4.tar.gz&can=2&q=/" + +#. module: document_webdav +#: model:ir.actions.act_window,name:document_webdav.action_dir_props_form +msgid "DAV Properties for Folders" +msgstr "DAV egenskaper for mapper." + +#. module: document_webdav +#: view:document.directory:0 +#: view:document.webdav.dir.property:0 +#: view:document.webdav.file.property:0 +msgid "Properties" +msgstr "Egenskaper" + +#. module: document_webdav +#: field:document.webdav.dir.property,name:0 +#: field:document.webdav.file.property,name:0 +msgid "Name" +msgstr "Navn" + +#. module: document_webdav +#: model:ir.model,name:document_webdav.model_document_webdav_dir_property +msgid "document.webdav.dir.property" +msgstr "Dokumentet.WebDAV.dir.eiendom" + +#. module: document_webdav +#: field:document.webdav.dir.property,value:0 +#: field:document.webdav.file.property,value:0 +msgid "Value" +msgstr "Verdi" + +#. module: document_webdav +#: field:document.webdav.dir.property,dir_id:0 +#: model:ir.model,name:document_webdav.model_document_directory +msgid "Directory" +msgstr "Katalog" + +#. module: document_webdav +#: field:document.webdav.dir.property,write_uid:0 +#: field:document.webdav.file.property,write_uid:0 +msgid "Last Modification User" +msgstr "Siste endring Bruker" + +#. module: document_webdav +#: view:document.webdav.dir.property:0 +msgid "Dir" +msgstr "Retn" + +#. module: document_webdav +#: field:document.webdav.dir.property,write_date:0 +#: field:document.webdav.file.property,write_date:0 +msgid "Date Modified" +msgstr "Dato endret" + +#. module: document_webdav +#: field:document.webdav.dir.property,create_uid:0 +#: field:document.webdav.file.property,create_uid:0 +msgid "Creator" +msgstr "Opprettet av" + +#. module: document_webdav +#: model:ir.ui.menu,name:document_webdav.menu_properties +msgid "DAV Properties" +msgstr "DAV Egenskaper." + +#. module: document_webdav +#: sql_constraint:document.directory:0 +msgid "Directory must have a parent or a storage" +msgstr "Katalog må ha en overordnede eller en lagringsplass." + +#. module: document_webdav +#: field:document.webdav.dir.property,do_subst:0 +#: field:document.webdav.file.property,do_subst:0 +msgid "Substitute" +msgstr "Erstatte" diff --git a/addons/document_webdav/i18n/nl.po b/addons/document_webdav/i18n/nl.po index 1b48cc29f65..044f65580a3 100644 --- a/addons/document_webdav/i18n/nl.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/pl.po b/addons/document_webdav/i18n/pl.po index 7805c315607..11f668dea80 100644 --- a/addons/document_webdav/i18n/pl.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/pt.po b/addons/document_webdav/i18n/pt.po index fe61c9618ea..549d2129457 100644 --- a/addons/document_webdav/i18n/pt.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/pt_BR.po b/addons/document_webdav/i18n/pt_BR.po index 466d4a2a85d..9abfeeb1fe3 100644 --- a/addons/document_webdav/i18n/pt_BR.po +++ b/addons/document_webdav/i18n/pt_BR.po @@ -9,13 +9,14 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 00:36+0000\n" "PO-Revision-Date: 2012-07-28 18:55+0000\n" -"Last-Translator: Fábio Martinelli \n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ro.po b/addons/document_webdav/i18n/ro.po index 9345eaa57d8..6ed40ca59c0 100644 --- a/addons/document_webdav/i18n/ro.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ru.po b/addons/document_webdav/i18n/ru.po index deef40433db..039a2a21ee9 100644 --- a/addons/document_webdav/i18n/ru.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sl.po b/addons/document_webdav/i18n/sl.po index d43c0e4ede7..795cfab3534 100644 --- a/addons/document_webdav/i18n/sl.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sr.po b/addons/document_webdav/i18n/sr.po index 1667ac3f0c8..1996f38d4e2 100644 --- a/addons/document_webdav/i18n/sr.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sr@latin.po b/addons/document_webdav/i18n/sr@latin.po index 5d4236ffd0f..e9df8df4c86 100644 --- a/addons/document_webdav/i18n/sr@latin.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sv.po b/addons/document_webdav/i18n/sv.po index 1281ccaf622..6a7c4add48b 100644 --- a/addons/document_webdav/i18n/sv.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/tr.po b/addons/document_webdav/i18n/tr.po index f15d2c54680..6445ab242c4 100644 --- a/addons/document_webdav/i18n/tr.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 @@ -37,7 +37,7 @@ msgstr "Hata! Yinelenen Dizinler oluşturamazsınız." #: view:document.webdav.dir.property:0 #: view:document.webdav.file.property:0 msgid "Search Document properties" -msgstr "" +msgstr "Belge özelliklerini ara" #. module: document_webdav #: view:document.webdav.dir.property:0 @@ -45,17 +45,17 @@ msgstr "" #: view:document.webdav.file.property:0 #: field:document.webdav.file.property,namespace:0 msgid "Namespace" -msgstr "" +msgstr "İsimalanı" #. module: document_webdav #: field:document.directory,dav_prop_ids:0 msgid "DAV properties" -msgstr "" +msgstr "DAV özellikleri" #. module: document_webdav #: model:ir.model,name:document_webdav.model_document_webdav_file_property msgid "document.webdav.file.property" -msgstr "" +msgstr "belge.webdav.dosya.özellik" #. module: document_webdav #: view:document.webdav.dir.property:0 @@ -66,49 +66,49 @@ msgstr "Grupla..." #. module: document_webdav #: view:document.directory:0 msgid "These properties will be added to WebDAV requests" -msgstr "" +msgstr "Özellikler WebDAV isteklerine aklenecektir" #. module: document_webdav #: model:ir.actions.act_window,name:document_webdav.action_file_props_form msgid "DAV Properties for Documents" -msgstr "" +msgstr "Belgeler için DAV Özellikleri" #. module: document_webdav #: code:addons/document_webdav/webdav.py:37 #, python-format msgid "PyWebDAV Import Error!" -msgstr "" +msgstr "PyWebDAV İçeaktarma Hatası!" #. module: document_webdav #: view:document.webdav.file.property:0 #: field:document.webdav.file.property,file_id:0 msgid "Document" -msgstr "" +msgstr "Belge" #. module: document_webdav #: model:ir.ui.menu,name:document_webdav.menu_folder_props msgid "Folders" -msgstr "" +msgstr "Klasörler" #. module: document_webdav #: sql_constraint:document.directory:0 msgid "Directory cannot be parent of itself!" -msgstr "" +msgstr "Dizin kendisinin üstü olamaz!" #. module: document_webdav #: view:document.directory:0 msgid "Dynamic context" -msgstr "" +msgstr "Dinamik içerik" #. module: document_webdav #: view:document.directory:0 msgid "WebDAV properties" -msgstr "" +msgstr "WebDAV özellikleri" #. module: document_webdav #: sql_constraint:document.directory:0 msgid "The directory name must be unique !" -msgstr "" +msgstr "Dizin adı eşsiz olmalı" #. module: document_webdav #: code:addons/document_webdav/webdav.py:37 @@ -118,77 +118,80 @@ msgid "" "http://code.google.com/p/pywebdav/downloads/detail?name=PyWebDAV-" "0.9.4.tar.gz&can=2&q=/" msgstr "" +"Lütfen PyWebDAV2 " +"http://code.google.com/p/pywebdav/downloads/detail?name=PyWebDAV-" +"0.9.4.tar.gz&can=2&q=/ adresinden kurun" #. module: document_webdav #: model:ir.actions.act_window,name:document_webdav.action_dir_props_form msgid "DAV Properties for Folders" -msgstr "" +msgstr "Klasörler için DAV özellikleri" #. module: document_webdav #: view:document.directory:0 #: view:document.webdav.dir.property:0 #: view:document.webdav.file.property:0 msgid "Properties" -msgstr "" +msgstr "Özellikler" #. module: document_webdav #: field:document.webdav.dir.property,name:0 #: field:document.webdav.file.property,name:0 msgid "Name" -msgstr "" +msgstr "Adı" #. module: document_webdav #: model:ir.model,name:document_webdav.model_document_webdav_dir_property msgid "document.webdav.dir.property" -msgstr "" +msgstr "belge.webdav.diz.özellik" #. module: document_webdav #: field:document.webdav.dir.property,value:0 #: field:document.webdav.file.property,value:0 msgid "Value" -msgstr "" +msgstr "Değer" #. module: document_webdav #: field:document.webdav.dir.property,dir_id:0 #: model:ir.model,name:document_webdav.model_document_directory msgid "Directory" -msgstr "" +msgstr "Dizin" #. module: document_webdav #: field:document.webdav.dir.property,write_uid:0 #: field:document.webdav.file.property,write_uid:0 msgid "Last Modification User" -msgstr "" +msgstr "Son Değiştiren Kullanıcı" #. module: document_webdav #: view:document.webdav.dir.property:0 msgid "Dir" -msgstr "" +msgstr "Dizin" #. module: document_webdav #: field:document.webdav.dir.property,write_date:0 #: field:document.webdav.file.property,write_date:0 msgid "Date Modified" -msgstr "" +msgstr "Değiştirilme Tarihi" #. module: document_webdav #: field:document.webdav.dir.property,create_uid:0 #: field:document.webdav.file.property,create_uid:0 msgid "Creator" -msgstr "" +msgstr "Oluşturan" #. module: document_webdav #: model:ir.ui.menu,name:document_webdav.menu_properties msgid "DAV Properties" -msgstr "" +msgstr "DAV Özellikleri" #. module: document_webdav #: sql_constraint:document.directory:0 msgid "Directory must have a parent or a storage" -msgstr "" +msgstr "Dizinin bir üst dizini ya da depolaması olmalı" #. module: document_webdav #: field:document.webdav.dir.property,do_subst:0 #: field:document.webdav.file.property,do_subst:0 msgid "Substitute" -msgstr "" +msgstr "Yedek" diff --git a/addons/document_webdav/i18n/zh_CN.po b/addons/document_webdav/i18n/zh_CN.po index edfff77e05a..4833a90c96d 100644 --- a/addons/document_webdav/i18n/zh_CN.po +++ b/addons/document_webdav/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: 2012-08-07 05:25+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:30+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/zh_TW.po b/addons/document_webdav/i18n/zh_TW.po new file mode 100644 index 00000000000..121d57b341a --- /dev/null +++ b/addons/document_webdav/i18n/zh_TW.po @@ -0,0 +1,196 @@ +# Chinese (Traditional) translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-02-08 00:36+0000\n" +"PO-Revision-Date: 2012-08-30 11:51+0000\n" +"Last-Translator: Bonnie Duan \n" +"Language-Team: Cenoq Corp.\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-08-31 04:56+0000\n" +"X-Generator: Launchpad (build 15887)\n" + +#. module: document_webdav +#: field:document.webdav.dir.property,create_date:0 +#: field:document.webdav.file.property,create_date:0 +msgid "Date Created" +msgstr "建立日期" + +#. module: document_webdav +#: model:ir.ui.menu,name:document_webdav.menu_document_props +msgid "Documents" +msgstr "文件" + +#. module: document_webdav +#: constraint:document.directory:0 +msgid "Error! You can not create recursive Directories." +msgstr "錯誤! 您不能建立循環的目錄" + +#. module: document_webdav +#: view:document.webdav.dir.property:0 +#: view:document.webdav.file.property:0 +msgid "Search Document properties" +msgstr "搜尋文件目錄" + +#. module: document_webdav +#: view:document.webdav.dir.property:0 +#: field:document.webdav.dir.property,namespace:0 +#: view:document.webdav.file.property:0 +#: field:document.webdav.file.property,namespace:0 +msgid "Namespace" +msgstr "Namespace" + +#. module: document_webdav +#: field:document.directory,dav_prop_ids:0 +msgid "DAV properties" +msgstr "DAV 內容" + +#. module: document_webdav +#: model:ir.model,name:document_webdav.model_document_webdav_file_property +msgid "document.webdav.file.property" +msgstr "document.webdav.file.property" + +#. module: document_webdav +#: view:document.webdav.dir.property:0 +#: view:document.webdav.file.property:0 +msgid "Group By..." +msgstr "群組...." + +#. module: document_webdav +#: view:document.directory:0 +msgid "These properties will be added to WebDAV requests" +msgstr "這些內容將被加到 WebDAV 請求" + +#. module: document_webdav +#: model:ir.actions.act_window,name:document_webdav.action_file_props_form +msgid "DAV Properties for Documents" +msgstr "文件的DAV 內容" + +#. module: document_webdav +#: code:addons/document_webdav/webdav.py:37 +#, python-format +msgid "PyWebDAV Import Error!" +msgstr "PyWebDAV 匯入錯誤!" + +#. module: document_webdav +#: view:document.webdav.file.property:0 +#: field:document.webdav.file.property,file_id:0 +msgid "Document" +msgstr "文件" + +#. module: document_webdav +#: model:ir.ui.menu,name:document_webdav.menu_folder_props +msgid "Folders" +msgstr "檔案夾" + +#. module: document_webdav +#: sql_constraint:document.directory:0 +msgid "Directory cannot be parent of itself!" +msgstr "目錄不能成為自己的母目錄!" + +#. module: document_webdav +#: view:document.directory:0 +msgid "Dynamic context" +msgstr "動態背景" + +#. module: document_webdav +#: view:document.directory:0 +msgid "WebDAV properties" +msgstr "WebDAV 內容" + +#. module: document_webdav +#: sql_constraint:document.directory:0 +msgid "The directory name must be unique !" +msgstr "目錄名不能重覆!" + +#. module: document_webdav +#: code:addons/document_webdav/webdav.py:37 +#, python-format +msgid "" +"Please install PyWebDAV from " +"http://code.google.com/p/pywebdav/downloads/detail?name=PyWebDAV-" +"0.9.4.tar.gz&can=2&q=/" +msgstr "" +"從 http://code.google.com/p/pywebdav/downloads/detail?name=PyWebDAV-" +"0.9.4.tar.gz&can=2&q=/,請安裝 PyWebDAV" + +#. module: document_webdav +#: model:ir.actions.act_window,name:document_webdav.action_dir_props_form +msgid "DAV Properties for Folders" +msgstr "DAV 檔案夾內容" + +#. module: document_webdav +#: view:document.directory:0 +#: view:document.webdav.dir.property:0 +#: view:document.webdav.file.property:0 +msgid "Properties" +msgstr "內容" + +#. module: document_webdav +#: field:document.webdav.dir.property,name:0 +#: field:document.webdav.file.property,name:0 +msgid "Name" +msgstr "名稱" + +#. module: document_webdav +#: model:ir.model,name:document_webdav.model_document_webdav_dir_property +msgid "document.webdav.dir.property" +msgstr "document.webdav.dir.property" + +#. module: document_webdav +#: field:document.webdav.dir.property,value:0 +#: field:document.webdav.file.property,value:0 +msgid "Value" +msgstr "價值" + +#. module: document_webdav +#: field:document.webdav.dir.property,dir_id:0 +#: model:ir.model,name:document_webdav.model_document_directory +msgid "Directory" +msgstr "目錄" + +#. module: document_webdav +#: field:document.webdav.dir.property,write_uid:0 +#: field:document.webdav.file.property,write_uid:0 +msgid "Last Modification User" +msgstr "最後修改使用者" + +#. module: document_webdav +#: view:document.webdav.dir.property:0 +msgid "Dir" +msgstr "路徑" + +#. module: document_webdav +#: field:document.webdav.dir.property,write_date:0 +#: field:document.webdav.file.property,write_date:0 +msgid "Date Modified" +msgstr "修改日期" + +#. module: document_webdav +#: field:document.webdav.dir.property,create_uid:0 +#: field:document.webdav.file.property,create_uid:0 +msgid "Creator" +msgstr "建立者" + +#. module: document_webdav +#: model:ir.ui.menu,name:document_webdav.menu_properties +msgid "DAV Properties" +msgstr "DAV 內容" + +#. module: document_webdav +#: sql_constraint:document.directory:0 +msgid "Directory must have a parent or a storage" +msgstr "目錄必須要有母目錄或儲存室" + +#. module: document_webdav +#: field:document.webdav.dir.property,do_subst:0 +#: field:document.webdav.file.property,do_subst:0 +msgid "Substitute" +msgstr "替代項目" diff --git a/addons/document_webdav/nodes.py b/addons/document_webdav/nodes.py index d6ceca458cd..a8fedee4fe3 100644 --- a/addons/document_webdav/nodes.py +++ b/addons/document_webdav/nodes.py @@ -25,6 +25,8 @@ from tools.safe_eval import safe_eval as eval import time import urllib import uuid +from openerp import SUPERUSER_ID + try: from tools.dict_tools import dict_filter except ImportError: @@ -233,7 +235,7 @@ class node_acl_mixin(object): if props_to_delete: # explicitly delete, as admin, any of the ids we have identified. - propobj.unlink(cr, 1, props_to_delete) + propobj.unlink(cr, SUPERUSER_ID, props_to_delete) if lock_data.get('unlock_mode', False): return lock_found and True diff --git a/addons/document_webdav/test_davclient.py b/addons/document_webdav/test_davclient.py index f1f2e58c835..0f66363c553 100755 --- a/addons/document_webdav/test_davclient.py +++ b/addons/document_webdav/test_davclient.py @@ -42,6 +42,7 @@ from tools import config from xmlrpclib import Transport, ProtocolError import StringIO import base64 +from openerp import SUPERUSER_ID _logger = logging.getLogger(__name__) @@ -361,7 +362,7 @@ class DAVClient(object): to break if "base_crypt" is used. """ ruob = obj.pool.get('res.users') - res = ruob.read(cr, 1, [uid,], ['login', 'password']) + res = ruob.read(cr, SUPERUSER_ID, [uid,], ['login', 'password']) assert res, "uid %s not found" % uid self.user = res[0]['login'] self.passwd = res[0]['password'] diff --git a/addons/edi/__openerp__.py b/addons/edi/__openerp__.py index f441b1bbb89..eb64d9b3fdd 100644 --- a/addons/edi/__openerp__.py +++ b/addons/edi/__openerp__.py @@ -36,21 +36,11 @@ documentation at http://doc.openerp.com. 'website': 'http://www.openerp.com', 'depends': ['base', 'email_template'], 'icon': '/edi/static/src/img/knowledge.png', - 'data': [ - 'security/ir.model.access.csv', - ], - 'test': [ - 'test/edi_partner_test.yml', - ], - 'js': [ - 'static/src/js/edi.js', - ], - "css": [ - "static/src/css/edi.css" - ], - 'qweb': [ - "static/src/xml/*.xml", - ], + 'data': ['security/ir.model.access.csv'], + 'test': ['test/edi_partner_test.yml'], + 'js': ['static/src/js/edi.js'], + 'css': ['static/src/css/edi.css'], + 'qweb': ['static/src/xml/*.xml'], 'installable': True, 'auto_install': False, 'certificate': '002046536359186', diff --git a/addons/edi/i18n/ar.po b/addons/edi/i18n/ar.po index 45ce2f2c34c..3f6b05d4d6f 100644 --- a/addons/edi/i18n/ar.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 diff --git a/addons/edi/i18n/de.po b/addons/edi/i18n/de.po index 15bc8dd73b4..8016c93c2ba 100644 --- a/addons/edi/i18n/de.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 diff --git a/addons/edi/i18n/es.po b/addons/edi/i18n/es.po index 56dbdbf39d5..f512e4f3b2a 100644 --- a/addons/edi/i18n/es.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 diff --git a/addons/edi/i18n/es_CR.po b/addons/edi/i18n/es_CR.po index 9452e50c51d..b7281068f85 100644 --- a/addons/edi/i18n/es_CR.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 diff --git a/addons/edi/i18n/fi.po b/addons/edi/i18n/fi.po index 4b1b5b8d4e6..d8a956c7495 100644 --- a/addons/edi/i18n/fi.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 diff --git a/addons/edi/i18n/fr.po b/addons/edi/i18n/fr.po index 03037acd322..e7ab2a31d59 100644 --- a/addons/edi/i18n/fr.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 diff --git a/addons/edi/i18n/ja.po b/addons/edi/i18n/ja.po index 2e0cea1af7f..13804623d4b 100644 --- a/addons/edi/i18n/ja.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 diff --git a/addons/edi/i18n/mn.po b/addons/edi/i18n/mn.po index c5d63fb984a..1244ac3e8d4 100644 --- a/addons/edi/i18n/mn.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 @@ -79,12 +79,12 @@ msgstr "" #. module: edi #: help:edi.document,document:0 msgid "EDI document content" -msgstr "" +msgstr "Эди баримтын агуулга" #. module: edi #: model:ir.model,name:edi.model_edi_document msgid "EDI Document" -msgstr "" +msgstr "EDI баримт" #. module: edi #: code:addons/edi/models/edi.py:48 @@ -101,7 +101,7 @@ msgstr "" #: code:addons/edi/models/edi.py:152 #, python-format msgid "Missing Application" -msgstr "" +msgstr "Байхгүй Аппликешн" #. module: edi #: field:edi.document,document:0 @@ -111,12 +111,12 @@ msgstr "" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:23 msgid "View/Print" -msgstr "" +msgstr "Харах/Хэвлэх" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:28 msgid "Import this document" -msgstr "" +msgstr "Баримт импортлох" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:33 @@ -126,7 +126,7 @@ msgstr "" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:36 msgid "OpenERP instance address:" -msgstr "" +msgstr "OpenERP жишээ хаяг:" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:39 @@ -146,7 +146,7 @@ msgstr "" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:52 msgid "Import into another application" -msgstr "" +msgstr "Импортлох бусад аппликешн" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:54 @@ -177,7 +177,7 @@ msgstr "" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:60 msgid "OpenERP documentation" -msgstr "" +msgstr "OpenERP бичиг баримт" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:61 @@ -252,7 +252,7 @@ msgstr "" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:53 msgid "Discount" -msgstr "" +msgstr "Хөнгөлөлт" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:54 @@ -286,7 +286,7 @@ msgstr "" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:107 msgid "Base Amount" -msgstr "" +msgstr "Үндсэн дүн" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:108 @@ -303,13 +303,13 @@ msgstr "" #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:129 #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:121 msgid "Pay Online" -msgstr "" +msgstr "Онлайн төлбөр" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:133 #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:125 msgid "Paypal" -msgstr "" +msgstr "Paypal" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:135 @@ -321,13 +321,13 @@ msgstr "" #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:145 #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:137 msgid "Bank Wire Transfer" -msgstr "" +msgstr "Банк хоорондын шилжүүлэг" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:147 #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:139 msgid "Please transfer" -msgstr "" +msgstr "Шилжүүлэг хийнэ үү" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:148 @@ -363,12 +363,12 @@ msgstr "" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:43 msgid "Payment terms" -msgstr "" +msgstr "Төлбөрийн хугацаа" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:60 msgid "Discount(%)" -msgstr "" +msgstr "Хөнгөлөлт(%)" #. openerp-web #: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:127 diff --git a/addons/edi/i18n/nb.po b/addons/edi/i18n/nb.po new file mode 100644 index 00000000000..bc8add1e6e9 --- /dev/null +++ b/addons/edi/i18n/nb.po @@ -0,0 +1,411 @@ +# Norwegian Bokmal translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-02-08 01:37+0100\n" +"PO-Revision-Date: 2012-09-08 19:13+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Norwegian Bokmal \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-09-09 04:53+0000\n" +"X-Generator: Launchpad (build 15914)\n" + +#. module: edi +#: sql_constraint:res.currency:0 +msgid "The currency code must be unique per company!" +msgstr "Valutakode må være unik pr. firma!" + +#. module: edi +#: model:ir.model,name:edi.model_res_partner_address +msgid "Partner Addresses" +msgstr "Partner adresser" + +#. module: edi +#: sql_constraint:res.company:0 +msgid "The company name must be unique !" +msgstr "Firmanavn må være unikt !" + +#. module: edi +#: constraint:res.partner:0 +msgid "Error ! You cannot create recursive associated members." +msgstr "Feil! Du kan ikke opprette rekursive tilknyttede medlemmer." + +#. module: edi +#: field:edi.document,name:0 +msgid "EDI token" +msgstr "EDI tegn." + +#. module: edi +#: help:edi.document,name:0 +msgid "Unique identifier for retrieving an EDI document." +msgstr "Unik identifikator for å hente en EDI dokument." + +#. module: edi +#: constraint:res.company:0 +msgid "Error! You can not create recursive companies." +msgstr "Feil ! Du kan ikke lage rekursive firmaer." + +#. module: edi +#: model:ir.model,name:edi.model_res_company +msgid "Companies" +msgstr "Firmaer" + +#. module: edi +#: sql_constraint:edi.document:0 +msgid "EDI Tokens must be unique!" +msgstr "EDI tegnet må være unikt!" + +#. module: edi +#: model:ir.model,name:edi.model_res_currency +msgid "Currency" +msgstr "Valuta" + +#. module: edi +#: code:addons/edi/models/edi.py:153 +#, python-format +msgid "" +"The document you are trying to import requires the OpenERP `%s` application. " +"You can install it by connecting as the administrator and opening the " +"configuration assistant." +msgstr "" +"Dokumentet du prøver å importere krever OpenERP `% s` søknad. Du kan " +"installere det ved å koble som administrator og åpne konfigurasjonen " +"assistent." + +#. module: edi +#: help:edi.document,document:0 +msgid "EDI document content" +msgstr "EDI dokumentinnhold" + +#. module: edi +#: model:ir.model,name:edi.model_edi_document +msgid "EDI Document" +msgstr "EDI dokument." + +#. module: edi +#: code:addons/edi/models/edi.py:48 +#, python-format +msgid "'%s' is an invalid external ID" +msgstr "'% s' er en ugyldig ekstern ID." + +#. module: edi +#: model:ir.model,name:edi.model_res_partner +msgid "Partner" +msgstr "Partner" + +#. module: edi +#: code:addons/edi/models/edi.py:152 +#, python-format +msgid "Missing Application" +msgstr "Manglende Søknad." + +#. module: edi +#: field:edi.document,document:0 +msgid "Document" +msgstr "Dokument" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:23 +msgid "View/Print" +msgstr "Vis / Skriv ut" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:28 +msgid "Import this document" +msgstr "Importer dette dokumentet." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:33 +msgid "Import it into an existing OpenERP instance" +msgstr "Importere den inn i en eksisterende OpenERP eksempel." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:36 +msgid "OpenERP instance address:" +msgstr "OpenERP eksempel adresse:" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:39 +msgid "Import" +msgstr "Import" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:44 +msgid "Import it into a new OpenERP Online instance" +msgstr "Importere den til en ny OpenERP Online eksempel." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:47 +msgid "Create my new OpenERP instance" +msgstr "Opprett min nye OpenERP eksempel." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:52 +msgid "Import into another application" +msgstr "Importere til et annet program." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:54 +msgid "" +"OpenERP's Electronic Data Interchange documents are based on a generic and " +"language\n" +" independent" +msgstr "" +"OpenERP's elektronisk Data utveksler dokumentene er basert på en generisk og " +"språk.\n" +"                             " +" uavhengig." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:56 +msgid "JSON" +msgstr "JSON" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:56 +msgid "" +"serialization of the document's attribute.\n" +" It is usually very quick and straightforward to " +"create a small plug-in for your preferred\n" +" application that will be capable of importing " +"any OpenERP EDI document.\n" +" You can find out more details about how to do " +"this and what the content of OpenERP EDI documents\n" +" is like in the" +msgstr "" +"Serialisering av dokumentets attributtet.\n" +"                             Det er vanligvis svært rask og grei å lage en " +"liten plug-in for din foretrukne.\n" +"                             program som vil være i stand til å importere " +"noen OpenERP EDI dokument.\n" +"                             Du kan finne ut mer informasjon om hvordan du " +"gjør dette og hva innholdet i OpenERP EDI dokumenter\n" +"                             er som i." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:60 +msgid "OpenERP documentation" +msgstr "OpenERP dokumentasjon." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:61 +msgid "To get started immediately," +msgstr "Å komme i gang umiddelbart," + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:62 +msgid "see is all it takes to use this EDI document in Python" +msgstr "Se er alt som trengs for å bruke denne EDI dokumentet i Python." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:70 +msgid "You can download the raw EDI document here:" +msgstr "Du kan laste ned den rå EDI dokumentet her:" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:73 +msgid "Download" +msgstr "Nedlastning" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:87 +msgid "Powered by" +msgstr "Drevet av." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:87 +msgid "OpenERP" +msgstr "OpenERP" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:34 +msgid "Invoice" +msgstr "Faktura" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:37 +msgid "Description" +msgstr "Beskrivelse:" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:38 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:41 +msgid "Date" +msgstr "Dato" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:39 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:40 +msgid "Your Reference" +msgstr "Din referanse." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:50 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:57 +msgid "Product Description" +msgstr "Produktbeskrivelse" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:51 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:58 +msgid "Quantity" +msgstr "Antall" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:52 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:59 +msgid "Unit Price" +msgstr "Enhetspris" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:53 +msgid "Discount" +msgstr "Rabatt" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:54 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:61 +msgid "Price" +msgstr "Pris" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:72 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:81 +msgid "Net Total:" +msgstr "Netto total:" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:83 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:92 +msgid "Taxes:" +msgstr "Avgifter:" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:94 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:103 +msgid "Total:" +msgstr "Totalt:" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:106 +msgid "Tax" +msgstr "Skatt" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:107 +msgid "Base Amount" +msgstr "Grunnbeløp" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:108 +msgid "Amount" +msgstr "Beløp" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:121 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:113 +msgid "Notes:" +msgstr "Notater:" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:129 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:121 +msgid "Pay Online" +msgstr "Betal online." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:133 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:125 +msgid "Paypal" +msgstr "Paypal" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:135 +msgid "" +"You may directly pay this invoice online via Paypal's secure payment gateway:" +msgstr "" +"Du kan betale direkte denne fakturaen online via Paypal er sikker betaling " +"gateway:" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:145 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:137 +msgid "Bank Wire Transfer" +msgstr "Bank Tråd overføring." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:147 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:139 +msgid "Please transfer" +msgstr "Vennligst overfør." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:148 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:140 +msgid "to" +msgstr "til" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:149 +msgid "" +"(postal address on the invoice header)\n" +" using one of the following bank accounts. Be sure to " +"mention the invoice\n" +" reference" +msgstr "" +"(postadresse på fakturaen header)\n" +"Ved hjelp av en av følgende bankkontoer. Sørg for å nevne faktura.\n" +"Referanse." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:151 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:143 +msgid "on the transfer:" +msgstr "På overføring:" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:36 +msgid "Order" +msgstr "Ordre" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:42 +msgid "Salesman" +msgstr "Selger" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:43 +msgid "Payment terms" +msgstr "Betalingsbetingelser" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:60 +msgid "Discount(%)" +msgstr "Raball(%)" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:127 +msgid "" +"You may directly pay this order online via Paypal's secure payment gateway:" +msgstr "" +"Du kan betale direkte i denne rekkefølgen online via Paypal's sikker " +"betaling gateway." + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:141 +msgid "" +"(postal address on the order header)\n" +" using one of the following bank accounts. Be sure to " +"mention the document\n" +" reference" +msgstr "" +"Ostal adresse på bestillingen topp)\n" +"Ved hjelp av en av følgende bankkontoer. Sørg for å nevne dokumentet.\n" +"Referanse." diff --git a/addons/edi/i18n/nl.po b/addons/edi/i18n/nl.po index f0c17f06883..27e38ce6199 100644 --- a/addons/edi/i18n/nl.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 diff --git a/addons/edi/i18n/pl.po b/addons/edi/i18n/pl.po index b9e81e59f78..1efbd4977f2 100644 --- a/addons/edi/i18n/pl.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 diff --git a/addons/edi/i18n/pt.po b/addons/edi/i18n/pt.po index 7ba0c2f1359..ced87e79390 100644 --- a/addons/edi/i18n/pt.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 diff --git a/addons/edi/i18n/pt_BR.po b/addons/edi/i18n/pt_BR.po index 359c6c7796b..4dcb9d840e5 100644 --- a/addons/edi/i18n/pt_BR.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 diff --git a/addons/edi/i18n/ro.po b/addons/edi/i18n/ro.po index b74cb3d16e1..0a8d9906526 100644 --- a/addons/edi/i18n/ro.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 diff --git a/addons/edi/i18n/sv.po b/addons/edi/i18n/sv.po index 69bdba29c85..1ecc7a47a83 100644 --- a/addons/edi/i18n/sv.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 diff --git a/addons/edi/i18n/tr.po b/addons/edi/i18n/tr.po index 807b22a52d2..1da93b3254b 100644 --- a/addons/edi/i18n/tr.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 diff --git a/addons/edi/i18n/zh_CN.po b/addons/edi/i18n/zh_CN.po index 3251e188ef6..6a5f21f5c70 100644 --- a/addons/edi/i18n/zh_CN.po +++ b/addons/edi/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: 2012-08-09 05:00+0000\n" -"X-Generator: Launchpad (build 15761)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: edi #: sql_constraint:res.currency:0 diff --git a/addons/edi/i18n/zh_TW.po b/addons/edi/i18n/zh_TW.po new file mode 100644 index 00000000000..3ea35742e44 --- /dev/null +++ b/addons/edi/i18n/zh_TW.po @@ -0,0 +1,386 @@ +# Chinese (Traditional) translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-02-08 01:37+0100\n" +"PO-Revision-Date: 2012-08-30 11:51+0000\n" +"Last-Translator: Bonnie Duan \n" +"Language-Team: Cenoq Corp.\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-08-31 04:56+0000\n" +"X-Generator: Launchpad (build 15887)\n" + +#. module: edi +#: sql_constraint:res.currency:0 +msgid "The currency code must be unique per company!" +msgstr "每個公司的貨幣代碼必須唯一" + +#. module: edi +#: model:ir.model,name:edi.model_res_partner_address +msgid "Partner Addresses" +msgstr "業務夥伴地址" + +#. module: edi +#: sql_constraint:res.company:0 +msgid "The company name must be unique !" +msgstr "公司名稱必須唯一!" + +#. module: edi +#: constraint:res.partner:0 +msgid "Error ! You cannot create recursive associated members." +msgstr "錯誤,您不能建立循環引用的會員" + +#. module: edi +#: field:edi.document,name:0 +msgid "EDI token" +msgstr "EDI權杖" + +#. module: edi +#: help:edi.document,name:0 +msgid "Unique identifier for retrieving an EDI document." +msgstr "接收EDI文件的唯一標識符" + +#. module: edi +#: constraint:res.company:0 +msgid "Error! You can not create recursive companies." +msgstr "錯誤!您不能建立循環引用的公司." + +#. module: edi +#: model:ir.model,name:edi.model_res_company +msgid "Companies" +msgstr "公司" + +#. module: edi +#: sql_constraint:edi.document:0 +msgid "EDI Tokens must be unique!" +msgstr "EDI權杖必須唯一" + +#. module: edi +#: model:ir.model,name:edi.model_res_currency +msgid "Currency" +msgstr "貨幣" + +#. module: edi +#: code:addons/edi/models/edi.py:153 +#, python-format +msgid "" +"The document you are trying to import requires the OpenERP `%s` application. " +"You can install it by connecting as the administrator and opening the " +"configuration assistant." +msgstr "你要匯入的文件需要OpenERP的 %s 模組。你可以用管理員使用者安裝並打開配置精靈。" + +#. module: edi +#: help:edi.document,document:0 +msgid "EDI document content" +msgstr "EDI文件內容" + +#. module: edi +#: model:ir.model,name:edi.model_edi_document +msgid "EDI Document" +msgstr "EDI文件" + +#. module: edi +#: code:addons/edi/models/edi.py:48 +#, python-format +msgid "'%s' is an invalid external ID" +msgstr "%s是個無效的外部ID" + +#. module: edi +#: model:ir.model,name:edi.model_res_partner +msgid "Partner" +msgstr "業務夥伴" + +#. module: edi +#: code:addons/edi/models/edi.py:152 +#, python-format +msgid "Missing Application" +msgstr "不存在此功能" + +#. module: edi +#: field:edi.document,document:0 +msgid "Document" +msgstr "文件" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:23 +msgid "View/Print" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:28 +msgid "Import this document" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:33 +msgid "Import it into an existing OpenERP instance" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:36 +msgid "OpenERP instance address:" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:39 +msgid "Import" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:44 +msgid "Import it into a new OpenERP Online instance" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:47 +msgid "Create my new OpenERP instance" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:52 +msgid "Import into another application" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:54 +msgid "" +"OpenERP's Electronic Data Interchange documents are based on a generic and " +"language\n" +" independent" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:56 +msgid "JSON" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:56 +msgid "" +"serialization of the document's attribute.\n" +" It is usually very quick and straightforward to " +"create a small plug-in for your preferred\n" +" application that will be capable of importing " +"any OpenERP EDI document.\n" +" You can find out more details about how to do " +"this and what the content of OpenERP EDI documents\n" +" is like in the" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:60 +msgid "OpenERP documentation" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:61 +msgid "To get started immediately," +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:62 +msgid "see is all it takes to use this EDI document in Python" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:70 +msgid "You can download the raw EDI document here:" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:73 +msgid "Download" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:87 +msgid "Powered by" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi.xml:87 +msgid "OpenERP" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:34 +msgid "Invoice" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:37 +msgid "Description" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:38 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:41 +msgid "Date" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:39 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:40 +msgid "Your Reference" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:50 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:57 +msgid "Product Description" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:51 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:58 +msgid "Quantity" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:52 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:59 +msgid "Unit Price" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:53 +msgid "Discount" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:54 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:61 +msgid "Price" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:72 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:81 +msgid "Net Total:" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:83 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:92 +msgid "Taxes:" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:94 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:103 +msgid "Total:" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:106 +msgid "Tax" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:107 +msgid "Base Amount" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:108 +msgid "Amount" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:121 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:113 +msgid "Notes:" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:129 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:121 +msgid "Pay Online" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:133 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:125 +msgid "Paypal" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:135 +msgid "" +"You may directly pay this invoice online via Paypal's secure payment gateway:" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:145 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:137 +msgid "Bank Wire Transfer" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:147 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:139 +msgid "Please transfer" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:148 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:140 +msgid "to" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:149 +msgid "" +"(postal address on the invoice header)\n" +" using one of the following bank accounts. Be sure to " +"mention the invoice\n" +" reference" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_account.xml:151 +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:143 +msgid "on the transfer:" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:36 +msgid "Order" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:42 +msgid "Salesman" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:43 +msgid "Payment terms" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:60 +msgid "Discount(%)" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:127 +msgid "" +"You may directly pay this order online via Paypal's secure payment gateway:" +msgstr "" + +#. openerp-web +#: /home/odo/repositories/addons/trunk/edi/static/src/xml/edi_sale_purchase.xml:141 +msgid "" +"(postal address on the order header)\n" +" using one of the following bank accounts. Be sure to " +"mention the document\n" +" reference" +msgstr "" diff --git a/addons/edi/static/src/js/edi.js b/addons/edi/static/src/js/edi.js index 78e90852c38..abb6d9a6232 100644 --- a/addons/edi/static/src/js/edi.js +++ b/addons/edi/static/src/js/edi.js @@ -28,14 +28,14 @@ openerp.edi.EdiView = openerp.web.Widget.extend({ if (openerp.web.qweb.templates[template_content]) { this.content = openerp.web.qweb.render(template_content, param); } - this.$element.html(openerp.web.qweb.render("EdiView", param)); - this.$element.find('button.oe_edi_action_print').bind('click', this.do_print); - this.$element.find('button#oe_edi_import_existing').bind('click', this.do_import_existing); - this.$element.find('button#oe_edi_import_create').bind('click', this.do_import_create); - this.$element.find('button#oe_edi_download').bind('click', this.do_download); - this.$element.find('.oe_edi_import_choice, .oe_edi_import_choice_label').bind('click', this.toggle_choice('import')); - this.$element.find('.oe_edi_pay_choice, .oe_edi_pay_choice_label').bind('click', this.toggle_choice('pay')); - this.$element.find('#oe_edi_download_show_code').bind('click', this.show_code); + this.$el.html(openerp.web.qweb.render("EdiView", param)); + this.$el.find('button.oe_edi_action_print').bind('click', this.do_print); + this.$el.find('button#oe_edi_import_existing').bind('click', this.do_import_existing); + this.$el.find('button#oe_edi_import_create').bind('click', this.do_import_create); + this.$el.find('button#oe_edi_download').bind('click', this.do_download); + this.$el.find('.oe_edi_import_choice, .oe_edi_import_choice_label').bind('click', this.toggle_choice('import')); + this.$el.find('.oe_edi_pay_choice, .oe_edi_pay_choice_label').bind('click', this.toggle_choice('pay')); + this.$el.find('#oe_edi_download_show_code').bind('click', this.show_code); }, on_document_failed: function(response) { var self = this; @@ -85,7 +85,7 @@ openerp.edi.EdiView = openerp.web.Widget.extend({ }, do_import_existing: function(e) { var url_download = this.get_download_url(); - var $edi_text_server_input = this.$element.find('#oe_edi_txt_server_url'); + var $edi_text_server_input = this.$el.find('#oe_edi_txt_server_url'); var server_url = $edi_text_server_input.val(); $edi_text_server_input.removeClass('invalid'); if (!server_url) { @@ -138,14 +138,14 @@ openerp.edi.EdiImport = openerp.web.Widget.extend({ show_login: function() { this.destroy_content(); this.login = new openerp.web.Login(this); - this.login.appendTo(this.$element); + this.login.appendTo(this.$el); }, destroy_content: function() { _.each(_.clone(this.getChildren()), function(el) { el.destroy(); }); - this.$element.children().remove(); + this.$el.children().remove(); }, do_import: function() { diff --git a/addons/edi/static/src/xml/edi.xml b/addons/edi/static/src/xml/edi.xml index 88e09824b9b..111cb6d9d26 100644 --- a/addons/edi/static/src/xml/edi.xml +++ b/addons/edi/static/src/xml/edi.xml @@ -6,7 +6,7 @@ - +
+ + + + + + + + + + + + + + + + +
+ [[ repeatIn(get_employee(data['form']),'e') ]] + +
+ + + + + + + + + + + + + + + + + + +
+ [[ repeatIn(get_months_tol(),'t') ]] + +
+ + + + + + + + + + + + + + + + + + + diff --git a/addons/l10n_in_hr_payroll/report/report_hr_yearly_salary_detail.py b/addons/l10n_in_hr_payroll/report/report_hr_yearly_salary_detail.py new file mode 100644 index 00000000000..576fd302f6f --- /dev/null +++ b/addons/l10n_in_hr_payroll/report/report_hr_yearly_salary_detail.py @@ -0,0 +1,164 @@ +#-*- coding:utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2011 OpenERP SA (). All Rights Reserved +# +# 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 datetime +from report import report_sxw + +class employees_yearly_salary_report(report_sxw.rml_parse): + + def __init__(self, cr, uid, name, context): + super(employees_yearly_salary_report, self).__init__(cr, uid, name, context) + + self.localcontext.update({ + 'time': time, + 'get_employee': self.get_employee, + 'get_employee_detail': self.get_employee_detail, + 'cal_monthly_amt': self.cal_monthly_amt, + 'get_periods': self.get_periods, + 'get_total': self.get_total, + 'get_allow': self.get_allow, + 'get_deduct': self.get_deduct, + }) + + self.context = context + + def get_periods(self, form): + self.mnths = [] +# Get start year-month-date and end year-month-date + first_year = int(form['date_from'][0:4]) + last_year = int(form['date_to'][0:4]) + + first_month = int(form['date_from'][5:7]) + last_month = int(form['date_to'][5:7]) + no_months = (last_year-first_year) * 12 + last_month - first_month + 1 + current_month = first_month + current_year = first_year + +# Get name of the months from integer + mnth_name = [] + for count in range(0, no_months): + m = datetime.date(current_year, current_month, 1).strftime('%b') + mnth_name.append(m) + self.mnths.append(str(current_month) + '-' + str(current_year)) + if current_month == 12: + current_month = 0 + current_year = last_year + current_month = current_month + 1 + for c in range(0, (12-no_months)): + mnth_name.append('None') + self.mnths.append('None') + return [mnth_name] + + def get_employee(self, form): + return self.pool.get('hr.employee').browse(self.cr,self.uid, form.get('employee_ids', []), context=self.context) + + def get_employee_detail(self, form, obj): + self.allow_list = [] + self.deduct_list = [] + self.total = 0.00 + gross = False + net = False + + payslip_lines = self.cal_monthly_amt(form, obj.id) + for line in payslip_lines: + for line[0] in line: + if line[0][0] == "Gross": + gross = line[0] + elif line[0][0] == "Net": + net = line[0] + elif line[0][13] > 0.0 and line[0][0] != "Net": + self.total += line[0][len(line[0])-1] + self.allow_list.append(line[0]) + elif line[0][13] < 0.0: + self.total += line[0][len(line[0])-1] + self.deduct_list.append(line[0]) + if gross: + self.allow_list.append(gross) + if net: + self.deduct_list.append(net) + return None + + def cal_monthly_amt(self, form, emp_id): + category_obj = self.pool.get('hr.salary.rule.category') + result = [] + res = [] + salaries = {} + self.cr.execute('''SELECT rc.code, pl.name, sum(pl.total), \ + to_char(date_to,'mm-yyyy') as to_date FROM hr_payslip_line as pl \ + LEFT JOIN hr_salary_rule_category AS rc on (pl.category_id = rc.id) \ + LEFT JOIN hr_payslip as p on pl.slip_id = p.id \ + LEFT JOIN hr_employee as emp on emp.id = p.employee_id \ + WHERE p.employee_id = %s \ + GROUP BY rc.parent_id, pl.sequence, pl.id, pl.category_id,pl.name,p.date_to,rc.code \ + ORDER BY pl.sequence, rc.parent_id''',(emp_id,)) + salary = self.cr.fetchall() + for category in salary: + if category[0] not in salaries: + salaries.setdefault(category[0], {}) + salaries[category[0]].update({category[1]: {category[3]: category[2]}}) + elif category[1] not in salaries[category[0]]: + salaries[category[0]].setdefault(category[1], {}) + salaries[category[0]][category[1]].update({category[3]: category[2]}) + else: + salaries[category[0]][category[1]].update({category[3]: category[2]}) + + category_ids = category_obj.search(self.cr,self.uid, [], context=self.context) + categories = category_obj.read(self.cr, self.uid, category_ids, ['code'], context=self.context) + for code in map(lambda x: x['code'], categories): + if code in salaries: + res = self.salary_list(salaries[code]) + result.append(res) + return result + + def salary_list(self, salaries): + cat_salary_all = [] + for category_name,amount in salaries.items(): + cat_salary = [] + total = 0.0 + cat_salary.append(category_name) + for mnth in self.mnths: + if mnth <> 'None': + if len(mnth) != 7: + mnth = '0' + str(mnth) + if mnth in amount and amount[mnth]: + cat_salary.append(amount[mnth]) + total += amount[mnth] + else: + cat_salary.append(0.00) + else: + cat_salary.append('') + cat_salary.append(total) + cat_salary_all.append(cat_salary) + return cat_salary_all + + def get_allow(self): + return self.allow_list + + def get_deduct(self): + return self.deduct_list + + def get_total(self): + return self.total + +report_sxw.report_sxw('report.salary.detail.byyear', 'yearly.salary.detail', 'hr_payroll/report/report_hr_yearly_salary_detail.rml', parser=employees_yearly_salary_report, header='internal landscape') + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/l10n_in_hr_payroll/report/report_hr_yearly_salary_detail.rml b/addons/l10n_in_hr_payroll/report/report_hr_yearly_salary_detail.rml new file mode 100644 index 00000000000..7fa127b0bd3 --- /dev/null +++ b/addons/l10n_in_hr_payroll/report/report_hr_yearly_salary_detail.rml @@ -0,0 +1,588 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [[ repeatIn(get_employee(data['form']), 'o') ]] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ [[ repeatIn(get_periods(data['form']),'m') ]] + [[ get_employee_detail((data['form']),o) ]] + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ [[ repeatIn(get_allow(),'e1') ]] + +
+ + + + + + + + + + + + + + + + + + + + + + +
+ [[ repeatIn(get_deduct(),'e2') ]] + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/l10n_in_hr_payroll/report/report_payroll_advice.py b/addons/l10n_in_hr_payroll/report/report_payroll_advice.py new file mode 100644 index 00000000000..d4eeaf3d218 --- /dev/null +++ b/addons/l10n_in_hr_payroll/report/report_payroll_advice.py @@ -0,0 +1,82 @@ +#-*- coding:utf-8 -*- + +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2011 OpenERP SA (). All Rights Reserved +# d$ +# +# 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 datetime import datetime + +from report import report_sxw +from tools import amount_to_text_en + +class payroll_advice_report(report_sxw.rml_parse): + + def __init__(self, cr, uid, name, context): + super(payroll_advice_report, self).__init__(cr, uid, name, context=context) + + self.localcontext.update({ + 'time': time, + 'get_month': self.get_month, + 'convert': self.convert, + 'get_detail': self.get_detail, + 'get_bysal_total': self.get_bysal_total, + }) + self.context = context + + def get_month(self, input_date): + payslip_pool = self.pool.get('hr.payslip') + res = { + 'from_name': '', 'to_name': '' + } + slip_ids = payslip_pool.search(self.cr, self.uid, [('date_from','<=',input_date), ('date_to','>=',input_date)], context=self.context) + if slip_ids: + slip = payslip_pool.browse(self.cr, self.uid, slip_ids, context=self.context)[0] + from_date = datetime.strptime(slip.date_from, '%Y-%m-%d') + to_date = datetime.strptime(slip.date_to, '%Y-%m-%d') + res['from_name']= from_date.strftime('%d')+'-'+from_date.strftime('%B')+'-'+from_date.strftime('%Y') + res['to_name']= to_date.strftime('%d')+'-'+to_date.strftime('%B')+'-'+to_date.strftime('%Y') + return res + + def convert(self, amount, cur): + return amount_to_text_en.amount_to_text(amount, 'en', cur); + + def get_bysal_total(self): + return self.total_bysal + + def get_detail(self, line_ids): + result = [] + self.total_bysal = 0.00 + for l in line_ids: + res = {} + res.update({ + 'name': l.employee_id.name, + 'acc_no': l.name, + 'ifsc_code': l.ifsc_code, + 'bysal': l.bysal, + 'debit_credit': l.debit_credit, + }) + self.total_bysal += l.bysal + result.append(res) + return result + +report_sxw.report_sxw('report.payroll.advice', 'hr.payroll.advice', 'l10n_in_hr_payroll/report/report_payroll_advice.rml', parser=payroll_advice_report, header="external") + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_in_hr_payroll/report/report_payroll_advice.rml b/addons/l10n_in_hr_payroll/report/report_payroll_advice.rml new file mode 100644 index 00000000000..8ca1bae5ba5 --- /dev/null +++ b/addons/l10n_in_hr_payroll/report/report_payroll_advice.rml @@ -0,0 +1,425 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [[repeatIn(objects,'o')]] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [[ o.neft == True and removeParentNode('blockTable') ]] + + + + + + + + +
+ [[ repeatIn(get_detail(o.line_ids),'line') ]] + [[ o.neft == True and removeParentNode('blockTable') ]] +
+ + + + + + + + + [[ o.neft != True and removeParentNode('blockTable') ]] + + + + + + + + + +
+ [[ repeatIn(get_detail(o.line_ids),'line') ]] + [[ o.neft !=True and removeParentNode('blockTable') ]] +
+ + + + + + + + + + [[ o.neft == True and removeParentNode('blockTable') ]] + + + + + + + + + [[ o.neft !=True and removeParentNode('blockTable') ]] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/l10n_in_hr_payroll/report/report_payslip_details.py b/addons/l10n_in_hr_payroll/report/report_payslip_details.py new file mode 100644 index 00000000000..2732d5d09ae --- /dev/null +++ b/addons/l10n_in_hr_payroll/report/report_payslip_details.py @@ -0,0 +1,35 @@ +#-*- coding:utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2011 OpenERP SA (). All Rights Reserved +# +# 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 report import report_sxw +from hr_payroll import report + +class payslip_details_report_in(report.report_payslip_details.payslip_details_report): + + def __init__(self, cr, uid, name, context): + super(payslip_details_report_in, self).__init__(cr, uid, name, context) + self.localcontext.update({ + 'get_details_by_rule_category': self.get_details_by_rule_category, + }) + +report_sxw.report_sxw('report.paylip.details.in', 'hr.payslip', 'l10n_in_hr_payroll/report/report_payslip_details.rml', parser=payslip_details_report_in) + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/l10n_in_hr_payroll/report/report_payslip_details.rml b/addons/l10n_in_hr_payroll/report/report_payslip_details.rml new file mode 100644 index 00000000000..a7ab3db3185 --- /dev/null +++ b/addons/l10n_in_hr_payroll/report/report_payslip_details.rml @@ -0,0 +1,372 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [[repeatIn(objects,'o')]] + + + + + + + [[o.credit_note==False and removeParentNode('para')]] + Credit + + Note + + ([[o.name or removeParentNode('para')]]) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ [[repeatIn(get_details_by_rule_category(o.details_by_salary_rule_category),'h') ]] + +
+ + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/l10n_in_hr_payroll/security/ir.model.access.csv b/addons/l10n_in_hr_payroll/security/ir.model.access.csv new file mode 100644 index 00000000000..7ca0834449b --- /dev/null +++ b/addons/l10n_in_hr_payroll/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" +"access_hr_payroll_advice_user","hr.payroll.advice","model_hr_payroll_advice","base.group_hr_user",1,1,1,1 +"access_hr_payroll_advice_line_user","hr.payroll.advice.line","model_hr_payroll_advice_line","base.group_hr_user",1,1,1,1 +"access_hr_payroll_advice_report_user","payment.advice.report","model_payment_advice_report","base.group_hr_manager",1,1,1,1 +"access_hr_payroll_payslip_report_user","payslip.report","model_payslip_report","base.group_hr_manager",1,1,1,1 diff --git a/addons/l10n_in_hr_payroll/static/src/img/icon.png b/addons/l10n_in_hr_payroll/static/src/img/icon.png new file mode 100644 index 00000000000..ddaf38f8b6d Binary files /dev/null and b/addons/l10n_in_hr_payroll/static/src/img/icon.png differ diff --git a/addons/l10n_in_hr_payroll/test/payment_advice.yml b/addons/l10n_in_hr_payroll/test/payment_advice.yml new file mode 100644 index 00000000000..20b45830c5e --- /dev/null +++ b/addons/l10n_in_hr_payroll/test/payment_advice.yml @@ -0,0 +1,41 @@ +- + In order to test Payment Advice I create a new Payment Advice +- + I create a new Payment Advice with NEFT Transaction Enable +- + !record {model: hr.payroll.advice, id: payment_advice_1}: + name: 'NEFT Advice' + bank_id: base.res_bank_1 + line_ids: + - employee_id: hr.employee_fp + name: '90125452552' + ifsc_code: 'abn45215145' + bysal: 25000.00 + - employee_id: hr.employee_al + name: '00014521111232' + ifsc_code: 'sbi45452145' + bysal: 20000.00 +- + I check that the Payment Advice is in "Draft" +- + !assert {model: hr.payroll.advice, id: payment_advice_1}: + - state == 'draft' +- + Now I confirm Payment Advice +- + !python {model: hr.payroll.advice}: | + self.confirm_sheet(cr, uid, [ref('payment_advice_1')]) +- + I check that the Payment Advice state is "Confirmed" +- + !python {model: hr.payroll.advice}: | + advice = self.browse(cr, uid, ref("payment_advice_1")) + assert (advice.state == 'confirm') +- + In order to test the PDF report defined on a Payment Advice, we will print a Print Advice Report when NEFT is checked +- + !python {model: hr.payroll.advice}: | + import netsvc, tools, os + (data, format) = netsvc.LocalService('report.payroll.advice').create(cr, uid, [ref('l10n_in_hr_payroll.payment_advice_1')], {}) + if tools.config['test_report_directory']: + file(os.path.join(tools.config['test_report_directory'], 'l10n_in_hr_payroll_summary report'+format), 'wb+').write(data) \ No newline at end of file diff --git a/addons/l10n_in_hr_payroll/test/payment_advice_batch.yml b/addons/l10n_in_hr_payroll/test/payment_advice_batch.yml new file mode 100644 index 00000000000..d1a1436b50b --- /dev/null +++ b/addons/l10n_in_hr_payroll/test/payment_advice_batch.yml @@ -0,0 +1,61 @@ +- + In order to test Payment Advice Creation from Payslip Bacth I create New Payslip Batch +- + I Create a bank record +- + !record {model: res.partner.bank, id: res_partner_bank_0}: + acc_number: '3025632343043' + partner_id: base.res_partner_21 + state: bank + bank: base.res_bank_1 +- + I create a new employee “Rahul” +- + !record {model: hr.employee, id: hr_employee_rahul0}: + country_id: base.in + department_id: hr.dep_rd + name: Rahul + bank_account_id: res_partner_bank_0 +- + I want to generate a payslip from Payslip Batch. +- + !record {model: hr.payslip.run, id: hr_payslip_run_forAdvice}: + name: Payslip Batch +- + I create record for generating the Payslip for Payslip Batch. +- + !record {model: hr.payslip.employees, id: hr_payslip_employees}: + employee_ids: + - hr_employee_rahul0 +- + I generate the payslip by clicking on Generate button wizard. +- + !python {model: hr.payslip.employees}: | + self.compute_sheet(cr, uid, [ref('hr_payslip_employees')], context={'active_id': ref('hr_payslip_run_forAdvice')}) +- + I check that the Payslip Batch is in "Draft" +- + !assert {model: hr.payslip.run, id: hr_payslip_run_forAdvice}: + - state == 'draft' +- + Now I close Payslip Batch +- + !python {model: hr.payslip.run}: | + self.close_payslip_run(cr, uid, [ref('hr_payslip_run_forAdvice')]) +- + I check that the Payslip Batch is "Close" +- + !python {model: hr.payslip.run}: | + batch = self.browse(cr, uid, ref("hr_payslip_run_forAdvice")) + assert (batch.state == 'close') +- + I create Advice from Payslip Batch using Create Advice button +- + !python {model: hr.payslip.run}: | + self.create_advice(cr, uid, [ref('hr_payslip_run_forAdvice')]) +- + I check for Advice is created from Payslip Batch +- + !python {model: hr.payroll.advice}: | + advice_ids = self.search(cr, uid, [('batch_id','=',ref('hr_payslip_run_forAdvice'))]) + assert advice_ids,"Advice is not created from Payslip Batch." \ No newline at end of file diff --git a/addons/analytic_contract_expense_project/__init__.py b/addons/l10n_in_hr_payroll/wizard/__init__.py similarity index 92% rename from addons/analytic_contract_expense_project/__init__.py rename to addons/l10n_in_hr_payroll/wizard/__init__.py index 05c84916922..36635aec3c2 100644 --- a/addons/analytic_contract_expense_project/__init__.py +++ b/addons/l10n_in_hr_payroll/wizard/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- ############################################################################## -# +# # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # @@ -15,10 +15,11 @@ # 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 . +# along with this program. If not, see . # ############################################################################## -import analytic_contract_expense_project +import hr_salary_employee_bymonth +import hr_yearly_salary_detail -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/l10n_in_hr_payroll/wizard/hr_salary_employee_bymonth.py b/addons/l10n_in_hr_payroll/wizard/hr_salary_employee_bymonth.py new file mode 100644 index 00000000000..25cc615a1df --- /dev/null +++ b/addons/l10n_in_hr_payroll/wizard/hr_salary_employee_bymonth.py @@ -0,0 +1,71 @@ +#-*- coding:utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2011 OpenERP SA (). All Rights Reserved +# +# 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 osv import osv, fields + +class hr_salary_employee_bymonth(osv.osv_memory): + + _name = 'hr.salary.employee.month' + _description = 'Hr Salary Employee By Month Report' + _columns = { + 'start_date': fields.date('Start Date', required=True), + 'end_date': fields.date('End Date', required=True), + 'employee_ids': fields.many2many('hr.employee', 'payroll_year_rel', 'payroll_year_id', 'employee_id', 'Employees', required=True), + 'category_id': fields.many2one('hr.salary.rule.category', 'Category', required=True), + } + + def _get_default_category(self, cr, uid, context=None): + category_ids = self.pool.get('hr.salary.rule.category').search(cr, uid, [('code', '=', 'NET')], context=context) + return category_ids and category_ids[0] or False + + _defaults = { + 'start_date': lambda *a: time.strftime('%Y-01-01'), + 'end_date': lambda *a: time.strftime('%Y-%m-%d'), + 'category_id': _get_default_category + } + + def print_report(self, cr, uid, ids, context=None): + """ + To get the date and print the report + @param self: The object pointer. + @param cr: A database cursor + @param uid: ID of the user currently logged in + @param context: A standard dictionary + @return: return report + """ + if context is None: + context = {} + datas = {'ids': context.get('active_ids', [])} + + res = self.read(cr, uid, ids, context=context) + res = res and res[0] or {} + datas.update({'form': res}) + return { + 'type': 'ir.actions.report.xml', + 'report_name': 'salary.employee.bymonth', + 'datas': datas, + } + +hr_salary_employee_bymonth() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/l10n_in_hr_payroll/wizard/hr_salary_employee_bymonth_view.xml b/addons/l10n_in_hr_payroll/wizard/hr_salary_employee_bymonth_view.xml new file mode 100644 index 00000000000..e05519b08db --- /dev/null +++ b/addons/l10n_in_hr_payroll/wizard/hr_salary_employee_bymonth_view.xml @@ -0,0 +1,45 @@ + + + + + Hr monthly Employee Salary + hr.salary.employee.month + form + +
+
+
+ + + Yearly Salary by Head + ir.actions.act_window + hr.salary.employee.month + form + form + new + + + + +
+
diff --git a/addons/l10n_in_hr_payroll/wizard/hr_yearly_salary_detail.py b/addons/l10n_in_hr_payroll/wizard/hr_yearly_salary_detail.py new file mode 100644 index 00000000000..16bfd63bdc9 --- /dev/null +++ b/addons/l10n_in_hr_payroll/wizard/hr_yearly_salary_detail.py @@ -0,0 +1,66 @@ +#-*- coding:utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2011 OpenERP SA (). All Rights Reserved +# +# 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 osv import fields, osv + +class yearly_salary_detail(osv.osv_memory): + + _name ='yearly.salary.detail' + _description = 'Hr Salary Employee By Category Report' + _columns = { + 'employee_ids': fields.many2many('hr.employee', 'payroll_emp_rel', 'payroll_id', 'employee_id', 'Employees', required=True), + 'date_from': fields.date('Start Date', required=True), + 'date_to': fields.date('End Date', required=True), + } + + _defaults = { + 'date_from': lambda *a: time.strftime('%Y-01-01'), + 'date_to': lambda *a: time.strftime('%Y-%m-%d'), + + } + + def print_report(self, cr, uid, ids, context=None): + """ + To get the date and print the report + @param self: The object pointer. + @param cr: A database cursor + @param uid: ID of the user currently logged in + @param context: A standard dictionary + @return: return report + """ + if context is None: + context = {} + datas = {'ids': context.get('active_ids', [])} + + res = self.read(cr, uid, ids, context=context) + res = res and res[0] or {} + datas.update({'form': res}) + return { + 'type': 'ir.actions.report.xml', + 'report_name': 'salary.detail.byyear', + 'datas': datas, + } + +yearly_salary_detail() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_in_hr_payroll/wizard/hr_yearly_salary_detail_view.xml b/addons/l10n_in_hr_payroll/wizard/hr_yearly_salary_detail_view.xml new file mode 100644 index 00000000000..ec70e8b41e0 --- /dev/null +++ b/addons/l10n_in_hr_payroll/wizard/hr_yearly_salary_detail_view.xml @@ -0,0 +1,44 @@ + + + + + Employee Yearly Salary + yearly.salary.detail + form + +
+
+
+ + + Yearly Salary by Employee + ir.actions.act_window + yearly.salary.detail + form + form + new + + + + +
+
diff --git a/addons/l10n_it/__openerp__.py b/addons/l10n_it/__openerp__.py index 96f3b3510ff..a9177fee033 100644 --- a/addons/l10n_it/__openerp__.py +++ b/addons/l10n_it/__openerp__.py @@ -28,22 +28,20 @@ ############################################################################## { - "name" : "Italy - Accounting", - "version" : "0.1", - "depends" : ['base_vat','account_chart','base_iban'], - "author" : "OpenERP Italian Community", - "description": """ + 'name': 'Italy - Accounting', + 'version': '0.1', + 'depends': ['base_vat','account_chart','base_iban'], + 'author': 'OpenERP Italian Community', + 'description': """ Piano dei conti italiano di un'impresa generica. ================================================ Italian accounting chart and localization. """, - "license": "AGPL-3", - "category" : "Localization/Account Charts", + 'license': 'AGPL-3', + 'category': 'Localization/Account Charts', 'website': 'http://www.openerp-italia.org/', - 'init_xml': [ - ], - 'update_xml': [ + 'data': [ 'data/account.account.template.csv', 'data/account.tax.code.template.csv', 'account_chart.xml', @@ -51,8 +49,7 @@ Italian accounting chart and localization. 'data/account.fiscal.position.template.csv', 'l10n_chart_it_generic.xml', ], - 'demo_xml': [ - ], + 'demo': [], 'installable': True, 'auto_install': False, 'certificate' : '00926677190009155165', diff --git a/addons/l10n_it/i18n/ar.po b/addons/l10n_it/i18n/ar.po index 5f31b7d9d5c..129d84de573 100644 --- a/addons/l10n_it/i18n/ar.po +++ b/addons/l10n_it/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/ca.po b/addons/l10n_it/i18n/ca.po index 73272b70396..35aa53345b8 100644 --- a/addons/l10n_it/i18n/ca.po +++ b/addons/l10n_it/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/da.po b/addons/l10n_it/i18n/da.po index c2005ef8bce..a72db0371d2 100644 --- a/addons/l10n_it/i18n/da.po +++ b/addons/l10n_it/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/es.po b/addons/l10n_it/i18n/es.po index fb98d152955..cd2703786e8 100644 --- a/addons/l10n_it/i18n/es.po +++ b/addons/l10n_it/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/es_CR.po b/addons/l10n_it/i18n/es_CR.po index 549b8a4189e..0e0ae2431a8 100644 --- a/addons/l10n_it/i18n/es_CR.po +++ b/addons/l10n_it/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: es\n" #. module: l10n_it diff --git a/addons/l10n_it/i18n/es_PY.po b/addons/l10n_it/i18n/es_PY.po index 13f4675a08b..d42f421c0d2 100644 --- a/addons/l10n_it/i18n/es_PY.po +++ b/addons/l10n_it/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/fr.po b/addons/l10n_it/i18n/fr.po index 1f43673a206..ce020cbbf86 100644 --- a/addons/l10n_it/i18n/fr.po +++ b/addons/l10n_it/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/gl.po b/addons/l10n_it/i18n/gl.po index 680a34807e8..bfa2b33350c 100644 --- a/addons/l10n_it/i18n/gl.po +++ b/addons/l10n_it/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/it.po b/addons/l10n_it/i18n/it.po index 1f29e11f41f..ebedbe5c945 100644 --- a/addons/l10n_it/i18n/it.po +++ b/addons/l10n_it/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/pt_BR.po b/addons/l10n_it/i18n/pt_BR.po index df22956f602..7fa60931306 100644 --- a/addons/l10n_it/i18n/pt_BR.po +++ b/addons/l10n_it/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/tr.po b/addons/l10n_it/i18n/tr.po index 27b72b5257b..f05c9c5b0b4 100644 --- a/addons/l10n_it/i18n/tr.po +++ b/addons/l10n_it/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_lu/__openerp__.py b/addons/l10n_lu/__openerp__.py index 1ade34faaca..70f30444a3e 100644 --- a/addons/l10n_lu/__openerp__.py +++ b/addons/l10n_lu/__openerp__.py @@ -34,8 +34,7 @@ This is the base module to manage the accounting chart for Luxembourg. 'author': 'OpenERP SA', 'website': 'http://openerp.com', 'depends': ['account', 'base_vat', 'base_iban'], - 'init_xml': [], - 'update_xml': [ + 'data': [ 'account.tax.code.template.csv', 'l10n_lu_data.xml', 'l10n_lu_wizard.xml', @@ -43,7 +42,7 @@ This is the base module to manage the accounting chart for Luxembourg. 'wizard/print_vat_view.xml' ], 'test': ['test/l10n_lu_report.yml'], - 'demo_xml': [], + 'demo': [], 'installable': True, 'auto_install': False, 'certificate': '0078164766621', diff --git a/addons/l10n_lu/i18n/ar.po b/addons/l10n_lu/i18n/ar.po index 385c80e37b7..7edad6dd1ee 100644 --- a/addons/l10n_lu/i18n/ar.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/bg.po b/addons/l10n_lu/i18n/bg.po index 1ee73cb4cf2..f5402072b29 100644 --- a/addons/l10n_lu/i18n/bg.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/bs.po b/addons/l10n_lu/i18n/bs.po index 3a68ef4901a..7792dd96e79 100644 --- a/addons/l10n_lu/i18n/bs.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ca.po b/addons/l10n_lu/i18n/ca.po index 2c63233d022..60508506d78 100644 --- a/addons/l10n_lu/i18n/ca.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/cs.po b/addons/l10n_lu/i18n/cs.po index d832d6421e5..f6695245ef2 100644 --- a/addons/l10n_lu/i18n/cs.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/da.po b/addons/l10n_lu/i18n/da.po index cd6a994fcb2..e1b44a8936c 100644 --- a/addons/l10n_lu/i18n/da.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/de.po b/addons/l10n_lu/i18n/de.po index 68c36f6e377..368dc741257 100644 --- a/addons/l10n_lu/i18n/de.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/es.po b/addons/l10n_lu/i18n/es.po index 59e8b3feb49..494ff5e6195 100644 --- a/addons/l10n_lu/i18n/es.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/es_AR.po b/addons/l10n_lu/i18n/es_AR.po index b84fcdb7cd4..95947cee434 100644 --- a/addons/l10n_lu/i18n/es_AR.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/es_CR.po b/addons/l10n_lu/i18n/es_CR.po index 8840ffebc33..8fa2403204e 100644 --- a/addons/l10n_lu/i18n/es_CR.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: \n" #. module: l10n_lu diff --git a/addons/l10n_lu/i18n/es_PY.po b/addons/l10n_lu/i18n/es_PY.po index 68ca6dce656..cba6a877b2e 100644 --- a/addons/l10n_lu/i18n/es_PY.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/et.po b/addons/l10n_lu/i18n/et.po index da0ef97ff1f..0ab6ffa64d4 100644 --- a/addons/l10n_lu/i18n/et.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/fr.po b/addons/l10n_lu/i18n/fr.po index 2afabb38986..5ef5bdd65da 100644 --- a/addons/l10n_lu/i18n/fr.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/gl.po b/addons/l10n_lu/i18n/gl.po index 5924e33cb50..ab7f936ad57 100644 --- a/addons/l10n_lu/i18n/gl.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/hr.po b/addons/l10n_lu/i18n/hr.po index 318a6e8d029..5e6d0e9ee8c 100644 --- a/addons/l10n_lu/i18n/hr.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/hu.po b/addons/l10n_lu/i18n/hu.po index 3a68ef4901a..7792dd96e79 100644 --- a/addons/l10n_lu/i18n/hu.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/id.po b/addons/l10n_lu/i18n/id.po index ad9d17090e0..99b7fb67637 100644 --- a/addons/l10n_lu/i18n/id.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/it.po b/addons/l10n_lu/i18n/it.po index f5bef5036a8..7beb502f3ad 100644 --- a/addons/l10n_lu/i18n/it.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ko.po b/addons/l10n_lu/i18n/ko.po index 40ce779de38..70de724c9df 100644 --- a/addons/l10n_lu/i18n/ko.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/lt.po b/addons/l10n_lu/i18n/lt.po index 07f48f7cf3b..e51d04a1b81 100644 --- a/addons/l10n_lu/i18n/lt.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/nl.po b/addons/l10n_lu/i18n/nl.po index 6dea7599331..cac63e9f73b 100644 --- a/addons/l10n_lu/i18n/nl.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/nl_BE.po b/addons/l10n_lu/i18n/nl_BE.po index 4683304c56c..c2f9c074b74 100644 --- a/addons/l10n_lu/i18n/nl_BE.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/oc.po b/addons/l10n_lu/i18n/oc.po index b4c95cc44a4..e586c5a8e57 100644 --- a/addons/l10n_lu/i18n/oc.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/pl.po b/addons/l10n_lu/i18n/pl.po index d344c31d864..0789c74d83e 100644 --- a/addons/l10n_lu/i18n/pl.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/pt.po b/addons/l10n_lu/i18n/pt.po index 4d7e5141863..627eb2943e1 100644 --- a/addons/l10n_lu/i18n/pt.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/pt_BR.po b/addons/l10n_lu/i18n/pt_BR.po index 12a3889abaa..0902603c4a8 100644 --- a/addons/l10n_lu/i18n/pt_BR.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ro.po b/addons/l10n_lu/i18n/ro.po index 3a68ef4901a..7792dd96e79 100644 --- a/addons/l10n_lu/i18n/ro.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ru.po b/addons/l10n_lu/i18n/ru.po index 3ac1306b6ff..51cb6602a9c 100644 --- a/addons/l10n_lu/i18n/ru.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sl.po b/addons/l10n_lu/i18n/sl.po index 96fffa8116d..c48b39c2db3 100644 --- a/addons/l10n_lu/i18n/sl.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sq.po b/addons/l10n_lu/i18n/sq.po index 1ba6e5a2bec..e05d0cefc46 100644 --- a/addons/l10n_lu/i18n/sq.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sr@latin.po b/addons/l10n_lu/i18n/sr@latin.po index ad6b7eab834..ed08df76f08 100644 --- a/addons/l10n_lu/i18n/sr@latin.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sv.po b/addons/l10n_lu/i18n/sv.po index 4c3d38100e8..a4c35efd6bf 100644 --- a/addons/l10n_lu/i18n/sv.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/tlh.po b/addons/l10n_lu/i18n/tlh.po index c4a94039936..2a9ae2ca566 100644 --- a/addons/l10n_lu/i18n/tlh.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/tr.po b/addons/l10n_lu/i18n/tr.po index 87458736c0c..5897ec8e73a 100644 --- a/addons/l10n_lu/i18n/tr.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/uk.po b/addons/l10n_lu/i18n/uk.po index 6bac1454679..1e0750437bf 100644 --- a/addons/l10n_lu/i18n/uk.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/vi.po b/addons/l10n_lu/i18n/vi.po index cfb2feb938a..0ecff642dbd 100644 --- a/addons/l10n_lu/i18n/vi.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/zh_CN.po b/addons/l10n_lu/i18n/zh_CN.po index 70f61884525..4acd0141d95 100644 --- a/addons/l10n_lu/i18n/zh_CN.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/zh_TW.po b/addons/l10n_lu/i18n/zh_TW.po index 6c43fc66b0b..426efc6cee6 100644 --- a/addons/l10n_lu/i18n/zh_TW.po +++ b/addons/l10n_lu/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: 2012-08-07 05:20+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:26+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_ma/__openerp__.py b/addons/l10n_ma/__openerp__.py index 52f453af8bb..37f477d363c 100644 --- a/addons/l10n_ma/__openerp__.py +++ b/addons/l10n_ma/__openerp__.py @@ -20,11 +20,11 @@ ############################################################################## { - "name" : "Maroc - Accounting", - "version" : "1.0", - "author" : "kazacube", - "category" : "Localization/Account Charts", - "description": """ + 'name' : 'Maroc - Accounting', + 'version' : '1.0', + 'author' : 'kazacube', + 'category' : 'Localization/Account Charts', + 'description': """ This is the base module to manage the accounting chart for Maroc. ================================================================= @@ -33,23 +33,21 @@ générer les états comptables aux normes marocaines (Bilan, CPC (comptes de produits et charges), balance générale à 6 colonnes, Grand livre cumulatif...). L'intégration comptable a été validé avec l'aide du Cabinet d'expertise comptable Seddik au cours du troisième trimestre 2010.""", - "website": "http://www.kazacube.com", - "depends" : ["base", "account"], - "init_xml" : [], - "update_xml" : [ - "security/compta_security.xml", - "security/ir.model.access.csv", - "account_type.xml", - "account_pcg_morocco.xml", - "l10n_ma_wizard.xml", - "l10n_ma_tax.xml", - "l10n_ma_journal.xml", - - ], - "demo_xml" : [], - "auto_install": False, - "installable": True, - "certificate" : "00599614652359069981", + 'website': 'http://www.kazacube.com', + 'depends' : ['base', 'account'], + 'data' : [ + 'security/compta_security.xml', + 'security/ir.model.access.csv', + 'account_type.xml', + 'account_pcg_morocco.xml', + 'l10n_ma_wizard.xml', + 'l10n_ma_tax.xml', + 'l10n_ma_journal.xml', + ], + 'demo' : [], + 'auto_install': False, + 'installable': True, + 'certificate' : '00599614652359069981', 'images': ['images/config_chart_l10n_ma.jpeg','images/l10n_ma_chart.jpeg'], } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_ma/i18n/ar.po b/addons/l10n_ma/i18n/ar.po index caf9f411379..77523c6690a 100644 --- a/addons/l10n_ma/i18n/ar.po +++ b/addons/l10n_ma/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:41+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/ca.po b/addons/l10n_ma/i18n/ca.po index 7846d4c72cf..a135219c159 100644 --- a/addons/l10n_ma/i18n/ca.po +++ b/addons/l10n_ma/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:41+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/da.po b/addons/l10n_ma/i18n/da.po index 1fa7b95b113..90622d7a1ec 100644 --- a/addons/l10n_ma/i18n/da.po +++ b/addons/l10n_ma/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:41+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/de.po b/addons/l10n_ma/i18n/de.po index 7cbe4b7ae53..9bd080be311 100644 --- a/addons/l10n_ma/i18n/de.po +++ b/addons/l10n_ma/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:41+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/es.po b/addons/l10n_ma/i18n/es.po index ef8c773f0f8..a7af5e8d405 100644 --- a/addons/l10n_ma/i18n/es.po +++ b/addons/l10n_ma/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:41+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/es_CR.po b/addons/l10n_ma/i18n/es_CR.po index ba9eaffe1e7..54c1ab72dd4 100644 --- a/addons/l10n_ma/i18n/es_CR.po +++ b/addons/l10n_ma/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:41+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: es\n" #. module: l10n_ma diff --git a/addons/l10n_ma/i18n/es_PY.po b/addons/l10n_ma/i18n/es_PY.po index 11bd7bcfaa8..3b05146c683 100644 --- a/addons/l10n_ma/i18n/es_PY.po +++ b/addons/l10n_ma/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:41+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/fr.po b/addons/l10n_ma/i18n/fr.po index 3ad5efaa79a..17019e719ee 100644 --- a/addons/l10n_ma/i18n/fr.po +++ b/addons/l10n_ma/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:41+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/gl.po b/addons/l10n_ma/i18n/gl.po index cfee9e513e6..2f819a49683 100644 --- a/addons/l10n_ma/i18n/gl.po +++ b/addons/l10n_ma/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:41+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/hu.po b/addons/l10n_ma/i18n/hu.po index 6fc86039ee5..fd667b293f0 100644 --- a/addons/l10n_ma/i18n/hu.po +++ b/addons/l10n_ma/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:41+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/it.po b/addons/l10n_ma/i18n/it.po index 316c6a0dcd7..67e1c07255a 100644 --- a/addons/l10n_ma/i18n/it.po +++ b/addons/l10n_ma/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:41+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/pt.po b/addons/l10n_ma/i18n/pt.po index 7726e4f8bb1..b6fc099cb1a 100644 --- a/addons/l10n_ma/i18n/pt.po +++ b/addons/l10n_ma/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:41+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/pt_BR.po b/addons/l10n_ma/i18n/pt_BR.po index 5d3f1db5136..71877580cbd 100644 --- a/addons/l10n_ma/i18n/pt_BR.po +++ b/addons/l10n_ma/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:41+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/sr@latin.po b/addons/l10n_ma/i18n/sr@latin.po index 5ef0c8915da..88ae3509f16 100644 --- a/addons/l10n_ma/i18n/sr@latin.po +++ b/addons/l10n_ma/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:41+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/tr.po b/addons/l10n_ma/i18n/tr.po index 83a4a1d85dc..3ab3326fdea 100644 --- a/addons/l10n_ma/i18n/tr.po +++ b/addons/l10n_ma/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:41+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_multilang/__openerp__.py b/addons/l10n_multilang/__openerp__.py index cf521f124f4..5c91e1472c4 100644 --- a/addons/l10n_multilang/__openerp__.py +++ b/addons/l10n_multilang/__openerp__.py @@ -20,11 +20,11 @@ ############################################################################## { - "name" : "Multi Language Chart of Accounts", - "version" : "1.1", - "author" : "OpenERP SA", - "category": 'Hidden/Dependency', - "description": """ + 'name': 'Multi Language Chart of Accounts', + 'version': '1.1', + 'author': 'OpenERP SA', + 'category': 'Hidden/Dependency', + 'description': """ * Multi language support for Chart of Accounts, Taxes, Tax Codes, Journals, Accounting Templates, Analytic Chart of Accounts and Analytic Journals. * Setup wizard changes @@ -32,12 +32,9 @@ templates to target objects. """, 'website': 'http://www.openerp.com', - 'init_xml': [], - "depends" : ['account_accountant'], - 'update_xml': [ - ], - 'demo_xml': [ - ], + 'depends' : ['account_accountant'], + 'data': [], + 'demo': [], 'installable': True, 'auto_install': False, } diff --git a/addons/l10n_multilang/i18n/de.po b/addons/l10n_multilang/i18n/de.po index f6368f897bb..6c856ac4e82 100644 --- a/addons/l10n_multilang/i18n/de.po +++ b/addons/l10n_multilang/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/es_CR.po b/addons/l10n_multilang/i18n/es_CR.po index 20dfed8ad6c..9b59ace6ca4 100644 --- a/addons/l10n_multilang/i18n/es_CR.po +++ b/addons/l10n_multilang/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/fr.po b/addons/l10n_multilang/i18n/fr.po index 1f220c618b5..b6f83287fec 100644 --- a/addons/l10n_multilang/i18n/fr.po +++ b/addons/l10n_multilang/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/mn.po b/addons/l10n_multilang/i18n/mn.po index 48e93562d1e..1d648d730cf 100644 --- a/addons/l10n_multilang/i18n/mn.po +++ b/addons/l10n_multilang/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: 2012-08-08 04:36+0000\n" -"X-Generator: Launchpad (build 15757)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/pt.po b/addons/l10n_multilang/i18n/pt.po index 03aec5927ed..adfd1b3a853 100644 --- a/addons/l10n_multilang/i18n/pt.po +++ b/addons/l10n_multilang/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/ro.po b/addons/l10n_multilang/i18n/ro.po index 3fdea21d3a4..1045a1ce3b8 100644 --- a/addons/l10n_multilang/i18n/ro.po +++ b/addons/l10n_multilang/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: 2012-08-07 05:39+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/tr.po b/addons/l10n_multilang/i18n/tr.po new file mode 100644 index 00000000000..e2e62ff0327 --- /dev/null +++ b/addons/l10n_multilang/i18n/tr.po @@ -0,0 +1,174 @@ +# Turkish translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-02-08 01:06+0000\n" +"PO-Revision-Date: 2012-08-21 07:25+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Turkish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-08-28 06:43+0000\n" +"X-Generator: Launchpad (build 15864)\n" + +#. module: l10n_multilang +#: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template +msgid "Template for Fiscal Position" +msgstr "Mali Durum Şablonu" + +#. module: l10n_multilang +#: sql_constraint:account.account:0 +msgid "The code of the account must be unique per company !" +msgstr "Hesap Kodu her şirket için benzersiz olmalı !" + +#. module: l10n_multilang +#: constraint:account.account.template:0 +msgid "" +"Configuration Error!\n" +"You can not define children to an account with internal type different of " +"\"View\"! " +msgstr "" +"Yapılandırma Hatası!\n" +"İç türü \"Görünüm\" den farklı olan bir hesaba alt hesap tanımlayamazsınız! " + +#. module: l10n_multilang +#: model:ir.model,name:l10n_multilang.model_account_analytic_journal +msgid "Analytic Journal" +msgstr "Analiz Günlüğü" + +#. module: l10n_multilang +#: constraint:account.account.template:0 +msgid "Error ! You can not create recursive account templates." +msgstr "Hata! Yinelemeli hesap şablonları kullanamazsınız." + +#. module: l10n_multilang +#: model:ir.model,name:l10n_multilang.model_account_journal +msgid "Journal" +msgstr "Günlük" + +#. module: l10n_multilang +#: model:ir.model,name:l10n_multilang.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "Hesap Tablosu Şablonu" + +#. module: l10n_multilang +#: sql_constraint:account.tax:0 +msgid "The description must be unique per company!" +msgstr "Her firma için açıklama benzersiz olmalı!" + +#. module: l10n_multilang +#: constraint:account.tax.code.template:0 +msgid "Error ! You can not create recursive Tax Codes." +msgstr "Hata! Yinelemeli Vergi Kodları oluşturmazsınız." + +#. module: l10n_multilang +#: model:ir.model,name:l10n_multilang.model_account_tax_template +msgid "account.tax.template" +msgstr "muhasebe.vergi.şablon" + +#. module: l10n_multilang +#: model:ir.model,name:l10n_multilang.model_account_tax +msgid "account.tax" +msgstr "hesap.vergi" + +#. module: l10n_multilang +#: model:ir.model,name:l10n_multilang.model_account_account +msgid "Account" +msgstr "Hesap" + +#. module: l10n_multilang +#: model:ir.model,name:l10n_multilang.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "sihirbaz.çoklu.tablolar.hesaplar" + +#. module: l10n_multilang +#: constraint:account.journal:0 +msgid "" +"Configuration error! The currency chosen should be shared by the default " +"accounts too." +msgstr "" +"Yapılandırma hatası! Seçilen para birimi öntanımlı hesaplarla aynı olmalı." + +#. module: l10n_multilang +#: model:ir.model,name:l10n_multilang.model_account_account_template +msgid "Templates for Accounts" +msgstr "Hesap Şablonu" + +#. module: l10n_multilang +#: help:account.chart.template,spoken_languages:0 +msgid "" +"State here the languages for which the translations of templates could be " +"loaded at the time of installation of this localization module and copied in " +"the final object when generating them from templates. You must provide the " +"language codes separated by ';'" +msgstr "" +"Bu yerelleştirme modülünün kurulumu sırasında yüklenebilecek ve şablonlardan " +"oluşturulan son nesneye kopyalanacak çeviri şablonu dillerini burada " +"belirtin. Dil kodlarını ';' ile ayırın." + +#. module: l10n_multilang +#: constraint:account.account:0 +msgid "Error ! You can not create recursive accounts." +msgstr "Hata! Yinelen hesap oluşturamazsınız." + +#. module: l10n_multilang +#: constraint:account.account:0 +msgid "" +"Configuration Error! \n" +"You can not select an account type with a deferral method different of " +"\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"! " +msgstr "" +"Yapılandırma Hatası! \n" +"\"Borç/Alacak\" iç türündeki hesapların \"Uzalaştırılmamış\" tan farklı " +"erteleme yöntemli bir hesap türünü seçemezsiniz! " + +#. module: l10n_multilang +#: sql_constraint:account.journal:0 +msgid "The name of the journal must be unique per company !" +msgstr "Günlük adı her firmada benzersiz olmalı." + +#. module: l10n_multilang +#: model:ir.model,name:l10n_multilang.model_account_analytic_account +msgid "Analytic Account" +msgstr "Analiz Hesabı" + +#. module: l10n_multilang +#: sql_constraint:account.journal:0 +msgid "The code of the journal must be unique per company !" +msgstr "Günlük kodu her firma için benzersiz olmalı." + +#. module: l10n_multilang +#: model:ir.model,name:l10n_multilang.model_account_fiscal_position +msgid "Fiscal Position" +msgstr "Mali Durum" + +#. module: l10n_multilang +#: constraint:account.account:0 +msgid "" +"Configuration Error! \n" +"You can not define children to an account with internal type different of " +"\"View\"! " +msgstr "" +"Yapılandırma Hatası! \n" +"\"Görüntüle\"den farklı iç tipli hesaba alt hesap tanımlayamazsınız ! " + +#. module: l10n_multilang +#: constraint:account.analytic.account:0 +msgid "Error! You can not create recursive analytic accounts." +msgstr "Hata! Yinelenen analiz hesabı oluşturamazsınız." + +#. module: l10n_multilang +#: model:ir.model,name:l10n_multilang.model_account_tax_code_template +msgid "Tax Code Template" +msgstr "Vergi Kodu Şablonu" + +#. module: l10n_multilang +#: field:account.chart.template,spoken_languages:0 +msgid "Spoken Languages" +msgstr "Konuşulan Diller" diff --git a/addons/l10n_mx/__openerp__.py b/addons/l10n_mx/__openerp__.py index b52ac25f1ba..25ec7cc98c4 100644 --- a/addons/l10n_mx/__openerp__.py +++ b/addons/l10n_mx/__openerp__.py @@ -20,23 +20,24 @@ # ############################################################################## { - "name" : "Mexico - Accounting", - "version" : "1.0", - "author" : "RelTek Mexico", - "category" : "Localization/Account Charts", - "description": """ + 'name': 'Mexico - Accounting', + 'version': '1.0', + 'author': 'RelTek Mexico', + 'category': 'Localization/Account Charts', + 'description': """ This is the module to manage the accounting chart for Mexico in OpenERP. ======================================================================== Mexican accounting chart and localization. """, - "depends" : ["account", "base_vat", "account_chart"], - "demo_xml" : [], - "update_xml" : ['account_tax_code.xml',"account_chart.xml", - 'account_tax.xml','l10n_chart_mx_wizard.xml'], - "auto_install": False, - "installable": True, - "certificate" : "00858539161332598061", + 'depends': ['account', 'base_vat', 'account_chart'], + 'demo': [], + 'data': ['account_tax_code.xml','account_chart.xml', + 'account_tax.xml','l10n_chart_mx_wizard.xml' + ], + 'auto_install': False, + 'installable': True, + 'certificate': '00858539161332598061', 'images': ['images/config_chart_l10n_mx.jpeg','images/l10n_mx_chart.jpeg'], } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_mx/i18n/ar.po b/addons/l10n_mx/i18n/ar.po index 6b2bd0cb6af..7269de86170 100644 --- a/addons/l10n_mx/i18n/ar.po +++ b/addons/l10n_mx/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_mx #: model:account.account.type,name:l10n_mx.account_type_receivable @@ -25,7 +25,7 @@ msgstr "الدائنون" #. module: l10n_mx #: model:account.account.type,name:l10n_mx.account_type_equity msgid "Equity" -msgstr "" +msgstr "الأسهم" #. module: l10n_mx #: model:account.account.type,name:l10n_mx.account_type_tax diff --git a/addons/l10n_mx/i18n/bg.po b/addons/l10n_mx/i18n/bg.po index 745fa73c3ba..c2f851addfe 100644 --- a/addons/l10n_mx/i18n/bg.po +++ b/addons/l10n_mx/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_mx #: model:account.account.type,name:l10n_mx.account_type_receivable diff --git a/addons/l10n_mx/i18n/ca.po b/addons/l10n_mx/i18n/ca.po index 3199ea15b96..2cfc2fdc9a7 100644 --- a/addons/l10n_mx/i18n/ca.po +++ b/addons/l10n_mx/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_mx #: model:account.account.type,name:l10n_mx.account_type_receivable diff --git a/addons/l10n_mx/i18n/da.po b/addons/l10n_mx/i18n/da.po index aa4a7144fff..ab6a9b81016 100644 --- a/addons/l10n_mx/i18n/da.po +++ b/addons/l10n_mx/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_mx #: model:account.account.type,name:l10n_mx.account_type_receivable diff --git a/addons/l10n_mx/i18n/es.po b/addons/l10n_mx/i18n/es.po index 258bf8480bf..7774e1068d3 100644 --- a/addons/l10n_mx/i18n/es.po +++ b/addons/l10n_mx/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_mx #: model:account.account.type,name:l10n_mx.account_type_receivable diff --git a/addons/l10n_mx/i18n/es_CR.po b/addons/l10n_mx/i18n/es_CR.po index b8efa1c3561..4cb1c1ad072 100644 --- a/addons/l10n_mx/i18n/es_CR.po +++ b/addons/l10n_mx/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: es\n" #. module: l10n_mx diff --git a/addons/l10n_mx/i18n/es_PY.po b/addons/l10n_mx/i18n/es_PY.po index 148c45280fe..14abe369a4c 100644 --- a/addons/l10n_mx/i18n/es_PY.po +++ b/addons/l10n_mx/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_mx #: model:account.account.type,name:l10n_mx.account_type_receivable diff --git a/addons/l10n_mx/i18n/gl.po b/addons/l10n_mx/i18n/gl.po index 3ee52eebde6..5b16d1a6c61 100644 --- a/addons/l10n_mx/i18n/gl.po +++ b/addons/l10n_mx/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_mx #: model:account.account.type,name:l10n_mx.account_type_receivable diff --git a/addons/l10n_mx/i18n/it.po b/addons/l10n_mx/i18n/it.po index 09fc28de253..5b3c7283360 100644 --- a/addons/l10n_mx/i18n/it.po +++ b/addons/l10n_mx/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_mx #: model:account.account.type,name:l10n_mx.account_type_receivable diff --git a/addons/l10n_mx/i18n/pt.po b/addons/l10n_mx/i18n/pt.po index 57879eb77c2..0b12692461f 100644 --- a/addons/l10n_mx/i18n/pt.po +++ b/addons/l10n_mx/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: 2012-08-07 05:37+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_mx #: model:account.account.type,name:l10n_mx.account_type_receivable diff --git a/addons/l10n_mx/i18n/pt_BR.po b/addons/l10n_mx/i18n/pt_BR.po index d36844d00b1..7fb83abae03 100644 --- a/addons/l10n_mx/i18n/pt_BR.po +++ b/addons/l10n_mx/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_mx #: model:account.account.type,name:l10n_mx.account_type_receivable diff --git a/addons/l10n_mx/i18n/sr@latin.po b/addons/l10n_mx/i18n/sr@latin.po index 8739dbdc4d1..9e2c651419c 100644 --- a/addons/l10n_mx/i18n/sr@latin.po +++ b/addons/l10n_mx/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_mx #: model:account.account.type,name:l10n_mx.account_type_receivable diff --git a/addons/l10n_mx/i18n/tr.po b/addons/l10n_mx/i18n/tr.po index 1e49ffd7bcc..bf6ef1f2808 100644 --- a/addons/l10n_mx/i18n/tr.po +++ b/addons/l10n_mx/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_mx #: model:account.account.type,name:l10n_mx.account_type_receivable diff --git a/addons/l10n_nl/__openerp__.py b/addons/l10n_nl/__openerp__.py index 8b9cc3de451..a263f912183 100644 --- a/addons/l10n_nl/__openerp__.py +++ b/addons/l10n_nl/__openerp__.py @@ -58,7 +58,7 @@ # Opschonen van de code en verwijderen van niet gebruikte componenten. # Versie 5.0.0.4 # Aanpassen a_expense van 3000 -> 7000 -# record id="btw_code_5b" op negatieve waarde gezet +# record id='btw_code_5b' op negatieve waarde gezet # Versie 5.0.0.5 # BTW rekeningen hebben typeaanduiding gekregen t.b.v. purchase of sale # Versie 5.0.0.6 @@ -86,10 +86,10 @@ # Changed naming of 7020 and 7030 to Kostprijs omzet xxxx { - "name" : "Netherlands - Accounting", - "version" : "1.5", - "category": "Localization/Account Charts", - "description": """ + 'name' : 'Netherlands - Accounting', + 'version' : '1.5', + 'category': 'Localization/Account Charts', + 'description': """ This is the module to manage the accounting chart for Netherlands in OpenERP. ============================================================================= @@ -101,7 +101,7 @@ De BTW rekeningen zijn waar nodig gekoppeld om de juiste rapportage te genereren denk b.v. aan intracommunautaire verwervingen waarbij u 19% BTW moet opvoeren, maar tegelijkertijd ook 19% als voorheffing weer mag aftrekken. -Na installatie van deze module word de configuratie wizard voor "Accounting" aangeroepen. +Na installatie van deze module word de configuratie wizard voor 'Accounting' aangeroepen. * U krijgt een lijst met grootboektemplates aangeboden waarin zich ook het Nederlandse grootboekschema bevind. @@ -112,24 +112,21 @@ Na installatie van deze module word de configuratie wizard voor "Accounting" aan Let op!! -> De template van het Nederlandse rekeningschema is opgebouwd uit 4 cijfers. Dit is het minimale aantal welk u moet invullen, u mag het aantal verhogen. -De extra cijfers worden dan achter het rekeningnummer aangevult met "nullen". +De extra cijfers worden dan achter het rekeningnummer aangevult met 'nullen'. """, - "author" : "Veritos - Jan Verlaan", - "website" : "http://www.veritos.nl", - "depends" : ["account", - "base_vat", - "base_iban", - "account_chart" - ], - "init_xml" : [], - "update_xml" : ["account_chart_netherlands.xml", - "l10n_nl_wizard.xml" - ], - "demo_xml" : [ - ], - - "installable": True, + 'author' : 'Veritos - Jan Verlaan', + 'website' : 'http://www.veritos.nl', + 'depends' : ['account', + 'base_vat', + 'base_iban', + 'account_chart' + ], + 'data' : ['account_chart_netherlands.xml', + 'l10n_nl_wizard.xml' + ], + 'demo' : [], + 'installable': True, 'certificate': '00976041422960053277', 'images': ['images/config_chart_l10n_nl.jpeg','images/l10n_nl_chart.jpeg'], } diff --git a/addons/l10n_nl/i18n/ar.po b/addons/l10n_nl/i18n/ar.po index f31135f7407..23eb7762836 100644 --- a/addons/l10n_nl/i18n/ar.po +++ b/addons/l10n_nl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_tax diff --git a/addons/l10n_nl/i18n/ca.po b/addons/l10n_nl/i18n/ca.po index 63b5268fc15..8526e3d175e 100644 --- a/addons/l10n_nl/i18n/ca.po +++ b/addons/l10n_nl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_tax diff --git a/addons/l10n_nl/i18n/da.po b/addons/l10n_nl/i18n/da.po index fb588bf36bd..dca65bb8333 100644 --- a/addons/l10n_nl/i18n/da.po +++ b/addons/l10n_nl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_tax diff --git a/addons/l10n_nl/i18n/es.po b/addons/l10n_nl/i18n/es.po index 4db1b178789..df55b9822c5 100644 --- a/addons/l10n_nl/i18n/es.po +++ b/addons/l10n_nl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_tax diff --git a/addons/l10n_nl/i18n/es_CR.po b/addons/l10n_nl/i18n/es_CR.po index 015ef8d5768..5be29ac2e58 100644 --- a/addons/l10n_nl/i18n/es_CR.po +++ b/addons/l10n_nl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: es\n" #. module: l10n_nl diff --git a/addons/l10n_nl/i18n/es_PY.po b/addons/l10n_nl/i18n/es_PY.po index eadc2064b2c..26ed1826f0b 100644 --- a/addons/l10n_nl/i18n/es_PY.po +++ b/addons/l10n_nl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_tax diff --git a/addons/l10n_nl/i18n/gl.po b/addons/l10n_nl/i18n/gl.po index 4f165282de1..4bb3c635140 100644 --- a/addons/l10n_nl/i18n/gl.po +++ b/addons/l10n_nl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_tax diff --git a/addons/l10n_nl/i18n/it.po b/addons/l10n_nl/i18n/it.po index f7308af1bef..116c11900d7 100644 --- a/addons/l10n_nl/i18n/it.po +++ b/addons/l10n_nl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_tax diff --git a/addons/l10n_nl/i18n/nl.po b/addons/l10n_nl/i18n/nl.po index 8640accd2f9..9a6d9ac0504 100644 --- a/addons/l10n_nl/i18n/nl.po +++ b/addons/l10n_nl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_tax @@ -50,21 +50,20 @@ msgid "" msgstr "" "Na installatie van deze module word de configuratie wizard voor " "\"Accounting\" aangeroepen.\n" -"* U krijgt een lijst met grootboektemplates aangeboden waarin zich ook het " +"* U krijgt een lijst met grootboekschema's aangeboden waarin zich ook het " "Nederlandse grootboekschema bevind.\n" "* Als de configuratie wizard start, wordt u gevraagd om de naam van uw " "bedrijf in te voeren, welke grootboekschema te installeren, uit hoeveel " "cijfers een grootboekrekening mag bestaan, het rekeningnummer van uw bank en " -"de currency om Journalen te creeren.\n" +"de valuta om uw dagboeken te creeren.\n" " \n" -"Let op!! -> De template van het Nederlandse rekeningschema is opgebouwd uit " -"4 cijfers. Dit is het minimale aantal welk u moet invullen, u mag het aantal " -"verhogen. De extra cijfers worden dan achter het rekeningnummer aangevult " -"met \"nullen\"\n" +"Let op!! -> Het Nederlandse rekeningschema is opgebouwd uit 4 cijfers. Dit " +"is het minimale aantal welk u moet invullen, u mag het aantal verhogen. De " +"extra cijfers worden dan achter het rekeningnummer aangevult met \"nullen\"\n" " \n" "* Dit is dezelfe configuratie wizard welke aangeroepen kan worden via " -"Financial Management/Configuration/Financial Accounting/Financial " -"Accounts/Generate Chart of Accounts from a Chart Template.\n" +"Financieel\\Instellingen\\ Financiële administratie/Nieuwe Financiële " +"administratie.\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_cash diff --git a/addons/l10n_nl/i18n/pt_BR.po b/addons/l10n_nl/i18n/pt_BR.po index 9b6dbba1815..162104c62ea 100644 --- a/addons/l10n_nl/i18n/pt_BR.po +++ b/addons/l10n_nl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_tax diff --git a/addons/l10n_nl/i18n/sr@latin.po b/addons/l10n_nl/i18n/sr@latin.po index e6754c28a2b..d93378ed798 100644 --- a/addons/l10n_nl/i18n/sr@latin.po +++ b/addons/l10n_nl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_tax diff --git a/addons/l10n_nl/i18n/tr.po b/addons/l10n_nl/i18n/tr.po index 78bb031c4e7..43d50f98c7d 100644 --- a/addons/l10n_nl/i18n/tr.po +++ b/addons/l10n_nl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_tax diff --git a/addons/l10n_pe/__openerp__.py b/addons/l10n_pe/__openerp__.py index 7908664ca83..9ae3e351d13 100644 --- a/addons/l10n_pe/__openerp__.py +++ b/addons/l10n_pe/__openerp__.py @@ -17,36 +17,32 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # -############################################################################## +############################################################################## { - "name": "Peru Localization Chart Account", - "version": "1.0", - "description": """ -Peruvian accounting chart and tax localization. Acording the PCGE 2010. + 'name': 'Peru Localization Chart Account', + 'version': '1.0', + 'description': """ +Peruvian accounting chart and tax localization. According the PCGE 2010. +======================================================================== Plan contable peruano e impuestos de acuerdo a disposiciones vigentes de la SUNAT 2011 (PCGE 2010). """, - "author": ["Cubic ERP"], - "website": "http://cubicERP.com", - "category": "Localization/Account Charts", - "depends": [ - "account_chart", - ], - "data":[ - "account_tax_code.xml", - "l10n_pe_chart.xml", - "account_tax.xml", - "l10n_pe_wizard.xml", - ], - "demo_xml": [ - ], - "update_xml": [ - ], - "active": False, - "installable": True, - "certificate" : "0045046493412", + 'author': ['Cubic ERP'], + 'website': 'http://cubicERP.com', + 'category': 'Localization/Account Charts', + 'depends': ['account_chart'], + 'data':[ + 'account_tax_code.xml', + 'l10n_pe_chart.xml', + 'account_tax.xml', + 'l10n_pe_wizard.xml', + ], + 'demo': [], + 'active': False, + 'installable': True, + 'certificate' : '0045046493412', 'images': ['images/config_chart_l10n_pe.jpeg','images/l10n_pe_chart.jpeg'], } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_pl/__openerp__.py b/addons/l10n_pl/__openerp__.py index 4b75dd92b79..df8d2955e8e 100644 --- a/addons/l10n_pl/__openerp__.py +++ b/addons/l10n_pl/__openerp__.py @@ -21,12 +21,12 @@ # ############################################################################## { - "name" : "Poland - Accounting", - "version" : "1.0", - "author" : "Grzegorz Grzelak (Cirrus)", - "website": "http://www.cirrus.pl", - "category" : "Localization/Account Charts", - "description": """ + 'name' : 'Poland - Accounting', + 'version' : '1.0', + 'author' : 'Grzegorz Grzelak (Cirrus)', + 'website': 'http://www.cirrus.pl', + 'category' : 'Localization/Account Charts', + 'description': """ This is the module to manage the accounting chart and taxes for Poland in OpenERP. ================================================================================== @@ -34,13 +34,14 @@ To jest moduł do tworzenia wzorcowego planu kont i podstawowych ustawień do po VAT 0%, 7% i 22%. Moduł ustawia też konta do kupna i sprzedaży towarów zakładając, że wszystkie towary są w obrocie hurtowym. """, - "depends" : ["account", "base_iban", "base_vat", "account_chart"], - "demo_xml" : [], - "update_xml" : ['account_tax_code.xml',"account_chart.xml", - 'account_tax.xml','l10n_chart_pl_wizard.xml'], - "auto_install": False, - "installable": True, - "certificate" : "00885794372803776829", + 'depends' : ['account', 'base_iban', 'base_vat', 'account_chart'], + 'demo' : [], + 'data' : ['account_tax_code.xml','account_chart.xml', + 'account_tax.xml','l10n_chart_pl_wizard.xml' + ], + 'auto_install': False, + 'installable': True, + 'certificate' : '00885794372803776829', 'images': ['images/config_chart_l10n_pl.jpeg','images/l10n_pl_chart.jpeg'], } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_pl/i18n/ar.po b/addons/l10n_pl/i18n/ar.po index 3a54fc87858..846fac70cd0 100644 --- a/addons/l10n_pl/i18n/ar.po +++ b/addons/l10n_pl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/ca.po b/addons/l10n_pl/i18n/ca.po index 64d28793f7e..5a983c2bef8 100644 --- a/addons/l10n_pl/i18n/ca.po +++ b/addons/l10n_pl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/da.po b/addons/l10n_pl/i18n/da.po index 5646b731c78..51725a56aa6 100644 --- a/addons/l10n_pl/i18n/da.po +++ b/addons/l10n_pl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/es.po b/addons/l10n_pl/i18n/es.po index 07005edb1fe..3832c8ca929 100644 --- a/addons/l10n_pl/i18n/es.po +++ b/addons/l10n_pl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/es_CR.po b/addons/l10n_pl/i18n/es_CR.po index 1631e416441..3a991102150 100644 --- a/addons/l10n_pl/i18n/es_CR.po +++ b/addons/l10n_pl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: es\n" #. module: l10n_pl diff --git a/addons/l10n_pl/i18n/es_PY.po b/addons/l10n_pl/i18n/es_PY.po index cb2c17425e2..bdeab42e2c4 100644 --- a/addons/l10n_pl/i18n/es_PY.po +++ b/addons/l10n_pl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/gl.po b/addons/l10n_pl/i18n/gl.po index 0edb181d228..397f7926bf3 100644 --- a/addons/l10n_pl/i18n/gl.po +++ b/addons/l10n_pl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/it.po b/addons/l10n_pl/i18n/it.po index 7db71a4d21b..3262f025263 100644 --- a/addons/l10n_pl/i18n/it.po +++ b/addons/l10n_pl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/pt_BR.po b/addons/l10n_pl/i18n/pt_BR.po index 815358abf18..30231c57e5c 100644 --- a/addons/l10n_pl/i18n/pt_BR.po +++ b/addons/l10n_pl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/sr@latin.po b/addons/l10n_pl/i18n/sr@latin.po index 5de1720b3c9..bcb0e33f369 100644 --- a/addons/l10n_pl/i18n/sr@latin.po +++ b/addons/l10n_pl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/tr.po b/addons/l10n_pl/i18n/tr.po index 0b94e1e246a..52535232ce6 100644 --- a/addons/l10n_pl/i18n/tr.po +++ b/addons/l10n_pl/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_ro/__openerp__.py b/addons/l10n_ro/__openerp__.py index f76eb178776..22df6955a5f 100644 --- a/addons/l10n_ro/__openerp__.py +++ b/addons/l10n_ro/__openerp__.py @@ -20,23 +20,23 @@ # ############################################################################## { - "name" : "Romania - Accounting", - "version" : "1.1", - "author" : "filsys", - "website": "http://www.filsystem.ro", - "category" : "Localization/Account Charts", - "depends" : ["account_chart", 'base_vat'], - "description": """ + 'name' : 'Romania - Accounting', + 'version' : '1.1', + 'author' : 'filsys', + 'website': 'http://www.filsystem.ro', + 'category' : 'Localization/Account Charts', + 'depends' : ['account_chart', 'base_vat'], + 'description': """ This is the module to manage the accounting chart, VAT structure and Registration Number for Romania in OpenERP. ================================================================================================================ Romanian accounting chart and localization. """, - "demo_xml" : [], - "update_xml" : ['partner_view.xml','account_tax_code.xml','account_chart.xml','account_tax.xml','l10n_chart_ro_wizard.xml'], - "auto_install": False, - "installable": True, - "certificate" : "001308250150602948125", + 'demo' : [], + 'data' : ['partner_view.xml','account_tax_code.xml','account_chart.xml','account_tax.xml','l10n_chart_ro_wizard.xml'], + 'auto_install': False, + 'installable': True, + 'certificate' : '001308250150602948125', 'images': ['images/config_chart_l10n_ro.jpeg','images/l10n_ro_chart.jpeg'], } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_ro/i18n/ar.po b/addons/l10n_ro/i18n/ar.po index 0cec0acae10..46629b53e49 100644 --- a/addons/l10n_ro/i18n/ar.po +++ b/addons/l10n_ro/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ro #: model:account.account.type,name:l10n_ro.account_type_receivable diff --git a/addons/l10n_ro/i18n/ca.po b/addons/l10n_ro/i18n/ca.po index 2d391111574..0fed5b05cd1 100644 --- a/addons/l10n_ro/i18n/ca.po +++ b/addons/l10n_ro/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ro #: model:account.account.type,name:l10n_ro.account_type_receivable diff --git a/addons/l10n_ro/i18n/da.po b/addons/l10n_ro/i18n/da.po index 136187ac283..285875366b0 100644 --- a/addons/l10n_ro/i18n/da.po +++ b/addons/l10n_ro/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ro #: model:account.account.type,name:l10n_ro.account_type_receivable diff --git a/addons/l10n_ro/i18n/es.po b/addons/l10n_ro/i18n/es.po index b924e41ceda..00b6b3230d5 100644 --- a/addons/l10n_ro/i18n/es.po +++ b/addons/l10n_ro/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ro #: model:account.account.type,name:l10n_ro.account_type_receivable diff --git a/addons/l10n_ro/i18n/es_CR.po b/addons/l10n_ro/i18n/es_CR.po index 8c69c5e9a40..df552e4f0e3 100644 --- a/addons/l10n_ro/i18n/es_CR.po +++ b/addons/l10n_ro/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: es\n" #. module: l10n_ro diff --git a/addons/l10n_ro/i18n/es_PY.po b/addons/l10n_ro/i18n/es_PY.po index 189f463e4ab..0c73bc7d7ea 100644 --- a/addons/l10n_ro/i18n/es_PY.po +++ b/addons/l10n_ro/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ro #: model:account.account.type,name:l10n_ro.account_type_receivable diff --git a/addons/l10n_ro/i18n/gl.po b/addons/l10n_ro/i18n/gl.po index 4ad9458004c..cf256f8b49a 100644 --- a/addons/l10n_ro/i18n/gl.po +++ b/addons/l10n_ro/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ro #: model:account.account.type,name:l10n_ro.account_type_receivable diff --git a/addons/l10n_ro/i18n/it.po b/addons/l10n_ro/i18n/it.po index 2f94340346b..b138f832ede 100644 --- a/addons/l10n_ro/i18n/it.po +++ b/addons/l10n_ro/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ro #: model:account.account.type,name:l10n_ro.account_type_receivable diff --git a/addons/l10n_ro/i18n/pt.po b/addons/l10n_ro/i18n/pt.po index 966f99ffb84..ec9439cdd46 100644 --- a/addons/l10n_ro/i18n/pt.po +++ b/addons/l10n_ro/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ro #: model:account.account.type,name:l10n_ro.account_type_receivable diff --git a/addons/l10n_ro/i18n/pt_BR.po b/addons/l10n_ro/i18n/pt_BR.po index be57076a113..26730a4229f 100644 --- a/addons/l10n_ro/i18n/pt_BR.po +++ b/addons/l10n_ro/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ro #: model:account.account.type,name:l10n_ro.account_type_receivable diff --git a/addons/l10n_ro/i18n/ro.po b/addons/l10n_ro/i18n/ro.po index 866eb5efc49..c6f32fa0300 100644 --- a/addons/l10n_ro/i18n/ro.po +++ b/addons/l10n_ro/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ro #: model:account.account.type,name:l10n_ro.account_type_receivable diff --git a/addons/l10n_ro/i18n/sr@latin.po b/addons/l10n_ro/i18n/sr@latin.po index 335aa44e00a..f164a8a8f6d 100644 --- a/addons/l10n_ro/i18n/sr@latin.po +++ b/addons/l10n_ro/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ro #: model:account.account.type,name:l10n_ro.account_type_receivable diff --git a/addons/l10n_ro/i18n/tr.po b/addons/l10n_ro/i18n/tr.po index 4b01828bb58..bdeea0e7576 100644 --- a/addons/l10n_ro/i18n/tr.po +++ b/addons/l10n_ro/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_ro #: model:account.account.type,name:l10n_ro.account_type_receivable diff --git a/addons/l10n_syscohada/__openerp__.py b/addons/l10n_syscohada/__openerp__.py index 2fd6917ec11..73b999d66ba 100644 --- a/addons/l10n_syscohada/__openerp__.py +++ b/addons/l10n_syscohada/__openerp__.py @@ -20,26 +20,29 @@ ############################################################################## { - "name" : "OHADA - Accounting", - "version" : "1.0", - "author" : "Baamtu Senegal", - "category" : "Localization/Account Charts", - "description": """ + 'name' : 'OHADA - Accounting', + 'version' : '1.0', + 'author' : 'Baamtu Senegal', + 'category' : 'Localization/Account Charts', + 'description': """ This module implements the accounting chart for OHADA area. =========================================================== It allows any company or association to manage its financial accounting. + Countries that use OHADA are the following: +------------------------------------------- Benin, Burkina Faso, Cameroon, Central African Republic, Comoros, Congo, + Ivory Coast, Gabon, Guinea, Guinea Bissau, Equatorial Guinea, Mali, Niger, + Replica of Democratic Congo, Senegal, Chad, Togo. """, - "website": "http://www.baamtu.com", - "depends" : ["account", "base_vat"], - "demo_xml" : [], - "init_xml":[], - "update_xml" : ["l10n_syscohada_data.xml","l10n_syscohada_wizard.xml"], - "auto_install": False, - "installable": True + 'website': 'http://www.baamtu.com', + 'depends' : ['account', 'base_vat'], + 'demo' : [], + 'data' : ['l10n_syscohada_data.xml','l10n_syscohada_wizard.xml'], + 'auto_install': False, + 'installable': True } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_syscohada/i18n/ar.po b/addons/l10n_syscohada/i18n/ar.po index 5fcfa96f387..22f493425a9 100644 --- a/addons/l10n_syscohada/i18n/ar.po +++ b/addons/l10n_syscohada/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/ca.po b/addons/l10n_syscohada/i18n/ca.po index 122b6329385..322860cb7e6 100644 --- a/addons/l10n_syscohada/i18n/ca.po +++ b/addons/l10n_syscohada/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/es.po b/addons/l10n_syscohada/i18n/es.po index 9c2e7bb8570..7263f388526 100644 --- a/addons/l10n_syscohada/i18n/es.po +++ b/addons/l10n_syscohada/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/es_CR.po b/addons/l10n_syscohada/i18n/es_CR.po index 13f919ba337..b8cf9606d3a 100644 --- a/addons/l10n_syscohada/i18n/es_CR.po +++ b/addons/l10n_syscohada/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: es\n" #. module: l10n_syscohada diff --git a/addons/l10n_syscohada/i18n/fr.po b/addons/l10n_syscohada/i18n/fr.po index cb911528f46..ed1cea6e014 100644 --- a/addons/l10n_syscohada/i18n/fr.po +++ b/addons/l10n_syscohada/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/pt.po b/addons/l10n_syscohada/i18n/pt.po index aabdc1ac12f..c4b88f0980e 100644 --- a/addons/l10n_syscohada/i18n/pt.po +++ b/addons/l10n_syscohada/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/ro.po b/addons/l10n_syscohada/i18n/ro.po index 43eb5062a55..09e45eeb505 100644 --- a/addons/l10n_syscohada/i18n/ro.po +++ b/addons/l10n_syscohada/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/tr.po b/addons/l10n_syscohada/i18n/tr.po index 5a8a42a8e58..eaab3a60fb5 100644 --- a/addons/l10n_syscohada/i18n/tr.po +++ b/addons/l10n_syscohada/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: 2012-08-07 05:38+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:42+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/l10n_syscohada_data.xml b/addons/l10n_syscohada/l10n_syscohada_data.xml index feeea3a2314..d90988e00e3 100644 --- a/addons/l10n_syscohada/l10n_syscohada_data.xml +++ b/addons/l10n_syscohada/l10n_syscohada_data.xml @@ -1816,15 +1816,15 @@ # --> - + XOF CFA 1 4 - + 655.957 - +  - - - - Welcome to OpenERP! - Your homepage is a summary of messages you received and key information about documents you follow. + + mail.group + + notification + Welcome to OpenERP! + Your homepage is a summary of messages you received and key information about documents you follow. The top menu bar contains all applications you installed. You can use this <i>Settings</i> menu to install more applications, activate others features or give access to new users. -To setup your preferences (name, email signature, avatar), click on the top right corner. - - +To setup your preferences (name, email signature, avatar), click on the top right corner. + diff --git a/addons/mail/doc/mail_openchatter_howto.rst b/addons/mail/doc/mail_openchatter_howto.rst index 789acdd87eb..e4c86add7bc 100644 --- a/addons/mail/doc/mail_openchatter_howto.rst +++ b/addons/mail/doc/mail_openchatter_howto.rst @@ -57,7 +57,7 @@ Use the thread viewer widget inside your form view by using the mail_thread widg Send notifications +++++++++++++++++++ -When sending a notification is required in your workflow or business logic, use the ``message_append_note`` method. This method is a shortcut to the ``message_append`` method that takes all ``mail.message`` fields as arguments. This latter method calls ``message_create`` that +When sending a notification is required in your workflow or business logic, use the ``message_post`` method. This method is a shortcut to the ``message_append`` method that takes all ``mail.message`` fields as arguments. This latter method calls ``message_create`` that - creates the message - parses the body to find users you want to push the message to (finding and parsing ``@login`` in the message body) @@ -74,7 +74,7 @@ You should therefore not worry about subscriptions or anything else than sending return res def do_something_send_note(self, cr, uid, ids, context=None): - self.message_append_note(cr, uid, ids, _('My subject'), + self.message_post(cr, uid, ids, _('My subject'), _("has received a notification and is happy for it."), context=context) Notifications guidelines @@ -147,7 +147,7 @@ The best way to direct the messages that will be displayed in the OpenChatter wi # add: search in the current task project messages '&', '&', ('res_id', '=', my_task.project_id.id), ('model', '=', 'project.project'), # ... containing the task name - '|', ('body_text', 'like', '%s' % (my_task.name)), ('body_html', 'like', '%s' % (my_task.name)) + '|', ('body', 'like', '%s' % (my_task.name)), ('body_html', 'like', '%s' % (my_task.name)) ] + domain, limit=limit, offset=offset, context=context) # if asked: add ancestor ids to have complete threads if (ascent): msg_ids = self._message_add_ancestor_ids(cr, uid, ids, msg_ids, root_ids, context=context) diff --git a/addons/mail/doc/mail_state.rst b/addons/mail/doc/mail_state.rst index 527a31ba835..fc2772bf094 100644 --- a/addons/mail/doc/mail_state.rst +++ b/addons/mail/doc/mail_state.rst @@ -1,15 +1,15 @@ .. _mail_state: -message_state +message_unread ============= -``message_state`` is a boolean field that states whether the document +``message_unread`` is a boolean field that states whether the document has unread messages. In previous versions, some documents were going back to ``pending`` state when receiving an email through the mail gateway. Now the state related to messages differs from the state or stage of the document itself. -message_state and need action mechanism +message_unread and need action mechanism +++++++++++++++++++++++++++++++++++++++ The ``mail`` module introduces a default behavior for the need_action @@ -23,6 +23,6 @@ mechanism [REF]. """ result = super(ir_needaction_mixin, self).get_needaction_user_ids(cr, uid, ids, context=context) for obj in self.browse(cr, uid, ids, context=context): - if obj.message_state == False and obj.user_id: + if obj.message_unread == False and obj.user_id: result[obj.id].append(obj.user_id.id) return result diff --git a/addons/mail/i18n/ar.po b/addons/mail/i18n/ar.po index 4a264fe8e96..afce37df26f 100644 --- a/addons/mail/i18n/ar.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/bg.po b/addons/mail/i18n/bg.po index 3c5156dcc9c..22731e69aa0 100644 --- a/addons/mail/i18n/bg.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/ca.po b/addons/mail/i18n/ca.po index 2d56066837a..db7efe926c5 100644 --- a/addons/mail/i18n/ca.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/da.po b/addons/mail/i18n/da.po index 8b77ec859e1..886ad6c6fee 100644 --- a/addons/mail/i18n/da.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/de.po b/addons/mail/i18n/de.po index 47076a52a1b..bf00f2d5207 100644 --- a/addons/mail/i18n/de.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/es.po b/addons/mail/i18n/es.po index 35f6e936c51..ac7e7e0ee6b 100644 --- a/addons/mail/i18n/es.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/es_CR.po b/addons/mail/i18n/es_CR.po index 36c0a77dee5..624db26525b 100644 --- a/addons/mail/i18n/es_CR.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" "Language: es\n" #. module: mail diff --git a/addons/mail/i18n/es_PY.po b/addons/mail/i18n/es_PY.po index e202cfb32f5..fa2743b8e2f 100644 --- a/addons/mail/i18n/es_PY.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/fi.po b/addons/mail/i18n/fi.po index d17d3e0d3d4..b4204060a4e 100644 --- a/addons/mail/i18n/fi.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/fr.po b/addons/mail/i18n/fr.po index 076b26689ef..ba727b36d19 100644 --- a/addons/mail/i18n/fr.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/gl.po b/addons/mail/i18n/gl.po index 3e1de3af0ab..3a412453d54 100644 --- a/addons/mail/i18n/gl.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/hr.po b/addons/mail/i18n/hr.po index 9fe02410386..0e78e7c8eac 100644 --- a/addons/mail/i18n/hr.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/hu.po b/addons/mail/i18n/hu.po index 5207c68759d..7ccab506e7b 100644 --- a/addons/mail/i18n/hu.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/it.po b/addons/mail/i18n/it.po index a8c0253ce65..95d3f6d3700 100644 --- a/addons/mail/i18n/it.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/ja.po b/addons/mail/i18n/ja.po index 61c3d491f87..f869127f04c 100644 --- a/addons/mail/i18n/ja.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/lt.po b/addons/mail/i18n/lt.po index 2cfee22ddb0..246f272ba03 100644 --- a/addons/mail/i18n/lt.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/lv.po b/addons/mail/i18n/lv.po index bfdcda883e3..f7b7a0cbc5c 100644 --- a/addons/mail/i18n/lv.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/mn.po b/addons/mail/i18n/mn.po index ea49507e842..e705b56d38b 100644 --- a/addons/mail/i18n/mn.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/nl.po b/addons/mail/i18n/nl.po index 1a5600c5d0b..0fef9761c2f 100644 --- a/addons/mail/i18n/nl.po +++ b/addons/mail/i18n/nl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-09 00:36+0000\n" -"PO-Revision-Date: 2012-05-10 17:39+0000\n" -"Last-Translator: Raphael Collet (OpenERP) \n" +"PO-Revision-Date: 2012-09-03 17:14+0000\n" +"Last-Translator: Erwin \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-09-04 04:52+0000\n" +"X-Generator: Launchpad (build 15890)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 @@ -196,7 +196,7 @@ msgstr "Ontvangers" #. module: mail #: model:ir.model,name:mail.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "E-mail samenstellen wizard" #. module: mail #: field:mail.compose.message,res_id:0 field:mail.message,res_id:0 diff --git a/addons/mail/i18n/pl.po b/addons/mail/i18n/pl.po index c939ba58a87..4db3afe7733 100644 --- a/addons/mail/i18n/pl.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/pt.po b/addons/mail/i18n/pt.po index 9b4283eec84..0dd39db2e5c 100644 --- a/addons/mail/i18n/pt.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/pt_BR.po b/addons/mail/i18n/pt_BR.po index d9786945a70..a08977769d0 100644 --- a/addons/mail/i18n/pt_BR.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 @@ -26,12 +26,12 @@ msgstr "" #. module: mail #: help:mail.compose.message,auto_delete:0 msgid "Permanently delete emails after sending" -msgstr "" +msgstr "Excluir Permanentemente o email após o envio" #. module: mail #: view:mail.message:0 msgid "Open Related Document" -msgstr "" +msgstr "Abrir Documento Relacionado" #. module: mail #: view:mail.message:0 @@ -46,7 +46,7 @@ msgstr "Detalhes da Mensagem" #. module: mail #: view:mail.thread:0 msgid "Communication History" -msgstr "" +msgstr "Histórico de Comunicação" #. module: mail #: view:mail.message:0 @@ -57,24 +57,24 @@ msgstr "Agrupar Por..." #: model:ir.actions.act_window,name:mail.action_email_compose_message_wizard #: view:mail.compose.message:0 msgid "Compose Email" -msgstr "" +msgstr "Escrever Email" #. module: mail #: help:mail.compose.message,body_text:0 help:mail.message,body_text:0 #: help:mail.message.common,body_text:0 msgid "Plain-text version of the message" -msgstr "" +msgstr "Versão em texto" #. module: mail #: view:mail.compose.message:0 msgid "Body" -msgstr "" +msgstr "Corpo" #. module: mail #: help:mail.compose.message,email_to:0 help:mail.message,email_to:0 #: help:mail.message.common,email_to:0 msgid "Message recipients" -msgstr "" +msgstr "Destinatários da mensagem" #. module: mail #: field:mail.compose.message,body_text:0 field:mail.message,body_text:0 @@ -85,7 +85,7 @@ msgstr "" #. module: mail #: view:mail.message:0 selection:mail.message,state:0 msgid "Received" -msgstr "" +msgstr "Recebida" #. module: mail #: view:mail.message:0 @@ -95,35 +95,35 @@ msgstr "Tópico" #. module: mail #: field:mail.message,mail_server_id:0 msgid "Outgoing mail server" -msgstr "" +msgstr "Servidor de envio" #. module: mail #: selection:mail.message,state:0 msgid "Cancelled" -msgstr "" +msgstr "Cancelado" #. module: mail #: field:mail.compose.message,reply_to:0 field:mail.message,reply_to:0 #: field:mail.message.common,reply_to:0 msgid "Reply-To" -msgstr "" +msgstr "Responder para" #. module: mail #: help:mail.compose.message,body_html:0 help:mail.message,body_html:0 #: help:mail.message.common,body_html:0 msgid "Rich-text/HTML version of the message" -msgstr "" +msgstr "Versão em Rich-text/HTML" #. module: mail #: field:mail.compose.message,auto_delete:0 field:mail.message,auto_delete:0 msgid "Auto Delete" -msgstr "" +msgstr "Excluir automaticamente" #. module: mail #: help:mail.compose.message,email_bcc:0 help:mail.message,email_bcc:0 #: help:mail.message.common,email_bcc:0 msgid "Blind carbon copy message recipients" -msgstr "" +msgstr "Cópia oculta para os destinatários" #. module: mail #: model:ir.model,name:mail.model_res_partner view:mail.message:0 @@ -140,7 +140,7 @@ msgstr "Assunto" #: code:addons/mail/wizard/mail_compose_message.py:152 #, python-format msgid "On %(date)s, " -msgstr "" +msgstr "Em %(date)s, " #. module: mail #: field:mail.compose.message,email_from:0 field:mail.message,email_from:0 @@ -151,32 +151,32 @@ msgstr "De" #. module: mail #: view:mail.message:0 msgid "Email message" -msgstr "" +msgstr "Mensagem de Email" #. module: mail #: view:mail.compose.message:0 msgid "Send" -msgstr "" +msgstr "Enviar" #. module: mail #: view:mail.message:0 msgid "Failed" -msgstr "" +msgstr "Falhou" #. module: mail #: view:mail.message:0 field:mail.message,state:0 msgid "State" -msgstr "" +msgstr "Situação" #. module: mail #: view:mail.message:0 msgid "Reply" -msgstr "" +msgstr "Responder" #. module: mail #: view:mail.message:0 selection:mail.message,state:0 msgid "Sent" -msgstr "" +msgstr "Enviado" #. module: mail #: help:mail.compose.message,subtype:0 help:mail.message,subtype:0 @@ -185,11 +185,13 @@ msgid "" "Type of message, usually 'html' or 'plain', used to select plaintext or rich " "text contents accordingly" msgstr "" +"Tipo de mensagem, geralmente 'html' ou 'texto', usado para selecionar texto " +"puro ou html" #. module: mail #: view:mail.message:0 msgid "Recipients" -msgstr "" +msgstr "Destinatários" #. module: mail #: model:ir.model,name:mail.model_mail_compose_message @@ -200,18 +202,18 @@ msgstr "" #: field:mail.compose.message,res_id:0 field:mail.message,res_id:0 #: field:mail.message.common,res_id:0 msgid "Related Document ID" -msgstr "" +msgstr "ID do Documento Relacionado" #. module: mail #: view:mail.message:0 msgid "Advanced" -msgstr "" +msgstr "Avançado" #. module: mail #: code:addons/mail/wizard/mail_compose_message.py:157 #, python-format msgid "Re:" -msgstr "" +msgstr "Re:" #. module: mail #: field:mail.compose.message,model:0 field:mail.message,model:0 @@ -232,7 +234,7 @@ msgstr "Pesquisar Email" #. module: mail #: help:mail.message,original:0 msgid "Original version of the message, as it was sent on the network" -msgstr "" +msgstr "Versão original da mensagem, como foi enviada pela rede" #. module: mail #: view:mail.message:0 @@ -242,27 +244,27 @@ msgstr "Nome do Parceiro" #. module: mail #: view:mail.message:0 msgid "Retry" -msgstr "" +msgstr "Tentar Novamente" #. module: mail #: view:mail.message:0 selection:mail.message,state:0 msgid "Outgoing" -msgstr "" +msgstr "Enviando" #. module: mail #: view:mail.message:0 msgid "Send Now" -msgstr "" +msgstr "Enviar agora" #. module: mail #: field:mail.message,partner_id:0 msgid "Related partner" -msgstr "" +msgstr "Parceiro relacionado" #. module: mail #: view:mail.message:0 msgid "User" -msgstr "" +msgstr "Usuário" #. module: mail #: field:mail.compose.message,date:0 field:mail.message,date:0 @@ -273,13 +275,13 @@ msgstr "Data" #. module: mail #: view:mail.message:0 msgid "Extended Filters..." -msgstr "" +msgstr "Filtros Extendidos..." #. module: mail #: code:addons/mail/wizard/mail_compose_message.py:153 #, python-format msgid "%(sender_name)s wrote:" -msgstr "" +msgstr "%(sender_name)s escreveu:" #. module: mail #: field:mail.compose.message,body_html:0 field:mail.message,body_html:0 @@ -290,7 +292,7 @@ msgstr "" #. module: mail #: field:mail.message,original:0 msgid "Original" -msgstr "" +msgstr "Original" #. module: mail #: code:addons/mail/mail_thread.py:247 view:res.partner:0 @@ -302,7 +304,7 @@ msgstr "Histórico" #: field:mail.compose.message,message_id:0 field:mail.message,message_id:0 #: field:mail.message.common,message_id:0 msgid "Message-Id" -msgstr "" +msgstr "Cód da Mensagem" #. module: mail #: view:mail.compose.message:0 field:mail.compose.message,attachment_ids:0 @@ -326,6 +328,7 @@ msgstr " em " #: help:mail.message,auto_delete:0 msgid "Permanently delete this email after sending it, to save space" msgstr "" +"Excluir permanentemente este email depois do envio para economizar espaço" #. module: mail #: field:mail.compose.message,references:0 field:mail.message,references:0 @@ -341,18 +344,18 @@ msgstr "Mostrar o Texto" #. module: mail #: view:mail.compose.message:0 view:mail.message:0 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #. module: mail #: view:mail.message:0 msgid "Open" -msgstr "" +msgstr "Abrir" #. module: mail #: code:addons/mail/mail_thread.py:434 #, python-format msgid "[OpenERP-Forward-Failed] %s" -msgstr "" +msgstr "[OpenERP-Forward-Failed] %s" #. module: mail #: field:mail.message,user_id:0 @@ -366,11 +369,13 @@ msgid "" "Full message headers, e.g. SMTP session headers (usually available on " "inbound messages only)" msgstr "" +"Cabeçalho completo da mensagem, Ex. SMTP session headers (geralmente " +"disponível somente para mensagens recebidas)" #. module: mail #: view:mail.message:0 msgid "Creation Month" -msgstr "" +msgstr "Mês de criação" #. module: mail #: field:mail.compose.message,email_to:0 field:mail.message,email_to:0 @@ -387,7 +392,7 @@ msgstr "Detalhes" #: model:ir.actions.act_window,name:mail.action_view_mailgate_thread #: view:mail.thread:0 msgid "Email Threads" -msgstr "" +msgstr "Tópicos de Email" #. module: mail #: help:mail.compose.message,email_from:0 help:mail.message,email_from:0 @@ -396,28 +401,30 @@ msgid "" "Message sender, taken from user preferences. If empty, this is not a mail " "but a message." msgstr "" +"Remetente da mensagem, anotado das preferências do usuário, Se estiver vazio " +"não é um email mas uma mensagem" #. module: mail #: view:mail.message:0 msgid "Body (Plain)" -msgstr "" +msgstr "Corpo (Simples)" #. module: mail #: code:addons/mail/wizard/mail_compose_message.py:153 #, python-format msgid "You" -msgstr "" +msgstr "Você" #. module: mail #: help:mail.compose.message,message_id:0 help:mail.message,message_id:0 #: help:mail.message.common,message_id:0 msgid "Message unique identifier" -msgstr "" +msgstr "Identificador da mensagem" #. module: mail #: view:mail.message:0 msgid "Body (Rich)" -msgstr "" +msgstr "Corpo (Rich)" #. module: mail #: code:addons/mail/mail_message.py:155 @@ -427,6 +434,9 @@ msgid "" " Subject: %s \n" "\t" msgstr "" +"%s escreveu em %s: \n" +" Assunto: %s \n" +"\t" #. module: mail #: model:ir.actions.act_window,name:mail.act_res_partner_emails @@ -456,53 +466,75 @@ msgstr "Cópia Oculta" #. module: mail #: model:ir.model,name:mail.model_mail_message_common msgid "mail.message.common" -msgstr "" +msgstr "mail.message.common" #. module: mail #: help:mail.compose.message,references:0 help:mail.message,references:0 #: help:mail.message.common,references:0 msgid "Message references, such as identifiers of previous messages" msgstr "" +"Referências da mensagem, como identificadores de mensagens anteriores" #. module: mail #: constraint:res.partner:0 msgid "Error ! You cannot create recursive associated members." -msgstr "" +msgstr "Erro! Você não pode criar recursivamente a membros associados." #. module: mail #: help:mail.compose.message,email_cc:0 help:mail.message,email_cc:0 #: help:mail.message.common,email_cc:0 msgid "Carbon copy message recipients" -msgstr "" +msgstr "Cópia oculta da mensagem para os destinatários" #. module: mail #: selection:mail.message,state:0 msgid "Delivery Failed" -msgstr "" +msgstr "Falha no envio" #. module: mail #: model:ir.model,name:mail.model_mail_message msgid "Email Message" -msgstr "" +msgstr "Mensagem de Email" #. module: mail #: model:ir.model,name:mail.model_mail_thread view:mail.thread:0 msgid "Email Thread" -msgstr "" +msgstr "Tópico do Email" #. module: mail #: field:mail.compose.message,filter_id:0 msgid "Filters" -msgstr "" +msgstr "Filtros" #. module: mail #: code:addons/mail/mail_thread.py:220 #, python-format msgid "Mail attachment" -msgstr "" +msgstr "Anexos" #. module: mail #: help:mail.compose.message,reply_to:0 help:mail.message,reply_to:0 #: help:mail.message.common,reply_to:0 msgid "Preferred response address for the message" -msgstr "" +msgstr "Endereço de resposta preferido" + +#~ msgid "Message type" +#~ msgstr "Tipo de Mensagem" + +#~ msgid "Text contents" +#~ msgstr "Conteúdo" + +#~ msgid "Related Document model" +#~ msgstr "Modelo de Documento relacionado" + +#~ msgid "E-mail composition wizard" +#~ msgstr "Assistente de composição de E-mail." + +#~ msgid "Rich-text contents" +#~ msgstr "Conteúdo Rich-text" + +#~ msgid "Related user" +#~ msgstr "Usuário relacionado" + +#~ msgid "Message headers" +#~ msgstr "Cabeçalho da mensagem" diff --git a/addons/mail/i18n/ro.po b/addons/mail/i18n/ro.po index c2bb6d4aafe..1c2791c2fd0 100644 --- a/addons/mail/i18n/ro.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/ru.po b/addons/mail/i18n/ru.po index 49b9490d039..04c4d59738b 100644 --- a/addons/mail/i18n/ru.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/sl.po b/addons/mail/i18n/sl.po index b88fc2c7062..3c4e377510c 100644 --- a/addons/mail/i18n/sl.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/sr@latin.po b/addons/mail/i18n/sr@latin.po index b2612459f9d..94ccc4386f3 100644 --- a/addons/mail/i18n/sr@latin.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/sv.po b/addons/mail/i18n/sv.po index 6b612090875..64231a4d4e4 100644 --- a/addons/mail/i18n/sv.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/tr.po b/addons/mail/i18n/tr.po index 8b03d2543a3..c8bc19f9a35 100644 --- a/addons/mail/i18n/tr.po +++ b/addons/mail/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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 diff --git a/addons/mail/i18n/zh_CN.po b/addons/mail/i18n/zh_CN.po index 1122c6c6b45..1fa1da248bc 100644 --- a/addons/mail/i18n/zh_CN.po +++ b/addons/mail/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-02-09 00:36+0000\n" -"PO-Revision-Date: 2012-05-10 18:19+0000\n" -"Last-Translator: Jeff Wang \n" +"PO-Revision-Date: 2012-08-19 21:16+0000\n" +"Last-Translator: Heling Yao \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: 2012-08-07 05:36+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-28 06:40+0000\n" +"X-Generator: Launchpad (build 15864)\n" #. module: mail #: field:mail.compose.message,subtype:0 field:mail.message,subtype:0 @@ -194,7 +194,7 @@ msgstr "收件人" #. module: mail #: model:ir.model,name:mail.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "电子邮件撰写向导" #. module: mail #: field:mail.compose.message,res_id:0 field:mail.message,res_id:0 diff --git a/addons/mail/ir_needaction.py b/addons/mail/ir_needaction.py deleted file mode 100644 index 8193ac4f385..00000000000 --- a/addons/mail/ir_needaction.py +++ /dev/null @@ -1,46 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2012-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 osv import osv - -class ir_needaction_mixin(osv.Model): - """ Update of ir.needaction_mixin class - - override the get_needaction_user_ids method to define the default - mail gateway need_action: when the object is unread, the object - responsible has an action to perform. - """ - _name = 'ir.needaction_mixin' - _inherit = ['ir.needaction_mixin'] - - def get_needaction_user_ids(self, cr, uid, ids, context=None): - """ Returns the user_ids that have to perform an action. It the - document mail state is unread (False), return object.user_id.id - as need_action uid. - :return: dict { record_id: [user_ids], } - """ - result = super(ir_needaction_mixin, self).get_needaction_user_ids(cr, uid, ids, context=context) - for obj in self.browse(cr, uid, ids, context=context): - if obj.message_state == False and obj.user_id: - result[obj.id].append(obj.user_id.id) - return result - - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mail/mail_alias.py b/addons/mail/mail_alias.py index 82b20f39480..27eb29051b9 100644 --- a/addons/mail/mail_alias.py +++ b/addons/mail/mail_alias.py @@ -19,11 +19,16 @@ # ############################################################################## +import logging import re import unicodedata from openerp.osv import fields, osv from openerp.tools import ustr +from openerp.modules.registry import RegistryManager +from openerp import SUPERUSER_ID + +_logger = logging.getLogger(__name__) # Inspired by http://stackoverflow.com/questions/517923 def remove_accents(input_str): @@ -87,9 +92,8 @@ class mail_alias(osv.Model): _defaults = { 'alias_defaults': '{}', 'alias_user_id': lambda self,cr,uid,context: uid, - # looks better when creating new aliases - even if the field is informative only - 'alias_domain': lambda self,cr,uid,context: self._get_alias_domain(cr,1,[1],None,None)[1] + 'alias_domain': lambda self,cr,uid,context: self._get_alias_domain(cr, SUPERUSER_ID,[1],None,None)[1] } _sql_constraints = [ @@ -129,6 +133,56 @@ class mail_alias(osv.Model): sequence = (sequence + 1) if sequence else 2 return new_name + def migrate_to_alias(self, cr, child_model_name, child_table_name, child_model_auto_init_fct, + alias_id_column, alias_key, alias_prefix = '', alias_force_key = '', alias_defaults = {}, context=None): + """ Installation hook to create aliases for all users and avoid constraint errors. + + :param child_model_name: model name of the child class (i.e. res.users) + :param child_table_name: table name of the child class (i.e. res_users) + :param child_model_auto_init_fct: pointer to the _auto_init function + (i.e. super(res_users,self)._auto_init(cr, context=context)) + :param alias_id_column: alias_id column (i.e. self._columns['alias_id']) + :param alias_key: name of the column used for the unique name (i.e. 'login') + :param alias_prefix: prefix for the unique name (i.e. 'jobs' + ...) + :param alias_force_key': name of the column for force_thread_id; + if empty string, not taken into account + :param alias_defaults: dict, keys = mail.alias columns, values = child + model column name used for default values (i.e. {'job_id': 'id'}) + """ + + # disable the unique alias_id not null constraint, to avoid spurious warning during + # super.auto_init. We'll reinstall it afterwards. + alias_id_column.required = False + + # call _auto_init + child_model_auto_init_fct(cr, context=context) + + registry = RegistryManager.get(cr.dbname) + mail_alias = registry.get('mail.alias') + child_class_model = registry.get(child_model_name) + no_alias_ids = child_class_model.search(cr, SUPERUSER_ID, [('alias_id', '=', False)], context={'active_test':False}) + # Use read() not browse(), to avoid prefetching uninitialized inherited fields + for obj_data in child_class_model.read(cr, SUPERUSER_ID, no_alias_ids, [alias_key]): + alias_vals = {'alias_name': '%s%s' % (alias_prefix, obj_data[alias_key]) } + if alias_force_key: + alias_vals['alias_force_thread_id'] = obj_data[alias_force_key] + alias_vals['alias_defaults'] = dict( (k, obj_data[v]) for k, v in alias_defaults.iteritems()) + alias_id = mail_alias.create_unique_alias(cr, SUPERUSER_ID, alias_vals, model_name=child_model_name) + child_class_model.write(cr, SUPERUSER_ID, obj_data['id'], {'alias_id': alias_id}) + _logger.info('Mail alias created for %s %s (uid %s)', child_model_name, obj_data[alias_key], obj_data['id']) + + # Finally attempt to reinstate the missing constraint + try: + cr.execute('ALTER TABLE %s ALTER COLUMN alias_id SET NOT NULL' % (child_table_name)) + except Exception: + _logger.warning("Table '%s': unable to set a NOT NULL constraint on column '%s' !\n"\ + "If you want to have it, you should update the records and execute manually:\n"\ + "ALTER TABLE %s ALTER COLUMN %s SET NOT NULL", + child_table_name, 'alias_id', child_table_name, 'alias_id') + + # set back the unique alias_id constraint + alias_id_column.required = True + def create_unique_alias(self, cr, uid, vals, model_name=None, context=None): """Creates an email.alias record according to the values provided in ``vals``, with 2 alterations: the ``alias_name`` value may be suffixed in order to diff --git a/addons/mail/mail_followers.py b/addons/mail/mail_followers.py index fcdc78d5f0a..2aba685c4fa 100644 --- a/addons/mail/mail_followers.py +++ b/addons/mail/mail_followers.py @@ -21,43 +21,113 @@ from osv import osv from osv import fields +import tools class mail_followers(osv.Model): """ mail_followers holds the data related to the follow mechanism inside - OpenERP. Users can choose to follow documents (records) of any kind that - inherits from mail.thread. Following documents allow to receive - notifications for new messages. - A subscription is characterized by: - :param: res_model: model of the followed objects - :param: res_id: ID of resource (may be 0 for every objects) - :param: user_id: user_id of the follower + OpenERP. Partners can choose to follow documents (records) of any kind + that inherits from mail.thread. Following documents allow to receive + notifications for new messages. + A subscription is characterized by: + :param: res_model: model of the followed objects + :param: res_id: ID of resource (may be 0 for every objects) """ _name = 'mail.followers' - _rec_name = 'id' + _rec_name = 'partner_id' _log_access = False - _order = 'res_model asc' - _description = 'Mail Document Followers' + _description = 'Document Followers' _columns = { 'res_model': fields.char('Related Document Model', size=128, required=True, select=1, help='Model of the followed resource'), 'res_id': fields.integer('Related Document ID', select=1, help='Id of the followed resource'), - 'user_id': fields.many2one('res.users', string='Related User', + 'partner_id': fields.many2one('res.partner', string='Related Partner', ondelete='cascade', required=True, select=1), } + class mail_notification(osv.Model): - """ mail_notification is a relational table modeling messages pushed to users. - """ + """ Class holding notifications pushed to partners. Followers and partners + added in 'contacts to notify' receive notifications. """ _name = 'mail.notification' - _rec_name = 'id' + _rec_name = 'partner_id' _log_access = False - _order = 'message_id desc' - _description = 'Mail notification' + _description = 'Notifications' + _columns = { - 'user_id': fields.many2one('res.users', string='User', - ondelete='cascade', required=True, select=1), + 'partner_id': fields.many2one('res.partner', string='Contact', + ondelete='cascade', required=True), + 'read': fields.boolean('Read'), 'message_id': fields.many2one('mail.message', string='Message', - ondelete='cascade', required=True, select=1), + ondelete='cascade', required=True), } + + _defaults = { + 'read': False, + } + + def init(self, cr): + cr.execute('SELECT indexname FROM pg_indexes WHERE indexname = %s', ('mail_notification_partner_id_read_message_id',)) + if not cr.fetchone(): + cr.execute('CREATE INDEX mail_notification_partner_id_read_message_id ON mail_notification (partner_id, read, message_id)') + + def create(self, cr, uid, vals, context=None): + """ Override of create to check that we can not create a notification + for a message the user can not read. """ + if self.pool.get('mail.message').check_access_rights(cr, uid, 'read'): + return super(mail_notification, self).create(cr, uid, vals, context=context) + return False + + def set_message_read(self, cr, uid, msg_id, context=None): + partner_id = self.pool.get('res.users').browse(cr, uid, uid, context=context).partner_id.id + notif_ids = self.search(cr, uid, [('partner_id', '=', partner_id), ('message_id', '=', msg_id)], context=context) + return self.write(cr, uid, notif_ids, {'read': True}, context=context) + + def notify(self, cr, uid, partner_ids, msg_id, context=None): + """ Send by email the notification depending on the user preferences """ + context = context or {} + # mail_noemail (do not send email) or no partner_ids: do not send, return + if context.get('mail_noemail') or not partner_ids: + return True + + mail_mail = self.pool.get('mail.mail') + msg = self.pool.get('mail.message').browse(cr, uid, msg_id, context=context) + + # add signature + body_html = msg.body + signature = msg.author_id and msg.author_id.user_ids[0].signature or '' + if signature: + body_html = tools.append_content_to_html(body_html, signature) + + mail_values = { + 'mail_message_id': msg.id, + 'email_to': [], + 'auto_delete': True, + 'body_html': body_html, + 'state': 'outgoing', + } + + for partner in self.pool.get('res.partner').browse(cr, uid, partner_ids, context=context): + # Do not send an email to the writer + if partner.user_ids and partner.user_ids[0].id == uid: + continue + # Do not send to partners without email address defined + if not partner.email: + continue + # Partner does not want to receive any emails + if partner.notification_email_send == 'none': + continue + # Partner wants to receive only emails and comments + if partner.notification_email_send == 'comment' and msg.type not in ('email', 'comment'): + continue + # Partner wants to receive only emails + if partner.notification_email_send == 'email' and msg.type != 'email': + continue + if partner.email not in mail_values['email_to']: + mail_values['email_to'].append(partner.email) + if mail_values['email_to']: + mail_values['email_to'] = ', '.join(mail_values['email_to']) + email_notif_id = mail_mail.create(cr, uid, mail_values, context=context) + mail_mail.send(cr, uid, [email_notif_id], context=context) + return True diff --git a/addons/mail/mail_followers_view.xml b/addons/mail/mail_followers_view.xml index 62e93430675..36f08b3814a 100644 --- a/addons/mail/mail_followers_view.xml +++ b/addons/mail/mail_followers_view.xml @@ -6,13 +6,12 @@ mail.followers.tree mail.followers - tree 10 - + @@ -24,7 +23,7 @@ 10 - + @@ -38,7 +37,7 @@ - Pushed notif + Notifications mail.notification form tree,form diff --git a/addons/mail/mail_group.py b/addons/mail/mail_group.py index 6a14fef83aa..fdfeafd4afe 100644 --- a/addons/mail/mail_group.py +++ b/addons/mail/mail_group.py @@ -28,13 +28,8 @@ from osv import fields from tools.translate import _ class mail_group(osv.Model): - """ - A mail_group is a collection of users sharing messages in a discussion - group. Group users are users that follow the mail group, using the - subscription/follow mechanism of OpenSocial. A mail group has nothing - in common with res.users.group. - """ - + """ A mail_group is a collection of users sharing messages in a discussion + group. The group mechanics are based on the followers. """ _description = 'Discussion group' _name = 'mail.group' _inherit = ['mail.thread'] @@ -45,31 +40,16 @@ class mail_group(osv.Model): for obj in self.browse(cr, uid, ids, context=context): result[obj.id] = tools.image_get_resized_images(obj.image) return result - + def _set_image(self, cr, uid, id, name, value, args, context=None): return self.write(cr, uid, [id], {'image': tools.image_resize_image_big(value)}, context=context) - - def _get_last_month_msg_nbr(self, cr, uid, ids, name, args, context=None): - result = {} - for id in ids: - lower_date = (DT.datetime.now() - DT.timedelta(days=30)).strftime(tools.DEFAULT_SERVER_DATE_FORMAT) - result[id] = self.message_search(cr, uid, [id], limit=None, domain=[('date', '>=', lower_date)], count=True, context=context) - return result - - def _get_default_image(self, cr, uid, context=None): - image_path = openerp.modules.get_module_resource('mail', 'static/src/img', 'groupdefault.png') - return tools.image_resize_image_big(open(image_path, 'rb').read().encode('base64')) - + _columns = { 'description': fields.text('Description'), 'menu_id': fields.many2one('ir.ui.menu', string='Related Menu', required=True, ondelete="cascade"), - 'responsible_id': fields.many2one('res.users', string='Responsible', - ondelete='set null', required=True, select=1, - help="Responsible of the group that has all rights on the record."), - 'public': fields.selection([('public', 'Public'), ('private', 'Private'), ('groups', 'Selected Group Only')], - string='Privacy', required=True, - help='This group is visible by non members. '\ - 'Invisible groups can add members through the invite button.'), + 'public': fields.selection([('public','Public'),('private','Private'),('groups','Selected Group Only')], 'Privacy', required=True, + help='This group is visible by non members. \ + Invisible groups can add members through the invite button.'), 'group_public_id': fields.many2one('res.groups', string='Authorized Group'), 'group_ids': fields.many2many('res.groups', rel='mail_group_res_group_rel', id1='mail_group_id', id2='groups_id', string='Auto Subscription', @@ -79,7 +59,7 @@ class mail_group(osv.Model): 'image': fields.binary("Photo", help="This field holds the image used as photo for the "\ "user. The image is base64 encoded, and PIL-supported. "\ - "It is limited to a 12024x1024 px image."), + "It is limited to a 1024x1024 px image."), 'image_medium': fields.function(_get_image, fnct_inv=_set_image, string="Medium-sized photo", type="binary", multi="_get_image", store = { @@ -96,17 +76,19 @@ class mail_group(osv.Model): help="Small-sized photo of the group. It is automatically "\ "resized as a 50x50px image, with aspect ratio preserved. "\ "Use this field anywhere a small image is required."), - 'last_month_msg_nbr': fields.function(_get_last_month_msg_nbr, type='integer', - string='Messages count for last month'), - 'alias_id': fields.many2one('mail.alias', 'Alias', ondelete="cascade", - help="The email address associated with this group. New emails received will automatically " - "create new topics."), + 'alias_id': fields.many2one('mail.alias', 'Alias', ondelete="cascade", required=True, + help="The email address associated with this group. New emails received will automatically " + "create new topics."), } def _get_default_employee_group(self, cr, uid, context=None): ref = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'base', 'group_user') return ref and ref[1] or False + def _get_default_image(self, cr, uid, context=None): + image_path = openerp.modules.get_module_resource('mail', 'static/src/img', 'groupdefault.png') + return tools.image_resize_image_big(open(image_path, 'rb').read().encode('base64')) + def _get_menu_parent(self, cr, uid, context=None): ref = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'mail', 'mail_group_root') return ref and ref[1] or False @@ -114,29 +96,23 @@ class mail_group(osv.Model): _defaults = { 'public': 'groups', 'group_public_id': _get_default_employee_group, - 'responsible_id': (lambda s, cr, uid, ctx: uid), 'image': _get_default_image, 'parent_id': _get_menu_parent, - 'alias_domain': False, # always hide alias during creation + 'alias_domain': False, # always hide alias during creation } - def _subscribe_user_with_group_m2m_command(self, cr, uid, ids, group_ids_command, context=None): - # form: {'group_ids': [(3, 10), (3, 3), (4, 10), (4, 3)]} or {'group_ids': [(6, 0, [ids]} - user_group_ids = [command[1] for command in group_ids_command if command[0] == 4] - user_group_ids += [id for command in group_ids_command if command[0] == 6 for id in command[2]] - # retrieve the user member of those groups - user_ids = [] - res_groups_obj = self.pool.get('res.groups') - for group in res_groups_obj.browse(cr, uid, user_group_ids, context=context): - user_ids += [user.id for user in group.users] - # subscribe the users - return self.message_subscribe(cr, uid, ids, user_ids, context=context) + def _subscribe_users(self, cr, uid, ids, context=None): + for mail_group in self.browse(cr, uid, ids, context=context): + partner_ids = [] + for group in mail_group.group_ids: + partner_ids += [user.partner_id.id for user in group.users] + self.message_subscribe(cr, uid, ids, partner_ids, context=context) def create(self, cr, uid, vals, context=None): mail_alias = self.pool.get('mail.alias') if not vals.get('alias_id'): vals.pop('alias_name', None) # prevent errors during copy() - alias_id = mail_alias.create_unique_alias(cr, uid, + alias_id = mail_alias.create_unique_alias(cr, uid, # Using '+' allows using subaddressing for those who don't # have a catchall domain setup. {'alias_name': "group+"+vals['name']}, @@ -148,23 +124,22 @@ class mail_group(osv.Model): # Create client action for this group and link the menu to it ref = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'mail', 'action_mail_group_feeds') if ref: - search_ref = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'mail', 'view_message_search_wall') + search_ref = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'mail', 'view_message_search') params = { 'search_view_id': search_ref and search_ref[1] or False, - 'domain': [('model','=','mail.group'),('res_id','=',mail_group_id)], - 'res_model': 'mail.group', - 'res_id': mail_group_id, - 'thread_level': 2 + 'domain': [('model','=','mail.group'), ('res_id','=',mail_group_id)], + 'context': {'default_model': 'mail.group', 'default_res_id': mail_group_id}, + 'res_model': 'mail.message', + 'thread_level': 1, } cobj = self.pool.get('ir.actions.client') newref = cobj.copy(cr, uid, ref[1], default={'params': str(params), 'name': vals['name']}, context=context) self.write(cr, uid, [mail_group_id], {'action': 'ir.actions.client,'+str(newref), 'mail_group_id': mail_group_id}, context=context) mail_alias.write(cr, uid, [vals['alias_id']], {"alias_force_thread_id": mail_group_id}, context) - - if vals.get('group_ids'): - self._subscribe_user_with_group_m2m_command(cr, uid, [mail_group_id], vals.get('group_ids'), context=context) + if vals.get('group_ids'): + self._subscribe_users(cr, uid, [mail_group_id], context=context) return mail_group_id def unlink(self, cr, uid, ids, context=None): @@ -176,21 +151,17 @@ class mail_group(osv.Model): return res def write(self, cr, uid, ids, vals, context=None): + result = super(mail_group, self).write(cr, uid, ids, vals, context=context) if vals.get('group_ids'): - self._subscribe_user_with_group_m2m_command(cr, uid, ids, vals.get('group_ids'), context=context) - return super(mail_group, self).write(cr, uid, ids, vals, context=context) + self._subscribe_users(cr, uid, ids, vals.get('group_ids'), context=context) + return result - def action_group_join(self, cr, uid, ids, context=None): - return self.message_subscribe(cr, uid, ids, context=context) + def action_follow(self, cr, uid, ids, context=None): + """ Wrapper because message_subscribe_users take a user_ids=None + that receive the context without the wrapper. """ + return self.message_subscribe_users(cr, uid, ids, context=context) - def action_group_leave(self, cr, uid, ids, context=None): - return self.message_unsubscribe(cr, uid, ids, context=context) - - # ---------------------------------------- - # OpenChatter methods and notifications - # ---------------------------------------- - - def message_get_monitored_follower_fields(self, cr, uid, ids, context=None): - """ Add 'responsible_id' to the monitored fields """ - res = super(mail_group, self).message_get_monitored_follower_fields(cr, uid, ids, context=context) - return res + ['responsible_id'] + def action_unfollow(self, cr, uid, ids, context=None): + """ Wrapper because message_unsubscribe_users take a user_ids=None + that receive the context without the wrapper. """ + return self.message_unsubscribe_users(cr, uid, ids, context=context) diff --git a/addons/mail/mail_group_menu.py b/addons/mail/mail_group_menu.py index 8625285d640..25b85bb7b22 100644 --- a/addons/mail/mail_group_menu.py +++ b/addons/mail/mail_group_menu.py @@ -40,11 +40,12 @@ class ir_ui_menu(osv.osv): """ Override to take off menu entries (mail.group) the user is not following. """ ids = super(ir_ui_menu, self).search(cr, uid, args, offset=0, limit=None, order=order, context=context, count=False) + partner_id = self.pool.get('res.users').browse(cr, uid, uid, context=context).partner_id.id follower_obj = self.pool.get('mail.followers') for menu in self.browse(cr, uid, ids, context=context): if menu.mail_group_id: sub_ids = follower_obj.search(cr, uid, [ - ('user_id', '=', uid), ('res_model', '=', 'mail.group'), + ('partner_id', '=', partner_id), ('res_model', '=', 'mail.group'), ('res_id', '=', menu.mail_group_id.id) ], context=context) if not sub_ids: diff --git a/addons/mail/mail_group_view.xml b/addons/mail/mail_group_view.xml index a71ec972326..31beba80ecc 100644 --- a/addons/mail/mail_group_view.xml +++ b/addons/mail/mail_group_view.xml @@ -1,10 +1,11 @@ + Discussion Group mail.wall - + mail.message @@ -14,8 +15,9 @@ - + +
@@ -23,20 +25,16 @@
-
+
- +
-

+

@@ -58,11 +56,11 @@
- +
-
+

@@ -80,16 +78,12 @@ /> - - -
- +
@@ -103,7 +97,6 @@ - @@ -116,14 +109,13 @@ - - Groups + Join a group mail.group form kanban,tree,form @@ -132,6 +124,6 @@ - + diff --git a/addons/mail/mail_mail.py b/addons/mail/mail_mail.py new file mode 100644 index 00000000000..7b593c5b998 --- /dev/null +++ b/addons/mail/mail_mail.py @@ -0,0 +1,204 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2010-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 ast +import base64 +import logging +import tools + +from osv import osv +from osv import fields +from tools.translate import _ + +_logger = logging.getLogger(__name__) + +class mail_mail(osv.Model): + """ Model holding RFC2822 email messages to send. This model also provides + facilities to queue and send new email messages. """ + _name = 'mail.mail' + _description = 'Outgoing Mails' + _inherits = {'mail.message': 'mail_message_id'} + _order = 'id desc' + + _columns = { + 'mail_message_id': fields.many2one('mail.message', 'Message', required=True, ondelete='cascade'), + 'mail_server_id': fields.many2one('ir.mail_server', 'Outgoing mail server', readonly=1), + 'state': fields.selection([ + ('outgoing', 'Outgoing'), + ('sent', 'Sent'), + ('received', 'Received'), + ('exception', 'Delivery Failed'), + ('cancel', 'Cancelled'), + ], 'Status', readonly=True), + 'auto_delete': fields.boolean('Auto Delete', + help="Permanently delete this email after sending it, to save space"), + 'references': fields.text('References', help='Message references, such as identifiers of previous messages', readonly=1), + 'email_from': fields.char('From', help='Message sender, taken from user preferences.'), + 'email_to': fields.text('To', help='Message recipients'), + 'email_cc': fields.char('Cc', help='Carbon copy message recipients'), + 'reply_to': fields.char('Reply-To', help='Preferred response address for the message'), + 'body_html': fields.text('Rich-text Contents', help="Rich-text/HTML message"), + + # Auto-detected based on create() - if 'mail_message_id' was passed then this mail is a notification + # and during unlink() we will cascade delete the parent and its attachments + 'notification': fields.boolean('Is Notification') + } + + def _get_default_from(self, cr, uid, context=None): + cur = self.pool.get('res.users').browse(cr, uid, uid, context=context) + if not cur.alias_domain: + raise osv.except_osv(_('Invalid Action!'), _('Unable to send email, set an alias domain in your server settings.')) + return cur.alias_name + '@' + cur.alias_domain + + _defaults = { + 'state': 'outgoing', + 'email_from': lambda self, cr, uid, ctx=None: self._get_default_from(cr, uid, ctx), + } + + def create(self, cr, uid, values, context=None): + if 'notification' not in values and values.get('mail_message_id'): + values['notification'] = True + return super(mail_mail,self).create(cr, uid, values, context=context) + + def unlink(self, cr, uid, ids, context=None): + # cascade-delete the parent message for all mails that are not created for a notification + ids_to_cascade = self.search(cr, uid, [('notification','=',False),('id','in',ids)]) + parent_msg_ids = [m.mail_message_id.id for m in self.browse(cr, uid, ids_to_cascade, context=context)] + res = super(mail_mail,self).unlink(cr, uid, ids, context=context) + self.pool.get('mail.message').unlink(cr, uid, parent_msg_ids, context=context) + return res + + def mark_outgoing(self, cr, uid, ids, context=None): + return self.write(cr, uid, ids, {'state':'outgoing'}, context=context) + + def cancel(self, cr, uid, ids, context=None): + return self.write(cr, uid, ids, {'state':'cancel'}, context=context) + + def process_email_queue(self, cr, uid, ids=None, context=None): + """Send immediately queued messages, committing after each + message is sent - this is not transactional and should + not be called during another transaction! + + :param list ids: optional list of emails ids to send. If passed + no search is performed, and these ids are used + instead. + :param dict context: if a 'filters' key is present in context, + this value will be used as an additional + filter to further restrict the outgoing + messages to send (by default all 'outgoing' + messages are sent). + """ + if context is None: + context = {} + if not ids: + filters = ['&', ('state', '=', 'outgoing'), ('type', '=', 'email')] + if 'filters' in context: + filters.extend(context['filters']) + ids = self.search(cr, uid, filters, context=context) + res = None + try: + # Force auto-commit - this is meant to be called by + # the scheduler, and we can't allow rolling back the status + # of previously sent emails! + res = self.send(cr, uid, ids, auto_commit=True, context=context) + except Exception: + _logger.exception("Failed processing mail queue") + return res + + def _postprocess_sent_message(self, cr, uid, mail, context=None): + """Perform any post-processing necessary after sending ``mail`` + successfully, including deleting it completely along with its + attachment if the ``auto_delete`` flag of the mail was set. + Overridden by subclasses for extra post-processing behaviors. + + :param browse_record mail: the mail that was just sent + :return: True + """ + if mail.auto_delete: + mail.unlink() + return True + + def _send_get_mail_subject(self, cr, uid, mail, force=False, context=None): + """ if void and related document: ' posted on ' + :param mail: mail.mail browse_record """ + if force or (not mail.subject and mail.model and mail.res_id): + return '%s posted on %s' % (mail.author_id.name, mail.record_name) + return mail.subject + + def send(self, cr, uid, ids, auto_commit=False, context=None): + """ Sends the selected emails immediately, ignoring their current + state (mails that have already been sent should not be passed + unless they should actually be re-sent). + Emails successfully delivered are marked as 'sent', and those + that fail to be deliver are marked as 'exception', and the + corresponding error mail is output in the server logs. + + :param bool auto_commit: whether to force a commit of the mail status + after sending each mail (meant only for scheduler processing); + should never be True during normal transactions (default: False) + :return: True + """ + ir_mail_server = self.pool.get('ir.mail_server') + for mail in self.browse(cr, uid, ids, context=context): + try: + body = mail.body_html + subject = self._send_get_mail_subject(cr, uid, mail, context=context) + + # handle attachments + attachments = [] + for attach in mail.attachment_ids: + attachments.append((attach.datas_fname, base64.b64decode(attach.datas))) + + # use only sanitized html and set its plaintexted version as alternative + body_alternative = tools.html2plaintext(body) + content_subtype_alternative = 'plain' + + # build an RFC2822 email.message.Message object and send it without queuing + msg = ir_mail_server.build_email( + email_from = mail.email_from, + email_to = tools.email_split(mail.email_to), + subject = subject, + body = body, + body_alternative = body_alternative, + email_cc = tools.email_split(mail.email_cc), + reply_to = mail.reply_to, + attachments = attachments, + message_id = mail.message_id, + references = mail.references, + object_id = mail.res_id and ('%s-%s' % (mail.res_id, mail.model)), + subtype = 'html', + subtype_alternative = content_subtype_alternative) + res = ir_mail_server.send_email(cr, uid, msg, + mail_server_id=mail.mail_server_id.id, context=context) + if res: + mail.write({'state':'sent', 'message_id': res}) + else: + mail.write({'state':'exception'}) + mail.refresh() + if mail.state == 'sent': + self._postprocess_sent_message(cr, uid, mail, context=context) + except Exception: + _logger.exception('failed sending mail.mail %s', mail.id) + mail.write({'state':'exception'}) + + if auto_commit == True: + cr.commit() + return True diff --git a/addons/mail/mail_mail_view.xml b/addons/mail/mail_mail_view.xml new file mode 100644 index 00000000000..72d41e33a84 --- /dev/null +++ b/addons/mail/mail_mail_view.xml @@ -0,0 +1,127 @@ + + + + + mail.mail.form + mail.mail + +
+ + + +
+
+ + + mail.mail.tree + mail.mail + + + + + + + + + + + + +
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -26,19 +27,9 @@
diff --git a/addons/email_template/__openerp__.py b/addons/email_template/__openerp__.py index 3ecf1db1aa0..aaf2f52289a 100644 --- a/addons/email_template/__openerp__.py +++ b/addons/email_template/__openerp__.py @@ -21,13 +21,13 @@ ############################################################################## { - "name" : "Email Templates", - "version" : "1.1", - "author" : "OpenERP,OpenLabs", - "website" : "http://openerp.com", - "category" : "Marketing", - "depends" : ['mail'], - "description": """ + 'name' : 'Email Templates', + 'version' : '1.1', + 'author' : 'OpenERP,OpenLabs', + 'website' : 'http://openerp.com', + 'category' : 'Marketing', + 'depends' : ['mail'], + 'description': """ Email Templating (simplified version of the original Power Email by Openlabs). ============================================================================== @@ -53,22 +53,19 @@ These email templates are also at the heart of the marketing campaign system (see the ``marketing_campaign`` application), if you need to automate larger campaigns on any OpenERP document. -Technical note: only the templating system of the original Power Email by -Openlabs was kept. + **Technical note:** only the templating system of the original Power Email by Openlabs was kept. """, - "data": [ + 'data': [ 'wizard/email_template_preview_view.xml', 'email_template_view.xml', 'res_partner_view.xml', 'wizard/mail_compose_message_view.xml', 'security/ir.model.access.csv' ], - "demo": [ - 'res_partner_demo.yml', - ], - "installable": True, - "auto_install": False, - "certificate" : "00817073628967384349", + 'demo': ['res_partner_demo.yml'], + 'installable': True, + 'auto_install': False, + 'certificate' : '00817073628967384349', 'images': ['images/1_email_account.jpeg','images/2_email_template.jpeg','images/3_emails.jpeg'], } diff --git a/addons/email_template/email_template.py b/addons/email_template/email_template.py index b43b7d19b85..4080e62f002 100644 --- a/addons/email_template/email_template.py +++ b/addons/email_template/email_template.py @@ -28,6 +28,8 @@ from osv import osv from osv import fields import tools from tools.translate import _ +from tools.html_sanitize import html_sanitize +from tools import append_content_to_html from urllib import quote as quote _logger = logging.getLogger(__name__) @@ -38,10 +40,8 @@ except ImportError: class email_template(osv.osv): "Templates for sending email" - _inherit = 'mail.message' _name = "email.template" _description = 'Email Templates' - _rec_name = 'name' # override mail.message's behavior def render_template(self, cr, uid, template, model, res_id, context=None): """Render the given template text, replace mako expressions ``${expr}`` @@ -99,66 +99,46 @@ class email_template(osv.osv): mod_name = False if model_id: mod_name = self.pool.get('ir.model').browse(cr, uid, model_id, context).model - return {'value':{'model': mod_name}} - - def name_get(self, cr, uid, ids, context=None): - """ Override name_get of mail.message: return directly the template - name, and not the generated name from mail.message.common.""" - return [(record.id, record.name) for record in self.browse(cr, uid, ids, context=context)] + return {'value': {'model': mod_name}} _columns = { - 'name': fields.char('Name', size=250), - 'model_id': fields.many2one('ir.model', 'Related document model'), - 'lang': fields.char('Language Selection', size=250, + 'name': fields.char('Name'), + 'model_id': fields.many2one('ir.model', 'Applies to', help="The kind of document with with this template can be used"), + 'model': fields.related('model_id', 'model', type='char', string='Related Document Model', + size=128, select=True, store=True, readonly=True), + 'lang': fields.char('Language', help="Optional translation language (ISO code) to select when sending out an email. " "If not set, the english version will be used. " "This should usually be a placeholder expression " "that provides the appropriate language code, e.g. " - "${object.partner_id.lang.code}."), + "${object.partner_id.lang.code}.", + placeholder="${object.partner_id.lang.code}"), 'user_signature': fields.boolean('Add Signature', help="If checked, the user's signature will be appended to the text version " "of the message"), - 'report_name': fields.char('Report Filename', size=200, translate=True, - help="Name to use for the generated report file (may contain placeholders)\n" - "The extension can be omitted and will then come from the report type."), - 'report_template':fields.many2one('ir.actions.report.xml', 'Optional report to print and attach'), - 'ref_ir_act_window':fields.many2one('ir.actions.act_window', 'Sidebar action', readonly=True, - help="Sidebar action to make this template available on records " - "of the related document model"), - 'ref_ir_value':fields.many2one('ir.values', 'Sidebar Button', readonly=True, - help="Sidebar button to open the sidebar action"), - 'track_campaign_item': fields.boolean('Resource Tracking', - help="Enable this is you wish to include a special tracking marker " - "in outgoing emails so you can identify replies and link " - "them back to the corresponding resource record. " - "This is useful for CRM leads for example"), - - # Overridden mail.message.common fields for technical reasons: - 'model': fields.related('model_id','model', type='char', string='Related Document Model', - size=128, select=True, store=True, readonly=True), - # we need a separate m2m table to avoid ID collisions with the original mail.message entries - 'attachment_ids': fields.many2many('ir.attachment', 'email_template_attachment_rel', 'email_template_id', - 'attachment_id', 'Files to attach', - help="You may attach files to this template, to be added to all " - "emails created from this template"), - - # Overridden mail.message.common fields to make tooltips more appropriate: - 'subject':fields.char('Subject', size=512, translate=True, help="Subject (placeholders may be used here)",), - 'email_from': fields.char('From', size=128, help="Sender address (placeholders may be used here)"), - 'email_to': fields.char('To', size=256, help="Comma-separated recipient addresses (placeholders may be used here)"), - 'email_cc': fields.char('Cc', size=256, help="Carbon copy recipients (placeholders may be used here)"), - 'email_bcc': fields.char('Bcc', size=256, help="Blind carbon copy recipients (placeholders may be used here)"), - 'reply_to': fields.char('Reply-To', size=250, help="Preferred response address (placeholders may be used here)"), + 'subject': fields.char('Subject', translate=True, help="Subject (placeholders may be used here)",), + 'email_from': fields.char('From', help="Sender address (placeholders may be used here)"), + 'email_to': fields.char('To', help="Comma-separated recipient addresses (placeholders may be used here)"), + 'email_cc': fields.char('Cc', help="Carbon copy recipients (placeholders may be used here)"), + 'reply_to': fields.char('Reply-To', help="Preferred response address (placeholders may be used here)"), 'mail_server_id': fields.many2one('ir.mail_server', 'Outgoing Mail Server', readonly=False, help="Optional preferred server for outgoing mails. If not set, the highest " "priority one will be used."), - 'body_text': fields.text('Text Contents', translate=True, help="Plaintext version of the message (placeholders may be used here)"), - 'body_html': fields.text('Rich-text Contents', translate=True, help="Rich-text/HTML version of the message (placeholders may be used here)"), - 'message_id': fields.char('Message-Id', size=256, help="Message-ID SMTP header to use in outgoing messages based on this template. " - "Please note that this overrides the 'Resource Tracking' option, " - "so if you simply need to track replies to outgoing emails, enable " - "that option instead.\n" - "Placeholders must be used here, as this value always needs to be unique!"), + 'body_html': fields.text('Body', translate=True, help="Rich-text/HTML version of the message (placeholders may be used here)"), + 'report_name': fields.char('Report Filename', translate=True, + help="Name to use for the generated report file (may contain placeholders)\n" + "The extension can be omitted and will then come from the report type."), + 'report_template': fields.many2one('ir.actions.report.xml', 'Optional report to print and attach'), + 'ref_ir_act_window': fields.many2one('ir.actions.act_window', 'Sidebar action', readonly=True, + help="Sidebar action to make this template available on records " + "of the related document model"), + 'ref_ir_value': fields.many2one('ir.values', 'Sidebar Button', readonly=True, + help="Sidebar button to open the sidebar action"), + 'attachment_ids': fields.many2many('ir.attachment', 'email_template_attachment_rel', 'email_template_id', + 'attachment_id', 'Attachments', + help="You may attach files to this template, to be added to all " + "emails created from this template"), + 'auto_delete': fields.boolean('Auto Delete', help="Permanently delete this email after sending it, to save space"), # Fake fields used to implement the placeholder assistant 'model_object_field': fields.many2one('ir.model.fields', string="Field", @@ -172,12 +152,12 @@ class email_template(osv.osv): help="When a relationship field is selected as first field, " "this field lets you select the target field within the " "destination document model (sub-model)."), - 'null_value': fields.char('Null value', help="Optional value to use if the target field is empty", size=128), - 'copyvalue': fields.char('Expression', size=256, help="Final placeholder expression, to be copy-pasted in the desired template field."), + 'null_value': fields.char('Default Value', help="Optional value to use if the target field is empty"), + 'copyvalue': fields.char('Placeholder Expression', help="Final placeholder expression, to be copy-pasted in the desired template field."), } _defaults = { - 'track_campaign_item': True + 'auto_delete': True, } def create_action(self, cr, uid, ids, context=None): @@ -195,7 +175,7 @@ class email_template(osv.osv): 'res_model': 'mail.compose.message', 'src_model': src_obj, 'view_type': 'form', - 'context': "{'mail.compose.message.mode':'mass_mail', 'mail.compose.template_id' : %d}" % (template.id), + 'context': "{'default_composition_mode': 'mass_mail', 'default_template_id' : %d}" % (template.id), 'view_mode':'form,tree', 'view_id': res_id, 'target': 'new', @@ -222,7 +202,7 @@ class email_template(osv.osv): if template.ref_ir_value: ir_values_obj = self.pool.get('ir.values') ir_values_obj.unlink(cr, uid, template.ref_ir_value.id, context) - except: + except Exception: raise osv.except_osv(_("Warning"), _("Deletion of the action record failed.")) return True @@ -294,65 +274,33 @@ class email_template(osv.osv): :param res_id: id of the record to use for rendering the template (model is taken from template definition) :returns: a dict containing all relevant fields for creating a new - mail.message entry, with the addition one additional - special key ``attachments`` containing a list of + mail.mail entry, with one extra key ``attachments``, in the + format expected by :py:meth:`mail_thread.message_post`. """ if context is None: context = {} - values = { - 'subject': False, - 'body_text': False, - 'body_html': False, - 'email_from': False, - 'email_to': False, - 'email_cc': False, - 'email_bcc': False, - 'reply_to': False, - 'auto_delete': False, - 'model': False, - 'res_id': False, - 'mail_server_id': False, - 'attachments': False, - 'attachment_ids': False, - 'message_id': False, - 'state': 'outgoing', - 'content_subtype': 'plain', - 'partner_ids': [], - } - if not template_id: - return values - report_xml_pool = self.pool.get('ir.actions.report.xml') template = self.get_email_template(cr, uid, template_id, res_id, context) - - for field in ['subject', 'body_text', 'body_html', 'email_from', - 'email_to', 'email_cc', 'email_bcc', 'reply_to', - 'message_id']: + values = {} + for field in ['subject', 'body_html', 'email_from', + 'email_to', 'email_cc', 'reply_to']: values[field] = self.render_template(cr, uid, getattr(template, field), template.model, res_id, context=context) \ or False - - # if email_to: find or create a partner - if values['email_to']: - partner_id = self.pool.get('mail.thread').message_partner_by_email(cr, uid, values['email_to'], context=context)['partner_id'] - if not partner_id: - partner_id = self.pool.get('res.partner').name_create(cr, uid, values['email_to'], context=context) - values['partner_ids'] = [partner_id] - - if values['body_html']: - values.update(content_subtype='html') - if template.user_signature: signature = self.pool.get('res.users').browse(cr, uid, uid, context).signature - values['body_text'] += '\n\n' + signature + values['body_html'] = append_content_to_html(values['body_html'], signature) - values.update(mail_server_id = template.mail_server_id.id or False, - auto_delete = template.auto_delete, + if values['body_html']: + values['body'] = html_sanitize(values['body_html']) + + values.update(mail_server_id=template.mail_server_id.id or False, + auto_delete=template.auto_delete, model=template.model, res_id=res_id or False) - attachments = {} - # Add report as a Document + attachments = [] + # Add report in attachments if template.report_template: report_name = self.render_template(cr, uid, template.report_name, template.model, res_id, context=context) report_service = 'report.' + report_xml_pool.browse(cr, uid, template.report_template.id, context).report_name @@ -368,12 +316,11 @@ class email_template(osv.osv): ext = "." + format if not report_name.endswith(ext): report_name += ext - attachments[report_name] = result + attachments.append(report_name, result) - # Add document attachments + # Add template attachments for attach in template.attachment_ids: - # keep the bytes as fetched from the db, base64 encoded - attachments[attach.datas_fname] = attach.datas + attachments.append((attach.datas_fname, attach.datas)) values['attachments'] = attachments return values @@ -391,12 +338,12 @@ class email_template(osv.osv): :returns: id of the mail.message that was created """ if context is None: context = {} - mail_message = self.pool.get('mail.message') + mail_mail = self.pool.get('mail.mail') ir_attachment = self.pool.get('ir.attachment') values = self.generate_email(cr, uid, template_id, res_id, context=context) assert 'email_from' in values, 'email_from is missing or empty after template rendering, send_mail() cannot proceed' attachments = values.pop('attachments') or {} - msg_id = mail_message.create(cr, uid, values, context=context) + msg_id = mail_mail.create(cr, uid, values, context=context) # link attachments attachment_ids = [] for fname, fcontent in attachments.iteritems(): @@ -404,15 +351,15 @@ class email_template(osv.osv): 'name': fname, 'datas_fname': fname, 'datas': fcontent, - 'res_model': mail_message._name, + 'res_model': mail_mail._name, 'res_id': msg_id, } context.pop('default_type', None) attachment_ids.append(ir_attachment.create(cr, uid, attachment_data, context=context)) if attachment_ids: - mail_message.write(cr, uid, msg_id, {'attachment_ids': [(6, 0, attachment_ids)]}, context=context) + mail_mail.write(cr, uid, msg_id, {'attachment_ids': [(6, 0, attachment_ids)]}, context=context) if force_send: - mail_message.send(cr, uid, [msg_id], context=context) + mail_mail.send(cr, uid, [msg_id], context=context) return msg_id # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/email_template/email_template_view.xml b/addons/email_template/email_template_view.xml index a04790d1c1c..448655a3121 100644 --- a/addons/email_template/email_template_view.xml +++ b/addons/email_template/email_template_view.xml @@ -1,99 +1,67 @@ - email.template.form email.template - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + - - -
@@ -78,12 +76,19 @@ - -
+ Name + + [[ m[0] != 'None' and m[0] or '' ]] + + [[ m[1] != 'None' and m[1] or '' ]] + + [[ m[2] != 'None' and m[2] or '' ]] + + [[ m[3] != 'None' and m[3] or '' ]] + + [[ m[4] != 'None' and m[4] or '' ]] + + [[ m[5] != 'None' and m[5] or '' ]] + + [[ m[6] != 'None' and m[6] or '' ]] + + [[ m[7] != 'None' and m[7] or '' ]] + + [[ m[8] != 'None' and m[8] or '' ]] + + [[ m[9] != 'None' and m[9] or '' ]] + + [[ m[10] != 'None' and m[10] or '' ]] + + [[ m[11] != 'None' and m[11] or '' ]] + + Total +
+ [[ e[0] ]] + + + [[ (e[1]!='' and formatLang(e[1])) or removeParentNode('font') ]] + + + + [[ (e[2]!='' and formatLang(e[2])) or removeParentNode('font') ]] + + + + [[ (e[3]!='' and formatLang(e[3])) or removeParentNode('font') ]] + + + + [[ (e[4]!='' and formatLang(e[4])) or removeParentNode('font') ]] + + + + [[ (e[5]!='' and formatLang(e[5])) or removeParentNode('font') ]] + + + + [[ (e[6]!='' and formatLang(e[6])) or removeParentNode('font') ]] + + + + [[ (e[7]!='' and formatLang(e[7])) or removeParentNode('font') ]] + + + + [[ (e[8]!='' and formatLang(e[8])) or removeParentNode('font') ]] + + + + [[ (e[9]!='' and formatLang(e[9])) or removeParentNode('font') ]] + + + + [[ (e[10]!='' and formatLang(e[10])) or removeParentNode('font') ]] + + + + [[ (e[11]!='' and formatLang(e[11])) or removeParentNode('font') ]] + + + + [[ (e[12]!='' and formatLang(e[12])) or removeParentNode('font') ]] + + + [[ formatLang(e[13]) ]] [[company.currency_id.symbol]] +
+ Total + + [[ formatLang(t[1]) or removeParentNode('para') ]] [[company.currency_id.symbol]] + + [[ formatLang(t[2]) or removeParentNode('para')]] [[company.currency_id.symbol]] + + [[ formatLang(t[3]) or removeParentNode('para')]] [[company.currency_id.symbol]] + + [[ formatLang(t[4]) or removeParentNode('para')]] [[company.currency_id.symbol]] + + [[ formatLang(t[5]) or removeParentNode('para')]] [[company.currency_id.symbol]] + + [[ formatLang(t[6]) or removeParentNode('para')]] [[company.currency_id.symbol]] + + [[ formatLang(t[7]) or removeParentNode('para')]] [[company.currency_id.symbol]] + + [[ formatLang(t[8]) or removeParentNode('para')]] [[company.currency_id.symbol]] + + [[ formatLang(t[9]) or removeParentNode('para')]] [[company.currency_id.symbol]] + + [[ formatLang(t[10]) or removeParentNode('para')]] [[company.currency_id.symbol]] + + [[ formatLang(t[11]) or removeParentNode('para')]] [[company.currency_id.symbol]] + + [[ formatLang(t[12]) or removeParentNode('para')]] [[company.currency_id.symbol]] + + [[ formatLang(get_total()) ]] [[company.currency_id.symbol]] +
+ From [[ formatLang(data['form']['date_from'], date=True) ]] To [[ formatLang(data['form']['date_to'], date=True) ]] +
+ Employee Code + + [[ o.identification_id ]] + + Department + + [[ o.department_id and o.department_id.name or '' ]] + + Bank + + [[ o.bank_account_id and o.bank_account_id.bank.name or '' ]] +
+ Employee Name + + [[ o.name ]] + + Other No. + + [[ o.otherid or '' ]] + + Address + + [[o.address_home_id and o.address_home_id.name or '' ]] +
+ Designation + + [[ o.job_id and o.job_id.name or '' ]] + + Phone No. + + [[ o.work_phone or '' ]] + + E-mail Address + + [[o.work_email or '' ]] +
+ Title + + [[ m[0] != 'None' and m[0] or '' ]] + + [[ m[1] != 'None' and m[1] or '' ]] + + [[ m[2] != 'None' and m[2] or '' ]] + + [[ m[3] != 'None' and m[3] or '' ]] + + [[ m[4] != 'None' and m[4] or '' ]] + + [[ m[5] != 'None' and m[5] or '' ]] + + [[ m[6] != 'None' and m[6] or '' ]] + + [[ m[7] != 'None' and m[7] or '' ]] + + [[ m[8] != 'None' and m[8] or '' ]] + + [[ m[9] != 'None' and m[9] or '' ]] + + [[ m[10] != 'None' and m[10] or '' ]] + + [[ m[11] != 'None' and m[11] or '' ]] + + Total +
+ Allowances with Basic: +
+ [[ e1[0] in ["Basic","Gross"] and e1[0] ]] + [[ e1[0] not in ["Basic","Gross"] and e1[0] ]] + + + [[ (e1[0] in ["Basic","Gross"] and e1[1]!='' and formatLang(e1[1])) or removeParentNode('font') ]] + [[ (e1[0] not in ["Basic","Gross"] and e1[1]!='' and formatLang(e1[1])) or removeParentNode('font') ]] + + + + [[ (e1[0] in ["Basic","Gross"] and e1[2]!='' and formatLang(e1[2])) or removeParentNode('font') ]] + [[ (e1[0] not in ["Basic","Gross"] and e1[2]!='' and formatLang(e1[2])) or removeParentNode('font') ]] + + + + [[ (e1[0] in ["Basic","Gross"] and e1[3]!='' and formatLang(e1[3])) or removeParentNode('font') ]] + [[ (e1[0] not in ["Basic","Gross"] and e1[3]!='' and formatLang(e1[3])) or removeParentNode('font') ]] + + + + [[ (e1[0] in ["Basic","Gross"] and e1[4]!='' and formatLang(e1[4])) or removeParentNode('font') ]] + [[ (e1[0] not in ["Basic","Gross"] and e1[4]!='' and formatLang(e1[4])) or removeParentNode('font') ]] + + + + [[ (e1[0] in ["Basic","Gross"] and e1[5]!='' and formatLang(e1[5])) or removeParentNode('font') ]] + [[ (e1[0] not in ["Basic","Gross"] and e1[5]!='' and formatLang(e1[5])) or removeParentNode('font') ]] + + + + [[ (e1[0] in ["Basic","Gross"] and e1[6]!='' and formatLang(e1[6])) or removeParentNode('font') ]] + [[ (e1[0] not in ["Basic","Gross"] and e1[6]!='' and formatLang(e1[6])) or removeParentNode('font') ]] + + + + [[ (e1[0] in ["Basic","Gross"] and e1[7]!='' and formatLang(e1[7])) or removeParentNode('font') ]] + [[ (e1[0] not in ["Basic","Gross"] and e1[7]!='' and formatLang(e1[7])) or removeParentNode('font') ]] + + + + [[ (e1[0] in ["Basic","Gross"] and e1[8]!='' and formatLang(e1[8])) or removeParentNode('font') ]] + [[ (e1[0] not in ["Basic","Gross"] and e1[8]!='' and formatLang(e1[8])) or removeParentNode('font') ]] + + + + [[ (e1[0] in ["Basic","Gross"] and e1[9]!='' and formatLang(e1[9])) or removeParentNode('font') ]] + [[ (e1[0] not in ["Basic","Gross"] and e1[9]!='' and formatLang(e1[9])) or removeParentNode('font') ]] + + + + [[ (e1[0] in ["Basic","Gross"] and e1[10]!='' and formatLang(e1[10])) or removeParentNode('font') ]] + [[ (e1[0] not in ["Basic","Gross"] and e1[10]!='' and formatLang(e1[10])) or removeParentNode('font') ]] + + + + [[ (e1[0] in ["Basic","Gross"] and e1[11]!='' and formatLang(e1[11])) or removeParentNode('font') ]] + [[ (e1[0] not in ["Basic","Gross"] and e1[11]!='' and formatLang(e1[11])) or removeParentNode('font') ]] + + + + [[ (e1[0] in ["Basic","Gross"] and e1[12]!='' and formatLang(e1[12])) or removeParentNode('font') ]] + [[ (e1[0] not in ["Basic","Gross"] and e1[12]!='' and formatLang(e1[12])) or removeParentNode('font') ]] + + + [[ formatLang(e1[13]) ]] [[ company.currency_id.symbol ]] +
+ Deductions: +
+ [[ e2[0] in ["Net"] and e2[0] ]] + [[ e2[0] not in ["Net"] and e2[0] ]] + + + [[ (e2[0] in ["Net"] and e2[1]!='' and formatLang(e2[1])) or removeParentNode('font') ]] + [[ (e2[0] not in ["Net"] and e2[1]!='' and formatLang(e2[1])) or removeParentNode('font') ]] + + + + [[ (e2[0] in ["Net"] and e2[2]!='' and formatLang(e2[2])) or removeParentNode('font') ]] + [[ (e2[0] not in ["Net"] and e2[2]!='' and formatLang(e2[2])) or removeParentNode('font') ]] + + + + [[ (e2[0] in ["Net"] and e2[3]!='' and formatLang(e2[3])) or removeParentNode('font') ]] + [[ (e2[0] not in ["Net"] and e2[3]!='' and formatLang(e2[3])) or removeParentNode('font') ]] + + + + [[ (e2[0] in ["Net"] and e2[4]!='' and formatLang(e2[4])) or removeParentNode('font') ]] + [[ (e2[0] not in ["Net"] and e2[4]!='' and formatLang(e2[4])) or removeParentNode('font') ]] + + + + [[ (e2[0] in ["Net"] and e2[5]!='' and formatLang(e2[5])) or removeParentNode('font') ]] + [[ (e2[0] not in ["Net"] and e2[5]!='' and formatLang(e2[5])) or removeParentNode('font') ]] + + + + [[ (e2[0] in ["Net"] and e2[6]!='' and formatLang(e2[6])) or removeParentNode('font') ]] + [[ (e2[0] not in ["Net"] and e2[6]!='' and formatLang(e2[6])) or removeParentNode('font') ]] + + + + [[ (e2[0] in ["Net"] and e2[7]!='' and formatLang(e2[7])) or removeParentNode('font') ]] + [[ (e2[0] not in ["Net"] and e2[7]!='' and formatLang(e2[7])) or removeParentNode('font') ]] + + + + [[ (e2[0] in ["Net"] and e2[8]!='' and formatLang(e2[8])) or removeParentNode('font') ]] + [[ (e2[0] not in ["Net"] and e2[8]!='' and formatLang(e2[8])) or removeParentNode('font') ]] + + + + [[ (e2[0] in ["Net"] and e2[9]!='' and formatLang(e2[9])) or removeParentNode('font') ]] + [[ (e2[0] not in ["Net"] and e2[9]!='' and formatLang(e2[9])) or removeParentNode('font') ]] + + + + [[ (e2[0] in ["Net"] and e2[10]!='' and formatLang(e2[10])) or removeParentNode('font') ]] + [[ (e2[0] not in ["Net"] and e2[10]!='' and formatLang(e2[10])) or removeParentNode('font') ]] + + + + [[ (e2[0] in ["Net"] and e2[11]!='' and formatLang(e2[11])) or removeParentNode('font') ]] + [[ (e2[0] not in ["Net"] and e2[11]!='' and formatLang(e2[11])) or removeParentNode('font') ]] + + + + [[ (e2[0] in ["Net"] and e2[12]!='' and formatLang(e2[12])) or removeParentNode('font') ]] + [[ (e2[0] not in ["Net"] and e2[12]!='' and formatLang(e2[12])) or removeParentNode('font') ]] + + + [[ formatLang(e2[13]) ]] [[ company.currency_id.symbol ]] +
+ [[ formatLang(time.strftime('%Y-%m-%d'),date=True) ]] + + + + + + + + +
+ To, + The Manager + + + + +
+ [[ o.bank_id.name ]] Bank + + + + +
+ + + + Dear Sir/Madam, + + + + +
+ Payment Advice from [[ o.name ]] A/C no. [[ o.company_id.bank_ids and o.company_id.bank_ids[0].acc_number ]] form period [[ get_month(o.date)['from_name'] ]] to [[ get_month(o.date)['to_name'] ]] +
+ [[ o.note ]] +
+ SI. No. + + Name of the Employe + + Bank Account No. + + By Salary + + C/D +
+ + . + + + + [[ line['name'] ]] + + [[ line['acc_no'] ]] + + [[formatLang(line['bysal'])]] [[ (company.currency_id and company.currency_id.symbol) or '' ]] + + [[ line['debit_credit'] ]] +
+ SI. No. + + Name of the Employe + + Bank Account No. + + IFSC Code + + By Salary + + C/D +
+ + . + + + [[ line['name'] ]] + + [[ line['acc_no'] ]] + + [[ line['ifsc_code'] ]] + + [[formatLang(line['bysal'])]] [[ (company.currency_id and company.currency_id.symbol) or '' ]] + + [[ line['debit_credit'] ]] +
+ + + + + + + + + Total : [[ o.line_ids==[] and removeParentNode('para') ]] + + + [[ o.line_ids==[] and removeParentNode('para') ]][[ formatLang(get_bysal_total()) ]] [[ (company.currency_id and company.currency_id.symbol) or '' ]] + + + + +
+ + + + + + + + + Total : [[ o.line_ids==[] and removeParentNode('para') ]] + + + [[ o.line_ids==[] and removeParentNode('para') ]][[ formatLang(get_bysal_total()) ]] [[ (company.currency_id and company.currency_id.symbol) or '' ]] + + + + +
+ Yours Sincerely + + + + +
+ For [[ company.name ]] + + + + +
+ + + + + + + +
+ + + + + + + +
+ Authorized Signature + + + + +
+ Pay Slip Details +
+ Name + + [[o.employee_id.name]] + + Designation + + [[ o.employee_id.job_id.name or '' ]] +
+ + Address + + + [[o.employee_id.address_home_id and o.employee_id.address_home_id.name or '' ]],[[o.employee_id.address_home_id and o.employee_id.address_home_id.street or '' ]],[[o.employee_id.address_home_id and o.employee_id.address_home_id.street2 or '' ]],[[o.employee_id.address_home_id and o.employee_id.address_home_id.zip or '' ]],[[o.employee_id.address_home_id and o.employee_id.address_home_id.city or '' ]],[[o.employee_id.address_home_id and o.employee_id.address_home_id.state_id and o.employee_id.address_home_id.state_id.name or '' ]] [[o.employee_id.address_home_id and o.employee_id.address_home_id.country_id and o.employee_id.address_home_id.country_id.name or '' ]] +
+ Email + + [[ o.employee_id.work_email or '' ]] + + + Identification No + + + [[ o.employee_id.identification_id or '' ]] +
+ Reference + + [[ o.number or '' ]] + + Bank Account + + [[ o.employee_id.otherid or '' ]] +
+ Date From + + [[ o.date_from or '']] + + + Date To + + + [[ o.date_to or '' ]] +
+ Details by Salary Rule Category: +
+ Code + + Salary Rule Category + + Total +
+ + [[ h['code'] ]] + [[ h['level']!=0 and ( setTag('para','para',{'style':'terp_default_8'})) or removeParentNode('font')]] + + + [[ '..'*h['level'] ]][[ h['rule_category'] ]][[ h['level']!=0 and ( setTag('para','para',{'style':'terp_default_8'})) or removeParentNode('font') ]] + + [[ formatLang(h['total']) ]] [[o.company_id and o.company_id.currency_id.symbol or '']] [[ h['level']==0 and ( setTag('para','para',{'style':'terp_default_10'})) or removeParentNode('font') ]] +
+ + + + + + + + + + + + + + Authorized Signature +

- News Feeds - + News Feed + / +

-
-
- - -
-
-
    - -
-
- -
-
+
    + +
@@ -56,7 +47,7 @@ Template used to display the communication history in documents form view. --> -
+
@@ -88,7 +79,7 @@ container, holding the composition form. Then come the various messages. Then comes the 'more' button. --> -
    +
      @@ -103,21 +94,21 @@
    • -
      - +
      +
      @@ -136,7 +127,7 @@