diff --git a/addons/.bzrignore b/addons/.bzrignore index 8d98f9debde..8c348710117 100644 --- a/addons/.bzrignore +++ b/addons/.bzrignore @@ -1 +1,2 @@ .* +**/node_modules diff --git a/addons/account/__openerp__.py b/addons/account/__openerp__.py index a380a69dc03..e06e41cf001 100644 --- a/addons/account/__openerp__.py +++ b/addons/account/__openerp__.py @@ -146,6 +146,7 @@ for a particular financial year and for preparation of vouchers there is a modul 'account_unit_test.xml', ], 'test': [ + 'test/account_test_users.yml', 'test/account_customer_invoice.yml', 'test/account_supplier_invoice.yml', 'test/account_change_currency.yml', diff --git a/addons/account/account.py b/addons/account/account.py index 33b52b643ed..21a5ce992d7 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -137,16 +137,27 @@ class account_account_type(osv.osv): _name = "account.account.type" _description = "Account Type" - def _get_current_report_type(self, cr, uid, ids, name, arg, context=None): + def _get_financial_report_ref(self, cr, uid, context=None): obj_data = self.pool.get('ir.model.data') obj_financial_report = self.pool.get('account.financial.report') + financial_report_ref = {} + for key, financial_report in [ + ('asset','account_financial_report_assets0'), + ('liability','account_financial_report_liability0'), + ('income','account_financial_report_income0'), + ('expense','account_financial_report_expense0'), + ]: + try: + financial_report_ref[key] = obj_financial_report.browse(cr, uid, + obj_data.get_object_reference(cr, uid, 'account', financial_report)[1], + context=context) + except ValueError: + pass + return financial_report_ref + + def _get_current_report_type(self, cr, uid, ids, name, arg, context=None): res = {} - financial_report_ref = { - 'asset': obj_financial_report.browse(cr, uid, obj_data.get_object_reference(cr, uid, 'account','account_financial_report_assets0')[1], context=context), - 'liability': obj_financial_report.browse(cr, uid, obj_data.get_object_reference(cr, uid, 'account','account_financial_report_liability0')[1], context=context), - 'income': obj_financial_report.browse(cr, uid, obj_data.get_object_reference(cr, uid, 'account','account_financial_report_income0')[1], context=context), - 'expense': obj_financial_report.browse(cr, uid, obj_data.get_object_reference(cr, uid, 'account','account_financial_report_expense0')[1], context=context), - } + financial_report_ref = self._get_financial_report_ref(cr, uid, context=context) for record in self.browse(cr, uid, ids, context=context): res[record.id] = 'none' for key, financial_report in financial_report_ref.items(): @@ -157,15 +168,9 @@ class account_account_type(osv.osv): def _save_report_type(self, cr, uid, account_type_id, field_name, field_value, arg, context=None): field_value = field_value or 'none' - obj_data = self.pool.get('ir.model.data') obj_financial_report = self.pool.get('account.financial.report') #unlink if it exists somewhere in the financial reports related to BS or PL - financial_report_ref = { - 'asset': obj_financial_report.browse(cr, uid, obj_data.get_object_reference(cr, uid, 'account','account_financial_report_assets0')[1], context=context), - 'liability': obj_financial_report.browse(cr, uid, obj_data.get_object_reference(cr, uid, 'account','account_financial_report_liability0')[1], context=context), - 'income': obj_financial_report.browse(cr, uid, obj_data.get_object_reference(cr, uid, 'account','account_financial_report_income0')[1], context=context), - 'expense': obj_financial_report.browse(cr, uid, obj_data.get_object_reference(cr, uid, 'account','account_financial_report_expense0')[1], context=context), - } + financial_report_ref = self._get_financial_report_ref(cr, uid, context=context) for key, financial_report in financial_report_ref.items(): list_ids = [x.id for x in financial_report.account_type_ids] if account_type_id in list_ids: @@ -1258,6 +1263,10 @@ class account_move(osv.osv): return [('id', 'in', tuple(ids))] return [('id', '=', '0')] + def _get_move_from_lines(self, cr, uid, ids, context=None): + line_obj = self.pool.get('account.move.line') + return [line.move_id.id for line in line_obj.browse(cr, uid, ids, context=context)] + _columns = { 'name': fields.char('Number', size=64, required=True), 'ref': fields.char('Reference', size=64), @@ -1267,7 +1276,10 @@ class account_move(osv.osv): help='All manually created new journal entries are usually in the status \'Unposted\', but you can set the option to skip that status on the related journal. In that case, they will behave as journal entries automatically created by the system on document validation (invoices, bank statements...) and will be created in \'Posted\' status.'), 'line_id': fields.one2many('account.move.line', 'move_id', 'Entries', states={'posted':[('readonly',True)]}), 'to_check': fields.boolean('To Review', help='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.'), - 'partner_id': fields.related('line_id', 'partner_id', type="many2one", relation="res.partner", string="Partner", store=True), + 'partner_id': fields.related('line_id', 'partner_id', type="many2one", relation="res.partner", string="Partner", store={ + _name: (lambda self, cr,uid,ids,c: ids, ['line_id'], 10), + 'account.move.line': (_get_move_from_lines, ['partner_id'],10) + }), 'amount': fields.function(_amount_compute, string='Amount', digits_compute=dp.get_precision('Account'), type='float', fnct_search=_search_amount), 'date': fields.date('Date', required=True, states={'posted':[('readonly',True)]}, select=True), 'narration':fields.text('Internal Note'), @@ -1404,14 +1416,17 @@ class account_move(osv.osv): l[2]['period_id'] = default_period context['period_id'] = default_period - if 'line_id' in vals: + if vals.get('line_id', False): c = context.copy() c['novalidate'] = True c['period_id'] = vals['period_id'] if 'period_id' in vals else self._get_period(cr, uid, context) c['journal_id'] = vals['journal_id'] if 'date' in vals: c['date'] = vals['date'] result = super(account_move, self).create(cr, uid, vals, c) - self.validate(cr, uid, [result], context) + tmp = self.validate(cr, uid, [result], context) + journal = self.pool.get('account.journal').browse(cr, uid, vals['journal_id'], context) + if journal.entry_posted and tmp: + self.button_validate(cr,uid, [result], context) else: result = super(account_move, self).create(cr, uid, vals, context) return result @@ -1633,9 +1648,11 @@ class account_move(osv.osv): else: # We can't validate it (it's unbalanced) # Setting the lines as draft - obj_move_line.write(cr, uid, line_ids, { - 'state': 'draft' - }, context, check=False) + not_draft_line_ids = list(set(line_ids) - set(line_draft_ids)) + if not_draft_line_ids: + obj_move_line.write(cr, uid, not_draft_line_ids, { + 'state': 'draft' + }, context, check=False) # Create analytic lines for the valid moves for record in valid_moves: obj_move_line.create_analytic_lines(cr, uid, [line.id for line in record.line_id], context) @@ -2774,6 +2791,7 @@ class account_chart_template(osv.osv): 'parent_id': fields.many2one('account.chart.template', 'Parent Chart Template'), 'code_digits': fields.integer('# of Digits', required=True, help="No. of Digits to use for account code"), 'visible': fields.boolean('Can be Visible?', help="Set this to False if you don't want this template to be used actively in the wizard that generate Chart of Accounts from templates, this is useful when you want to generate accounts of this template only when loading its child template."), + 'currency_id': fields.many2one('res.currency', 'Currency'), '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 sale and purchase rates or choose from list of taxes. This last choice assumes that the set of tax defined on this template is complete'), 'account_root_id': fields.many2one('account.account.template', 'Root Account', domain=[('parent_id','=',False)]), 'tax_code_root_id': fields.many2one('account.tax.code.template', 'Root Tax Code', domain=[('parent_id','=',False)]), @@ -3029,12 +3047,6 @@ class wizard_multi_charts_accounts(osv.osv_memory): '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}} @@ -3044,7 +3056,8 @@ class wizard_multi_charts_accounts(osv.osv_memory): res['value'] = {'complete_tax_set': False, 'sale_tax': False, 'purchase_tax': False} if chart_template_id: data = self.pool.get('account.chart.template').browse(cr, uid, chart_template_id, context=context) - res['value'].update({'complete_tax_set': data.complete_tax_set}) + currency_id = data.currency_id and data.currency_id.id or self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.currency_id.id + res['value'].update({'complete_tax_set': data.complete_tax_set, 'currency_id': currency_id}) if data.complete_tax_set: # default tax is given by the lowest sequence. For same sequence we will take the latest created as it will be the case for tax created while isntalling the generic chart of account sale_tax_ids = tax_templ_obj.search(cr, uid, [("chart_template_id" @@ -3076,7 +3089,13 @@ class wizard_multi_charts_accounts(osv.osv_memory): ids = self.pool.get('account.chart.template').search(cr, uid, [('visible', '=', True)], context=context) if ids: if 'chart_template_id' in fields: - res.update({'only_one_chart_template': len(ids) == 1, 'chart_template_id': ids[0]}) + #in order to get set default chart which was last created set max of ids. + chart_id = max(ids) + if context.get("default_charts"): + model_data = self.pool.get('ir.model.data').search_read(cr, uid, [('model','=','account.chart.template'),('module','=',context.get("default_charts"))], ['res_id'], context=context) + if model_data: + chart_id = model_data[0]['res_id'] + res.update({'only_one_chart_template': len(ids) == 1, 'chart_template_id': chart_id}) if 'sale_tax' in fields: sale_tax_ids = tax_templ_obj.search(cr, uid, [("chart_template_id" , "=", ids[0]), ('type_tax_use', 'in', ('sale','all'))], order="sequence") diff --git a/addons/account/account_installer.xml b/addons/account/account_installer.xml index b03babc63ac..8d1b25b299f 100644 --- a/addons/account/account_installer.xml +++ b/addons/account/account_installer.xml @@ -10,7 +10,7 @@ diff --git a/addons/account/account_invoice.py b/addons/account/account_invoice.py index 87e6a66740c..42f3effd6f9 100644 --- a/addons/account/account_invoice.py +++ b/addons/account/account_invoice.py @@ -561,10 +561,14 @@ class account_invoice(osv.osv): def onchange_payment_term_date_invoice(self, cr, uid, ids, payment_term_id, date_invoice): res = {} + if isinstance(ids, (int, long)): + ids = [ids] if not date_invoice: date_invoice = time.strftime('%Y-%m-%d') if not payment_term_id: - return {'value':{'date_due': date_invoice}} #To make sure the invoice has a due date when no payment term + inv = self.browse(cr, uid, ids[0]) + #To make sure the invoice due date should contain due date which is entered by user when there is no payment term defined + return {'value':{'date_due': inv.date_due and inv.date_due or date_invoice}} pterm_list = self.pool.get('account.payment.term').compute(cr, uid, payment_term_id, value=1, date_ref=date_invoice) if pterm_list: pterm_list = [line[0] for line in pterm_list] @@ -1427,6 +1431,7 @@ class account_invoice_line(osv.osv): _name = "account.invoice.line" _description = "Invoice Line" + _order = "invoice_id,sequence,id" _columns = { 'name': fields.text('Description', required=True), 'origin': fields.char('Source Document', size=256, help="Reference of the document that produced this invoice."), @@ -1463,6 +1468,7 @@ class account_invoice_line(osv.osv): 'discount': 0.0, 'price_unit': _price_unit_default, 'account_id': _default_account_id, + 'sequence': 10, } def fields_view_get(self, cr, uid, view_id=None, view_type='form', context=None, toolbar=False, submenu=False): diff --git a/addons/account/account_invoice_view.xml b/addons/account/account_invoice_view.xml index c71b97d5796..1b7bd658faf 100644 --- a/addons/account/account_invoice_view.xml +++ b/addons/account/account_invoice_view.xml @@ -192,6 +192,7 @@ + @@ -250,7 +251,7 @@ - + @@ -348,6 +349,7 @@ + @@ -392,7 +394,7 @@ - + - - + + diff --git a/addons/account/account_move_line.py b/addons/account/account_move_line.py index 314e3423996..0fc9d9e2227 100644 --- a/addons/account/account_move_line.py +++ b/addons/account/account_move_line.py @@ -800,7 +800,7 @@ class account_move_line(osv.osv): r_id = move_rec_obj.create(cr, uid, { 'type': type, 'line_partial_ids': map(lambda x: (4,x,False), merges+unmerge) - }) + }, context=context) move_rec_obj.reconcile_partial_check(cr, uid, [r_id] + merges_rec, context=context) return True @@ -1283,7 +1283,7 @@ class account_move_line(osv.osv): self.create(cr, uid, data, context) del vals['account_tax_id'] - if check and ((not context.get('no_store_function')) or journal.entry_posted): + if check and not context.get('novalidate') and ((not context.get('no_store_function')) or journal.entry_posted): tmp = move_obj.validate(cr, uid, [vals['move_id']], context) if journal.entry_posted and tmp: move_obj.button_validate(cr,uid, [vals['move_id']], context) diff --git a/addons/account/account_view.xml b/addons/account/account_view.xml index 91c6d6608fd..ed2d88b7386 100644 --- a/addons/account/account_view.xml +++ b/addons/account/account_view.xml @@ -413,7 +413,7 @@ - + @@ -1406,7 +1406,7 @@ - + @@ -2120,7 +2120,7 @@ - + diff --git a/addons/account/report/account_entries_report_view.xml b/addons/account/report/account_entries_report_view.xml index 551265252cc..66959051ea4 100644 --- a/addons/account/report/account_entries_report_view.xml +++ b/addons/account/report/account_entries_report_view.xml @@ -92,7 +92,7 @@ - + diff --git a/addons/account/report/account_financial_report.py b/addons/account/report/account_financial_report.py index 864c4bbc7d1..2b1f5af4d68 100644 --- a/addons/account/report/account_financial_report.py +++ b/addons/account/report/account_financial_report.py @@ -38,6 +38,7 @@ class report_account_common(report_sxw.rml_parse, common_report_header): 'get_filter': self._get_filter, 'get_start_date':self._get_start_date, 'get_end_date':self._get_end_date, + 'get_target_move': self._get_target_move, }) self.context = context diff --git a/addons/account/report/account_financial_report.rml b/addons/account/report/account_financial_report.rml index 1ee8d5b1858..7949077e43f 100644 --- a/addons/account/report/account_financial_report.rml +++ b/addons/account/report/account_financial_report.rml @@ -166,11 +166,12 @@ - + Chart of Accounts Fiscal Year Filter By [[ get_filter(data)!='No Filters' and get_filter(data) ]] + Target Moves [[ get_account(data) or removeParentNode('para') ]] @@ -197,6 +198,10 @@ + + [[ get_target_move(data) ]] + + diff --git a/addons/account/report/account_invoice_report_view.xml b/addons/account/report/account_invoice_report_view.xml index 5f38db5e71f..47ce75b4d61 100644 --- a/addons/account/report/account_invoice_report_view.xml +++ b/addons/account/report/account_invoice_report_view.xml @@ -71,7 +71,7 @@ - + diff --git a/addons/account/res_config.py b/addons/account/res_config.py index 89d238b16e9..09df82e38fd 100644 --- a/addons/account/res_config.py +++ b/addons/account/res_config.py @@ -25,7 +25,7 @@ from dateutil.relativedelta import relativedelta from operator import itemgetter from os.path import join as opj -from openerp.tools import DEFAULT_SERVER_DATE_FORMAT, DEFAULT_SERVER_DATETIME_FORMAT as DF +from openerp.tools import DEFAULT_SERVER_DATE_FORMAT as DF from openerp.tools.translate import _ from openerp.osv import fields, osv from openerp import tools @@ -81,31 +81,31 @@ class account_config_settings(osv.osv_memory): 'purchase_refund_sequence_next': fields.related('purchase_refund_journal_id', 'sequence_id', 'number_next', type='integer', string='Next supplier credit note number'), 'module_account_check_writing': fields.boolean('Pay your suppliers by check', - help="""This allows you to check writing and printing. - This installs the module account_check_writing."""), + help='This allows you to check writing and printing.\n' + '-This installs the module account_check_writing.'), 'module_account_accountant': fields.boolean('Full accounting features: journals, legal statements, chart of accounts, etc.', help="""If you do not check this box, you will be able to do invoicing & payments, but not accounting (Journal Items, Chart of Accounts, ...)"""), 'module_account_asset': fields.boolean('Assets management', - help="""This allows you to manage the assets owned by a company or a person. - It keeps track of the depreciation occurred on those assets, and creates account move for those depreciation lines. - This installs the module account_asset. If you do not check this box, you will be able to do invoicing & payments, - but not accounting (Journal Items, Chart of Accounts, ...)"""), + help='This allows you to manage the assets owned by a company or a person.\n' + 'It keeps track of the depreciation occurred on those assets, and creates account move for those depreciation lines.\n' + '-This installs the module account_asset. If you do not check this box, you will be able to do invoicing & payments, ' + 'but not accounting (Journal Items, Chart of Accounts, ...)'), 'module_account_budget': fields.boolean('Budget management', - help="""This allows accountants to manage analytic and crossovered budgets. - Once the master budgets and the budgets are defined, - the project managers can set the planned amount on each analytic account. - This installs the module account_budget."""), + help='This allows accountants to manage analytic and crossovered budgets. ' + 'Once the master budgets and the budgets are defined, ' + 'the project managers can set the planned amount on each analytic account.\n' + '-This installs the module account_budget.'), 'module_account_payment': fields.boolean('Manage payment orders', - help="""This allows you to create and manage your payment orders, with purposes to - * serve as base for an easy plug-in of various automated payment mechanisms, and - * provide a more efficient way to manage invoice payments. - This installs the module account_payment."""), + help='This allows you to create and manage your payment orders, with purposes to \n' + '* serve as base for an easy plug-in of various automated payment mechanisms, and \n' + '* provide a more efficient way to manage invoice payments.\n' + '-This installs the module account_payment.' ), 'module_account_voucher': fields.boolean('Manage customer payments', - help="""This includes all the basic requirements of voucher entries for bank, cash, sales, purchase, expense, contra, etc. - This installs the module account_voucher."""), + help='This includes all the basic requirements of voucher entries for bank, cash, sales, purchase, expense, contra, etc.\n' + '-This installs the module account_voucher.'), 'module_account_followup': fields.boolean('Manage customer payment follow-ups', - help="""This allows to automate letters for unpaid invoices, with multi-level recalls. - This installs the module account_followup."""), + help='This allows to automate letters for unpaid invoices, with multi-level recalls.\n' + '-This installs the module account_followup.'), 'group_proforma_invoices': fields.boolean('Allow pro-forma invoices', implied_group='account.group_proforma_invoices', help="Allows you to put invoices in pro-forma state."), diff --git a/addons/account/test/account_bank_statement.yml b/addons/account/test/account_bank_statement.yml index 3711cff4d56..28828e0e3ea 100644 --- a/addons/account/test/account_bank_statement.yml +++ b/addons/account/test/account_bank_statement.yml @@ -67,9 +67,10 @@ Then I cancel Bank Statements and verifies that it raises a warning - !python {model: account.bank.statement}: | + from openerp.osv import osv try: self.button_cancel(cr, uid, [ref("account_bank_statement_0")]) assert False, "An exception should have been raised, the journal should not let us cancel moves!" - except Exception: + except osv.except_osv: # exception was raised as expected, as the journal does not allow cancelling moves pass diff --git a/addons/account/test/account_customer_invoice.yml b/addons/account/test/account_customer_invoice.yml index b2d87e753de..d0b445fcff5 100644 --- a/addons/account/test/account_customer_invoice.yml +++ b/addons/account/test/account_customer_invoice.yml @@ -1,7 +1,10 @@ - In order to test account invoice I create a new customer invoice - - I will create bank detail + I will create bank detail with using manager access rights because account manager can only create bank details. +- + !context + uid: 'res_users_account_manager' - !record {model: res.partner.bank, id: res_partner_bank_0}: state: bank @@ -11,6 +14,11 @@ footer: True bank: base.res_bank_1 bank_name: Reserve +- + Test with that user which have rights to make Invoicing and payment and who is accountant. +- + !context + uid: 'res_users_account_user' - I create a customer invoice - diff --git a/addons/account/test/account_invoice_state.yml b/addons/account/test/account_invoice_state.yml index 7b995150af0..34ac53e7b85 100644 --- a/addons/account/test/account_invoice_state.yml +++ b/addons/account/test/account_invoice_state.yml @@ -1,3 +1,8 @@ +- + Test with that user which have rights to make Invoicing. +- + !context + uid: 'res_users_account_user' - In order to test Confirm Draft Invoice wizard I create an invoice and confirm it with this wizard - diff --git a/addons/account/test/account_supplier_invoice.yml b/addons/account/test/account_supplier_invoice.yml index 02c3d367050..a59ede03e4e 100644 --- a/addons/account/test/account_supplier_invoice.yml +++ b/addons/account/test/account_supplier_invoice.yml @@ -1,3 +1,8 @@ +- + Test with that Finance manager who can only create supplier invoice. +- + !context + uid: 'res_users_account_manager' - In order to test account invoice I create a new supplier invoice - @@ -73,14 +78,16 @@ I cancel the account move which is in posted state and verifies that it gives warning message - !python {model: account.move}: | + from openerp.osv import osv inv_obj = self.pool.get('account.invoice') inv = inv_obj.browse(cr, uid, ref('account_invoice_supplier0')) try: mov_cancel = self.button_cancel(cr, uid, [inv.move_id.id], {'lang': u'en_US', 'tz': False, 'active_model': 'ir.ui.menu', 'journal_type': 'purchase', 'active_ids': [ref('menu_action_invoice_tree2')], 'type': 'in_invoice', 'active_id': ref('menu_action_invoice_tree2')}) - except Exception, e: - assert e, 'Warning message has not been raised' + assert False, "This should never happen!" + except osv.except_osv: + pass - I verify that 'Period Sum' and 'Year sum' of the tax code are the expected values - diff --git a/addons/account/test/account_test_users.yml b/addons/account/test/account_test_users.yml new file mode 100644 index 00000000000..c0002ac8b67 --- /dev/null +++ b/addons/account/test/account_test_users.yml @@ -0,0 +1,32 @@ +- + Create a user as 'Accountant' +- + !record {model: res.users, id: res_users_account_user, view: False}: + company_id: base.main_company + name: Accountant + login: acc + password: acc + email: accountuser@yourcompany.com +- + I added groups for Accountant. +- + !record {model: res.users, id: res_users_account_user}: + groups_id: + - account.group_account_user + - base.group_partner_manager +- + Create a user as 'Financial Manager' +- + !record {model: res.users, id: res_users_account_manager, view: False}: + company_id: base.main_company + name: Financial Manager + login: fm + password: fm + email: accountmanager@yourcompany.com +- + I added groups for Financial Manager. +- + !record {model: res.users, id: res_users_account_manager}: + groups_id: + - account.group_account_manager + - base.group_partner_manager \ No newline at end of file diff --git a/addons/account/test/account_validate_account_move.yml b/addons/account/test/account_validate_account_move.yml index d47ee564019..a99ae3b4d43 100644 --- a/addons/account/test/account_validate_account_move.yml +++ b/addons/account/test/account_validate_account_move.yml @@ -1,3 +1,8 @@ +- + Test validate account move with user who is accountant which have its rights.' +- + !context + uid: 'res_users_account_user' - In order to test the account move lines in OpenERP, I create account move - diff --git a/addons/account/wizard/account_financial_report.py b/addons/account/wizard/account_financial_report.py index 2ce7118335a..48bdfd33081 100644 --- a/addons/account/wizard/account_financial_report.py +++ b/addons/account/wizard/account_financial_report.py @@ -54,7 +54,7 @@ class accounting_report(osv.osv_memory): 'target_move': 'posted', 'account_report_id': _get_account_report, } - + def _build_comparison_context(self, cr, uid, ids, data, context=None): if context is None: context = {} @@ -62,6 +62,7 @@ class accounting_report(osv.osv_memory): result['fiscalyear'] = 'fiscalyear_id_cmp' in data['form'] and data['form']['fiscalyear_id_cmp'] or False result['journal_ids'] = 'journal_ids' in data['form'] and data['form']['journal_ids'] or False result['chart_account_id'] = 'chart_account_id' in data['form'] and data['form']['chart_account_id'] or False + result['state'] = 'target_move' in data['form'] and data['form']['target_move'] or '' if data['form']['filter_cmp'] == 'filter_date': result['date_from'] = data['form']['date_from_cmp'] result['date_to'] = data['form']['date_to_cmp'] @@ -86,7 +87,7 @@ class accounting_report(osv.osv_memory): return res def _print_report(self, cr, uid, ids, data, context=None): - data['form'].update(self.read(cr, uid, ids, ['date_from_cmp', 'debit_credit', 'date_to_cmp', 'fiscalyear_id_cmp', 'period_from_cmp', 'period_to_cmp', 'filter_cmp', 'account_report_id', 'enable_filter', 'label_filter'], context=context)[0]) + data['form'].update(self.read(cr, uid, ids, ['date_from_cmp', 'debit_credit', 'date_to_cmp', 'fiscalyear_id_cmp', 'period_from_cmp', 'period_to_cmp', 'filter_cmp', 'account_report_id', 'enable_filter', 'label_filter','target_move'], context=context)[0]) return { 'type': 'ir.actions.report.xml', 'report_name': 'account.financial.report', diff --git a/addons/account/wizard/account_invoice_refund.py b/addons/account/wizard/account_invoice_refund.py index 5be9ebc5c80..4b7a7fd5314 100644 --- a/addons/account/wizard/account_invoice_refund.py +++ b/addons/account/wizard/account_invoice_refund.py @@ -157,8 +157,8 @@ class account_invoice_refund(osv.osv_memory): for line in movelines: if line.account_id.id == inv.account_id.id: to_reconcile_ids[line.account_id.id] = [line.id] - if type(line.reconcile_id) != osv.orm.browse_null: - reconcile_obj.unlink(cr, uid, line.reconcile_id.id) + if line.reconcile_id: + line.reconcile_id.unlink() inv_obj.signal_invoice_open(cr, uid, [refund.id]) refund = inv_obj.browse(cr, uid, refund_id[0], context=context) for tmpline in refund.move_id.line_id: diff --git a/addons/account/wizard/account_report_aged_partner_balance_view.xml b/addons/account/wizard/account_report_aged_partner_balance_view.xml index 77ebf02570f..be1d710c09d 100644 --- a/addons/account/wizard/account_report_aged_partner_balance_view.xml +++ b/addons/account/wizard/account_report_aged_partner_balance_view.xml @@ -11,7 +11,8 @@ diff --git a/addons/analytic/analytic.py b/addons/analytic/analytic.py index df852181709..14c8f712e81 100644 --- a/addons/analytic/analytic.py +++ b/addons/analytic/analytic.py @@ -295,10 +295,6 @@ class account_analytic_account(osv.osv): args=[] if context is None: context={} - if context.get('current_model') == 'project.project': - project_obj = self.pool.get("account.analytic.account") - project_ids = project_obj.search(cr, uid, args) - return self.name_get(cr, uid, project_ids, context=context) if name: account_ids = self.search(cr, uid, [('code', '=', name)] + args, limit=limit, context=context) if not account_ids: diff --git a/addons/analytic/analytic_view.xml b/addons/analytic/analytic_view.xml index 0faca841a0f..9a99552be13 100644 --- a/addons/analytic/analytic_view.xml +++ b/addons/analytic/analytic_view.xml @@ -22,7 +22,7 @@ - + diff --git a/addons/analytic/i18n/ar.po b/addons/analytic/i18n/ar.po index 68af10155d4..a7481317305 100644 --- a/addons/analytic/i18n/ar.po +++ b/addons/analytic/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "قالب" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/bg.po b/addons/analytic/i18n/bg.po index c4550629edd..b9a0c119254 100644 --- a/addons/analytic/i18n/bg.po +++ b/addons/analytic/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Образец" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/bs.po b/addons/analytic/i18n/bs.po index c88d15f2b99..878cd7c6a33 100644 --- a/addons/analytic/i18n/bs.po +++ b/addons/analytic/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Predložak." #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/ca.po b/addons/analytic/i18n/ca.po index 4622b62ebc7..dc9659b5a0f 100644 --- a/addons/analytic/i18n/ca.po +++ b/addons/analytic/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Plantilla" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/cs.po b/addons/analytic/i18n/cs.po index 9ac5eb9c971..346de248cab 100644 --- a/addons/analytic/i18n/cs.po +++ b/addons/analytic/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Language: czech\n" #. module: analytic @@ -40,6 +40,7 @@ msgstr "Šablona" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/da.po b/addons/analytic/i18n/da.po index 4d45e8d262b..89fdcad31d2 100644 --- a/addons/analytic/i18n/da.po +++ b/addons/analytic/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/de.po b/addons/analytic/i18n/de.po index 88a3f4dc54d..381844c8aae 100644 --- a/addons/analytic/i18n/de.po +++ b/addons/analytic/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -41,6 +41,7 @@ msgstr "Vorlage" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Ende Datum" diff --git a/addons/analytic/i18n/el.po b/addons/analytic/i18n/el.po index 8b6b56cc979..4245c0a5fd7 100644 --- a/addons/analytic/i18n/el.po +++ b/addons/analytic/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Πρότυπο" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/en_GB.po b/addons/analytic/i18n/en_GB.po index 94d2a1e0003..64760785541 100644 --- a/addons/analytic/i18n/en_GB.po +++ b/addons/analytic/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Template" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "End Date" diff --git a/addons/analytic/i18n/es.po b/addons/analytic/i18n/es.po index 731f447ffc1..9027ef5b8dc 100644 --- a/addons/analytic/i18n/es.po +++ b/addons/analytic/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Plantilla" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Fecha final" diff --git a/addons/analytic/i18n/es_CR.po b/addons/analytic/i18n/es_CR.po index f149ece74e7..640f67e92fb 100644 --- a/addons/analytic/i18n/es_CR.po +++ b/addons/analytic/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: es\n" #. module: analytic @@ -41,6 +41,7 @@ msgstr "Plantilla" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/es_EC.po b/addons/analytic/i18n/es_EC.po index 20919535c26..19ff36cd4ab 100644 --- a/addons/analytic/i18n/es_EC.po +++ b/addons/analytic/i18n/es_EC.po @@ -9,8 +9,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -35,6 +35,7 @@ msgstr "Plantilla" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/es_PY.po b/addons/analytic/i18n/es_PY.po index 4a5fa63e960..5080505d08d 100644 --- a/addons/analytic/i18n/es_PY.po +++ b/addons/analytic/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Plantilla" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/et.po b/addons/analytic/i18n/et.po index 02abb6568b8..1a2a1e2959c 100644 --- a/addons/analytic/i18n/et.po +++ b/addons/analytic/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Mall" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/fa.po b/addons/analytic/i18n/fa.po index 4f2934b0450..7212abdc548 100644 --- a/addons/analytic/i18n/fa.po +++ b/addons/analytic/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/fi.po b/addons/analytic/i18n/fi.po index 0512c792f54..054ebd48c03 100644 --- a/addons/analytic/i18n/fi.po +++ b/addons/analytic/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Mallipohja" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/fr.po b/addons/analytic/i18n/fr.po index 2cefcfd929a..f4b11433877 100644 --- a/addons/analytic/i18n/fr.po +++ b/addons/analytic/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Modèle" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Date de fin" @@ -335,13 +336,13 @@ msgstr "Date de fin" #. module: analytic #: field:account.analytic.account,code:0 msgid "Reference" -msgstr "" +msgstr "Référence" #. module: analytic #: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" -msgstr "" +msgstr "Erreur!" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting @@ -386,7 +387,7 @@ msgstr "Type de compte" #. module: analytic #: field:account.analytic.account,date_start:0 msgid "Start Date" -msgstr "" +msgstr "Date de début" #. module: analytic #: constraint:account.analytic.line:0 diff --git a/addons/analytic/i18n/gl.po b/addons/analytic/i18n/gl.po index efe72c6e4ca..74b81bb2ab2 100644 --- a/addons/analytic/i18n/gl.po +++ b/addons/analytic/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Plantilla" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/hr.po b/addons/analytic/i18n/hr.po index f335d9c6c62..839ff5cf8d2 100644 --- a/addons/analytic/i18n/hr.po +++ b/addons/analytic/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Predložak" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/hu.po b/addons/analytic/i18n/hu.po index 4c6b076773d..d4a41108207 100644 --- a/addons/analytic/i18n/hu.po +++ b/addons/analytic/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-26 04:44+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -39,6 +39,7 @@ msgstr "Sablon" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Befejezés dátuma" @@ -86,6 +87,14 @@ msgid "" "the\n" " customer." msgstr "" +"Ha egyszer a szerződés határideje át lett\n" +" lépve vagy a maximum szolgáltatási " +"egységek száma\n" +" (pl. támogatási szerződés) el lett\n" +" érve, a számlázási ügyintéző e-" +"mailben\n" +" értesítve lesz a szerződés " +"megújításáról." #. module: analytic #: selection:account.analytic.account,type:0 @@ -186,6 +195,8 @@ msgid "" "Sets the higher limit of time to work on the contract, based on the " "timesheet. (for instance, number of hours in a limited support contract.)" msgstr "" +"Beállítja az időbeosztás szerinti a szerződésre ráfordítható hosszabb időt. " +"(például, órák száma egy korlátozottan támogatott szerződéshez.)" #. module: analytic #: code:addons/analytic/analytic.py:160 @@ -198,6 +209,12 @@ msgid "" "consolidation purposes of several companies charts with different " "currencies, for example." msgstr "" +"Ha beállított egy vállalatot, a kiválasztott pénznemnek azonosnak kell " +"lennie a pénznemével. \n" +"A vállalathoz tartozókat leválaszthatja, ezzel megváltoztatható a pénznem, " +"de csak az elemző számlák 'nézet' típusán. Ez nagyon hasznos lehet " +"különböző vállalatok különböző pénznemében értékel grafikonjainak " +"megerősítéshez, például." #. module: analytic #: field:account.analytic.account,message_is_follower:0 @@ -312,12 +329,12 @@ msgstr "Egyenleg" #. module: analytic #: help:account.analytic.account,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Ha be van jelölve, akkor figyelje az új üzeneteket." #. module: analytic #: selection:account.analytic.account,state:0 msgid "To Renew" -msgstr "" +msgstr "Megújításhoz" #. module: analytic #: field:account.analytic.account,quantity:0 @@ -333,18 +350,18 @@ msgstr "Záró dátum" #. module: analytic #: field:account.analytic.account,code:0 msgid "Reference" -msgstr "" +msgstr "Hivatkozás" #. module: analytic #: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" -msgstr "" +msgstr "Hiba!" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting msgid "Analytic Accounting" -msgstr "" +msgstr "Analitikus/elemző könyvvitel" #. module: analytic #: field:account.analytic.line,amount:0 @@ -367,7 +384,7 @@ msgstr "Gyűjtőkód" #. module: analytic #: field:account.analytic.account,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Pénznem" #. module: analytic #: help:account.analytic.account,message_summary:0 @@ -375,21 +392,23 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"A chettelés összegzést megállítja (üzenetek száma,...). Ez az összegzés " +"direkt HTML formátumú ahhoz hogy beilleszthető legyen a kanban nézetekbe." #. module: analytic #: field:account.analytic.account,type:0 msgid "Type of Account" -msgstr "" +msgstr "Bankszámla típusa" #. module: analytic #: field:account.analytic.account,date_start:0 msgid "Start Date" -msgstr "" +msgstr "Kezdő dátum" #. module: analytic #: constraint:account.analytic.line:0 msgid "You cannot create analytic line on view account." -msgstr "" +msgstr "Nem hozhat létre elemző sort a számla nézeten." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/it.po b/addons/analytic/i18n/it.po index 05bbeedc91f..028423ddcb8 100644 --- a/addons/analytic/i18n/it.po +++ b/addons/analytic/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-14 21:13+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Modello" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Data Finale" diff --git a/addons/analytic/i18n/ja.po b/addons/analytic/i18n/ja.po index 46418d239b5..82987557d34 100644 --- a/addons/analytic/i18n/ja.po +++ b/addons/analytic/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "テンプレート" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/lt.po b/addons/analytic/i18n/lt.po index d9073313307..582d2ced9bc 100644 --- a/addons/analytic/i18n/lt.po +++ b/addons/analytic/i18n/lt.po @@ -14,24 +14,24 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-30 05:29+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 msgid "Child Accounts" -msgstr "" +msgstr "Vaikinės sąskaitos" #. module: analytic #: selection:account.analytic.account,state:0 msgid "In Progress" -msgstr "" +msgstr "Vykdoma" #. module: analytic #: code:addons/analytic/analytic.py:229 #, python-format msgid "Contract: " -msgstr "" +msgstr "Sutartis: " #. module: analytic #: selection:account.analytic.account,state:0 @@ -40,18 +40,19 @@ msgstr "" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" -msgstr "" +msgstr "Pabaigos data" #. module: analytic #: help:account.analytic.line,unit_amount:0 msgid "Specifies the amount of quantity to count." -msgstr "" +msgstr "Nurodo produkto kiekį." #. module: analytic #: field:account.analytic.account,debit:0 msgid "Debit" -msgstr "" +msgstr "Debetas" #. module: analytic #: help:account.analytic.account,type:0 @@ -79,31 +80,39 @@ msgid "" "the\n" " customer." msgstr "" +"Kai tik pasibaigia sutartis\n" +" arba maksimaliai kartų atlikus " +"paslaugas\n" +" (pvz. techninės pagalbos sutartis),\n" +" sąskaitos valdytojas yra įspėjamas\n" +" el. laišku, kad atnaujintų sutartį " +"su\n" +" pirkėju." #. module: analytic #: selection:account.analytic.account,type:0 msgid "Contract or Project" -msgstr "" +msgstr "Sutartis arba projektas" #. module: analytic #: field:account.analytic.account,name:0 msgid "Account/Contract Name" -msgstr "" +msgstr "Sąskaitos/sutarties pavadinimas" #. module: analytic #: field:account.analytic.account,manager_id:0 msgid "Account Manager" -msgstr "" +msgstr "Sąskaitos valdytojas" #. module: analytic #: field:account.analytic.account,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Prenumeratoriai" #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" -msgstr "" +msgstr "Uždaryta" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_pending @@ -113,23 +122,23 @@ msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 msgid "New" -msgstr "" +msgstr "Naujas" #. module: analytic #: field:account.analytic.account,user_id:0 msgid "Project Manager" -msgstr "" +msgstr "Projekto vadovas" #. module: analytic #: field:account.analytic.account,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: analytic #: code:addons/analytic/analytic.py:271 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopija)" #. module: analytic #: model:ir.model,name:analytic.model_account_analytic_line @@ -140,12 +149,12 @@ msgstr "" #: field:account.analytic.account,description:0 #: field:account.analytic.line,name:0 msgid "Description" -msgstr "" +msgstr "Aprašymas" #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Neperžiūrėtos žinutės" #. module: analytic #: constraint:account.analytic.account:0 @@ -156,17 +165,17 @@ msgstr "" #: field:account.analytic.account,company_id:0 #: field:account.analytic.line,company_id:0 msgid "Company" -msgstr "" +msgstr "Įmonė" #. module: analytic #: view:account.analytic.account:0 msgid "Renewal" -msgstr "" +msgstr "Pratęsimas" #. module: analytic #: help:account.analytic.account,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Žinučių ir pranešimų istorija" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_opened @@ -195,12 +204,12 @@ msgstr "" #. module: analytic #: field:account.analytic.account,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ar prenumeratorius" #. module: analytic #: field:account.analytic.line,user_id:0 msgid "User" -msgstr "" +msgstr "Naudotojas" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_pending @@ -210,7 +219,7 @@ msgstr "" #. module: analytic #: field:account.analytic.line,date:0 msgid "Date" -msgstr "" +msgstr "Data" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_closed @@ -220,7 +229,7 @@ msgstr "" #. module: analytic #: view:account.analytic.account:0 msgid "Terms and Conditions" -msgstr "" +msgstr "Sąlygos" #. module: analytic #: help:account.analytic.line,amount:0 @@ -228,11 +237,13 @@ msgid "" "Calculated by multiplying the quantity and the price given in the Product's " "cost price. Always expressed in the company main currency." msgstr "" +"Apskaičiuota dauginant kiekį iš nurodyto Produkto savikainos. Suma visada " +"išreikšta pagrindine įmonės valiuta." #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" -msgstr "" +msgstr "Pirkėjas" #. module: analytic #: field:account.analytic.account,child_complete_ids:0 @@ -242,28 +253,28 @@ msgstr "" #. module: analytic #: field:account.analytic.account,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Pranešimai" #. module: analytic #: field:account.analytic.account,parent_id:0 msgid "Parent Analytic Account" -msgstr "" +msgstr "Tėvinė analitinė sąskaita" #. module: analytic #: view:account.analytic.account:0 msgid "Contract Information" -msgstr "" +msgstr "Sutarties duomenys" #. module: analytic #: field:account.analytic.account,template_id:0 #: selection:account.analytic.account,type:0 msgid "Template of Contract" -msgstr "" +msgstr "Sutarties šablonas" #. module: analytic #: field:account.analytic.account,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Santrauka" #. module: analytic #: field:account.analytic.account,quantity_max:0 @@ -273,7 +284,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,credit:0 msgid "Credit" -msgstr "" +msgstr "Kreditas" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_opened @@ -288,22 +299,22 @@ msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 msgid "Cancelled" -msgstr "" +msgstr "Atšauktas" #. module: analytic #: selection:account.analytic.account,type:0 msgid "Analytic View" -msgstr "" +msgstr "Analitinė apžvalga" #. module: analytic #: field:account.analytic.account,balance:0 msgid "Balance" -msgstr "" +msgstr "Balansas" #. module: analytic #: help:account.analytic.account,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jeigu pažymėta, naujos žinutės reikalaus jūsų dėmesio." #. module: analytic #: selection:account.analytic.account,state:0 @@ -314,7 +325,7 @@ msgstr "" #: field:account.analytic.account,quantity:0 #: field:account.analytic.line,unit_amount:0 msgid "Quantity" -msgstr "" +msgstr "Kiekis" #. module: analytic #: field:account.analytic.account,date:0 @@ -324,23 +335,23 @@ msgstr "" #. module: analytic #: field:account.analytic.account,code:0 msgid "Reference" -msgstr "" +msgstr "Numeris" #. module: analytic #: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" -msgstr "" +msgstr "Klaida!" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting msgid "Analytic Accounting" -msgstr "" +msgstr "Analitinė apskaita" #. module: analytic #: field:account.analytic.line,amount:0 msgid "Amount" -msgstr "" +msgstr "Suma" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -353,12 +364,12 @@ msgstr "" #: field:account.analytic.line,account_id:0 #: model:ir.model,name:analytic.model_account_analytic_account msgid "Analytic Account" -msgstr "" +msgstr "Analitinė sąskaita" #. module: analytic #: field:account.analytic.account,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Valiuta" #. module: analytic #: help:account.analytic.account,message_summary:0 @@ -366,16 +377,18 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Saugo pokalbių suvestinę (žinučių skaičius, ...). Ši apžvalga saugoma html " +"formatu, kad būtų galima įterpti į kanban rodinius." #. module: analytic #: field:account.analytic.account,type:0 msgid "Type of Account" -msgstr "" +msgstr "Sąskaitos tipas" #. module: analytic #: field:account.analytic.account,date_start:0 msgid "Start Date" -msgstr "" +msgstr "Pradžios data" #. module: analytic #: constraint:account.analytic.line:0 @@ -385,4 +398,4 @@ msgstr "" #. module: analytic #: field:account.analytic.account,line_ids:0 msgid "Analytic Entries" -msgstr "" +msgstr "Analitiniai įrašai" diff --git a/addons/analytic/i18n/lv.po b/addons/analytic/i18n/lv.po index c6f44a142d6..ebc61c52ca6 100644 --- a/addons/analytic/i18n/lv.po +++ b/addons/analytic/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Veidne" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/mk.po b/addons/analytic/i18n/mk.po index 37f9d73ec6a..fade23267df 100644 --- a/addons/analytic/i18n/mk.po +++ b/addons/analytic/i18n/mk.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 msgid "Child Accounts" -msgstr "Сметка (дете)" +msgstr "Сметки (дете)" #. module: analytic #: selection:account.analytic.account,state:0 @@ -40,6 +40,7 @@ msgstr "Урнек" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Краен датум" @@ -66,11 +67,11 @@ msgid "" "default data that you can reuse easily." msgstr "" "Доколку изберете тип за Преглед, тоа значи дека нема да биде дозволено " -"внесување на записи во записникот користејки ја таа сметка.\n" +"креирање на внесови во дневникот користејки ја таа сметка.\n" "Типот 'Аналитичка сметка' значи обични корисници што ќе се користат во " "сметководството.\n" -"Доколку одберете Договор или Проект, тоа ви ја нуди можноста за менаџирање " -"на валидноста и опциите за фактурирање за оваа сметка.\n" +"Доколку одберете Договор или Проект, тоа ви ја нуди можноста за управување " +"со валидноста и опциите за фактурирање за оваа сметка.\n" "Специјалниот тип 'Шаблон на договор' ви овозможува да дефинирате шаблон со " "стандардни податоци кои може лесно да ги менувате." @@ -93,7 +94,7 @@ msgstr "" " на сервисни единици, менаџерот на " "сметката \n" " се известува преку e-mail за да го \n" -" обнови договорот со клиентот." +" обнови договорот со купувачот." #. module: analytic #: selection:account.analytic.account,type:0 @@ -113,7 +114,7 @@ msgstr "Менаџер на сметка" #. module: analytic #: field:account.analytic.account,message_follower_ids:0 msgid "Followers" -msgstr "Следбеници" +msgstr "Пратители" #. module: analytic #: selection:account.analytic.account,state:0 @@ -181,7 +182,7 @@ msgstr "Обновување" #. module: analytic #: help:account.analytic.account,message_ids:0 msgid "Messages and communication history" -msgstr "Пораки и историја на комуникација" +msgstr "Историја на пораки и комуникација" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_opened @@ -194,8 +195,8 @@ msgid "" "Sets the higher limit of time to work on the contract, based on the " "timesheet. (for instance, number of hours in a limited support contract.)" msgstr "" -"Сетирање на горна граница на време за работана договорот, базирано на " -"контролната картица. (на пример, број на часови во договор со ограничена " +"Подесување на горна граница на време за работа на договорот, базирано на " +"временската таблица. (на пример, број на часови во договор со ограничена " "поддршка)" #. module: analytic @@ -211,7 +212,7 @@ msgid "" msgstr "" "Доколку поставите компанија, избраната валута мора да биде иста како на " "компанијата. \n" -"Може да отстранете каде компанијата припаѓа и со тоа да извршите промена на " +"Може да отстраните каде припаѓа компанијата и со тоа да извршите промена на " "валутата, само на аналитичка сметка со тип 'преглед'. Ова може да биде " "навистина корисно во консолидациски цели кај табели со различни валути на " "неколку компании, на пример." @@ -219,7 +220,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,message_is_follower:0 msgid "Is a Follower" -msgstr "Е следбеник" +msgstr "Пратител" #. module: analytic #: field:account.analytic.line,user_id:0 @@ -258,7 +259,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" -msgstr "Клиент" +msgstr "Купувач" #. module: analytic #: field:account.analytic.account,child_complete_ids:0 @@ -284,7 +285,7 @@ msgstr "Информации за договорот" #: field:account.analytic.account,template_id:0 #: selection:account.analytic.account,type:0 msgid "Template of Contract" -msgstr "Шаблон на договор" +msgstr "Урнек на договор" #. module: analytic #: field:account.analytic.account,message_summary:0 @@ -299,7 +300,7 @@ msgstr "Припејд сервисни единици" #. module: analytic #: field:account.analytic.account,credit:0 msgid "Credit" -msgstr "Кредит" +msgstr "Побарување" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_opened @@ -324,7 +325,7 @@ msgstr "Аналитички приказ" #. module: analytic #: field:account.analytic.account,balance:0 msgid "Balance" -msgstr "Биланс" +msgstr "Салдо" #. module: analytic #: help:account.analytic.account,message_unread:0 @@ -408,9 +409,9 @@ msgstr "Почетен датум" #. module: analytic #: constraint:account.analytic.line:0 msgid "You cannot create analytic line on view account." -msgstr "Неможе да креирате аналитичка линија на сметка за преглед." +msgstr "Не може да креирате аналитичка ставка на сметка приказ." #. module: analytic #: field:account.analytic.account,line_ids:0 msgid "Analytic Entries" -msgstr "Аналитички записи" +msgstr "Аналитички внесови" diff --git a/addons/analytic/i18n/mn.po b/addons/analytic/i18n/mn.po index 63fa487d3a6..9988836dd17 100644 --- a/addons/analytic/i18n/mn.po +++ b/addons/analytic/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Загвар" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Дуусах огноо" @@ -99,7 +100,7 @@ msgstr "Гэрээ эсвэл Төсөл" #. module: analytic #: field:account.analytic.account,name:0 msgid "Account/Contract Name" -msgstr "Данс/Гэрээний толгой" +msgstr "Данс/Гэрээний нэр" #. module: analytic #: field:account.analytic.account,manager_id:0 @@ -145,7 +146,7 @@ msgstr "%s (хуулбар)" #. module: analytic #: model:ir.model,name:analytic.model_account_analytic_line msgid "Analytic Line" -msgstr "Аналитик шугам" +msgstr "Шинжилгээний мөр" #. module: analytic #: field:account.analytic.account,description:0 @@ -266,7 +267,7 @@ msgstr "Зурвасууд" #. module: analytic #: field:account.analytic.account,parent_id:0 msgid "Parent Analytic Account" -msgstr "Эцэг аналитик данс" +msgstr "Эцэг шинжилгээний данс" #. module: analytic #: view:account.analytic.account:0 @@ -355,7 +356,7 @@ msgstr "Алдаа!" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting msgid "Analytic Accounting" -msgstr "Аналитик санхүү" +msgstr "Шинжилгээний санхүү" #. module: analytic #: field:account.analytic.line,amount:0 @@ -373,7 +374,7 @@ msgstr "Дансны бүтэн нэр" #: field:account.analytic.line,account_id:0 #: model:ir.model,name:analytic.model_account_analytic_account msgid "Analytic Account" -msgstr "Аналитик Данс" +msgstr "Шинжилгээний Данс" #. module: analytic #: field:account.analytic.account,currency_id:0 @@ -407,7 +408,7 @@ msgstr "Та харагдац данс дээр шинжилгээний мөр #. module: analytic #: field:account.analytic.account,line_ids:0 msgid "Analytic Entries" -msgstr "Аналитик бичилт" +msgstr "Шинжилгээний бичилт" #~ msgid "State" #~ msgstr "Төлөв" diff --git a/addons/analytic/i18n/nb.po b/addons/analytic/i18n/nb.po index 4e674d5d4ba..a39aee46592 100644 --- a/addons/analytic/i18n/nb.po +++ b/addons/analytic/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Mal" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Sluttdato." diff --git a/addons/analytic/i18n/nl.po b/addons/analytic/i18n/nl.po index e07b78872ed..f5928cdb634 100644 --- a/addons/analytic/i18n/nl.po +++ b/addons/analytic/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-25 21:19+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \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: 2013-03-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Sjabloon" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Einddatum" @@ -92,8 +93,8 @@ msgstr "" "dienst\n" " eenheden (bijv. support contract) " "is\n" -" bereikt, wordt de rekening beheerder " -"per e-mail\n" +" bereikt, wordt de beheerder van de " +"kostenplaats per e-mail\n" " geïnformeerd om het contact te " "vernieuwen met\n" " de klant." diff --git a/addons/analytic/i18n/nl_BE.po b/addons/analytic/i18n/nl_BE.po index 3643f3a8052..5e76689f314 100644 --- a/addons/analytic/i18n/nl_BE.po +++ b/addons/analytic/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/pl.po b/addons/analytic/i18n/pl.po index aaa53cfce6c..6c75e229e73 100644 --- a/addons/analytic/i18n/pl.po +++ b/addons/analytic/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Szablon" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Data Końcowa" diff --git a/addons/analytic/i18n/pt.po b/addons/analytic/i18n/pt.po index 6e2a38b52a5..08cc99041d4 100644 --- a/addons/analytic/i18n/pt.po +++ b/addons/analytic/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Template" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Data de fecho" diff --git a/addons/analytic/i18n/pt_BR.po b/addons/analytic/i18n/pt_BR.po index 0110bc66e3a..927dcf154d9 100644 --- a/addons/analytic/i18n/pt_BR.po +++ b/addons/analytic/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -41,6 +41,7 @@ msgstr "Modelo" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Data Final" diff --git a/addons/analytic/i18n/ro.po b/addons/analytic/i18n/ro.po index cd14ca270e1..68804ad2586 100644 --- a/addons/analytic/i18n/ro.po +++ b/addons/analytic/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -25,7 +25,7 @@ msgstr "Sub-conturi" #. module: analytic #: selection:account.analytic.account,state:0 msgid "In Progress" -msgstr "In desfasurare" +msgstr "În desfășurare" #. module: analytic #: code:addons/analytic/analytic.py:229 @@ -40,8 +40,9 @@ msgstr "Șablon" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" -msgstr "Data de sfarsit" +msgstr "Dată de sfârșit" #. module: analytic #: help:account.analytic.line,unit_amount:0 diff --git a/addons/analytic/i18n/ru.po b/addons/analytic/i18n/ru.po index 2ad2308f9da..cc1c65b7031 100644 --- a/addons/analytic/i18n/ru.po +++ b/addons/analytic/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Шаблон" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Дата окончания" @@ -129,7 +130,7 @@ msgstr "Статус" #: code:addons/analytic/analytic.py:271 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (копия)" #. module: analytic #: model:ir.model,name:analytic.model_account_analytic_line @@ -195,7 +196,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,message_is_follower:0 msgid "Is a Follower" -msgstr "Является подписчиком" +msgstr "Подписан" #. module: analytic #: field:account.analytic.line,user_id:0 @@ -234,7 +235,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" -msgstr "Клиент" +msgstr "Заказчик" #. module: analytic #: field:account.analytic.account,child_complete_ids:0 @@ -368,16 +369,18 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Содержит сводку по Чаттеру (количество сообщений,...). Эта сводка в формате " +"html для возможности использования в канбан виде" #. module: analytic #: field:account.analytic.account,type:0 msgid "Type of Account" -msgstr "" +msgstr "Тип счёта" #. module: analytic #: field:account.analytic.account,date_start:0 msgid "Start Date" -msgstr "" +msgstr "Дата начала" #. module: analytic #: constraint:account.analytic.line:0 diff --git a/addons/analytic/i18n/sl.po b/addons/analytic/i18n/sl.po index 7bedbbe3637..5a794cbf1a1 100644 --- a/addons/analytic/i18n/sl.po +++ b/addons/analytic/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Predloga" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Končni datum" diff --git a/addons/analytic/i18n/sq.po b/addons/analytic/i18n/sq.po index bac06d8d001..501d2222113 100644 --- a/addons/analytic/i18n/sq.po +++ b/addons/analytic/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/sr.po b/addons/analytic/i18n/sr.po index 41f42159e5d..0b401507d03 100644 --- a/addons/analytic/i18n/sr.po +++ b/addons/analytic/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Šablon" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/sr@latin.po b/addons/analytic/i18n/sr@latin.po index 9953ca7bb01..a3bb1759a3a 100644 --- a/addons/analytic/i18n/sr@latin.po +++ b/addons/analytic/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Obrazac" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/sv.po b/addons/analytic/i18n/sv.po index 94defe9da4c..6382b34a742 100644 --- a/addons/analytic/i18n/sv.po +++ b/addons/analytic/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Mall" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/tr.po b/addons/analytic/i18n/tr.po index d801f3c7cfd..05ffae4e4da 100644 --- a/addons/analytic/i18n/tr.po +++ b/addons/analytic/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Şablon" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Bitiş Tarihi" @@ -219,7 +220,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçi mi" +msgstr "Bir İzleyicidir" #. module: analytic #: field:account.analytic.line,user_id:0 diff --git a/addons/analytic/i18n/vi.po b/addons/analytic/i18n/vi.po index fa4f56fce1b..6678048b86a 100644 --- a/addons/analytic/i18n/vi.po +++ b/addons/analytic/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/zh_CN.po b/addons/analytic/i18n/zh_CN.po index 320b89d10fe..42d5b5b2cd9 100644 --- a/addons/analytic/i18n/zh_CN.po +++ b/addons/analytic/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "模版" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "截止日期" diff --git a/addons/analytic/i18n/zh_TW.po b/addons/analytic/i18n/zh_TW.po index 180b2073ae7..bc6fc4b4a85 100644 --- a/addons/analytic/i18n/zh_TW.po +++ b/addons/analytic/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "模板" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic_contract_hr_expense/analytic_contract_hr_expense_view.xml b/addons/analytic_contract_hr_expense/analytic_contract_hr_expense_view.xml index db269ef37c7..a5bd40e9471 100644 --- a/addons/analytic_contract_hr_expense/analytic_contract_hr_expense_view.xml +++ b/addons/analytic_contract_hr_expense/analytic_contract_hr_expense_view.xml @@ -36,7 +36,7 @@ - -
- -
-
-
-
- - - - -
-
- -
-
-
- -
-
-
-
-
-
\ No newline at end of file diff --git a/addons/im/static/src/xml/im_common.xml b/addons/im/static/src/xml/im_common.xml new file mode 100644 index 00000000000..462e242befd --- /dev/null +++ b/addons/im/static/src/xml/im_common.xml @@ -0,0 +1,42 @@ + + + + +
+ + + +
+
+ All users are offline. They will receive your messages on their next connection. +
+
+
+
+ +
+ + + + + + + + + +
+
+ +
+
+
+ +
+
+
+
+
+
+
\ No newline at end of file diff --git a/addons/im/watcher.py b/addons/im/watcher.py index b8cb74df5ba..c733b189778 100644 --- a/addons/im/watcher.py +++ b/addons/im/watcher.py @@ -51,8 +51,9 @@ class ImWatcher(object): def handle_message(self, message): if message["type"] == "message": - for waiter in self.users.get(message["receiver"], {}).values(): - waiter.set() + for receiver in message["receivers"]: + for waiter in self.users.get(receiver, {}).values(): + waiter.set() else: #type status for waiter in self.users_watch.get(message["user"], {}).values(): waiter.set() diff --git a/addons/im_livechat/im_livechat.py b/addons/im_livechat/im_livechat.py index b68a0079c3a..81d3d61c6b4 100644 --- a/addons/im_livechat/im_livechat.py +++ b/addons/im_livechat/im_livechat.py @@ -75,7 +75,7 @@ class LiveChatController(http.Controller): def available(self, db, channel): reg, uid = self._auth(db) with reg.cursor() as cr: - return reg.get('im_livechat.channel').get_available_user(cr, uid, channel) > 0 + return len(reg.get('im_livechat.channel').get_available_users(cr, uid, channel)) > 0 class im_livechat_channel(osv.osv): _name = 'im_livechat.channel' @@ -159,17 +159,25 @@ class im_livechat_channel(osv.osv): 'image': _get_default_image, } - def get_available_user(self, cr, uid, channel_id, context=None): + def get_available_users(self, cr, uid, channel_id, context=None): channel = self.browse(cr, openerp.SUPERUSER_ID, channel_id, context=context) + im_user_ids = self.pool.get("im.user").search(cr, uid, [["user_id", "in", [user.id for user in channel.user_ids]]], context=context) users = [] - for user in channel.user_ids: - iuid = self.pool.get("im.user").get_by_user_id(cr, uid, user.id, context=context)["id"] + for iuid in im_user_ids: imuser = self.pool.get("im.user").browse(cr, uid, iuid, context=context) if imuser.im_status: users.append(imuser) + return users + + def get_session(self, cr, uid, channel_id, uuid, context=None): + my_id = self.pool.get("im.user").get_my_id(cr, uid, uuid, context=context) + users = self.get_available_users(cr, uid, channel_id, context=context) if len(users) == 0: return False - return random.choice(users).id + user_id = random.choice(users).id + session = self.pool.get("im.session").session_get(cr, uid, [user_id], uuid, context=context) + self.pool.get("im.session").write(cr, openerp.SUPERUSER_ID, session.get("id"), {'channel_id': channel_id}, context=context) + return session.get("id") def test_channel(self, cr, uid, channel, context=None): if not channel: @@ -198,49 +206,9 @@ class im_livechat_channel(osv.osv): self.write(cr, uid, ids, {'user_ids': [(3, uid)]}) return True - -class im_message(osv.osv): - _inherit = 'im.message' - - def _support_member(self, cr, uid, ids, name, arg, context=None): - res = {} - for record in self.browse(cr, uid, ids, context=context): - res[record.id] = False - if record.to_id.user and record.from_id.user: - continue - elif record.to_id.user: - res[record.id] = record.to_id.user.id - elif record.from_id.user: - res[record.id] = record.from_id.user.id - return res - - def _customer(self, cr, uid, ids, name, arg, context=None): - res = {} - for record in self.browse(cr, uid, ids, context=context): - res[record.id] = False - if record.to_id.uuid and record.from_id.uuid: - continue - elif record.to_id.uuid: - res[record.id] = record.to_id.id - elif record.from_id.uuid: - res[record.id] = record.from_id.id - return res - - def _direction(self, cr, uid, ids, name, arg, context=None): - res = {} - for record in self.browse(cr, uid, ids, context=context): - res[record.id] = False - if not not record.to_id.user and not not record.from_id.user: - continue - elif not not record.to_id.user: - res[record.id] = "c2s" - elif not not record.from_id.user: - res[record.id] = "s2c" - return res +class im_session(osv.osv): + _inherit = 'im.session' _columns = { - 'support_member_id': fields.function(_support_member, type='many2one', relation='res.users', string='Support Member', store=True, select=True), - 'customer_id': fields.function(_customer, type='many2one', relation='im.user', string='Customer', store=True, select=True), - 'direction': fields.function(_direction, type="selection", selection=[("s2c", "Support Member to Customer"), ("c2s", "Customer to Support Member")], - string='Direction', store=False), + 'channel_id': fields.many2one("im.user", "Channel"), } diff --git a/addons/im_livechat/im_livechat_view.xml b/addons/im_livechat/im_livechat_view.xml index f684fd561fc..1fccc1b301c 100644 --- a/addons/im_livechat/im_livechat_view.xml +++ b/addons/im_livechat/im_livechat_view.xml @@ -124,7 +124,7 @@ History im.message list - ["|", ('to_id.user', '=', None), ('from_id.user', '=', None)] + [('session_id.channel_id', '!=', None)] @@ -133,10 +133,9 @@ im.message + - - - + diff --git a/addons/im_livechat/include.html b/addons/im_livechat/include.html index 55de6212361..210bad6984c 100644 --- a/addons/im_livechat/include.html +++ b/addons/im_livechat/include.html @@ -1,2 +1,2 @@ - + \ No newline at end of file diff --git a/addons/im_livechat/loader.js b/addons/im_livechat/loader.js index 669591b410f..d2580ab272a 100644 --- a/addons/im_livechat/loader.js +++ b/addons/im_livechat/loader.js @@ -1,19 +1,40 @@ +(function() { + +var tmpQWeb2 = window.QWeb2; + require.config({ context: "oelivesupport", - baseUrl: {{url | json}} + "/im_livechat/static/ext/static/js", + baseUrl: {{url | json}}, + paths: { + jquery: "im_livechat/static/ext/static/lib/jquery/jquery", + underscore: "im_livechat/static/ext/static/lib/underscore/underscore", + qweb2: "im_livechat/static/ext/static/lib/qweb/qweb2", + openerp: "web/static/src/js/openerpframework", + "jquery.achtung": "im_livechat/static/ext/static/lib/jquery-achtung/src/ui.achtung", + livesupport: "im_livechat/static/ext/static/js/livesupport", + im_common: "im/static/src/js/im_common" + }, shim: { underscore: { init: function() { return _.noConflict(); }, }, + qweb2: { + init: function() { + var QWeb2 = window.QWeb2; + window.QWeb2 = tmpQWeb2; + return QWeb2; + }, + }, "jquery.achtung": { deps: ['jquery'], }, }, })(["livesupport", "jquery"], function(livesupport, jQuery) { jQuery.noConflict(); + console.log("loaded live support"); livesupport.main({{url | json}}, {{db | json}}, "anonymous", "anonymous", {{channel | json}}, { buttonText: {{buttonText | json}}, inputPlaceholder: {{inputPlaceholder | json}}, @@ -22,3 +43,5 @@ require.config({ userName: {{userName | json}} || undefined, }); }); + +})(); diff --git a/addons/im_livechat/security/im_livechat_security.xml b/addons/im_livechat/security/im_livechat_security.xml index 5ad020a8a78..b93798f96a9 100644 --- a/addons/im_livechat/security/im_livechat_security.xml +++ b/addons/im_livechat/security/im_livechat_security.xml @@ -25,7 +25,7 @@ Live Support Managers can read messages from live support - ["|", ('to_id.user', '=', None), ('from_id.user', '=', None)] + [('session_id.channel_id', '!=', None)] diff --git a/addons/im_livechat/static/ext/.bowerrc b/addons/im_livechat/static/ext/.bowerrc new file mode 100644 index 00000000000..187c8f0abc4 --- /dev/null +++ b/addons/im_livechat/static/ext/.bowerrc @@ -0,0 +1,3 @@ +{ + "directory": "static/lib/" +} diff --git a/addons/im_livechat/static/ext/Gruntfile.js b/addons/im_livechat/static/ext/Gruntfile.js new file mode 100644 index 00000000000..3d4a7f5aa50 --- /dev/null +++ b/addons/im_livechat/static/ext/Gruntfile.js @@ -0,0 +1,20 @@ +module.exports = function(grunt) { + + grunt.initConfig({ + jshint: { + src: ['static/js/*.js'], + options: { + sub: true, //[] instead of . + evil: true, //eval + laxbreak: true, //unsafe line breaks + }, + }, + }); + + grunt.loadNpmTasks('grunt-contrib-jshint'); + + grunt.registerTask('test', []); + + grunt.registerTask('default', ['jshint']); + +}; \ No newline at end of file diff --git a/addons/im_livechat/static/ext/bower.json b/addons/im_livechat/static/ext/bower.json new file mode 100644 index 00000000000..f10d0de7b9c --- /dev/null +++ b/addons/im_livechat/static/ext/bower.json @@ -0,0 +1,18 @@ +{ + "name": "im_livechat", + "version": "0.0.0", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ], + "dependencies": { + "jquery": "1.8.3", + "underscore": "1.3.1", + "qweb": "git@github.com:OpenERP/qweb.git#~1.0.0", + "jquery-achtung": "git://github.com/joshvarner/jquery-achtung.git", + "requirejs": "~2.1.8" + } +} diff --git a/addons/im_livechat/static/ext/package.json b/addons/im_livechat/static/ext/package.json new file mode 100644 index 00000000000..3ce6500a077 --- /dev/null +++ b/addons/im_livechat/static/ext/package.json @@ -0,0 +1,6 @@ +{ + "devDependencies": { + "grunt": "*", + "grunt-contrib-jshint": "*" + } +} diff --git a/addons/im_livechat/static/ext/static/audio/Ting.mp3 b/addons/im_livechat/static/ext/static/audio/Ting.mp3 deleted file mode 100644 index ffbb77144b2..00000000000 Binary files a/addons/im_livechat/static/ext/static/audio/Ting.mp3 and /dev/null differ diff --git a/addons/im_livechat/static/ext/static/audio/Ting.ogg b/addons/im_livechat/static/ext/static/audio/Ting.ogg deleted file mode 100644 index 74ee13a4e5a..00000000000 Binary files a/addons/im_livechat/static/ext/static/audio/Ting.ogg and /dev/null differ diff --git a/addons/im_livechat/static/ext/static/img/avatar/avatar.jpeg b/addons/im_livechat/static/ext/static/img/avatar/avatar.jpeg deleted file mode 100644 index 7168794022e..00000000000 Binary files a/addons/im_livechat/static/ext/static/img/avatar/avatar.jpeg and /dev/null differ diff --git a/addons/im_livechat/static/ext/static/img/button-gloss.png b/addons/im_livechat/static/ext/static/img/button-gloss.png deleted file mode 100755 index 6f3957702fe..00000000000 Binary files a/addons/im_livechat/static/ext/static/img/button-gloss.png and /dev/null differ diff --git a/addons/im_livechat/static/ext/static/img/glyphicons-halflings-white.png b/addons/im_livechat/static/ext/static/img/glyphicons-halflings-white.png deleted file mode 100755 index 3bf6484a29d..00000000000 Binary files a/addons/im_livechat/static/ext/static/img/glyphicons-halflings-white.png and /dev/null differ diff --git a/addons/im_livechat/static/ext/static/img/glyphicons-halflings.png b/addons/im_livechat/static/ext/static/img/glyphicons-halflings.png deleted file mode 100755 index a9969993201..00000000000 Binary files a/addons/im_livechat/static/ext/static/img/glyphicons-halflings.png and /dev/null differ diff --git a/addons/im_livechat/static/ext/static/img/green.png b/addons/im_livechat/static/ext/static/img/green.png deleted file mode 100644 index 01fb373c251..00000000000 Binary files a/addons/im_livechat/static/ext/static/img/green.png and /dev/null differ diff --git a/addons/im_livechat/static/ext/static/img/logo.png b/addons/im_livechat/static/ext/static/img/logo.png deleted file mode 100644 index aca5f4c60d8..00000000000 Binary files a/addons/im_livechat/static/ext/static/img/logo.png and /dev/null differ diff --git a/addons/im_livechat/static/ext/static/img/wood.png b/addons/im_livechat/static/ext/static/img/wood.png deleted file mode 100644 index 22f2450d3ad..00000000000 Binary files a/addons/im_livechat/static/ext/static/img/wood.png and /dev/null differ diff --git a/addons/im_livechat/static/ext/static/js/jquery.achtung.js b/addons/im_livechat/static/ext/static/js/jquery.achtung.js deleted file mode 100644 index 1aa69469c1d..00000000000 --- a/addons/im_livechat/static/ext/static/js/jquery.achtung.js +++ /dev/null @@ -1,273 +0,0 @@ -/** - * achtung 0.3.0 - * - * Growl-like notifications for jQuery - * - * Copyright (c) 2009 Josh Varner - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - * @license http://www.opensource.org/licenses/mit-license.php - * @author Josh Varner - */ - -/*globals jQuery,clearTimeout,document,navigator,setTimeout -*/ -(function($) { - -/** - * This is based on the jQuery UI $.widget code. I would have just made this - * a $.widget but I didn't want the jQuery UI dependency. - */ -$.fn.achtung = function(options) -{ - var isMethodCall = (typeof options === 'string'), - args = Array.prototype.slice.call(arguments, 0), - name = 'achtung'; - - // handle initialization and non-getter methods - return this.each(function() { - var instance = $.data(this, name); - - // prevent calls to internal methods - if (isMethodCall && options.substring(0, 1) === '_') { - return this; - } - - // constructor - (!instance && !isMethodCall && - $.data(this, name, new $.achtung(this))._init(args)); - - // method call - (instance && isMethodCall && $.isFunction(instance[options]) && - instance[options].apply(instance, args.slice(1))); - }); -}; - -$.achtung = function(element) -{ - var args = Array.prototype.slice.call(arguments, 0), $el; - - if (!element || !element.nodeType) { - $el = $('
'); - return $el.achtung.apply($el, args); - } - - this.$container = $(element); -}; - - -/** - * Static members - **/ -$.extend($.achtung, { - version: '0.3.0', - $overlay: false, - defaults: { - timeout: 10, - disableClose: false, - icon: false, - className: '', - animateClassSwitch: false, - showEffects: {'opacity':'toggle','height':'toggle'}, - hideEffects: {'opacity':'toggle','height':'toggle'}, - showEffectDuration: 500, - hideEffectDuration: 700 - } -}); - -/** - * Non-static members - **/ -$.extend($.achtung.prototype, { - $container: false, - closeTimer: false, - options: {}, - - _init: function(args) - { - var o, self = this; - - args = $.isArray(args) ? args : []; - - - args.unshift($.achtung.defaults); - args.unshift({}); - - o = this.options = $.extend.apply($, args); - - if (!$.achtung.$overlay) { - $.achtung.$overlay = $('
').appendTo(document.body); - } - - if (!o.disableClose) { - $('') - .click(function () { self.close(); }) - .hover(function () { $(this).addClass('achtung-close-button-hover'); }, - function () { $(this).removeClass('achtung-close-button-hover'); }) - .prependTo(this.$container); - } - - this.changeIcon(o.icon, true); - - if (o.message) { - this.$container.append($('' + o.message + '')); - } - - (o.className && this.$container.addClass(o.className)); - (o.css && this.$container.css(o.css)); - - this.$container - .addClass('achtung') - .appendTo($.achtung.$overlay); - - if (o.showEffects) { - this.$container.toggle(); - } else { - this.$container.show(); - } - - if (o.timeout > 0) { - this.timeout(o.timeout); - } - }, - - timeout: function(timeout) - { - var self = this; - - if (this.closeTimer) { - clearTimeout(this.closeTimer); - } - - this.closeTimer = setTimeout(function() { self.close(); }, timeout * 1000); - this.options.timeout = timeout; - }, - - /** - * Change the CSS class associated with this message, using - * a transition if available (not availble in Safari/Webkit). - * If no transition is available, the switch is immediate. - * - * #LATER Check if this has been corrected in Webkit or jQuery UI - * #TODO Make transition time configurable - * @param newClass string Name of new class to associate - */ - changeClass: function(newClass) - { - var self = this; - - if (this.options.className === newClass) { - return; - } - - this.$container.queue(function() { - if (!self.options.animateClassSwitch || - /webkit/.test(navigator.userAgent.toLowerCase()) || - !$.isFunction($.fn.switchClass)) { - self.$container.removeClass(self.options.className); - self.$container.addClass(newClass); - } else { - self.$container.switchClass(self.options.className, newClass, 500); - } - - self.options.className = newClass; - self.$container.dequeue(); - }); - }, - - changeIcon: function(newIcon, force) - { - var self = this; - - if ((force !== true || newIcon === false) && this.options.icon === newIcon) { - return; - } - - if (force || this.options.icon === false) { - this.$container.prepend($('')); - this.options.icon = newIcon; - return; - } else if (newIcon === false) { - this.$container.find('.achtung-message-icon').remove(); - this.options.icon = false; - return; - } - - this.$container.queue(function() { - var $span = $('.achtung-message-icon', self.$container); - - if (!self.options.animateClassSwitch || - /webkit/.test(navigator.userAgent.toLowerCase()) || - !$.isFunction($.fn.switchClass)) { - $span.removeClass(self.options.icon); - $span.addClass(newIcon); - } else { - $span.switchClass(self.options.icon, newIcon, 500); - } - - self.options.icon = newIcon; - self.$container.dequeue(); - }); - }, - - - changeMessage: function(newMessage) - { - this.$container.queue(function() { - $('.achtung-message', $(this)).html(newMessage); - $(this).dequeue(); - }); - }, - - - update: function(options) - { - (options.className && this.changeClass(options.className)); - (options.css && this.$container.css(options.css)); - (typeof(options.icon) !== 'undefined' && this.changeIcon(options.icon)); - (options.message && this.changeMessage(options.message)); - (options.timeout && this.timeout(options.timeout)); - }, - - close: function() - { - var o = this.options, $container = this.$container; - - if (o.hideEffects) { - this.$container.animate(o.hideEffects, o.hideEffectDuration); - } else { - this.$container.hide(); - } - - $container.queue(function() { - $container.removeData('achtung'); - $container.remove(); - - if ($.achtung.$overlay && $.achtung.$overlay.is(':empty')) { - $.achtung.$overlay.remove(); - $.achtung.$overlay = false; - } - - $container.dequeue(); - }); - } -}); - -})(jQuery); \ No newline at end of file diff --git a/addons/im_livechat/static/ext/static/js/jquery.js b/addons/im_livechat/static/ext/static/js/jquery.js deleted file mode 100644 index ded03845983..00000000000 --- a/addons/im_livechat/static/ext/static/js/jquery.js +++ /dev/null @@ -1,9555 +0,0 @@ -/*! - * jQuery JavaScript Library v1.9.0 - * http://jquery.com/ - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * - * Copyright 2005, 2012 jQuery Foundation, Inc. and other contributors - * Released under the MIT license - * http://jquery.org/license - * - * Date: 2013-1-14 - */ -(function( window, undefined ) { -"use strict"; -var - // A central reference to the root jQuery(document) - rootjQuery, - - // The deferred used on DOM ready - readyList, - - // Use the correct document accordingly with window argument (sandbox) - document = window.document, - location = window.location, - - // Map over jQuery in case of overwrite - _jQuery = window.jQuery, - - // Map over the $ in case of overwrite - _$ = window.$, - - // [[Class]] -> type pairs - class2type = {}, - - // List of deleted data cache ids, so we can reuse them - core_deletedIds = [], - - core_version = "1.9.0", - - // Save a reference to some core methods - core_concat = core_deletedIds.concat, - core_push = core_deletedIds.push, - core_slice = core_deletedIds.slice, - core_indexOf = core_deletedIds.indexOf, - core_toString = class2type.toString, - core_hasOwn = class2type.hasOwnProperty, - core_trim = core_version.trim, - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - // The jQuery object is actually just the init constructor 'enhanced' - return new jQuery.fn.init( selector, context, rootjQuery ); - }, - - // Used for matching numbers - core_pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, - - // Used for splitting on whitespace - core_rnotwhite = /\S+/g, - - // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE) - rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - rquickExpr = /^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/, - - // Match a standalone tag - rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/, - - // JSON RegExp - rvalidchars = /^[\],:{}\s]*$/, - rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, - rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g, - rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g, - - // Matches dashed string for camelizing - rmsPrefix = /^-ms-/, - rdashAlpha = /-([\da-z])/gi, - - // Used by jQuery.camelCase as callback to replace() - fcamelCase = function( all, letter ) { - return letter.toUpperCase(); - }, - - // The ready event handler and self cleanup method - DOMContentLoaded = function() { - if ( document.addEventListener ) { - document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); - jQuery.ready(); - } else if ( document.readyState === "complete" ) { - // we're here because readyState === "complete" in oldIE - // which is good enough for us to call the dom ready! - document.detachEvent( "onreadystatechange", DOMContentLoaded ); - jQuery.ready(); - } - }; - -jQuery.fn = jQuery.prototype = { - // The current version of jQuery being used - jquery: core_version, - - constructor: jQuery, - init: function( selector, context, rootjQuery ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && (match[1] || !context) ) { - - // HANDLE: $(html) -> $(array) - if ( match[1] ) { - context = context instanceof jQuery ? context[0] : context; - - // scripts is true for back-compat - jQuery.merge( this, jQuery.parseHTML( - match[1], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - // Properties of context are called as methods if possible - if ( jQuery.isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[2] ); - - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - if ( elem && elem.parentNode ) { - // Handle the case where IE and Opera return items - // by name instead of ID - if ( elem.id !== match[2] ) { - return rootjQuery.find( selector ); - } - - // Otherwise, we inject the element directly into the jQuery object - this.length = 1; - this[0] = elem; - } - - this.context = document; - this.selector = selector; - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || rootjQuery ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this.context = this[0] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( jQuery.isFunction( selector ) ) { - return rootjQuery.ready( selector ); - } - - if ( selector.selector !== undefined ) { - this.selector = selector.selector; - this.context = selector.context; - } - - return jQuery.makeArray( selector, this ); - }, - - // Start with an empty selector - selector: "", - - // The default length of a jQuery object is 0 - length: 0, - - // The number of elements contained in the matched element set - size: function() { - return this.length; - }, - - toArray: function() { - return core_slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - return num == null ? - - // Return a 'clean' array - this.toArray() : - - // Return just the object - ( num < 0 ? this[ this.length + num ] : this[ num ] ); - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - ret.context = this.context; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - // (You can seed the arguments with an array of args, but this is - // only used internally.) - each: function( callback, args ) { - return jQuery.each( this, callback, args ); - }, - - ready: function( fn ) { - // Add the callback - jQuery.ready.promise().done( fn ); - - return this; - }, - - slice: function() { - return this.pushStack( core_slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map(this, function( elem, i ) { - return callback.call( elem, i, elem ); - })); - }, - - end: function() { - return this.prevObject || this.constructor(null); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: core_push, - sort: [].sort, - splice: [].splice -}; - -// Give the init function the jQuery prototype for later instantiation -jQuery.fn.init.prototype = jQuery.fn; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[0] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - target = arguments[1] || {}; - // skip the boolean and the target - i = 2; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !jQuery.isFunction(target) ) { - target = {}; - } - - // extend jQuery itself if only one argument is passed - if ( length === i ) { - target = this; - --i; - } - - for ( ; i < length; i++ ) { - // Only deal with non-null/undefined values - if ( (options = arguments[ i ]) != null ) { - // Extend the base object - for ( name in options ) { - src = target[ name ]; - copy = options[ name ]; - - // Prevent never-ending loop - if ( target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { - if ( copyIsArray ) { - copyIsArray = false; - clone = src && jQuery.isArray(src) ? src : []; - - } else { - clone = src && jQuery.isPlainObject(src) ? src : {}; - } - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend({ - noConflict: function( deep ) { - if ( window.$ === jQuery ) { - window.$ = _$; - } - - if ( deep && window.jQuery === jQuery ) { - window.jQuery = _jQuery; - } - - return jQuery; - }, - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Hold (or release) the ready event - holdReady: function( hold ) { - if ( hold ) { - jQuery.readyWait++; - } else { - jQuery.ready( true ); - } - }, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). - if ( !document.body ) { - return setTimeout( jQuery.ready ); - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - - // Trigger any bound ready events - if ( jQuery.fn.trigger ) { - jQuery( document ).trigger("ready").off("ready"); - } - }, - - // See test/unit/core.js for details concerning isFunction. - // Since version 1.3, DOM methods and functions like alert - // aren't supported. They return false on IE (#2968). - isFunction: function( obj ) { - return jQuery.type(obj) === "function"; - }, - - isArray: Array.isArray || function( obj ) { - return jQuery.type(obj) === "array"; - }, - - isWindow: function( obj ) { - return obj != null && obj == obj.window; - }, - - isNumeric: function( obj ) { - return !isNaN( parseFloat(obj) ) && isFinite( obj ); - }, - - type: function( obj ) { - if ( obj == null ) { - return String( obj ); - } - return typeof obj === "object" || typeof obj === "function" ? - class2type[ core_toString.call(obj) ] || "object" : - typeof obj; - }, - - isPlainObject: function( obj ) { - // Must be an Object. - // Because of IE, we also have to check the presence of the constructor property. - // Make sure that DOM nodes and window objects don't pass through, as well - if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { - return false; - } - - try { - // Not own constructor property must be Object - if ( obj.constructor && - !core_hasOwn.call(obj, "constructor") && - !core_hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { - return false; - } - } catch ( e ) { - // IE8,9 Will throw exceptions on certain host objects #9897 - return false; - } - - // Own properties are enumerated firstly, so to speed up, - // if last one is own, then all properties are own. - - var key; - for ( key in obj ) {} - - return key === undefined || core_hasOwn.call( obj, key ); - }, - - isEmptyObject: function( obj ) { - var name; - for ( name in obj ) { - return false; - } - return true; - }, - - error: function( msg ) { - throw new Error( msg ); - }, - - // data: string of html - // context (optional): If specified, the fragment will be created in this context, defaults to document - // keepScripts (optional): If true, will include scripts passed in the html string - parseHTML: function( data, context, keepScripts ) { - if ( !data || typeof data !== "string" ) { - return null; - } - if ( typeof context === "boolean" ) { - keepScripts = context; - context = false; - } - context = context || document; - - var parsed = rsingleTag.exec( data ), - scripts = !keepScripts && []; - - // Single tag - if ( parsed ) { - return [ context.createElement( parsed[1] ) ]; - } - - parsed = jQuery.buildFragment( [ data ], context, scripts ); - if ( scripts ) { - jQuery( scripts ).remove(); - } - return jQuery.merge( [], parsed.childNodes ); - }, - - parseJSON: function( data ) { - // Attempt to parse using the native JSON parser first - if ( window.JSON && window.JSON.parse ) { - return window.JSON.parse( data ); - } - - if ( data === null ) { - return data; - } - - if ( typeof data === "string" ) { - - // Make sure leading/trailing whitespace is removed (IE can't handle it) - data = jQuery.trim( data ); - - if ( data ) { - // Make sure the incoming data is actual JSON - // Logic borrowed from http://json.org/json2.js - if ( rvalidchars.test( data.replace( rvalidescape, "@" ) - .replace( rvalidtokens, "]" ) - .replace( rvalidbraces, "")) ) { - - return ( new Function( "return " + data ) )(); - } - } - } - - jQuery.error( "Invalid JSON: " + data ); - }, - - // Cross-browser xml parsing - parseXML: function( data ) { - var xml, tmp; - if ( !data || typeof data !== "string" ) { - return null; - } - try { - if ( window.DOMParser ) { // Standard - tmp = new DOMParser(); - xml = tmp.parseFromString( data , "text/xml" ); - } else { // IE - xml = new ActiveXObject( "Microsoft.XMLDOM" ); - xml.async = "false"; - xml.loadXML( data ); - } - } catch( e ) { - xml = undefined; - } - if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; - }, - - noop: function() {}, - - // Evaluates a script in a global context - // Workarounds based on findings by Jim Driscoll - // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context - globalEval: function( data ) { - if ( data && jQuery.trim( data ) ) { - // We use execScript on Internet Explorer - // We use an anonymous function so that context is window - // rather than jQuery in Firefox - ( window.execScript || function( data ) { - window[ "eval" ].call( window, data ); - } )( data ); - } - }, - - // Convert dashed to camelCase; used by the css and data modules - // Microsoft forgot to hump their vendor prefix (#9572) - camelCase: function( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); - }, - - nodeName: function( elem, name ) { - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - }, - - // args is for internal usage only - each: function( obj, callback, args ) { - var value, - i = 0, - length = obj.length, - isArray = isArraylike( obj ); - - if ( args ) { - if ( isArray ) { - for ( ; i < length; i++ ) { - value = callback.apply( obj[ i ], args ); - - if ( value === false ) { - break; - } - } - } else { - for ( i in obj ) { - value = callback.apply( obj[ i ], args ); - - if ( value === false ) { - break; - } - } - } - - // A special, fast, case for the most common use of each - } else { - if ( isArray ) { - for ( ; i < length; i++ ) { - value = callback.call( obj[ i ], i, obj[ i ] ); - - if ( value === false ) { - break; - } - } - } else { - for ( i in obj ) { - value = callback.call( obj[ i ], i, obj[ i ] ); - - if ( value === false ) { - break; - } - } - } - } - - return obj; - }, - - // Use native String.trim function wherever possible - trim: core_trim && !core_trim.call("\uFEFF\xA0") ? - function( text ) { - return text == null ? - "" : - core_trim.call( text ); - } : - - // Otherwise use our own trimming functionality - function( text ) { - return text == null ? - "" : - ( text + "" ).replace( rtrim, "" ); - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArraylike( Object(arr) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - core_push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - var len; - - if ( arr ) { - if ( core_indexOf ) { - return core_indexOf.call( arr, elem, i ); - } - - len = arr.length; - i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; - - for ( ; i < len; i++ ) { - // Skip accessing in sparse arrays - if ( i in arr && arr[ i ] === elem ) { - return i; - } - } - } - - return -1; - }, - - merge: function( first, second ) { - var l = second.length, - i = first.length, - j = 0; - - if ( typeof l === "number" ) { - for ( ; j < l; j++ ) { - first[ i++ ] = second[ j ]; - } - } else { - while ( second[j] !== undefined ) { - first[ i++ ] = second[ j++ ]; - } - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, inv ) { - var retVal, - ret = [], - i = 0, - length = elems.length; - inv = !!inv; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - retVal = !!callback( elems[ i ], i ); - if ( inv !== retVal ) { - ret.push( elems[ i ] ); - } - } - - return ret; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var value, - i = 0, - length = elems.length, - isArray = isArraylike( elems ), - ret = []; - - // Go through the array, translating each of the items to their - if ( isArray ) { - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret[ ret.length ] = value; - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret[ ret.length ] = value; - } - } - } - - // Flatten any nested arrays - return core_concat.apply( [], ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // Bind a function to a context, optionally partially applying any - // arguments. - proxy: function( fn, context ) { - var tmp, args, proxy; - - if ( typeof context === "string" ) { - tmp = fn[ context ]; - context = fn; - fn = tmp; - } - - // Quick check to determine if target is callable, in the spec - // this throws a TypeError, but we will just return undefined. - if ( !jQuery.isFunction( fn ) ) { - return undefined; - } - - // Simulated bind - args = core_slice.call( arguments, 2 ); - proxy = function() { - return fn.apply( context || this, args.concat( core_slice.call( arguments ) ) ); - }; - - // Set the guid of unique handler to the same of original handler, so it can be removed - proxy.guid = fn.guid = fn.guid || jQuery.guid++; - - return proxy; - }, - - // Multifunctional method to get and set values of a collection - // The value/s can optionally be executed if it's a function - access: function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - length = elems.length, - bulk = key == null; - - // Sets many values - if ( jQuery.type( key ) === "object" ) { - chainable = true; - for ( i in key ) { - jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !jQuery.isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < length; i++ ) { - fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); - } - } - } - - return chainable ? - elems : - - // Gets - bulk ? - fn.call( elems ) : - length ? fn( elems[0], key ) : emptyGet; - }, - - now: function() { - return ( new Date() ).getTime(); - } -}); - -jQuery.ready.promise = function( obj ) { - if ( !readyList ) { - - readyList = jQuery.Deferred(); - - // Catch cases where $(document).ready() is called after the browser event has already occurred. - // we once tried to use readyState "interactive" here, but it caused issues like the one - // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 - if ( document.readyState === "complete" ) { - // Handle it asynchronously to allow scripts the opportunity to delay ready - setTimeout( jQuery.ready ); - - // Standards-based browsers support DOMContentLoaded - } else if ( document.addEventListener ) { - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", jQuery.ready, false ); - - // If IE event model is used - } else { - // Ensure firing before onload, maybe late but safe also for iframes - document.attachEvent( "onreadystatechange", DOMContentLoaded ); - - // A fallback to window.onload, that will always work - window.attachEvent( "onload", jQuery.ready ); - - // If IE and not a frame - // continually check to see if the document is ready - var top = false; - - try { - top = window.frameElement == null && document.documentElement; - } catch(e) {} - - if ( top && top.doScroll ) { - (function doScrollCheck() { - if ( !jQuery.isReady ) { - - try { - // Use the trick by Diego Perini - // http://javascript.nwbox.com/IEContentLoaded/ - top.doScroll("left"); - } catch(e) { - return setTimeout( doScrollCheck, 50 ); - } - - // and execute any waiting functions - jQuery.ready(); - } - })(); - } - } - } - return readyList.promise( obj ); -}; - -// Populate the class2type map -jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -}); - -function isArraylike( obj ) { - var length = obj.length, - type = jQuery.type( obj ); - - if ( jQuery.isWindow( obj ) ) { - return false; - } - - if ( obj.nodeType === 1 && length ) { - return true; - } - - return type === "array" || type !== "function" && - ( length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj ); -} - -// All jQuery objects should point back to these -rootjQuery = jQuery(document); -// String to Object options format cache -var optionsCache = {}; - -// Convert String-formatted options into Object-formatted ones and store in cache -function createOptions( options ) { - var object = optionsCache[ options ] = {}; - jQuery.each( options.match( core_rnotwhite ) || [], function( _, flag ) { - object[ flag ] = true; - }); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - ( optionsCache[ options ] || createOptions( options ) ) : - jQuery.extend( {}, options ); - - var // Last fire value (for non-forgettable lists) - memory, - // Flag to know if list was already fired - fired, - // Flag to know if list is currently firing - firing, - // First callback to fire (used internally by add and fireWith) - firingStart, - // End of the loop when firing - firingLength, - // Index of currently firing callback (modified by remove if needed) - firingIndex, - // Actual callback list - list = [], - // Stack of fire calls for repeatable lists - stack = !options.once && [], - // Fire callbacks - fire = function( data ) { - memory = options.memory && data; - fired = true; - firingIndex = firingStart || 0; - firingStart = 0; - firingLength = list.length; - firing = true; - for ( ; list && firingIndex < firingLength; firingIndex++ ) { - if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { - memory = false; // To prevent further calls using add - break; - } - } - firing = false; - if ( list ) { - if ( stack ) { - if ( stack.length ) { - fire( stack.shift() ); - } - } else if ( memory ) { - list = []; - } else { - self.disable(); - } - } - }, - // Actual Callbacks object - self = { - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - // First, we save the current length - var start = list.length; - (function add( args ) { - jQuery.each( args, function( _, arg ) { - var type = jQuery.type( arg ); - if ( type === "function" ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && type !== "string" ) { - // Inspect recursively - add( arg ); - } - }); - })( arguments ); - // Do we need to add the callbacks to the - // current firing batch? - if ( firing ) { - firingLength = list.length; - // With memory, if we're not firing then - // we should call right away - } else if ( memory ) { - firingStart = start; - fire( memory ); - } - } - return this; - }, - // Remove a callback from the list - remove: function() { - if ( list ) { - jQuery.each( arguments, function( _, arg ) { - var index; - while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - // Handle firing indexes - if ( firing ) { - if ( index <= firingLength ) { - firingLength--; - } - if ( index <= firingIndex ) { - firingIndex--; - } - } - } - }); - } - return this; - }, - // Control if a given callback is in the list - has: function( fn ) { - return jQuery.inArray( fn, list ) > -1; - }, - // Remove all callbacks from the list - empty: function() { - list = []; - return this; - }, - // Have the list do nothing anymore - disable: function() { - list = stack = memory = undefined; - return this; - }, - // Is it disabled? - disabled: function() { - return !list; - }, - // Lock the list in its current state - lock: function() { - stack = undefined; - if ( !memory ) { - self.disable(); - } - return this; - }, - // Is it locked? - locked: function() { - return !stack; - }, - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - if ( list && ( !fired || stack ) ) { - if ( firing ) { - stack.push( args ); - } else { - fire( args ); - } - } - return this; - }, - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; -jQuery.extend({ - - Deferred: function( func ) { - var tuples = [ - // action, add listener, listener list, final state - [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], - [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], - [ "notify", "progress", jQuery.Callbacks("memory") ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - then: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - return jQuery.Deferred(function( newDefer ) { - jQuery.each( tuples, function( i, tuple ) { - var action = tuple[ 0 ], - fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; - // deferred[ done | fail | progress ] for forwarding actions to newDefer - deferred[ tuple[1] ](function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && jQuery.isFunction( returned.promise ) ) { - returned.promise() - .done( newDefer.resolve ) - .fail( newDefer.reject ) - .progress( newDefer.notify ); - } else { - newDefer[ action + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); - } - }); - }); - fns = null; - }).promise(); - }, - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Keep pipe for back-compat - promise.pipe = promise.then; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 3 ]; - - // promise[ done | fail | progress ] = list.add - promise[ tuple[1] ] = list.add; - - // Handle state - if ( stateString ) { - list.add(function() { - // state = [ resolved | rejected ] - state = stateString; - - // [ reject_list | resolve_list ].disable; progress_list.lock - }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); - } - - // deferred[ resolve | reject | notify ] - deferred[ tuple[0] ] = function() { - deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments ); - return this; - }; - deferred[ tuple[0] + "With" ] = list.fireWith; - }); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( subordinate /* , ..., subordinateN */ ) { - var i = 0, - resolveValues = core_slice.call( arguments ), - length = resolveValues.length, - - // the count of uncompleted subordinates - remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, - - // the master Deferred. If resolveValues consist of only a single Deferred, just use that. - deferred = remaining === 1 ? subordinate : jQuery.Deferred(), - - // Update function for both resolve and progress values - updateFunc = function( i, contexts, values ) { - return function( value ) { - contexts[ i ] = this; - values[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value; - if( values === progressValues ) { - deferred.notifyWith( contexts, values ); - } else if ( !( --remaining ) ) { - deferred.resolveWith( contexts, values ); - } - }; - }, - - progressValues, progressContexts, resolveContexts; - - // add listeners to Deferred subordinates; treat others as resolved - if ( length > 1 ) { - progressValues = new Array( length ); - progressContexts = new Array( length ); - resolveContexts = new Array( length ); - for ( ; i < length; i++ ) { - if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { - resolveValues[ i ].promise() - .done( updateFunc( i, resolveContexts, resolveValues ) ) - .fail( deferred.reject ) - .progress( updateFunc( i, progressContexts, progressValues ) ); - } else { - --remaining; - } - } - } - - // if we're not waiting on anything, resolve the master - if ( !remaining ) { - deferred.resolveWith( resolveContexts, resolveValues ); - } - - return deferred.promise(); - } -}); -jQuery.support = (function() { - - var support, all, a, select, opt, input, fragment, eventName, isSupported, i, - div = document.createElement("div"); - - // Setup - div.setAttribute( "className", "t" ); - div.innerHTML = "
a"; - - // Support tests won't run in some limited or non-browser environments - all = div.getElementsByTagName("*"); - a = div.getElementsByTagName("a")[ 0 ]; - if ( !all || !a || !all.length ) { - return {}; - } - - // First batch of tests - select = document.createElement("select"); - opt = select.appendChild( document.createElement("option") ); - input = div.getElementsByTagName("input")[ 0 ]; - - a.style.cssText = "top:1px;float:left;opacity:.5"; - support = { - // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) - getSetAttribute: div.className !== "t", - - // IE strips leading whitespace when .innerHTML is used - leadingWhitespace: div.firstChild.nodeType === 3, - - // Make sure that tbody elements aren't automatically inserted - // IE will insert them into empty tables - tbody: !div.getElementsByTagName("tbody").length, - - // Make sure that link elements get serialized correctly by innerHTML - // This requires a wrapper element in IE - htmlSerialize: !!div.getElementsByTagName("link").length, - - // Get the style information from getAttribute - // (IE uses .cssText instead) - style: /top/.test( a.getAttribute("style") ), - - // Make sure that URLs aren't manipulated - // (IE normalizes it by default) - hrefNormalized: a.getAttribute("href") === "/a", - - // Make sure that element opacity exists - // (IE uses filter instead) - // Use a regex to work around a WebKit issue. See #5145 - opacity: /^0.5/.test( a.style.opacity ), - - // Verify style float existence - // (IE uses styleFloat instead of cssFloat) - cssFloat: !!a.style.cssFloat, - - // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) - checkOn: !!input.value, - - // Make sure that a selected-by-default option has a working selected property. - // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) - optSelected: opt.selected, - - // Tests for enctype support on a form (#6743) - enctype: !!document.createElement("form").enctype, - - // Makes sure cloning an html5 element does not cause problems - // Where outerHTML is undefined, this still works - html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav>", - - // jQuery.support.boxModel DEPRECATED in 1.8 since we don't support Quirks Mode - boxModel: document.compatMode === "CSS1Compat", - - // Will be defined later - deleteExpando: true, - noCloneEvent: true, - inlineBlockNeedsLayout: false, - shrinkWrapBlocks: false, - reliableMarginRight: true, - boxSizingReliable: true, - pixelPosition: false - }; - - // Make sure checked status is properly cloned - input.checked = true; - support.noCloneChecked = input.cloneNode( true ).checked; - - // Make sure that the options inside disabled selects aren't marked as disabled - // (WebKit marks them as disabled) - select.disabled = true; - support.optDisabled = !opt.disabled; - - // Support: IE<9 - try { - delete div.test; - } catch( e ) { - support.deleteExpando = false; - } - - // Check if we can trust getAttribute("value") - input = document.createElement("input"); - input.setAttribute( "value", "" ); - support.input = input.getAttribute( "value" ) === ""; - - // Check if an input maintains its value after becoming a radio - input.value = "t"; - input.setAttribute( "type", "radio" ); - support.radioValue = input.value === "t"; - - // #11217 - WebKit loses check when the name is after the checked attribute - input.setAttribute( "checked", "t" ); - input.setAttribute( "name", "t" ); - - fragment = document.createDocumentFragment(); - fragment.appendChild( input ); - - // Check if a disconnected checkbox will retain its checked - // value of true after appended to the DOM (IE6/7) - support.appendChecked = input.checked; - - // WebKit doesn't clone checked state correctly in fragments - support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE<9 - // Opera does not clone events (and typeof div.attachEvent === undefined). - // IE9-10 clones events bound via attachEvent, but they don't trigger with .click() - if ( div.attachEvent ) { - div.attachEvent( "onclick", function() { - support.noCloneEvent = false; - }); - - div.cloneNode( true ).click(); - } - - // Support: IE<9 (lack submit/change bubble), Firefox 17+ (lack focusin event) - // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP), test/csp.php - for ( i in { submit: true, change: true, focusin: true }) { - div.setAttribute( eventName = "on" + i, "t" ); - - support[ i + "Bubbles" ] = eventName in window || div.attributes[ eventName ].expando === false; - } - - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - // Run tests that need a body at doc ready - jQuery(function() { - var container, marginDiv, tds, - divReset = "padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;", - body = document.getElementsByTagName("body")[0]; - - if ( !body ) { - // Return for frameset docs that don't have a body - return; - } - - container = document.createElement("div"); - container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px"; - - body.appendChild( container ).appendChild( div ); - - // Support: IE8 - // Check if table cells still have offsetWidth/Height when they are set - // to display:none and there are still other visible table cells in a - // table row; if so, offsetWidth/Height are not reliable for use when - // determining if an element has been hidden directly using - // display:none (it is still safe to use offsets if a parent element is - // hidden; don safety goggles and see bug #4512 for more information). - div.innerHTML = "
t
"; - tds = div.getElementsByTagName("td"); - tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none"; - isSupported = ( tds[ 0 ].offsetHeight === 0 ); - - tds[ 0 ].style.display = ""; - tds[ 1 ].style.display = "none"; - - // Support: IE8 - // Check if empty table cells still have offsetWidth/Height - support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); - - // Check box-sizing and margin behavior - div.innerHTML = ""; - div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;"; - support.boxSizing = ( div.offsetWidth === 4 ); - support.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== 1 ); - - // Use window.getComputedStyle because jsdom on node.js will break without it. - if ( window.getComputedStyle ) { - support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%"; - support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px"; - - // Check if div with explicit width and no margin-right incorrectly - // gets computed margin-right based on width of container. (#3333) - // Fails in WebKit before Feb 2011 nightlies - // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right - marginDiv = div.appendChild( document.createElement("div") ); - marginDiv.style.cssText = div.style.cssText = divReset; - marginDiv.style.marginRight = marginDiv.style.width = "0"; - div.style.width = "1px"; - - support.reliableMarginRight = - !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight ); - } - - if ( typeof div.style.zoom !== "undefined" ) { - // Support: IE<8 - // Check if natively block-level elements act like inline-block - // elements when setting their display to 'inline' and giving - // them layout - div.innerHTML = ""; - div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1"; - support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); - - // Support: IE6 - // Check if elements with layout shrink-wrap their children - div.style.display = "block"; - div.innerHTML = "
"; - div.firstChild.style.width = "5px"; - support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); - - // Prevent IE 6 from affecting layout for positioned elements #11048 - // Prevent IE from shrinking the body in IE 7 mode #12869 - body.style.zoom = 1; - } - - body.removeChild( container ); - - // Null elements to avoid leaks in IE - container = div = tds = marginDiv = null; - }); - - // Null elements to avoid leaks in IE - all = select = fragment = opt = a = input = null; - - return support; -})(); - -var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/, - rmultiDash = /([A-Z])/g; - -function internalData( elem, name, data, pvt /* Internal Use Only */ ){ - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var thisCache, ret, - internalKey = jQuery.expando, - getByName = typeof name === "string", - - // We have to handle DOM nodes and JS objects differently because IE6-7 - // can't GC object references properly across the DOM-JS boundary - isNode = elem.nodeType, - - // Only DOM nodes need the global jQuery cache; JS object data is - // attached directly to the object so GC can occur automatically - cache = isNode ? jQuery.cache : elem, - - // Only defining an ID for JS objects if its cache already exists allows - // the code to shortcut on the same path as a DOM node with no cache - id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; - - // Avoid doing any more work than we need to when trying to get data on an - // object that has no data at all - if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && getByName && data === undefined ) { - return; - } - - if ( !id ) { - // Only DOM nodes need a new unique ID for each element since their data - // ends up in the global cache - if ( isNode ) { - elem[ internalKey ] = id = core_deletedIds.pop() || jQuery.guid++; - } else { - id = internalKey; - } - } - - if ( !cache[ id ] ) { - cache[ id ] = {}; - - // Avoids exposing jQuery metadata on plain JS objects when the object - // is serialized using JSON.stringify - if ( !isNode ) { - cache[ id ].toJSON = jQuery.noop; - } - } - - // An object can be passed to jQuery.data instead of a key/value pair; this gets - // shallow copied over onto the existing cache - if ( typeof name === "object" || typeof name === "function" ) { - if ( pvt ) { - cache[ id ] = jQuery.extend( cache[ id ], name ); - } else { - cache[ id ].data = jQuery.extend( cache[ id ].data, name ); - } - } - - thisCache = cache[ id ]; - - // jQuery data() is stored in a separate object inside the object's internal data - // cache in order to avoid key collisions between internal data and user-defined - // data. - if ( !pvt ) { - if ( !thisCache.data ) { - thisCache.data = {}; - } - - thisCache = thisCache.data; - } - - if ( data !== undefined ) { - thisCache[ jQuery.camelCase( name ) ] = data; - } - - // Check for both converted-to-camel and non-converted data property names - // If a data property was specified - if ( getByName ) { - - // First Try to find as-is property data - ret = thisCache[ name ]; - - // Test for null|undefined property data - if ( ret == null ) { - - // Try to find the camelCased property - ret = thisCache[ jQuery.camelCase( name ) ]; - } - } else { - ret = thisCache; - } - - return ret; -} - -function internalRemoveData( elem, name, pvt /* For internal use only */ ){ - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var thisCache, i, l, - - isNode = elem.nodeType, - - // See jQuery.data for more information - cache = isNode ? jQuery.cache : elem, - id = isNode ? elem[ jQuery.expando ] : jQuery.expando; - - // If there is already no cache entry for this object, there is no - // purpose in continuing - if ( !cache[ id ] ) { - return; - } - - if ( name ) { - - thisCache = pvt ? cache[ id ] : cache[ id ].data; - - if ( thisCache ) { - - // Support array or space separated string names for data keys - if ( !jQuery.isArray( name ) ) { - - // try the string as a key before any manipulation - if ( name in thisCache ) { - name = [ name ]; - } else { - - // split the camel cased version by spaces unless a key with the spaces exists - name = jQuery.camelCase( name ); - if ( name in thisCache ) { - name = [ name ]; - } else { - name = name.split(" "); - } - } - } else { - // If "name" is an array of keys... - // When data is initially created, via ("key", "val") signature, - // keys will be converted to camelCase. - // Since there is no way to tell _how_ a key was added, remove - // both plain key and camelCase key. #12786 - // This will only penalize the array argument path. - name = name.concat( jQuery.map( name, jQuery.camelCase ) ); - } - - for ( i = 0, l = name.length; i < l; i++ ) { - delete thisCache[ name[i] ]; - } - - // If there is no data left in the cache, we want to continue - // and let the cache object itself get destroyed - if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) { - return; - } - } - } - - // See jQuery.data for more information - if ( !pvt ) { - delete cache[ id ].data; - - // Don't destroy the parent cache unless the internal data object - // had been the only thing left in it - if ( !isEmptyDataObject( cache[ id ] ) ) { - return; - } - } - - // Destroy the cache - if ( isNode ) { - jQuery.cleanData( [ elem ], true ); - - // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) - } else if ( jQuery.support.deleteExpando || cache != cache.window ) { - delete cache[ id ]; - - // When all else fails, null - } else { - cache[ id ] = null; - } -} - -jQuery.extend({ - cache: {}, - - // Unique for each copy of jQuery on the page - // Non-digits removed to match rinlinejQuery - expando: "jQuery" + ( core_version + Math.random() ).replace( /\D/g, "" ), - - // The following elements throw uncatchable exceptions if you - // attempt to add expando properties to them. - noData: { - "embed": true, - // Ban all objects except for Flash (which handle expandos) - "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", - "applet": true - }, - - hasData: function( elem ) { - elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; - return !!elem && !isEmptyDataObject( elem ); - }, - - data: function( elem, name, data ) { - return internalData( elem, name, data, false ); - }, - - removeData: function( elem, name ) { - return internalRemoveData( elem, name, false ); - }, - - // For internal use only. - _data: function( elem, name, data ) { - return internalData( elem, name, data, true ); - }, - - _removeData: function( elem, name ) { - return internalRemoveData( elem, name, true ); - }, - - // A method for determining if a DOM node can handle the data expando - acceptData: function( elem ) { - var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ]; - - // nodes accept data unless otherwise specified; rejection can be conditional - return !noData || noData !== true && elem.getAttribute("classid") === noData; - } -}); - -jQuery.fn.extend({ - data: function( key, value ) { - var attrs, name, - elem = this[0], - i = 0, - data = null; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = jQuery.data( elem ); - - if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { - attrs = elem.attributes; - for ( ; i < attrs.length; i++ ) { - name = attrs[i].name; - - if ( !name.indexOf( "data-" ) ) { - name = jQuery.camelCase( name.substring(5) ); - - dataAttr( elem, name, data[ name ] ); - } - } - jQuery._data( elem, "parsedAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each(function() { - jQuery.data( this, key ); - }); - } - - return jQuery.access( this, function( value ) { - - if ( value === undefined ) { - // Try to fetch any internally stored data first - return elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : null; - } - - this.each(function() { - jQuery.data( this, key, value ); - }); - }, null, value, arguments.length > 1, null, true ); - }, - - removeData: function( key ) { - return this.each(function() { - jQuery.removeData( this, key ); - }); - } -}); - -function dataAttr( elem, key, data ) { - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - - var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); - - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = data === "true" ? true : - data === "false" ? false : - data === "null" ? null : - // Only convert to a number if it doesn't change the string - +data + "" === data ? +data : - rbrace.test( data ) ? jQuery.parseJSON( data ) : - data; - } catch( e ) {} - - // Make sure we set the data so it isn't changed later - jQuery.data( elem, key, data ); - - } else { - data = undefined; - } - } - - return data; -} - -// checks a cache object for emptiness -function isEmptyDataObject( obj ) { - var name; - for ( name in obj ) { - - // if the public data object is empty, the private is still empty - if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { - continue; - } - if ( name !== "toJSON" ) { - return false; - } - } - - return true; -} -jQuery.extend({ - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = jQuery._data( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || jQuery.isArray(data) ) { - queue = jQuery._data( elem, type, jQuery.makeArray(data) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - hooks.cur = fn; - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // not intended for public consumption - generates a queueHooks object, or returns the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return jQuery._data( elem, key ) || jQuery._data( elem, key, { - empty: jQuery.Callbacks("once memory").add(function() { - jQuery._removeData( elem, type + "queue" ); - jQuery._removeData( elem, key ); - }) - }); - } -}); - -jQuery.fn.extend({ - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[0], type ); - } - - return data === undefined ? - this : - this.each(function() { - var queue = jQuery.queue( this, type, data ); - - // ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[0] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - }); - }, - dequeue: function( type ) { - return this.each(function() { - jQuery.dequeue( this, type ); - }); - }, - // Based off of the plugin by Clint Helfers, with permission. - // http://blindsignals.com/index.php/2009/07/jquery-delay/ - delay: function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = setTimeout( next, time ); - hooks.stop = function() { - clearTimeout( timeout ); - }; - }); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while( i-- ) { - tmp = jQuery._data( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -}); -var nodeHook, boolHook, - rclass = /[\t\r\n]/g, - rreturn = /\r/g, - rfocusable = /^(?:input|select|textarea|button|object)$/i, - rclickable = /^(?:a|area)$/i, - rboolean = /^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i, - ruseDefault = /^(?:checked|selected)$/i, - getSetAttribute = jQuery.support.getSetAttribute, - getSetInput = jQuery.support.input; - -jQuery.fn.extend({ - attr: function( name, value ) { - return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each(function() { - jQuery.removeAttr( this, name ); - }); - }, - - prop: function( name, value ) { - return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - name = jQuery.propFix[ name ] || name; - return this.each(function() { - // try/catch handles cases where IE balks (such as removing a property on window) - try { - this[ name ] = undefined; - delete this[ name ]; - } catch( e ) {} - }); - }, - - addClass: function( value ) { - var classes, elem, cur, clazz, j, - i = 0, - len = this.length, - proceed = typeof value === "string" && value; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( j ) { - jQuery( this ).addClass( value.call( this, j, this.className ) ); - }); - } - - if ( proceed ) { - // The disjunction here is for better compressibility (see removeClass) - classes = ( value || "" ).match( core_rnotwhite ) || []; - - for ( ; i < len; i++ ) { - elem = this[ i ]; - cur = elem.nodeType === 1 && ( elem.className ? - ( " " + elem.className + " " ).replace( rclass, " " ) : - " " - ); - - if ( cur ) { - j = 0; - while ( (clazz = classes[j++]) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - elem.className = jQuery.trim( cur ); - - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, clazz, j, - i = 0, - len = this.length, - proceed = arguments.length === 0 || typeof value === "string" && value; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( j ) { - jQuery( this ).removeClass( value.call( this, j, this.className ) ); - }); - } - if ( proceed ) { - classes = ( value || "" ).match( core_rnotwhite ) || []; - - for ( ; i < len; i++ ) { - elem = this[ i ]; - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( elem.className ? - ( " " + elem.className + " " ).replace( rclass, " " ) : - "" - ); - - if ( cur ) { - j = 0; - while ( (clazz = classes[j++]) ) { - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) >= 0 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - elem.className = value ? jQuery.trim( cur ) : ""; - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isBool = typeof stateVal === "boolean"; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( i ) { - jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); - }); - } - - return this.each(function() { - if ( type === "string" ) { - // toggle individual class names - var className, - i = 0, - self = jQuery( this ), - state = stateVal, - classNames = value.match( core_rnotwhite ) || []; - - while ( (className = classNames[ i++ ]) ) { - // check each className given, space separated list - state = isBool ? state : !self.hasClass( className ); - self[ state ? "addClass" : "removeClass" ]( className ); - } - - // Toggle whole class name - } else if ( type === "undefined" || type === "boolean" ) { - if ( this.className ) { - // store className if set - jQuery._data( this, "__className__", this.className ); - } - - // If the element has a class name or if we're passed "false", - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; - } - }); - }, - - hasClass: function( selector ) { - var className = " " + selector + " ", - i = 0, - l = this.length; - for ( ; i < l; i++ ) { - if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) { - return true; - } - } - - return false; - }, - - val: function( value ) { - var hooks, ret, isFunction, - elem = this[0]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { - return ret; - } - - ret = elem.value; - - return typeof ret === "string" ? - // handle most common string cases - ret.replace(rreturn, "") : - // handle cases where value is null/undef or number - ret == null ? "" : ret; - } - - return; - } - - isFunction = jQuery.isFunction( value ); - - return this.each(function( i ) { - var val, - self = jQuery(this); - - if ( this.nodeType !== 1 ) { - return; - } - - if ( isFunction ) { - val = value.call( this, i, self.val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - } else if ( typeof val === "number" ) { - val += ""; - } else if ( jQuery.isArray( val ) ) { - val = jQuery.map(val, function ( value ) { - return value == null ? "" : value + ""; - }); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - }); - } -}); - -jQuery.extend({ - valHooks: { - option: { - get: function( elem ) { - // attributes.value is undefined in Blackberry 4.7 but - // uses .value. See #6932 - var val = elem.attributes.value; - return !val || val.specified ? elem.value : elem.text; - } - }, - select: { - get: function( elem ) { - var value, option, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one" || index < 0, - values = one ? null : [], - max = one ? index + 1 : options.length, - i = index < 0 ? - max : - one ? index : 0; - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // oldIE doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - // Don't return options that are disabled or in a disabled optgroup - ( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) && - ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var values = jQuery.makeArray( value ); - - jQuery(elem).find("option").each(function() { - this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; - }); - - if ( !values.length ) { - elem.selectedIndex = -1; - } - return values; - } - } - }, - - attr: function( elem, name, value ) { - var ret, hooks, notxml, - nType = elem.nodeType; - - // don't get/set attributes on text, comment and attribute nodes - if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); - - // All attributes are lowercase - // Grab necessary hook if one is defined - if ( notxml ) { - name = name.toLowerCase(); - hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook ); - } - - if ( value !== undefined ) { - - if ( value === null ) { - jQuery.removeAttr( elem, name ); - - } else if ( hooks && notxml && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { - return ret; - - } else { - elem.setAttribute( name, value + "" ); - return value; - } - - } else if ( hooks && notxml && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { - return ret; - - } else { - - // In IE9+, Flash objects don't have .getAttribute (#12945) - // Support: IE9+ - if ( typeof elem.getAttribute !== "undefined" ) { - ret = elem.getAttribute( name ); - } - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? - undefined : - ret; - } - }, - - removeAttr: function( elem, value ) { - var name, propName, - i = 0, - attrNames = value && value.match( core_rnotwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( (name = attrNames[i++]) ) { - propName = jQuery.propFix[ name ] || name; - - // Boolean attributes get special treatment (#10870) - if ( rboolean.test( name ) ) { - // Set corresponding property to false for boolean attributes - // Also clear defaultChecked/defaultSelected (if appropriate) for IE<8 - if ( !getSetAttribute && ruseDefault.test( name ) ) { - elem[ jQuery.camelCase( "default-" + name ) ] = - elem[ propName ] = false; - } else { - elem[ propName ] = false; - } - - // See #9699 for explanation of this approach (setting first, then removal) - } else { - jQuery.attr( elem, name, "" ); - } - - elem.removeAttribute( getSetAttribute ? name : propName ); - } - } - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { - // Setting the type on a radio button after the value resets the value in IE6-9 - // Reset value to default in case type is set after value during creation - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - propFix: { - tabindex: "tabIndex", - readonly: "readOnly", - "for": "htmlFor", - "class": "className", - maxlength: "maxLength", - cellspacing: "cellSpacing", - cellpadding: "cellPadding", - rowspan: "rowSpan", - colspan: "colSpan", - usemap: "useMap", - frameborder: "frameBorder", - contenteditable: "contentEditable" - }, - - prop: function( elem, name, value ) { - var ret, hooks, notxml, - nType = elem.nodeType; - - // don't get/set properties on text, comment and attribute nodes - if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); - - if ( notxml ) { - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { - return ret; - - } else { - return ( elem[ name ] = value ); - } - - } else { - if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { - return ret; - - } else { - return elem[ name ]; - } - } - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set - // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - var attributeNode = elem.getAttributeNode("tabindex"); - - return attributeNode && attributeNode.specified ? - parseInt( attributeNode.value, 10 ) : - rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? - 0 : - undefined; - } - } - } -}); - -// Hook for boolean attributes -boolHook = { - get: function( elem, name ) { - var - // Use .prop to determine if this attribute is understood as boolean - prop = jQuery.prop( elem, name ), - - // Fetch it accordingly - attr = typeof prop === "boolean" && elem.getAttribute( name ), - detail = typeof prop === "boolean" ? - - getSetInput && getSetAttribute ? - attr != null : - // oldIE fabricates an empty string for missing boolean attributes - // and conflates checked/selected into attroperties - ruseDefault.test( name ) ? - elem[ jQuery.camelCase( "default-" + name ) ] : - !!attr : - - // fetch an attribute node for properties not recognized as boolean - elem.getAttributeNode( name ); - - return detail && detail.value !== false ? - name.toLowerCase() : - undefined; - }, - set: function( elem, value, name ) { - if ( value === false ) { - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { - // IE<8 needs the *property* name - elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name ); - - // Use defaultChecked and defaultSelected for oldIE - } else { - elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true; - } - - return name; - } -}; - -// fix oldIE value attroperty -if ( !getSetInput || !getSetAttribute ) { - jQuery.attrHooks.value = { - get: function( elem, name ) { - var ret = elem.getAttributeNode( name ); - return jQuery.nodeName( elem, "input" ) ? - - // Ignore the value *property* by using defaultValue - elem.defaultValue : - - ret && ret.specified ? ret.value : undefined; - }, - set: function( elem, value, name ) { - if ( jQuery.nodeName( elem, "input" ) ) { - // Does not return so that setAttribute is also used - elem.defaultValue = value; - } else { - // Use nodeHook if defined (#1954); otherwise setAttribute is fine - return nodeHook && nodeHook.set( elem, value, name ); - } - } - }; -} - -// IE6/7 do not support getting/setting some attributes with get/setAttribute -if ( !getSetAttribute ) { - - // Use this for any attribute in IE6/7 - // This fixes almost every IE6/7 issue - nodeHook = jQuery.valHooks.button = { - get: function( elem, name ) { - var ret = elem.getAttributeNode( name ); - return ret && ( name === "id" || name === "name" || name === "coords" ? ret.value !== "" : ret.specified ) ? - ret.value : - undefined; - }, - set: function( elem, value, name ) { - // Set the existing or create a new attribute node - var ret = elem.getAttributeNode( name ); - if ( !ret ) { - elem.setAttributeNode( - (ret = elem.ownerDocument.createAttribute( name )) - ); - } - - ret.value = value += ""; - - // Break association with cloned elements by also using setAttribute (#9646) - return name === "value" || value === elem.getAttribute( name ) ? - value : - undefined; - } - }; - - // Set contenteditable to false on removals(#10429) - // Setting to empty string throws an error as an invalid value - jQuery.attrHooks.contenteditable = { - get: nodeHook.get, - set: function( elem, value, name ) { - nodeHook.set( elem, value === "" ? false : value, name ); - } - }; - - // Set width and height to auto instead of 0 on empty string( Bug #8150 ) - // This is for removals - jQuery.each([ "width", "height" ], function( i, name ) { - jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { - set: function( elem, value ) { - if ( value === "" ) { - elem.setAttribute( name, "auto" ); - return value; - } - } - }); - }); -} - - -// Some attributes require a special call on IE -// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !jQuery.support.hrefNormalized ) { - jQuery.each([ "href", "src", "width", "height" ], function( i, name ) { - jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { - get: function( elem ) { - var ret = elem.getAttribute( name, 2 ); - return ret == null ? undefined : ret; - } - }); - }); - - // href/src property should get the full normalized URL (#10299/#12915) - jQuery.each([ "href", "src" ], function( i, name ) { - jQuery.propHooks[ name ] = { - get: function( elem ) { - return elem.getAttribute( name, 4 ); - } - }; - }); -} - -if ( !jQuery.support.style ) { - jQuery.attrHooks.style = { - get: function( elem ) { - // Return undefined in the case of empty string - // Note: IE uppercases css property names, but if we were to .toLowerCase() - // .cssText, that would destroy case senstitivity in URL's, like in "background" - return elem.style.cssText || undefined; - }, - set: function( elem, value ) { - return ( elem.style.cssText = value + "" ); - } - }; -} - -// Safari mis-reports the default selected property of an option -// Accessing the parent's selectedIndex property fixes it -if ( !jQuery.support.optSelected ) { - jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, { - get: function( elem ) { - var parent = elem.parentNode; - - if ( parent ) { - parent.selectedIndex; - - // Make sure that it also works with optgroups, see #5701 - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - return null; - } - }); -} - -// IE6/7 call enctype encoding -if ( !jQuery.support.enctype ) { - jQuery.propFix.enctype = "encoding"; -} - -// Radios and checkboxes getter/setter -if ( !jQuery.support.checkOn ) { - jQuery.each([ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - get: function( elem ) { - // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified - return elem.getAttribute("value") === null ? "on" : elem.value; - } - }; - }); -} -jQuery.each([ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], { - set: function( elem, value ) { - if ( jQuery.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); - } - } - }); -}); -var rformElems = /^(?:input|select|textarea)$/i, - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|contextmenu)|click/, - rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - - var handleObjIn, eventHandle, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - // Don't attach events to noData or text/comment nodes (but allow plain objects) - elemData = elem.nodeType !== 3 && elem.nodeType !== 8 && jQuery._data( elem ); - - if ( !elemData ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !(events = elemData.events) ) { - events = elemData.events = {}; - } - if ( !(eventHandle = elemData.handle) ) { - eventHandle = elemData.handle = function( e ) { - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && (!e || jQuery.event.triggered !== e.type) ? - jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : - undefined; - }; - // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events - eventHandle.elem = elem; - } - - // Handle multiple events separated by a space - // jQuery(...).bind("mouseover mouseout", fn); - types = ( types || "" ).match( core_rnotwhite ) || [""]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[t] ) || []; - type = origType = tmp[1]; - namespaces = ( tmp[2] || "" ).split( "." ).sort(); - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend({ - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join(".") - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !(handlers = events[ type ]) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener/attachEvent if the special events handler returns false - if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - // Bind the global event handler to the element - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle, false ); - - } else if ( elem.attachEvent ) { - elem.attachEvent( "on" + type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - // Nullify elem to prevent memory leaks in IE - elem = null; - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var j, origCount, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = jQuery.hasData( elem ) && jQuery._data( elem ); - - if ( !elemData || !(events = elemData.events) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( core_rnotwhite ) || [""]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[t] ) || []; - type = origType = tmp[1]; - namespaces = ( tmp[2] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - delete elemData.handle; - - // removeData also checks for emptiness and clears the expando if empty - // so use it instead of delete - jQuery._removeData( elem, "events" ); - } - }, - - trigger: function( event, data, elem, onlyHandlers ) { - - var i, cur, tmp, bubbleType, ontype, handle, special, - eventPath = [ elem || document ], - type = event.type || event, - namespaces = event.namespace ? event.namespace.split(".") : []; - - cur = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf(".") >= 0 ) { - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split("."); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf(":") < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - event.isTrigger = true; - event.namespace = namespaces.join("."); - event.namespace_re = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === (elem.ownerDocument || document) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) { - - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === false ) { - event.preventDefault(); - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) && - !(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name name as the event. - // Can't use an .isFunction() check here because IE6/7 fails that test. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - try { - elem[ type ](); - } catch ( e ) { - // IE<9 dies on focus/blur to hidden element (#1486,#12518) - // only reproducible on winXP IE8 native, not IE9 in IE8 mode - } - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - dispatch: function( event ) { - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( event ); - - var i, j, ret, matched, handleObj, - handlerQueue = [], - args = core_slice.call( arguments ), - handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[0] = event; - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) { - - // Triggered event must either 1) have no namespace, or - // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). - if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) - .apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( (event.result = ret) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var i, matches, sel, handleObj, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - // Black-hole SVG instance trees (#13180) - // Avoid non-left-click bubbling in Firefox (#3861) - if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) { - - for ( ; cur != this; cur = cur.parentNode || this ) { - - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.disabled !== true || event.type !== "click" ) { - matches = []; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matches[ sel ] === undefined ) { - matches[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) >= 0 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matches[ sel ] ) { - matches.push( handleObj ); - } - } - if ( matches.length ) { - handlerQueue.push({ elem: cur, handlers: matches }); - } - } - } - } - - // Add the remaining (directly-bound) handlers - if ( delegateCount < handlers.length ) { - handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) }); - } - - return handlerQueue; - }, - - fix: function( event ) { - if ( event[ jQuery.expando ] ) { - return event; - } - - // Create a writable copy of the event object and normalize some properties - var i, prop, - originalEvent = event, - fixHook = jQuery.event.fixHooks[ event.type ] || {}, - copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; - - event = new jQuery.Event( originalEvent ); - - i = copy.length; - while ( i-- ) { - prop = copy[ i ]; - event[ prop ] = originalEvent[ prop ]; - } - - // Support: IE<9 - // Fix target property (#1925) - if ( !event.target ) { - event.target = originalEvent.srcElement || document; - } - - // Support: Chrome 23+, Safari? - // Target should not be a text node (#504, #13143) - if ( event.target.nodeType === 3 ) { - event.target = event.target.parentNode; - } - - // Support: IE<9 - // For mouse/key events, metaKey==false if it's undefined (#3368, #11328) - event.metaKey = !!event.metaKey; - - return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; - }, - - // Includes some event props shared by KeyEvent and MouseEvent - props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), - - fixHooks: {}, - - keyHooks: { - props: "char charCode key keyCode".split(" "), - filter: function( event, original ) { - - // Add which for key events - if ( event.which == null ) { - event.which = original.charCode != null ? original.charCode : original.keyCode; - } - - return event; - } - }, - - mouseHooks: { - props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), - filter: function( event, original ) { - var eventDoc, doc, body, - button = original.button, - fromElement = original.fromElement; - - // Calculate pageX/Y if missing and clientX/Y available - if ( event.pageX == null && original.clientX != null ) { - eventDoc = event.target.ownerDocument || document; - doc = eventDoc.documentElement; - body = eventDoc.body; - - event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); - event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); - } - - // Add relatedTarget, if necessary - if ( !event.relatedTarget && fromElement ) { - event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - // Note: button is not normalized, so don't use it - if ( !event.which && button !== undefined ) { - event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); - } - - return event; - } - }, - - special: { - load: { - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - click: { - // For checkbox, fire native event so checked state will be right - trigger: function() { - if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) { - this.click(); - return false; - } - } - }, - focus: { - // Fire native event if possible so blur/focus sequence is correct - trigger: function() { - if ( this !== document.activeElement && this.focus ) { - try { - this.focus(); - return false; - } catch ( e ) { - // Support: IE<9 - // If we error on focus to hidden element (#1486, #12518), - // let .trigger() run the handlers - } - } - }, - delegateType: "focusin" - }, - blur: { - trigger: function() { - if ( this === document.activeElement && this.blur ) { - this.blur(); - return false; - } - }, - delegateType: "focusout" - }, - - beforeunload: { - postDispatch: function( event ) { - - // Even when returnValue equals to undefined Firefox will still show alert - if ( event.result !== undefined ) { - event.originalEvent.returnValue = event.result; - } - } - } - }, - - simulate: function( type, elem, event, bubble ) { - // Piggyback on a donor event to simulate a different one. - // Fake originalEvent to avoid donor's stopPropagation, but if the - // simulated event prevents default then we do the same on the donor. - var e = jQuery.extend( - new jQuery.Event(), - event, - { type: type, - isSimulated: true, - originalEvent: {} - } - ); - if ( bubble ) { - jQuery.event.trigger( e, null, elem ); - } else { - jQuery.event.dispatch.call( elem, e ); - } - if ( e.isDefaultPrevented() ) { - event.preventDefault(); - } - } -}; - -jQuery.removeEvent = document.removeEventListener ? - function( elem, type, handle ) { - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle, false ); - } - } : - function( elem, type, handle ) { - var name = "on" + type; - - if ( elem.detachEvent ) { - - // #8545, #7054, preventing memory leaks for custom events in IE6-8 - // detachEvent needed property on element, by name of that event, to properly expose it to GC - if ( typeof elem[ name ] === "undefined" ) { - elem[ name ] = null; - } - - elem.detachEvent( name, handle ); - } - }; - -jQuery.Event = function( src, props ) { - // Allow instantiation without the 'new' keyword - if ( !(this instanceof jQuery.Event) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || - src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || jQuery.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - if ( !e ) { - return; - } - - // If preventDefault exists, run it on the original event - if ( e.preventDefault ) { - e.preventDefault(); - - // Support: IE - // Otherwise set the returnValue property of the original event to false - } else { - e.returnValue = false; - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - if ( !e ) { - return; - } - // If stopPropagation exists, run it on the original event - if ( e.stopPropagation ) { - e.stopPropagation(); - } - - // Support: IE - // Set the cancelBubble property of the original event to true - e.cancelBubble = true; - }, - stopImmediatePropagation: function() { - this.isImmediatePropagationStopped = returnTrue; - this.stopPropagation(); - } -}; - -// Create mouseenter/leave events using mouseover/out and event-time checks -jQuery.each({ - mouseenter: "mouseover", - mouseleave: "mouseout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mousenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || (related !== target && !jQuery.contains( target, related )) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -}); - -// IE submit delegation -if ( !jQuery.support.submitBubbles ) { - - jQuery.event.special.submit = { - setup: function() { - // Only need this for delegated form submit events - if ( jQuery.nodeName( this, "form" ) ) { - return false; - } - - // Lazy-add a submit handler when a descendant form may potentially be submitted - jQuery.event.add( this, "click._submit keypress._submit", function( e ) { - // Node name check avoids a VML-related crash in IE (#9807) - var elem = e.target, - form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; - if ( form && !jQuery._data( form, "submitBubbles" ) ) { - jQuery.event.add( form, "submit._submit", function( event ) { - event._submit_bubble = true; - }); - jQuery._data( form, "submitBubbles", true ); - } - }); - // return undefined since we don't need an event listener - }, - - postDispatch: function( event ) { - // If form was submitted by the user, bubble the event up the tree - if ( event._submit_bubble ) { - delete event._submit_bubble; - if ( this.parentNode && !event.isTrigger ) { - jQuery.event.simulate( "submit", this.parentNode, event, true ); - } - } - }, - - teardown: function() { - // Only need this for delegated form submit events - if ( jQuery.nodeName( this, "form" ) ) { - return false; - } - - // Remove delegated handlers; cleanData eventually reaps submit handlers attached above - jQuery.event.remove( this, "._submit" ); - } - }; -} - -// IE change delegation and checkbox/radio fix -if ( !jQuery.support.changeBubbles ) { - - jQuery.event.special.change = { - - setup: function() { - - if ( rformElems.test( this.nodeName ) ) { - // IE doesn't fire change on a check/radio until blur; trigger it on click - // after a propertychange. Eat the blur-change in special.change.handle. - // This still fires onchange a second time for check/radio after blur. - if ( this.type === "checkbox" || this.type === "radio" ) { - jQuery.event.add( this, "propertychange._change", function( event ) { - if ( event.originalEvent.propertyName === "checked" ) { - this._just_changed = true; - } - }); - jQuery.event.add( this, "click._change", function( event ) { - if ( this._just_changed && !event.isTrigger ) { - this._just_changed = false; - } - // Allow triggered, simulated change events (#11500) - jQuery.event.simulate( "change", this, event, true ); - }); - } - return false; - } - // Delegated event; lazy-add a change handler on descendant inputs - jQuery.event.add( this, "beforeactivate._change", function( e ) { - var elem = e.target; - - if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) { - jQuery.event.add( elem, "change._change", function( event ) { - if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { - jQuery.event.simulate( "change", this.parentNode, event, true ); - } - }); - jQuery._data( elem, "changeBubbles", true ); - } - }); - }, - - handle: function( event ) { - var elem = event.target; - - // Swallow native change events from checkbox/radio, we already triggered them above - if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { - return event.handleObj.handler.apply( this, arguments ); - } - }, - - teardown: function() { - jQuery.event.remove( this, "._change" ); - - return !rformElems.test( this.nodeName ); - } - }; -} - -// Create "bubbling" focus and blur events -if ( !jQuery.support.focusinBubbles ) { - jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler while someone wants focusin/focusout - var attaches = 0, - handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - if ( attaches++ === 0 ) { - document.addEventListener( orig, handler, true ); - } - }, - teardown: function() { - if ( --attaches === 0 ) { - document.removeEventListener( orig, handler, true ); - } - } - }; - }); -} - -jQuery.fn.extend({ - - on: function( types, selector, data, fn, /*INTERNAL*/ one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - this.on( type, selector, data, types[ type ], one ); - } - return this; - } - - if ( data == null && fn == null ) { - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return this; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return this.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - }); - }, - one: function( types, selector, data, fn ) { - return this.on( types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each(function() { - jQuery.event.remove( this, types, fn, selector ); - }); - }, - - bind: function( types, data, fn ) { - return this.on( types, null, data, fn ); - }, - unbind: function( types, fn ) { - return this.off( types, null, fn ); - }, - - delegate: function( selector, types, data, fn ) { - return this.on( types, selector, data, fn ); - }, - undelegate: function( selector, types, fn ) { - // ( namespace ) or ( selector, types [, fn] ) - return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn ); - }, - - trigger: function( type, data ) { - return this.each(function() { - jQuery.event.trigger( type, data, this ); - }); - }, - triggerHandler: function( type, data ) { - var elem = this[0]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - }, - - hover: function( fnOver, fnOut ) { - return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); - } -}); - -jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + - "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + - "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) { - - // Handle event binding - jQuery.fn[ name ] = function( data, fn ) { - return arguments.length > 0 ? - this.on( name, null, data, fn ) : - this.trigger( name ); - }; - - if ( rkeyEvent.test( name ) ) { - jQuery.event.fixHooks[ name ] = jQuery.event.keyHooks; - } - - if ( rmouseEvent.test( name ) ) { - jQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks; - } -}); -/*! - * Sizzle CSS Selector Engine - * Copyright 2012 jQuery Foundation and other contributors - * Released under the MIT license - * http://sizzlejs.com/ - */ -(function( window, undefined ) { - -var i, - cachedruns, - Expr, - getText, - isXML, - compile, - hasDuplicate, - outermostContext, - - // Local document vars - setDocument, - document, - docElem, - documentIsXML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - sortOrder, - - // Instance-specific data - expando = "sizzle" + -(new Date()), - preferredDoc = window.document, - support = {}, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - - // General-purpose constants - strundefined = typeof undefined, - MAX_NEGATIVE = 1 << 31, - - // Array methods - arr = [], - pop = arr.pop, - push = arr.push, - slice = arr.slice, - // Use a stripped-down indexOf if we can't use a native one - indexOf = arr.indexOf || function( elem ) { - var i = 0, - len = this.length; - for ( ; i < len; i++ ) { - if ( this[i] === elem ) { - return i; - } - } - return -1; - }, - - - // Regular expressions - - // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - // http://www.w3.org/TR/css3-syntax/#characters - characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", - - // Loosely modeled on CSS identifier characters - // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors - // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier - identifier = characterEncoding.replace( "w", "w#" ), - - // Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors - operators = "([*^$|!~]?=)", - attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace + - "*(?:" + operators + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]", - - // Prefer arguments quoted, - // then not containing pseudos/brackets, - // then attribute selectors/non-parenthetical expressions, - // then anything else - // These preferences are here to reduce the number of selectors - // needing tokenize in the PSEUDO preFilter - pseudos = ":(" + characterEncoding + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + attributes.replace( 3, 8 ) + ")*)|.*)\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([\\x20\\t\\r\\n\\f>+~])" + whitespace + "*" ), - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + characterEncoding + ")" ), - "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), - "NAME": new RegExp( "^\\[name=['\"]?(" + characterEncoding + ")['\"]?\\]" ), - "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + - "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + - "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + - whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rsibling = /[\x20\t\r\n\f]*[+~]/, - - rnative = /\{\s*\[native code\]\s*\}/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rescape = /'|\\/g, - rattributeQuotes = /\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g, - - // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = /\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g, - funescape = function( _, escaped ) { - var high = "0x" + escaped - 0x10000; - // NaN means non-codepoint - return high !== high ? - escaped : - // BMP codepoint - high < 0 ? - String.fromCharCode( high + 0x10000 ) : - // Supplemental Plane codepoint (surrogate pair) - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }; - -// Use a stripped-down slice if we can't use a native one -try { - slice.call( docElem.childNodes, 0 )[0].nodeType; -} catch ( e ) { - slice = function( i ) { - var elem, - results = []; - for ( ; (elem = this[i]); i++ ) { - results.push( elem ); - } - return results; - }; -} - -/** - * For feature detection - * @param {Function} fn The function to test for native support - */ -function isNative( fn ) { - return rnative.test( fn + "" ); -} - -/** - * Create key-value caches of limited size - * @returns {Function(string, Object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var cache, - keys = []; - - return (cache = function( key, value ) { - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key += " " ) > Expr.cacheLength ) { - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return (cache[ key ] = value); - }); -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created div and expects a boolean result - */ -function assert( fn ) { - var div = document.createElement("div"); - - try { - return fn( div ); - } catch (e) { - return false; - } finally { - // release memory in IE - div = null; - } -} - -function Sizzle( selector, context, results, seed ) { - var match, elem, m, nodeType, - // QSA vars - i, groups, old, nid, newContext, newSelector; - - if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { - setDocument( context ); - } - - context = context || document; - results = results || []; - - if ( !selector || typeof selector !== "string" ) { - return results; - } - - if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) { - return []; - } - - if ( !documentIsXML && !seed ) { - - // Shortcuts - if ( (match = rquickExpr.exec( selector )) ) { - // Speed-up: Sizzle("#ID") - if ( (m = match[1]) ) { - if ( nodeType === 9 ) { - elem = context.getElementById( m ); - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - if ( elem && elem.parentNode ) { - // Handle the case where IE, Opera, and Webkit return items - // by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - } else { - // Context is not a document - if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && - contains( context, elem ) && elem.id === m ) { - results.push( elem ); - return results; - } - } - - // Speed-up: Sizzle("TAG") - } else if ( match[2] ) { - push.apply( results, slice.call(context.getElementsByTagName( selector ), 0) ); - return results; - - // Speed-up: Sizzle(".CLASS") - } else if ( (m = match[3]) && support.getByClassName && context.getElementsByClassName ) { - push.apply( results, slice.call(context.getElementsByClassName( m ), 0) ); - return results; - } - } - - // QSA path - if ( support.qsa && !rbuggyQSA.test(selector) ) { - old = true; - nid = expando; - newContext = context; - newSelector = nodeType === 9 && selector; - - // qSA works strangely on Element-rooted queries - // We can work around this by specifying an extra ID on the root - // and working up from there (Thanks to Andrew Dupont for the technique) - // IE 8 doesn't work on object elements - if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { - groups = tokenize( selector ); - - if ( (old = context.getAttribute("id")) ) { - nid = old.replace( rescape, "\\$&" ); - } else { - context.setAttribute( "id", nid ); - } - nid = "[id='" + nid + "'] "; - - i = groups.length; - while ( i-- ) { - groups[i] = nid + toSelector( groups[i] ); - } - newContext = rsibling.test( selector ) && context.parentNode || context; - newSelector = groups.join(","); - } - - if ( newSelector ) { - try { - push.apply( results, slice.call( newContext.querySelectorAll( - newSelector - ), 0 ) ); - return results; - } catch(qsaError) { - } finally { - if ( !old ) { - context.removeAttribute("id"); - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Detect xml - * @param {Element|Object} elem An element or a document - */ -isXML = Sizzle.isXML = function( elem ) { - // documentElement is verified for cases where it doesn't yet exist - // (such as loading iframes in IE - #4833) - var documentElement = elem && (elem.ownerDocument || elem).documentElement; - return documentElement ? documentElement.nodeName !== "HTML" : false; -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var doc = node ? node.ownerDocument || node : preferredDoc; - - // If no document and documentElement is available, return - if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Set our document - document = doc; - docElem = doc.documentElement; - - // Support tests - documentIsXML = isXML( doc ); - - // Check if getElementsByTagName("*") returns only elements - support.tagNameNoComments = assert(function( div ) { - div.appendChild( doc.createComment("") ); - return !div.getElementsByTagName("*").length; - }); - - // Check if attributes should be retrieved by attribute nodes - support.attributes = assert(function( div ) { - div.innerHTML = ""; - var type = typeof div.lastChild.getAttribute("multiple"); - // IE8 returns a string for some attributes even when not present - return type !== "boolean" && type !== "string"; - }); - - // Check if getElementsByClassName can be trusted - support.getByClassName = assert(function( div ) { - // Opera can't find a second classname (in 9.6) - div.innerHTML = ""; - if ( !div.getElementsByClassName || !div.getElementsByClassName("e").length ) { - return false; - } - - // Safari 3.2 caches class attributes and doesn't catch changes - div.lastChild.className = "e"; - return div.getElementsByClassName("e").length === 2; - }); - - // Check if getElementById returns elements by name - // Check if getElementsByName privileges form controls or returns elements by ID - support.getByName = assert(function( div ) { - // Inject content - div.id = expando + 0; - div.innerHTML = "
"; - docElem.insertBefore( div, docElem.firstChild ); - - // Test - var pass = doc.getElementsByName && - // buggy browsers will return fewer than the correct 2 - doc.getElementsByName( expando ).length === 2 + - // buggy browsers will return more than the correct 0 - doc.getElementsByName( expando + 0 ).length; - support.getIdNotName = !doc.getElementById( expando ); - - // Cleanup - docElem.removeChild( div ); - - return pass; - }); - - // IE6/7 return modified attributes - Expr.attrHandle = assert(function( div ) { - div.innerHTML = ""; - return div.firstChild && typeof div.firstChild.getAttribute !== strundefined && - div.firstChild.getAttribute("href") === "#"; - }) ? - {} : - { - "href": function( elem ) { - return elem.getAttribute( "href", 2 ); - }, - "type": function( elem ) { - return elem.getAttribute("type"); - } - }; - - // ID find and filter - if ( support.getIdNotName ) { - Expr.find["ID"] = function( id, context ) { - if ( typeof context.getElementById !== strundefined && !documentIsXML ) { - var m = context.getElementById( id ); - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - return m && m.parentNode ? [m] : []; - } - }; - Expr.filter["ID"] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute("id") === attrId; - }; - }; - } else { - Expr.find["ID"] = function( id, context ) { - if ( typeof context.getElementById !== strundefined && !documentIsXML ) { - var m = context.getElementById( id ); - - return m ? - m.id === id || typeof m.getAttributeNode !== strundefined && m.getAttributeNode("id").value === id ? - [m] : - undefined : - []; - } - }; - Expr.filter["ID"] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id"); - return node && node.value === attrId; - }; - }; - } - - // Tag - Expr.find["TAG"] = support.tagNameNoComments ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== strundefined ) { - return context.getElementsByTagName( tag ); - } - } : - function( tag, context ) { - var elem, - tmp = [], - i = 0, - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - for ( ; (elem = results[i]); i++ ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Name - Expr.find["NAME"] = support.getByName && function( tag, context ) { - if ( typeof context.getElementsByName !== strundefined ) { - return context.getElementsByName( name ); - } - }; - - // Class - Expr.find["CLASS"] = support.getByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== strundefined && !documentIsXML ) { - return context.getElementsByClassName( className ); - } - }; - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21), - // no need to also add to buggyMatches since matches checks buggyQSA - // A support test would require too much code (would include document ready) - rbuggyQSA = [ ":focus" ]; - - if ( (support.qsa = isNative(doc.querySelectorAll)) ) { - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert(function( div ) { - // Select is set to empty string on purpose - // This is to test IE's treatment of not explictly - // setting a boolean content attribute, - // since its presence should be enough - // http://bugs.jquery.com/ticket/12359 - div.innerHTML = ""; - - // IE8 - Some boolean attributes are not treated correctly - if ( !div.querySelectorAll("[selected]").length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:checked|disabled|ismap|multiple|readonly|selected|value)" ); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !div.querySelectorAll(":checked").length ) { - rbuggyQSA.push(":checked"); - } - }); - - assert(function( div ) { - - // Opera 10-12/IE8 - ^= $= *= and empty values - // Should not select anything - div.innerHTML = ""; - if ( div.querySelectorAll("[i^='']").length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:\"\"|'')" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( !div.querySelectorAll(":enabled").length ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Opera 10-11 does not throw on post-comma invalid pseudos - div.querySelectorAll("*,:x"); - rbuggyQSA.push(",.*:"); - }); - } - - if ( (support.matchesSelector = isNative( (matches = docElem.matchesSelector || - docElem.mozMatchesSelector || - docElem.webkitMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector) )) ) { - - assert(function( div ) { - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( div, "div" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( div, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - }); - } - - rbuggyQSA = new RegExp( rbuggyQSA.join("|") ); - rbuggyMatches = new RegExp( rbuggyMatches.join("|") ); - - // Element contains another - // Purposefully does not implement inclusive descendent - // As in, an element does not contain itself - contains = isNative(docElem.contains) || docElem.compareDocumentPosition ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - )); - } : - function( a, b ) { - if ( b ) { - while ( (b = b.parentNode) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - // Document order sorting - sortOrder = docElem.compareDocumentPosition ? - function( a, b ) { - var compare; - - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - if ( (compare = b.compareDocumentPosition && a.compareDocumentPosition && a.compareDocumentPosition( b )) ) { - if ( compare & 1 || a.parentNode && a.parentNode.nodeType === 11 ) { - if ( a === doc || contains( preferredDoc, a ) ) { - return -1; - } - if ( b === doc || contains( preferredDoc, b ) ) { - return 1; - } - return 0; - } - return compare & 4 ? -1 : 1; - } - - return a.compareDocumentPosition ? -1 : 1; - } : - function( a, b ) { - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // The nodes are identical, we can exit early - if ( a === b ) { - hasDuplicate = true; - return 0; - - // Fallback to using sourceIndex (in IE) if it's available on both nodes - } else if ( a.sourceIndex && b.sourceIndex ) { - return ( ~b.sourceIndex || MAX_NEGATIVE ) - ( contains( preferredDoc, a ) && ~a.sourceIndex || MAX_NEGATIVE ); - - // Parentless nodes are either documents or disconnected - } else if ( !aup || !bup ) { - return a === doc ? -1 : - b === doc ? 1 : - aup ? -1 : - bup ? 1 : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( (cur = cur.parentNode) ) { - ap.unshift( cur ); - } - cur = b; - while ( (cur = cur.parentNode) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[i] === bp[i] ) { - i++; - } - - return i ? - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[i], bp[i] ) : - - // Otherwise nodes in our document sort first - ap[i] === preferredDoc ? -1 : - bp[i] === preferredDoc ? 1 : - 0; - }; - - // Always assume the presence of duplicates if sort doesn't - // pass them to our comparison function (as in Google Chrome). - hasDuplicate = false; - [0, 0].sort( sortOrder ); - support.detectDuplicates = hasDuplicate; - - return document; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { - setDocument( elem ); - } - - // Make sure that attribute selectors are quoted - expr = expr.replace( rattributeQuotes, "='$1']" ); - - // rbuggyQSA always contains :focus, so no need for an existence check - if ( support.matchesSelector && !documentIsXML && (!rbuggyMatches || !rbuggyMatches.test(expr)) && !rbuggyQSA.test(expr) ) { - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch(e) {} - } - - return Sizzle( expr, document, null, [elem] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - // Set document vars if needed - if ( ( context.ownerDocument || context ) !== document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - var val; - - // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { - setDocument( elem ); - } - - if ( !documentIsXML ) { - name = name.toLowerCase(); - } - if ( (val = Expr.attrHandle[ name ]) ) { - return val( elem ); - } - if ( documentIsXML || support.attributes ) { - return elem.getAttribute( name ); - } - return ( (val = elem.getAttributeNode( name )) || elem.getAttribute( name ) ) && elem[ name ] === true ? - name : - val && val.specified ? val.value : null; -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -// Document sorting and removing duplicates -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - i = 1, - j = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - results.sort( sortOrder ); - - if ( hasDuplicate ) { - for ( ; (elem = results[i]); i++ ) { - if ( elem === results[ i - 1 ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - return results; -}; - -function siblingCheck( a, b ) { - var cur = a && b && a.nextSibling; - - for ( ; cur; cur = cur.nextSibling ) { - if ( cur === b ) { - return -1; - } - } - - return a ? 1 : -1; -} - -// Returns a function to use in pseudos for input types -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -// Returns a function to use in pseudos for buttons -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return (name === "input" || name === "button") && elem.type === type; - }; -} - -// Returns a function to use in pseudos for positionals -function createPositionalPseudo( fn ) { - return markFunction(function( argument ) { - argument = +argument; - return markFunction(function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ (j = matchIndexes[i]) ] ) { - seed[j] = !(matches[j] = seed[j]); - } - } - }); - }); -} - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - // If no nodeType, this is expected to be an array - for ( ; (node = elem[i]); i++ ) { - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - // Use textContent for elements - // innerText usage removed for consistency of new lines (see #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[1] = match[1].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[3] = ( match[4] || match[5] || "" ).replace( runescape, funescape ); - - if ( match[2] === "~=" ) { - match[3] = " " + match[3] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[1] = match[1].toLowerCase(); - - if ( match[1].slice( 0, 3 ) === "nth" ) { - // nth-* requires argument - if ( !match[3] ) { - Sizzle.error( match[0] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); - match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); - - // other types prohibit arguments - } else if ( match[3] ) { - Sizzle.error( match[0] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[5] && match[2]; - - if ( matchExpr["CHILD"].test( match[0] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[4] ) { - match[2] = match[4]; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - // Get excess from tokenize (recursively) - (excess = tokenize( unquoted, true )) && - // advance to the next closing parenthesis - (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { - - // excess is a negative index - match[0] = match[0].slice( 0, excess ); - match[2] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeName ) { - if ( nodeName === "*" ) { - return function() { return true; }; - } - - nodeName = nodeName.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && - classCache( className, function( elem ) { - return pattern.test( elem.className || (typeof elem.getAttribute !== strundefined && elem.getAttribute("class")) || "" ); - }); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.substr( result.length - check.length ) === check : - operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.substr( 0, check.length + 1 ) === check + "-" : - false; - }; - }, - - "CHILD": function( type, what, argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, context, xml ) { - var cache, outerCache, node, diff, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( (node = node[ dir ]) ) { - if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { - return false; - } - } - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - // Seek `elem` from a previously-cached index - outerCache = parent[ expando ] || (parent[ expando ] = {}); - cache = outerCache[ type ] || []; - nodeIndex = cache[0] === dirruns && cache[1]; - diff = cache[0] === dirruns && cache[2]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( (node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - (diff = nodeIndex = 0) || start.pop()) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - outerCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - // Use previously-cached element index if available - } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) { - diff = cache[1]; - - // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...) - } else { - // Use the same loop as above to seek `elem` from the start - while ( (node = ++nodeIndex && node && node[ dir ] || - (diff = nodeIndex = 0) || start.pop()) ) { - - if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { - // Cache the index of each encountered element - if ( useCache ) { - (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction(function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf.call( seed, matched[i] ); - seed[ idx ] = !( matches[ idx ] = matched[i] ); - } - }) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - // Potentially complex pseudos - "not": markFunction(function( selector ) { - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction(function( seed, matches, context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( (elem = unmatched[i]) ) { - seed[i] = !(matches[i] = elem); - } - } - }) : - function( elem, context, xml ) { - input[0] = elem; - matcher( input, null, xml, results ); - return !results.pop(); - }; - }), - - "has": markFunction(function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - }), - - "contains": markFunction(function( text ) { - return function( elem ) { - return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; - }; - }), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - // lang value must be a valid identifider - if ( !ridentifier.test(lang || "") ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( (elemLang = documentIsXML ? - elem.getAttribute("xml:lang") || elem.getAttribute("lang") : - elem.lang) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); - return false; - }; - }), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); - }, - - // Boolean properties - "enabled": function( elem ) { - return elem.disabled === false; - }, - - "disabled": function( elem ) { - return elem.disabled === true; - }, - - "checked": function( elem ) { - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); - }, - - "selected": function( elem ) { - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is only affected by element nodes and content nodes(including text(3), cdata(4)), - // not comment, processing instructions, or others - // Thanks to Diego Perini for the nodeName shortcut - // Greater than "@" means alpha characters (specifically not starting with "#" or "?") - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeName > "@" || elem.nodeType === 3 || elem.nodeType === 4 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos["empty"]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) - // use getAttribute instead to test this case - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === elem.type ); - }, - - // Position-in-collection - "first": createPositionalPseudo(function() { - return [ 0 ]; - }), - - "last": createPositionalPseudo(function( matchIndexes, length ) { - return [ length - 1 ]; - }), - - "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - }), - - "even": createPositionalPseudo(function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "odd": createPositionalPseudo(function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - }) - } -}; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -function tokenize( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || (match = rcomma.exec( soFar )) ) { - if ( match ) { - // Don't consume trailing commas as valid - soFar = soFar.slice( match[0].length ) || soFar; - } - groups.push( tokens = [] ); - } - - matched = false; - - // Combinators - if ( (match = rcombinators.exec( soFar )) ) { - matched = match.shift(); - tokens.push( { - value: matched, - // Cast descendant combinators to space - type: match[0].replace( rtrim, " " ) - } ); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || - (match = preFilters[ type ]( match ))) ) { - matched = match.shift(); - tokens.push( { - value: matched, - type: type, - matches: match - } ); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -} - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[i].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - checkNonElements = base && combinator.dir === "parentNode", - doneName = done++; - - return combinator.first ? - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var data, cache, outerCache, - dirkey = dirruns + " " + doneName; - - // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching - if ( xml ) { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || (elem[ expando ] = {}); - if ( (cache = outerCache[ dir ]) && cache[0] === dirkey ) { - if ( (data = cache[1]) === true || data === cachedruns ) { - return data === true; - } - } else { - cache = outerCache[ dir ] = [ dirkey ]; - cache[1] = matcher( elem, context, xml ) || cachedruns; - if ( cache[1] === true ) { - return true; - } - } - } - } - } - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[i]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[0]; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( (elem = unmatched[i]) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction(function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( (elem = temp[i]) ) { - matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( (elem = matcherOut[i]) ) { - // Restore matcherIn since elem is not yet a final match - temp.push( (matcherIn[i] = elem) ); - } - } - postFinder( null, (matcherOut = []), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( (elem = matcherOut[i]) && - (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) { - - seed[temp] = !(results[temp] = elem); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - }); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[0].type ], - implicitRelative = leadingRelative || Expr.relative[" "], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf.call( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - return ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - (checkContext = context).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - } ]; - - for ( ; i < len; i++ ) { - if ( (matcher = Expr.relative[ tokens[i].type ]) ) { - matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; - } else { - matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[j].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( tokens.slice( 0, i - 1 ) ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - // A counter to specify which element is currently being matched - var matcherCachedRuns = 0, - bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, expandContext ) { - var elem, j, matcher, - setMatched = [], - matchedCount = 0, - i = "0", - unmatched = seed && [], - outermost = expandContext != null, - contextBackup = outermostContext, - // We must always have either seed elements or context - elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ), - // Nested matchers should use non-integer dirruns - dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.E); - - if ( outermost ) { - outermostContext = context !== document && context; - cachedruns = matcherCachedRuns; - } - - // Add elements passing elementMatchers directly to results - for ( ; (elem = elems[i]) != null; i++ ) { - if ( byElement && elem ) { - for ( j = 0; (matcher = elementMatchers[j]); j++ ) { - if ( matcher( elem, context, xml ) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - cachedruns = ++matcherCachedRuns; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - // They will have gone through all possible matchers - if ( (elem = !matcher && elem) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // Apply set filters to unmatched elements - // `i` starts as a string, so matchedCount would equal "00" if there are no elements - matchedCount += i; - if ( bySet && i !== matchedCount ) { - for ( j = 0; (matcher = setMatchers[j]); j++ ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !(unmatched[i] || setMatched[i]) ) { - setMatched[i] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - // Generate a function of recursive functions that can be used to check each element - if ( !group ) { - group = tokenize( selector ); - } - i = group.length; - while ( i-- ) { - cached = matcherFromTokens( group[i] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); - } - return cached; -}; - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[i], results ); - } - return results; -} - -function select( selector, context, results, seed ) { - var i, tokens, token, type, find, - match = tokenize( selector ); - - if ( !seed ) { - // Try to minimize operations if there is only one group - if ( match.length === 1 ) { - - // Take a shortcut and set the context if the root selector is an ID - tokens = match[0] = match[0].slice( 0 ); - if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && - context.nodeType === 9 && !documentIsXML && - Expr.relative[ tokens[1].type ] ) { - - context = Expr.find["ID"]( token.matches[0].replace( runescape, funescape ), context )[0]; - if ( !context ) { - return results; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - for ( i = matchExpr["needsContext"].test( selector ) ? -1 : tokens.length - 1; i >= 0; i-- ) { - token = tokens[i]; - - // Abort if we hit a combinator - if ( Expr.relative[ (type = token.type) ] ) { - break; - } - if ( (find = Expr.find[ type ]) ) { - // Search, expanding context for leading sibling combinators - if ( (seed = find( - token.matches[0].replace( runescape, funescape ), - rsibling.test( tokens[0].type ) && context.parentNode || context - )) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, slice.call( seed, 0 ) ); - return results; - } - - break; - } - } - } - } - } - - // Compile and execute a filtering function - // Provide `match` to avoid retokenization if we modified the selector above - compile( selector, match )( - seed, - context, - documentIsXML, - results, - rsibling.test( selector ) - ); - return results; -} - -// Deprecated -Expr.pseudos["nth"] = Expr.pseudos["eq"]; - -// Easy API for creating new setFilters -function setFilters() {} -Expr.filters = setFilters.prototype = Expr.pseudos; -Expr.setFilters = new setFilters(); - -// Initialize with the default document -setDocument(); - -// Override sizzle attribute retrieval -Sizzle.attr = jQuery.attr; -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; -jQuery.expr[":"] = jQuery.expr.pseudos; -jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; - - -})( window ); -var runtil = /Until$/, - rparentsprev = /^(?:parents|prev(?:Until|All))/, - isSimple = /^.[^:#\[\.,]*$/, - rneedsContext = jQuery.expr.match.needsContext, - // methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend({ - find: function( selector ) { - var i, ret, self; - - if ( typeof selector !== "string" ) { - self = this; - return this.pushStack( jQuery( selector ).filter(function() { - for ( i = 0; i < self.length; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - }) ); - } - - ret = []; - for ( i = 0; i < this.length; i++ ) { - jQuery.find( selector, this[ i ], ret ); - } - - // Needed because $( selector, context ) becomes $( context ).find( selector ) - ret = this.pushStack( jQuery.unique( ret ) ); - ret.selector = ( this.selector ? this.selector + " " : "" ) + selector; - return ret; - }, - - has: function( target ) { - var i, - targets = jQuery( target, this ), - len = targets.length; - - return this.filter(function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( this, targets[i] ) ) { - return true; - } - } - }); - }, - - not: function( selector ) { - return this.pushStack( winnow(this, selector, false) ); - }, - - filter: function( selector ) { - return this.pushStack( winnow(this, selector, true) ); - }, - - is: function( selector ) { - return !!selector && ( - typeof selector === "string" ? - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - rneedsContext.test( selector ) ? - jQuery( selector, this.context ).index( this[0] ) >= 0 : - jQuery.filter( selector, this ).length > 0 : - this.filter( selector ).length > 0 ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - ret = [], - pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? - jQuery( selectors, context || this.context ) : - 0; - - for ( ; i < l; i++ ) { - cur = this[i]; - - while ( cur && cur.ownerDocument && cur !== context && cur.nodeType !== 11 ) { - if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { - ret.push( cur ); - break; - } - cur = cur.parentNode; - } - } - - return this.pushStack( ret.length > 1 ? jQuery.unique( ret ) : ret ); - }, - - // Determine the position of an element within - // the matched set of elements - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1; - } - - // index in selector - if ( typeof elem === "string" ) { - return jQuery.inArray( this[0], jQuery( elem ) ); - } - - // Locate the position of the desired element - return jQuery.inArray( - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[0] : elem, this ); - }, - - add: function( selector, context ) { - var set = typeof selector === "string" ? - jQuery( selector, context ) : - jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), - all = jQuery.merge( this.get(), set ); - - return this.pushStack( jQuery.unique(all) ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter(selector) - ); - } -}); - -jQuery.fn.andSelf = jQuery.fn.addBack; - -function sibling( cur, dir ) { - do { - cur = cur[ dir ]; - } while ( cur && cur.nodeType !== 1 ); - - return cur; -} - -jQuery.each({ - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return jQuery.dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, i, until ) { - return jQuery.dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return jQuery.dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return jQuery.dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, i, until ) { - return jQuery.dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, i, until ) { - return jQuery.dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return jQuery.sibling( elem.firstChild ); - }, - contents: function( elem ) { - return jQuery.nodeName( elem, "iframe" ) ? - elem.contentDocument || elem.contentWindow.document : - jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var ret = jQuery.map( this, fn, until ); - - if ( !runtil.test( name ) ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - ret = jQuery.filter( selector, ret ); - } - - ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; - - if ( this.length > 1 && rparentsprev.test( name ) ) { - ret = ret.reverse(); - } - - return this.pushStack( ret ); - }; -}); - -jQuery.extend({ - filter: function( expr, elems, not ) { - if ( not ) { - expr = ":not(" + expr + ")"; - } - - return elems.length === 1 ? - jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : - jQuery.find.matches(expr, elems); - }, - - dir: function( elem, dir, until ) { - var matched = [], - cur = elem[ dir ]; - - while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { - if ( cur.nodeType === 1 ) { - matched.push( cur ); - } - cur = cur[dir]; - } - return matched; - }, - - sibling: function( n, elem ) { - var r = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - r.push( n ); - } - } - - return r; - } -}); - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, keep ) { - - // Can't pass null or undefined to indexOf in Firefox 4 - // Set to 0 to skip string check - qualifier = qualifier || 0; - - if ( jQuery.isFunction( qualifier ) ) { - return jQuery.grep(elements, function( elem, i ) { - var retVal = !!qualifier.call( elem, i, elem ); - return retVal === keep; - }); - - } else if ( qualifier.nodeType ) { - return jQuery.grep(elements, function( elem ) { - return ( elem === qualifier ) === keep; - }); - - } else if ( typeof qualifier === "string" ) { - var filtered = jQuery.grep(elements, function( elem ) { - return elem.nodeType === 1; - }); - - if ( isSimple.test( qualifier ) ) { - return jQuery.filter(qualifier, filtered, !keep); - } else { - qualifier = jQuery.filter( qualifier, filtered ); - } - } - - return jQuery.grep(elements, function( elem ) { - return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep; - }); -} -function createSafeFragment( document ) { - var list = nodeNames.split( "|" ), - safeFrag = document.createDocumentFragment(); - - if ( safeFrag.createElement ) { - while ( list.length ) { - safeFrag.createElement( - list.pop() - ); - } - } - return safeFrag; -} - -var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + - "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", - rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, - rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"), - rleadingWhitespace = /^\s+/, - rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, - rtagName = /<([\w:]+)/, - rtbody = /\s*$/g, - - // We have to close these tags to support XHTML (#13200) - wrapMap = { - option: [ 1, "" ], - legend: [ 1, "
", "
" ], - area: [ 1, "", "" ], - param: [ 1, "", "" ], - thead: [ 1, "", "
" ], - tr: [ 2, "", "
" ], - col: [ 2, "", "
" ], - td: [ 3, "", "
" ], - - // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, - // unless wrapped in a div with non-breaking characters in front of it. - _default: jQuery.support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X
", "
" ] - }, - safeFragment = createSafeFragment( document ), - fragmentDiv = safeFragment.appendChild( document.createElement("div") ); - -wrapMap.optgroup = wrapMap.option; -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -jQuery.fn.extend({ - text: function( value ) { - return jQuery.access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); - }, null, value, arguments.length ); - }, - - wrapAll: function( html ) { - if ( jQuery.isFunction( html ) ) { - return this.each(function(i) { - jQuery(this).wrapAll( html.call(this, i) ); - }); - } - - if ( this[0] ) { - // The elements to wrap the target around - var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); - - if ( this[0].parentNode ) { - wrap.insertBefore( this[0] ); - } - - wrap.map(function() { - var elem = this; - - while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { - elem = elem.firstChild; - } - - return elem; - }).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( jQuery.isFunction( html ) ) { - return this.each(function(i) { - jQuery(this).wrapInner( html.call(this, i) ); - }); - } - - return this.each(function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - }); - }, - - wrap: function( html ) { - var isFunction = jQuery.isFunction( html ); - - return this.each(function(i) { - jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); - }); - }, - - unwrap: function() { - return this.parent().each(function() { - if ( !jQuery.nodeName( this, "body" ) ) { - jQuery( this ).replaceWith( this.childNodes ); - } - }).end(); - }, - - append: function() { - return this.domManip(arguments, true, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.appendChild( elem ); - } - }); - }, - - prepend: function() { - return this.domManip(arguments, true, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.insertBefore( elem, this.firstChild ); - } - }); - }, - - before: function() { - return this.domManip( arguments, false, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - }); - }, - - after: function() { - return this.domManip( arguments, false, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - }); - }, - - // keepData is for internal use only--do not document - remove: function( selector, keepData ) { - var elem, - i = 0; - - for ( ; (elem = this[i]) != null; i++ ) { - if ( !selector || jQuery.filter( selector, [ elem ] ).length > 0 ) { - if ( !keepData && elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem ) ); - } - - if ( elem.parentNode ) { - if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) { - setGlobalEval( getAll( elem, "script" ) ); - } - elem.parentNode.removeChild( elem ); - } - } - } - - return this; - }, - - empty: function() { - var elem, - i = 0; - - for ( ; (elem = this[i]) != null; i++ ) { - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - } - - // Remove any remaining nodes - while ( elem.firstChild ) { - elem.removeChild( elem.firstChild ); - } - - // If this is a select, ensure that it displays empty (#12336) - // Support: IE<9 - if ( elem.options && jQuery.nodeName( elem, "select" ) ) { - elem.options.length = 0; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function () { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - }); - }, - - html: function( value ) { - return jQuery.access( this, function( value ) { - var elem = this[0] || {}, - i = 0, - l = this.length; - - if ( value === undefined ) { - return elem.nodeType === 1 ? - elem.innerHTML.replace( rinlinejQuery, "" ) : - undefined; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - ( jQuery.support.htmlSerialize || !rnoshimcache.test( value ) ) && - ( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && - !wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) { - - value = value.replace( rxhtmlTag, "<$1>" ); - - try { - for (; i < l; i++ ) { - // Remove element nodes and prevent memory leaks - elem = this[i] || {}; - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch(e) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function( value ) { - var isFunc = jQuery.isFunction( value ); - - // Make sure that the elements are removed from the DOM before they are inserted - // this can help fix replacing a parent with child elements - if ( !isFunc && typeof value !== "string" ) { - value = jQuery( value ).not( this ).detach(); - } - - return this.domManip( [ value ], true, function( elem ) { - var next = this.nextSibling, - parent = this.parentNode; - - if ( parent && this.nodeType === 1 || this.nodeType === 11 ) { - - jQuery( this ).remove(); - - if ( next ) { - next.parentNode.insertBefore( elem, next ); - } else { - parent.appendChild( elem ); - } - } - }); - }, - - detach: function( selector ) { - return this.remove( selector, true ); - }, - - domManip: function( args, table, callback ) { - - // Flatten any nested arrays - args = core_concat.apply( [], args ); - - var fragment, first, scripts, hasScripts, node, doc, - i = 0, - l = this.length, - set = this, - iNoClone = l - 1, - value = args[0], - isFunction = jQuery.isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( isFunction || !( l <= 1 || typeof value !== "string" || jQuery.support.checkClone || !rchecked.test( value ) ) ) { - return this.each(function( index ) { - var self = set.eq( index ); - if ( isFunction ) { - args[0] = value.call( this, index, table ? self.html() : undefined ); - } - self.domManip( args, table, callback ); - }); - } - - if ( l ) { - fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - if ( first ) { - table = table && jQuery.nodeName( first, "tr" ); - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( - table && jQuery.nodeName( this[i], "table" ) ? - findOrAppend( this[i], "tbody" ) : - this[i], - node, - i - ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) { - - if ( node.src ) { - // Hope ajax is available... - jQuery.ajax({ - url: node.src, - type: "GET", - dataType: "script", - async: false, - global: false, - "throws": true - }); - } else { - jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) ); - } - } - } - } - - // Fix #11809: Avoid leaking memory - fragment = first = null; - } - } - - return this; - } -}); - -function findOrAppend( elem, tag ) { - return elem.getElementsByTagName( tag )[0] || elem.appendChild( elem.ownerDocument.createElement( tag ) ); -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - var attr = elem.getAttributeNode("type"); - elem.type = ( attr && attr.specified ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - var match = rscriptTypeMasked.exec( elem.type ); - if ( match ) { - elem.type = match[1]; - } else { - elem.removeAttribute("type"); - } - return elem; -} - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var elem, - i = 0; - for ( ; (elem = elems[i]) != null; i++ ) { - jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) ); - } -} - -function cloneCopyEvent( src, dest ) { - - if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { - return; - } - - var type, i, l, - oldData = jQuery._data( src ), - curData = jQuery._data( dest, oldData ), - events = oldData.events; - - if ( events ) { - delete curData.handle; - curData.events = {}; - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - - // make the cloned public data object a copy from the original - if ( curData.data ) { - curData.data = jQuery.extend( {}, curData.data ); - } -} - -function fixCloneNodeIssues( src, dest ) { - var nodeName, data, e; - - // We do not need to do anything for non-Elements - if ( dest.nodeType !== 1 ) { - return; - } - - nodeName = dest.nodeName.toLowerCase(); - - // IE6-8 copies events bound via attachEvent when using cloneNode. - if ( !jQuery.support.noCloneEvent && dest[ jQuery.expando ] ) { - data = jQuery._data( dest ); - - for ( e in data.events ) { - jQuery.removeEvent( dest, e, data.handle ); - } - - // Event data gets referenced instead of copied if the expando gets copied too - dest.removeAttribute( jQuery.expando ); - } - - // IE blanks contents when cloning scripts, and tries to evaluate newly-set text - if ( nodeName === "script" && dest.text !== src.text ) { - disableScript( dest ).text = src.text; - restoreScript( dest ); - - // IE6-10 improperly clones children of object elements using classid. - // IE10 throws NoModificationAllowedError if parent is null, #12132. - } else if ( nodeName === "object" ) { - if ( dest.parentNode ) { - dest.outerHTML = src.outerHTML; - } - - // This path appears unavoidable for IE9. When cloning an object - // element in IE9, the outerHTML strategy above is not sufficient. - // If the src has innerHTML and the destination does not, - // copy the src.innerHTML into the dest.innerHTML. #10324 - if ( jQuery.support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) { - dest.innerHTML = src.innerHTML; - } - - } else if ( nodeName === "input" && manipulation_rcheckableType.test( src.type ) ) { - // IE6-8 fails to persist the checked state of a cloned checkbox - // or radio button. Worse, IE6-7 fail to give the cloned element - // a checked appearance if the defaultChecked value isn't also set - - dest.defaultChecked = dest.checked = src.checked; - - // IE6-7 get confused and end up setting the value of a cloned - // checkbox/radio button to an empty string instead of "on" - if ( dest.value !== src.value ) { - dest.value = src.value; - } - - // IE6-8 fails to return the selected option to the default selected - // state when cloning options - } else if ( nodeName === "option" ) { - dest.defaultSelected = dest.selected = src.defaultSelected; - - // IE6-8 fails to set the defaultValue to the correct value when - // cloning other types of input fields - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -jQuery.each({ - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - i = 0, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone(true); - jQuery( insert[i] )[ original ]( elems ); - - // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get() - core_push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -}); - -function getAll( context, tag ) { - var elems, elem, - i = 0, - found = typeof context.getElementsByTagName !== "undefined" ? context.getElementsByTagName( tag || "*" ) : - typeof context.querySelectorAll !== "undefined" ? context.querySelectorAll( tag || "*" ) : - undefined; - - if ( !found ) { - for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) { - if ( !tag || jQuery.nodeName( elem, tag ) ) { - found.push( elem ); - } else { - jQuery.merge( found, getAll( elem, tag ) ); - } - } - } - - return tag === undefined || tag && jQuery.nodeName( context, tag ) ? - jQuery.merge( [ context ], found ) : - found; -} - -// Used in buildFragment, fixes the defaultChecked property -function fixDefaultChecked( elem ) { - if ( manipulation_rcheckableType.test( elem.type ) ) { - elem.defaultChecked = elem.checked; - } -} - -jQuery.extend({ - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var destElements, srcElements, node, i, clone, - inPage = jQuery.contains( elem.ownerDocument, elem ); - - if ( jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { - clone = elem.cloneNode( true ); - - // IE<=8 does not properly clone detached, unknown element nodes - } else { - fragmentDiv.innerHTML = elem.outerHTML; - fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); - } - - if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) && - (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { - - // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - // Fix all IE cloning issues - for ( i = 0; (node = srcElements[i]) != null; ++i ) { - // Ensure that the destination node is not null; Fixes #9587 - if ( destElements[i] ) { - fixCloneNodeIssues( node, destElements[i] ); - } - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0; (node = srcElements[i]) != null; i++ ) { - cloneCopyEvent( node, destElements[i] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - destElements = srcElements = node = null; - - // Return the cloned set - return clone; - }, - - buildFragment: function( elems, context, scripts, selection ) { - var contains, elem, tag, tmp, wrap, tbody, j, - l = elems.length, - - // Ensure a safe fragment - safe = createSafeFragment( context ), - - nodes = [], - i = 0; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( jQuery.type( elem ) === "object" ) { - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || safe.appendChild( context.createElement("div") ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - - tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1>" ) + wrap[2]; - - // Descend through wrappers to the right content - j = wrap[0]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Manually add leading whitespace removed by IE - if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { - nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) ); - } - - // Remove IE's autoinserted from table fragments - if ( !jQuery.support.tbody ) { - - // String was a , *may* have spurious - elem = tag === "table" && !rtbody.test( elem ) ? - tmp.firstChild : - - // String was a bare or - wrap[1] === "
" && !rtbody.test( elem ) ? - tmp : - 0; - - j = elem && elem.childNodes.length; - while ( j-- ) { - if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) { - elem.removeChild( tbody ); - } - } - } - - jQuery.merge( nodes, tmp.childNodes ); - - // Fix #12392 for WebKit and IE > 9 - tmp.textContent = ""; - - // Fix #12392 for oldIE - while ( tmp.firstChild ) { - tmp.removeChild( tmp.firstChild ); - } - - // Remember the top-level container for proper cleanup - tmp = safe.lastChild; - } - } - } - - // Fix #11356: Clear elements from fragment - if ( tmp ) { - safe.removeChild( tmp ); - } - - // Reset defaultChecked for any radios and checkboxes - // about to be appended to the DOM in IE 6/7 (#8060) - if ( !jQuery.support.appendChecked ) { - jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked ); - } - - i = 0; - while ( (elem = nodes[ i++ ]) ) { - - // #4087 - If origin and destination elements are the same, and this is - // that element, do not do anything - if ( selection && jQuery.inArray( elem, selection ) !== -1 ) { - continue; - } - - contains = jQuery.contains( elem.ownerDocument, elem ); - - // Append to fragment - tmp = getAll( safe.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( contains ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( (elem = tmp[ j++ ]) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - tmp = null; - - return safe; - }, - - cleanData: function( elems, /* internal */ acceptData ) { - var data, id, elem, type, - i = 0, - internalKey = jQuery.expando, - cache = jQuery.cache, - deleteExpando = jQuery.support.deleteExpando, - special = jQuery.event.special; - - for ( ; (elem = elems[i]) != null; i++ ) { - - if ( acceptData || jQuery.acceptData( elem ) ) { - - id = elem[ internalKey ]; - data = id && cache[ id ]; - - if ( data ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Remove cache only if it was not already removed by jQuery.event.remove - if ( cache[ id ] ) { - - delete cache[ id ]; - - // IE does not allow us to delete expando properties from nodes, - // nor does it have a removeAttribute function on Document nodes; - // we must handle all of these cases - if ( deleteExpando ) { - delete elem[ internalKey ]; - - } else if ( typeof elem.removeAttribute !== "undefined" ) { - elem.removeAttribute( internalKey ); - - } else { - elem[ internalKey ] = null; - } - - core_deletedIds.push( id ); - } - } - } - } - } -}); -var curCSS, getStyles, iframe, - ralpha = /alpha\([^)]*\)/i, - ropacity = /opacity\s*=\s*([^)]*)/, - rposition = /^(top|right|bottom|left)$/, - // swappable if display is none or starts with table except "table", "table-cell", or "table-caption" - // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rmargin = /^margin/, - rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ), - rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ), - rrelNum = new RegExp( "^([+-])=(" + core_pnum + ")", "i" ), - elemdisplay = { BODY: "block" }, - - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: 0, - fontWeight: 400 - }, - - cssExpand = [ "Top", "Right", "Bottom", "Left" ], - cssPrefixes = [ "Webkit", "O", "Moz", "ms" ]; - -// return a css property mapped to a potentially vendor prefixed property -function vendorPropName( style, name ) { - - // shortcut for names that are not vendor prefixed - if ( name in style ) { - return name; - } - - // check for vendor prefixed names - var capName = name.charAt(0).toUpperCase() + name.slice(1), - origName = name, - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in style ) { - return name; - } - } - - return origName; -} - -function isHidden( elem, el ) { - // isHidden might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); -} - -function showHide( elements, show ) { - var elem, - values = [], - index = 0, - length = elements.length; - - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - values[ index ] = jQuery._data( elem, "olddisplay" ); - if ( show ) { - // Reset the inline display of this element to learn if it is - // being hidden by cascaded rules or not - if ( !values[ index ] && elem.style.display === "none" ) { - elem.style.display = ""; - } - - // Set elements which have been overridden with display: none - // in a stylesheet to whatever the default browser style is - // for such an element - if ( elem.style.display === "" && isHidden( elem ) ) { - values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) ); - } - } else if ( !values[ index ] && !isHidden( elem ) ) { - jQuery._data( elem, "olddisplay", jQuery.css( elem, "display" ) ); - } - } - - // Set the display of most of the elements in a second loop - // to avoid the constant reflow - for ( index = 0; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - if ( !show || elem.style.display === "none" || elem.style.display === "" ) { - elem.style.display = show ? values[ index ] || "" : "none"; - } - } - - return elements; -} - -jQuery.fn.extend({ - css: function( name, value ) { - return jQuery.access( this, function( elem, name, value ) { - var styles, len, - map = {}, - i = 0; - - if ( jQuery.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - }, - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - var bool = typeof state === "boolean"; - - return this.each(function() { - if ( bool ? state : isHidden( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - }); - } -}); - -jQuery.extend({ - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Exclude the following css properties to add px - cssNumber: { - "columnCount": true, - "fillOpacity": true, - "fontWeight": true, - "lineHeight": true, - "opacity": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: { - // normalize float css property - "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" - }, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = jQuery.camelCase( name ), - style = elem.style; - - name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) ); - - // gets hook for the prefixed version - // followed by the unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // convert relative number strings (+= or -=) to relative numbers. #7345 - if ( type === "string" && (ret = rrelNum.exec( value )) ) { - value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) ); - // Fixes bug #9237 - type = "number"; - } - - // Make sure that NaN and null values aren't set. See: #7116 - if ( value == null || type === "number" && isNaN( value ) ) { - return; - } - - // If a number was passed in, add 'px' to the (except for certain CSS properties) - if ( type === "number" && !jQuery.cssNumber[ origName ] ) { - value += "px"; - } - - // Fixes #8908, it can be done more correctly by specifing setters in cssHooks, - // but it would mean to define eight (for every problematic property) identical functions - if ( !jQuery.support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) { - - // Wrapped to prevent IE from throwing errors when 'invalid' values are provided - // Fixes bug #5509 - try { - style[ name ] = value; - } catch(e) {} - } - - } else { - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var val, num, hooks, - origName = jQuery.camelCase( name ); - - // Make sure that we're working with the right name - name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) ); - - // gets hook for the prefixed version - // followed by the unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - //convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Return, converting to number if forced or a qualifier was provided and val looks numeric - if ( extra ) { - num = parseFloat( val ); - return extra === true || jQuery.isNumeric( num ) ? num || 0 : val; - } - return val; - }, - - // A method for quickly swapping in/out CSS properties to get correct calculations - swap: function( elem, options, callback, args ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.apply( elem, args || [] ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; - } -}); - -// NOTE: we've included the "window" in window.getComputedStyle -// because jsdom on node.js will break without it. -if ( window.getComputedStyle ) { - getStyles = function( elem ) { - return window.getComputedStyle( elem, null ); - }; - - curCSS = function( elem, name, _computed ) { - var width, minWidth, maxWidth, - computed = _computed || getStyles( elem ), - - // getPropertyValue is only needed for .css('filter') in IE9, see #12537 - ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined, - style = elem.style; - - if ( computed ) { - - if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right - // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels - // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values - if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret; - }; -} else if ( document.documentElement.currentStyle ) { - getStyles = function( elem ) { - return elem.currentStyle; - }; - - curCSS = function( elem, name, _computed ) { - var left, rs, rsLeft, - computed = _computed || getStyles( elem ), - ret = computed ? computed[ name ] : undefined, - style = elem.style; - - // Avoid setting ret to empty string here - // so we don't default to auto - if ( ret == null && style && style[ name ] ) { - ret = style[ name ]; - } - - // From the awesome hack by Dean Edwards - // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 - - // If we're not dealing with a regular pixel number - // but a number that has a weird ending, we need to convert it to pixels - // but not position css attributes, as those are proportional to the parent element instead - // and we can't measure the parent instead because it might trigger a "stacking dolls" problem - if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { - - // Remember the original values - left = style.left; - rs = elem.runtimeStyle; - rsLeft = rs && rs.left; - - // Put in the new values to get a computed value out - if ( rsLeft ) { - rs.left = elem.currentStyle.left; - } - style.left = name === "fontSize" ? "1em" : ret; - ret = style.pixelLeft + "px"; - - // Revert the changed values - style.left = left; - if ( rsLeft ) { - rs.left = rsLeft; - } - } - - return ret === "" ? "auto" : ret; - }; -} - -function setPositiveNumber( elem, value, subtract ) { - var matches = rnumsplit.exec( value ); - return matches ? - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : - value; -} - -function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { - var i = extra === ( isBorderBox ? "border" : "content" ) ? - // If we already have the right measurement, avoid augmentation - 4 : - // Otherwise initialize for horizontal or vertical properties - name === "width" ? 1 : 0, - - val = 0; - - for ( ; i < 4; i += 2 ) { - // both box models exclude margin, so add it if we want it - if ( extra === "margin" ) { - val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); - } - - if ( isBorderBox ) { - // border-box includes padding, so remove it if we want content - if ( extra === "content" ) { - val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // at this point, extra isn't border nor margin, so remove border - if ( extra !== "margin" ) { - val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } else { - // at this point, extra isn't content, so add padding - val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // at this point, extra isn't content nor padding, so add border - if ( extra !== "padding" ) { - val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - return val; -} - -function getWidthOrHeight( elem, name, extra ) { - - // Start with offset property, which is equivalent to the border-box value - var valueIsBorderBox = true, - val = name === "width" ? elem.offsetWidth : elem.offsetHeight, - styles = getStyles( elem ), - isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // some non-html elements return undefined for offsetWidth, so check for null/undefined - // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 - // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 - if ( val <= 0 || val == null ) { - // Fall back to computed then uncomputed css if necessary - val = curCSS( elem, name, styles ); - if ( val < 0 || val == null ) { - val = elem.style[ name ]; - } - - // Computed unit is not pixels. Stop here and return. - if ( rnumnonpx.test(val) ) { - return val; - } - - // we need the check for style in case a browser which returns unreliable values - // for getComputedStyle silently falls back to the reliable elem.style - valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] ); - - // Normalize "", auto, and prepare for extra - val = parseFloat( val ) || 0; - } - - // use the active box-sizing model to add/subtract irrelevant styles - return ( val + - augmentWidthOrHeight( - elem, - name, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles - ) - ) + "px"; -} - -// Try to determine the default display value of an element -function css_defaultDisplay( nodeName ) { - var doc = document, - display = elemdisplay[ nodeName ]; - - if ( !display ) { - display = actualDisplay( nodeName, doc ); - - // If the simple way fails, read from inside an iframe - if ( display === "none" || !display ) { - // Use the already-created iframe if possible - iframe = ( iframe || - jQuery(" diff --git a/addons/knowledge/i18n/ar.po b/addons/knowledge/i18n/ar.po index d9f0c85fbbf..82e9bc62c36 100644 --- a/addons/knowledge/i18n/ar.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/bg.po b/addons/knowledge/i18n/bg.po index 5166e9d4b11..d1d8f2ffe18 100644 --- a/addons/knowledge/i18n/bg.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ca.po b/addons/knowledge/i18n/ca.po index 1c5acc8f0d2..a8bdfa8b2a0 100644 --- a/addons/knowledge/i18n/ca.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/cs.po b/addons/knowledge/i18n/cs.po index c9a194f8907..6c6dd4dc84c 100644 --- a/addons/knowledge/i18n/cs.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Language: Czech\n" #. module: knowledge diff --git a/addons/knowledge/i18n/da.po b/addons/knowledge/i18n/da.po index 297e8e8fce5..42f4b287e61 100644 --- a/addons/knowledge/i18n/da.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/de.po b/addons/knowledge/i18n/de.po index c90e8d65496..cf95af553f0 100644 --- a/addons/knowledge/i18n/de.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/en_GB.po b/addons/knowledge/i18n/en_GB.po index 26e5125c797..d5a9a8c93a6 100644 --- a/addons/knowledge/i18n/en_GB.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/es.po b/addons/knowledge/i18n/es.po index 2fb51ebd0c1..6ab08073e48 100644 --- a/addons/knowledge/i18n/es.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/es_AR.po b/addons/knowledge/i18n/es_AR.po index 4c9f3731640..251e1a4f566 100644 --- a/addons/knowledge/i18n/es_AR.po +++ b/addons/knowledge/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/es_CR.po b/addons/knowledge/i18n/es_CR.po index b6f646395de..3a651325bb7 100644 --- a/addons/knowledge/i18n/es_CR.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: es\n" #. module: knowledge diff --git a/addons/knowledge/i18n/et.po b/addons/knowledge/i18n/et.po index c9eb32eb723..b0db1868afb 100644 --- a/addons/knowledge/i18n/et.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/fi.po b/addons/knowledge/i18n/fi.po index 50529d67069..4152e8c7704 100644 --- a/addons/knowledge/i18n/fi.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/fr.po b/addons/knowledge/i18n/fr.po index 907876ee721..35eafcfe568 100644 --- a/addons/knowledge/i18n/fr.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/gl.po b/addons/knowledge/i18n/gl.po index a9003bffb59..d99ca7e34ee 100644 --- a/addons/knowledge/i18n/gl.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/hi.po b/addons/knowledge/i18n/hi.po index 1543b438bd1..9df4640feb5 100644 --- a/addons/knowledge/i18n/hi.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/hr.po b/addons/knowledge/i18n/hr.po index 5c565fef833..2148c25a9c5 100644 --- a/addons/knowledge/i18n/hr.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/hu.po b/addons/knowledge/i18n/hu.po index 43e065898cb..ab72a58cc94 100644 --- a/addons/knowledge/i18n/hu.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/it.po b/addons/knowledge/i18n/it.po index 27c35a3377e..937d1d12341 100644 --- a/addons/knowledge/i18n/it.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ja.po b/addons/knowledge/i18n/ja.po index d52ea8aad85..7fb4bfea499 100644 --- a/addons/knowledge/i18n/ja.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/lo.po b/addons/knowledge/i18n/lo.po index aa1150fbcd2..19a6d283126 100644 --- a/addons/knowledge/i18n/lo.po +++ b/addons/knowledge/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/lv.po b/addons/knowledge/i18n/lv.po index 652590db589..70a22b7949f 100644 --- a/addons/knowledge/i18n/lv.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/mk.po b/addons/knowledge/i18n/mk.po index 597eaa55ebb..5819ac92164 100644 --- a/addons/knowledge/i18n/mk.po +++ b/addons/knowledge/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 @@ -106,7 +106,9 @@ msgstr "Конфигурација" msgid "" "Access your documents in OpenERP through an FTP interface.\n" " This installs the module document_ftp." -msgstr "Пристапи до документите во OpenERP преку FTP интерфејс." +msgstr "" +"Пристапи до документите во OpenERP преку FTP интерфејс.\n" +"Ова го инсталира модулот document_ftp." #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/mn.po b/addons/knowledge/i18n/mn.po index 6ec1b23e0b0..b18470ae4fc 100644 --- a/addons/knowledge/i18n/mn.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/nb.po b/addons/knowledge/i18n/nb.po index 2465a232f1c..1632015f9d0 100644 --- a/addons/knowledge/i18n/nb.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/nl.po b/addons/knowledge/i18n/nl.po index 4fc9d29acee..a82a822c3f8 100644 --- a/addons/knowledge/i18n/nl.po +++ b/addons/knowledge/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-20 14:14+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/nl_BE.po b/addons/knowledge/i18n/nl_BE.po index b5278d3e260..6fb96549251 100644 --- a/addons/knowledge/i18n/nl_BE.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/pl.po b/addons/knowledge/i18n/pl.po index 0ec0bb7ec7e..614132c6bb8 100644 --- a/addons/knowledge/i18n/pl.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/pt.po b/addons/knowledge/i18n/pt.po index 58d6f3f1602..e23070442d1 100644 --- a/addons/knowledge/i18n/pt.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/pt_BR.po b/addons/knowledge/i18n/pt_BR.po index 281ebc2f22d..13ae96e15ef 100644 --- a/addons/knowledge/i18n/pt_BR.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ro.po b/addons/knowledge/i18n/ro.po index de738b54c52..09b92042485 100644 --- a/addons/knowledge/i18n/ro.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 @@ -33,29 +33,29 @@ msgid "" "Access your documents in OpenERP through WebDAV.\n" " This installs the module document_webdav." msgstr "" -"Accesati-va documentele in OpenERP prin WebDAV.\n" -" Acesta instaleaza modulul document_webdav." +"Accesați-va documentele în OpenERP prin WebDAV.\n" +" Acesta instalează modulul document_webdav." #. module: knowledge #: help:knowledge.config.settings,module_document_page:0 msgid "This installs the module document_page." -msgstr "Acesta instaleaza modulul document_page." +msgstr "Acesta instalează modulul document_page." #. module: knowledge #: model:ir.ui.menu,name:knowledge.menu_document2 msgid "Collaborative Content" -msgstr "Continut de Colaborare" +msgstr "Conținut de Colaborare" #. module: knowledge #: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: view:knowledge.config.settings:0 msgid "Configure Knowledge" -msgstr "Configureaza Cunostintele" +msgstr "Configureaza Cunostințele" #. module: knowledge #: view:knowledge.config.settings:0 msgid "Knowledge and Documents Management" -msgstr "Managementul Cunostintelor si a Documentelor" +msgstr "Managementul Cunostințelor și a Documentelor" #. module: knowledge #: help:knowledge.config.settings,module_document:0 @@ -67,19 +67,19 @@ msgid "" msgstr "" "Acesta este un sistem complet de management al documentelor, cu: " "autentificarea utilizatorului,\n" -" cautarea completa a documentelor (dar pptx si docx nu sunt " -"acceptate), si un tablou de bord al documentelor.\n" -" Acesta instaleaza modulul document." +" căutarea completa a documentelor (dar pptx si docx nu sunt " +"acceptate), și un tablou de bord al documentelor.\n" +" Acesta instalează modulul document." #. module: knowledge #: field:knowledge.config.settings,module_document_page:0 msgid "Create static web pages" -msgstr "Creeaza pagini de internet statice" +msgstr "Creează pagini de internet statice" #. module: knowledge #: field:knowledge.config.settings,module_document_ftp:0 msgid "Share repositories (FTP)" -msgstr "Imparte depozitele (FTP)" +msgstr "Împarte depozitele (FTP)" #. module: knowledge #: field:knowledge.config.settings,module_document:0 @@ -89,12 +89,12 @@ msgstr "Gestioneaza documentele" #. module: knowledge #: view:knowledge.config.settings:0 msgid "Cancel" -msgstr "Anuleaza" +msgstr "Anulează" #. module: knowledge #: view:knowledge.config.settings:0 msgid "Apply" -msgstr "Aplica" +msgstr "Aplică" #. module: knowledge #: model:ir.ui.menu,name:knowledge.menu_document_configuration @@ -107,8 +107,8 @@ msgid "" "Access your documents in OpenERP through an FTP interface.\n" " This installs the module document_ftp." msgstr "" -"Accesati-va documentele din OpenERP printr-o interfata FTP.\n" -" Acesta instaleaza modulul document_ftp." +"Accesați-vă documentele din OpenERP printr-o interfață FTP.\n" +" Acesta instalează modulul document_ftp." #. module: knowledge #: view:knowledge.config.settings:0 @@ -118,13 +118,13 @@ msgstr "sau" #. module: knowledge #: field:knowledge.config.settings,module_document_webdav:0 msgid "Share repositories (WebDAV)" -msgstr "Imparte depozitele (WebDAV)" +msgstr "Împarte depozitele (WebDAV)" #. module: knowledge #: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration msgid "Knowledge" -msgstr "Cunostinte" +msgstr "Cunoștințe" #~ msgid "title" #~ msgstr "titlu" diff --git a/addons/knowledge/i18n/ru.po b/addons/knowledge/i18n/ru.po index 08d732a71b6..139efa817cd 100644 --- a/addons/knowledge/i18n/ru.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sk.po b/addons/knowledge/i18n/sk.po index 54444c7efa2..58ea4141a0e 100644 --- a/addons/knowledge/i18n/sk.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sl.po b/addons/knowledge/i18n/sl.po index bdd2a1fa1f6..b06558c77bc 100644 --- a/addons/knowledge/i18n/sl.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sr.po b/addons/knowledge/i18n/sr.po index cef31fbb5c7..4e45d0637cb 100644 --- a/addons/knowledge/i18n/sr.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sr@latin.po b/addons/knowledge/i18n/sr@latin.po index bc8c9f365fe..ed188e25137 100644 --- a/addons/knowledge/i18n/sr@latin.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sv.po b/addons/knowledge/i18n/sv.po index 2f7f19abc49..ea2f3cf8fe5 100644 --- a/addons/knowledge/i18n/sv.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/th.po b/addons/knowledge/i18n/th.po index 3b5327841d8..16f5227f6c6 100644 --- a/addons/knowledge/i18n/th.po +++ b/addons/knowledge/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: 2013-06-22 05:36+0000\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/tr.po b/addons/knowledge/i18n/tr.po index 9812137707f..7397af145bc 100644 --- a/addons/knowledge/i18n/tr.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 @@ -44,13 +44,13 @@ msgstr "Bu document_page modülünü kurar." #. module: knowledge #: model:ir.ui.menu,name:knowledge.menu_document2 msgid "Collaborative Content" -msgstr "İmece İçerik" +msgstr "İşbirliği İçeriği" #. module: knowledge #: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: view:knowledge.config.settings:0 msgid "Configure Knowledge" -msgstr "Yapılandırma Bilgisi" +msgstr "Bilgi Birikimini Yapılandır" #. module: knowledge #: view:knowledge.config.settings:0 @@ -65,7 +65,7 @@ msgid "" "and a document dashboard.\n" " This installs the module document." msgstr "" -"Bu kullanıcı kimlik doğrulamalı bir tam belge yönetim sistemidir,\n" +"Bu kullanıcı kimlik doğrulamalı tam bir belge yönetim sistemidir,\n" " tam belge araması (pptx ve docx desteklenmez) ve bir belge " "kontrol paneli içerir.\n" " Bu, module document modülünü kurar." @@ -78,7 +78,7 @@ msgstr "Statik web sayfaları oluştur" #. module: knowledge #: field:knowledge.config.settings,module_document_ftp:0 msgid "Share repositories (FTP)" -msgstr "Havuzların Paylaşı (FTP)" +msgstr "Havuzları Paylaş (FTP)" #. module: knowledge #: field:knowledge.config.settings,module_document:0 diff --git a/addons/knowledge/i18n/zh_CN.po b/addons/knowledge/i18n/zh_CN.po index 6bafd1d4e4e..759241c802f 100644 --- a/addons/knowledge/i18n/zh_CN.po +++ b/addons/knowledge/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: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/zh_TW.po b/addons/knowledge/i18n/zh_TW.po index 483a1b47b0f..3816788bfd1 100644 --- a/addons/knowledge/i18n/zh_TW.po +++ b/addons/knowledge/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/res_config.py b/addons/knowledge/res_config.py index fddbb5ebdc3..c1e0bc1e1d3 100644 --- a/addons/knowledge/res_config.py +++ b/addons/knowledge/res_config.py @@ -28,15 +28,15 @@ class knowledge_config_settings(osv.osv_memory): 'module_document_page': fields.boolean('Create static web pages', help="""This installs the module document_page."""), 'module_document': fields.boolean('Manage documents', - help="""This is a complete document management system, with: user authentication, - full document search (but pptx and docx are not supported), and a document dashboard. - This installs the module document."""), + help='This is a complete document management system, with: user authentication, ' + 'full document search (but pptx and docx are not supported), and a document dashboard.\n' + '-This installs the module document.'), 'module_document_ftp': fields.boolean('Share repositories (FTP)', - help="""Access your documents in OpenERP through an FTP interface. - This installs the module document_ftp."""), + help='Access your documents in OpenERP through an FTP interface.\n' + '-This installs the module document_ftp.'), 'module_document_webdav': fields.boolean('Share repositories (WebDAV)', - help="""Access your documents in OpenERP through WebDAV. - This installs the module document_webdav."""), + help='Access your documents in OpenERP through WebDAV.\n' + '-This installs the module document_webdav.'), } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_ar/l10n_ar_chart.xml b/addons/l10n_ar/l10n_ar_chart.xml index 062697d5aa6..02b2f3e97bf 100644 --- a/addons/l10n_ar/l10n_ar_chart.xml +++ b/addons/l10n_ar/l10n_ar_chart.xml @@ -252,6 +252,7 @@ + diff --git a/addons/l10n_at/account_chart.xml b/addons/l10n_at/account_chart.xml index 51d0c9a85a8..eca220994e6 100644 --- a/addons/l10n_at/account_chart.xml +++ b/addons/l10n_at/account_chart.xml @@ -2518,6 +2518,7 @@ + diff --git a/addons/l10n_be/__openerp__.py b/addons/l10n_be/__openerp__.py index a956ea7ebe0..cd822045e64 100644 --- a/addons/l10n_be/__openerp__.py +++ b/addons/l10n_be/__openerp__.py @@ -58,6 +58,7 @@ Wizards provided by this module: 'base_iban', 'account_chart', 'l10n_be_coda', + 'l10n_multilang', ], 'data': [ 'account_financial_report.xml', @@ -68,11 +69,11 @@ Wizards provided by this module: 'wizard/l10n_be_account_vat_declaration_view.xml', 'wizard/l10n_be_vat_intra_view.xml', 'wizard/l10n_be_partner_vat_listing.xml', + 'wizard/account_wizard.xml', 'l10n_be_sequence.xml', 'fiscal_templates.xml', 'account_fiscal_position_tax_template.xml', 'security/ir.model.access.csv', - 'l10n_be_wizard.yml' ], 'demo': [], 'installable': True, diff --git a/addons/l10n_be/account_chart_template.xml b/addons/l10n_be/account_chart_template.xml index 5c803ac3df3..48e506ded79 100644 --- a/addons/l10n_be/account_chart_template.xml +++ b/addons/l10n_be/account_chart_template.xml @@ -12,6 +12,8 @@ + + diff --git a/addons/l10n_be/i18n_extra/nl_BE.po b/addons/l10n_be/i18n_extra/nl_BE.po new file mode 100644 index 00000000000..7b60578713d --- /dev/null +++ b/addons/l10n_be/i18n_extra/nl_BE.po @@ -0,0 +1,5104 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * l10n_be +# Geert , 2013. +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 7.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-02-14 13:31+0000\n" +"PO-Revision-Date: 2013-03-14 16:41+0100\n" +"Last-Translator: Geert Janssens \n" +"Language-Team: \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 1.5.4\n" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1 +msgid "CLASSE 1" +msgstr "" +"KLASSE 1 - EIGEN VERMOGEN, VOORZIENINGEN VOOR RISICO'S EN KOSTEN EN SCHULDEN " +"OP MEER DAN ÉÉN JAAR" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a10 +msgid "CAPITAL" +msgstr "KAPITAAL" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a100 +msgid "Capital souscrit ou capital personnel" +msgstr "Geplaatst of persoonlijk kapitaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1000 +msgid "Capital non amorti" +msgstr "Niet-afgeschreven kapitaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1001 +msgid "Capital amorti" +msgstr "Afgeschreven kapitaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a101 +msgid "Capital non appelé" +msgstr "Niet-opgevraagd kapitaal (-)" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a109 +msgid "Compte de l'exploitant" +msgstr "Rekening van de uitbater" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1090 +msgid "Opérations courantes" +msgstr "Lopende rekeningen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1091 +msgid "Impôts personnels" +msgstr "Persoonlijke belastingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1092 +msgid "Rémunérations et autres avantages" +msgstr "Vergoedingen en andere voordelen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a11 +msgid "PRIMES D'EMISSION" +msgstr "Uitgiftepremies" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a12 +msgid "PLUS-VALUES DE REEVALUATION" +msgstr "Vergoedingen en andere voordelen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a120 +msgid "Plus-values de réévaluation sur immobilisations incorporelles" +msgstr "Herwaarderingsmeerwaarden op immateriële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1200 +#: model:account.account.template,name:l10n_be.a1210 +#: model:account.account.template,name:l10n_be.a1220 +msgid "Plus-values de réévaluation" +msgstr "Vergoedingen en andere voordelen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1201 +#: model:account.account.template,name:l10n_be.a1211 +#: model:account.account.template,name:l10n_be.a1221 +msgid "Reprises de réductions de valeur" +msgstr "Terugneming van waardeverminderingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a121 +msgid "Plus-values de réévaluation sur immobilisations corporelles" +msgstr "Herwaarderingsmeerwaarden op materiële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a122 +msgid "Plus-values de réévaluation sur immobilisations financières" +msgstr "Herwaarderingsmeerwaarden op financiële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a123 +msgid "Plus-values de réévaluation sur stocks" +msgstr "Herwaarderingsmeerwaarden op voorraden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a124 +msgid "Reprises de réductions de valeur sur placements de trésorerie" +msgstr "Terugneming van waardeverminderingen op geldbeleggingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a13 +msgid "RESERVES" +msgstr "Reserves" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a130 +msgid "Réserve légale" +msgstr "Wettelijke reserve" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a131 +msgid "Réserves indisponibles" +msgstr "Onbeschikbare reserves" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1310 +msgid "Réserve pour actions propres" +msgstr "Reserve voor eigen aandelen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1311 +msgid "Autres réserves indisponibles" +msgstr "Andere onbeschikbare reserves" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a132 +msgid "Réserves immunisées" +msgstr "Belastingvrije reserves" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a133 +msgid "Réserves disponibles" +msgstr "Beschikbare reserves" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1330 +msgid "Réserve pour régularisation de dividendes" +msgstr "Reserve voor regularisering van dividenden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1331 +msgid "Réserve pour renouvellement des immobilisations" +msgstr "Reserve voor de vernieuwing van vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1332 +msgid "Réserve pour installations en faveur du personnel 1333 Réserves libres" +msgstr "" +"Reserve voor installaties ten behoeve van het personeel 1333 Vrije reserves" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a14 +msgid "BENEFICE (PERTE) REPORTE(E)" +msgstr "Overgedragen winst (of Overgedragen verlies (-) )" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a140 +msgid "Bénéfice reporté" +msgstr "Overgedragen winst" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a141 +msgid "Perte reportée" +msgstr "Overgedragen verlies (-)" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a15 +msgid "SUBSIDES EN CAPITAL" +msgstr "Kapitaalsubsidies" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a150 +msgid "Montants obtenus" +msgstr "Ontvangen bedragen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a151 +msgid "Montants transférés aux résultats" +msgstr "Bedragen komende van het resultaat" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a16 +msgid "PROVISIONS POUR RISQUES ET CHARGES" +msgstr "Voorzieningen en uitgestelde belastingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a160 +#: model:account.account.template,name:l10n_be.a635 +msgid "Provisions pour pensions et obligations similaires" +msgstr "Voorzieningen voor pensioenen en soortgelijke verplichtingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a161 +msgid "Provisions pour charges fiscales" +msgstr "Voorzieningen voor belastingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a162 +#: model:account.account.template,name:l10n_be.a636 +msgid "Provisions pour grosses réparations et gros entretiens" +msgstr "Voorzieningen voor grote herstellingswerken en grote onderhoudswerken" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a163 +#: model:account.account.template,name:l10n_be.a169 +#: model:account.account.template,name:l10n_be.a637 +msgid "Provisions pour autres risques et charges" +msgstr "Voorzieningen voor overige risico's en kosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a164 +msgid "" +"Provisions pour sûretés personnelles ou réelles constituées à l'appui de " +"dettes et d'engagements de tiers" +msgstr "" +"Voorzieningen voor persoonlijke of zakelijke zekerheden om de schuld " +"en verplichtingen van derden te ondersteunen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a165 +msgid "" +"Provisions pour engagements relatifs à l'acquisition ou à la cession " +"d'immobilisations" +msgstr "" +"Voorzieningen voor engagementen met betrekking tot de aankoop of verkoop van " +"vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a166 +msgid "Provisions pour exécution de commandes passées ou reçues" +msgstr "Voorzieningen voor uitvoering van geplaatste of ontvangen bestellingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a167 +msgid "" +"Provisions pour positions et marchés à terme en devises ou positions et " +"marchés à terme en marchandises" +msgstr "Voorzieningen voor posities en futures in valuta of handelsgoederen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a168 +msgid "" +"Provisions pour garanties techniques attachées aux ventes et prestations " +"déjà effectuées par l'entreprise" +msgstr "" +"Voorzieningen voor technische garanties gekoppeld aan verkopen en reeds " +"geleverde prestaties door de firma" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1690 +msgid "Pour litiges en cours" +msgstr "Voor hangende geschillen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1691 +msgid "Pour amendes, doubles droits, pénalités" +msgstr "Voor boetes en dubbele rechten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1692 +msgid "Pour propre assureur" +msgstr "Voor eigen verzekering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1693 +msgid "Pour risques inhérents aux opérations de crédits à moyen ou long terme" +msgstr "" +"Voor risico's die inherent zijn aan krediettransacties op de middellange of " +"lange termijn" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1695 +msgid "Provision pour charge de liquidation" +msgstr "Voorziening voor kosten van vereffening" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1696 +msgid "Provision pour départ de personnel" +msgstr "Voorziening voor ontslag personeel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1699 +msgid "Pour risques divers " +msgstr "Voor diverse risico's" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a17 +msgid "DETTES A PLUS D'UN AN" +msgstr "Schulden op meer dan één jaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a170 +#: model:account.account.template,name:l10n_be.a420 +msgid "Emprunts subordonnés" +msgstr "Achtergestelde leningen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1700 +#: model:account.account.template,name:l10n_be.a1710 +#: model:account.account.template,name:l10n_be.a4200 +#: model:account.account.template,name:l10n_be.a4210 +msgid "Convertibles" +msgstr "Converteerbaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1701 +#: model:account.account.template,name:l10n_be.a1711 +#: model:account.account.template,name:l10n_be.a4201 +#: model:account.account.template,name:l10n_be.a4211 +msgid "Non convertibles" +msgstr "Niet converteerbaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a171 +#: model:account.account.template,name:l10n_be.a421 +msgid "Emprunts obligataires non subordonnés" +msgstr "Niet-achtergestelde obligatieleningen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a172 +msgid "Dettes de location-financement et assimilés" +msgstr "Leasingschulden en soortgelijke" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1720 +msgid "Dettes de location-financement de biens immobiliers" +msgstr "Leasingschulden van onroerende goederen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1721 +msgid "Dettes de location-financement de biens mobiliers" +msgstr "Leasingschulden van roerende goederen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1722 +msgid "Dettes sur droits réels sur immeubles" +msgstr "Schulden op zakelijke rechten op gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a173 +#: model:account.account.template,name:l10n_be.a423 +msgid "Etablissements de crédit" +msgstr "Kredietinstellingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1730 +#: model:account.account.template,name:l10n_be.a4230 +msgid "Dettes en compte" +msgstr "Schulden op rekeningen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a17300 +#: model:account.account.template,name:l10n_be.a17310 +#: model:account.account.template,name:l10n_be.a17320 +msgid "Banque A" +msgstr "Bank A" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a17301 +#: model:account.account.template,name:l10n_be.a17311 +#: model:account.account.template,name:l10n_be.a17321 +msgid "Banque B" +msgstr "Bank B" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1731 +#: model:account.account.template,name:l10n_be.a4231 +msgid "Promesses" +msgstr "Promessen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1732 +#: model:account.account.template,name:l10n_be.a4232 +msgid "Crédits d'acceptation" +msgstr "Acceptkredieten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a174 +#: model:account.account.template,name:l10n_be.a424 +#: model:account.account.template,name:l10n_be.a439 +msgid "Autres emprunts" +msgstr "Overige leningen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a175 +#: model:account.account.template,name:l10n_be.a425 +msgid "Dettes commerciales" +msgstr "Handelsschulden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1750 +msgid "Fournisseurs : dettes en compte" +msgstr "Leveranciers" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a17500 +#: model:account.account.template,name:l10n_be.a17510 +#: model:account.account.template,name:l10n_be.a4400 +#: model:account.account.template,name:l10n_be.a4410 +msgid "Entreprises apparentées" +msgstr "Aanverwante bedrijven" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a175000 +#: model:account.account.template,name:l10n_be.a175100 +#: model:account.account.template,name:l10n_be.a1790 +#: model:account.account.template,name:l10n_be.a4020 +#: model:account.account.template,name:l10n_be.a4030 +#: model:account.account.template,name:l10n_be.a4290 +#: model:account.account.template,name:l10n_be.a44100 +#: model:account.account.template,name:l10n_be.a_pay +msgid "Entreprises liées" +msgstr "Aanverwante bedrijven" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a175001 +#: model:account.account.template,name:l10n_be.a175101 +#: model:account.account.template,name:l10n_be.a4291 +#: model:account.account.template,name:l10n_be.a44001 +#: model:account.account.template,name:l10n_be.a44101 +msgid "Entreprises avec lesquelles il existe un lien de participation" +msgstr "Bedrijven waarin een participatie is" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a17501 +#: model:account.account.template,name:l10n_be.a17511 +#: model:account.account.template,name:l10n_be.a4401 +#: model:account.account.template,name:l10n_be.a4411 +msgid "Fournisseurs ordinaires" +msgstr "Vaste leveranciers" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a175010 +#: model:account.account.template,name:l10n_be.a175110 +#: model:account.account.template,name:l10n_be.a44010 +#: model:account.account.template,name:l10n_be.a44110 +msgid "Fournisseurs belges" +msgstr "Belgische leveranciers" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a175011 +#: model:account.account.template,name:l10n_be.a175111 +msgid "Fournisseurs C.E.E." +msgstr "EEG leveranciers" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a175012 +#: model:account.account.template,name:l10n_be.a175112 +#: model:account.account.template,name:l10n_be.a44012 +#: model:account.account.template,name:l10n_be.a44112 +msgid "Fournisseurs importation" +msgstr "Import leveranciers" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1751 +#: model:account.account.template,name:l10n_be.a4251 +#: model:account.account.template,name:l10n_be.a441 +msgid "Effets à payer" +msgstr "Te betalen wissels" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a176 +msgid "Acomptes reçus sur commandes" +msgstr "Ontvangen vooruitbetalingen op bestellingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a178 +#: model:account.account.template,name:l10n_be.a426 +#: model:account.account.template,name:l10n_be.a488 +msgid "Cautionnements reçus en numéraires" +msgstr "Borgtochten ontvangen in contanten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a179 +#: model:account.account.template,name:l10n_be.a429 +msgid "Dettes diverses" +msgstr "Overige schulden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1791 +#: model:account.account.template,name:l10n_be.a4021 +#: model:account.account.template,name:l10n_be.a4031 +msgid "Autres entreprises avec lesquelles il existe un lien de participation" +msgstr "Overige bedrijven waarin een participatie is" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1792 +#: model:account.account.template,name:l10n_be.a4292 +msgid "Administrateurs, gérants, associés" +msgstr "Bestuurders, zaakvoerders, partners" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1794 +msgid "Rentes viagères capitalisées" +msgstr "Geactiveerde lijfrenten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1798 +msgid "" +"Dettes envers les coparticipants des associations momentanées et en " +"participation" +msgstr "Schulden aan deelnemers van tijdelijke verenigingen en participaties" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a1799 +#: model:account.account.template,name:l10n_be.a489 +msgid "Autres dettes diverses" +msgstr "Overige diverse schulden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a18 +msgid "COMPTES DE LIAISON DES ETABLISSEMENTS ET SUCCURSALES" +msgstr "VESTIGINGEN EN FILIALEN" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2 +msgid "" +"CLASSE 2. FRAIS D'ETABLISSEMENT. ACTIFS IMMOBILISES ET CREANCES A PLUS D'UN " +"AN" +msgstr "" +"KLASSE 2. OPRICHTINGSKOSTEN, VASTE ACTIVA EN VORDERINGEN OP MEER DAN ÉÉN JAAR" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a20 +msgid "FRAIS D'ETABLISSEMENT" +msgstr "Oprichtingskosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a200 +#: model:account.account.template,name:l10n_be.a2000 +msgid "Frais de constitution et d'augmentation de capital" +msgstr "Oprichtingskosten en kapitaalverhoging" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2009 +msgid "Amortissements sur frais de constitution et d'augmentation de capital" +msgstr "Afschrijvingen op oprichtingskosten en kapitaalverhoging" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a201 +msgid "Frais d'émission d'emprunts et primes de remboursement" +msgstr "Kosten bij uitgifte van leningen en terugbetalingspremies" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2010 +msgid "Agios sur emprunts et frais d'émission d'emprunts" +msgstr "Premies op leningen en kosten op uitgifte van leningen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2019 +msgid "Amortissements sur agios sur emprunts et frais d'émission d'emprunts" +msgstr "" +"Afschrijving van premies op leningen en kosten op uitgifte van leningen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a202 +#: model:account.account.template,name:l10n_be.a2020 +msgid "Autres frais d'établissement" +msgstr "Overige oprichtingskosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2029 +msgid "Amortissements sur autres frais d'établissement" +msgstr "Afschrijvingen op overige oprichtingskosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a203 +#: model:account.account.template,name:l10n_be.a2030 +msgid "Intérêts intercalaires" +msgstr "Bouwrente" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2039 +msgid "Amortissements sur intérêts intercalaires" +msgstr "Afschrijving van bouwrente" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a204 +msgid "Frais de restructuration" +msgstr "Herstructureringskosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2040 +msgid "Coût des frais de restructuration" +msgstr "Kosten op herstructureringskosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2049 +msgid "Amortissements sur frais de restructuration" +msgstr "Afschrijving op herstructureringskosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a21 +msgid "IMMOBILISATIONS INCORPORELLES" +msgstr "Immateriële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a210 +msgid "Frais de recherche et de développement" +msgstr "Kosten van onderzoek en ontwikkeling" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2100 +msgid "Frais de recherche et de mise au point" +msgstr "Kosten van onderzoek en ontwikkeling" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2108 +msgid "Plus-values actées sur frais de recherche et de mise au point" +msgstr "Gerealiseerde meerwaarden op onderzoek en ontwikkeling" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2109 +msgid "Amortissements sur frais de recherche et de mise au point" +msgstr "Afschrijving van kosten van onderzoek en ontwikkeling" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a211 +msgid "" +"Concessions, brevets, licences, savoir-faire, marques et droits similaires" +msgstr "" +"Concessies, octrooien, licenties, know-how, merken en soortgelijke rechten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2110 +msgid "Concessions, brevets, licences, savoir-faire, marques, etc..." +msgstr "Consessies, octrooien, licenties, ..." + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2118 +msgid "Plus-values actées sur concessions, brevets, etc..." +msgstr "Gerealiseerde meerwaarden op consessies, octrooien, licenties, ..." + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2119 +msgid "Amortissements sur concessions, brevets, etc..." +msgstr "Afschrijvingen op consessies, octrooien, licenties, ..." + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a212 +msgid "Goodwill" +msgstr "Goodwill" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2120 +msgid "Coût d'acquisition" +msgstr "Overnameprijs" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2128 +#: model:account.account.template,name:l10n_be.a2218 +#: model:account.account.template,name:l10n_be.a2228 +#: model:account.account.template,name:l10n_be.a2238 +#: model:account.account.template,name:l10n_be.a238 +#: model:account.account.template,name:l10n_be.a2408 +#: model:account.account.template,name:l10n_be.a2808 +#: model:account.account.template,name:l10n_be.a2828 +#: model:account.account.template,name:l10n_be.a2848 +msgid "Plus-values actées" +msgstr "Gerealiseerde meerwaarden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2129 +msgid "Amortissements sur goodwill" +msgstr "Afschrijvingen op goodwill" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a213 +#: model:account.account.template,name:l10n_be.a2906 +#: model:account.account.template,name:l10n_be.a360 +#: model:account.account.template,name:l10n_be.a406 +msgid "Acomptes versés" +msgstr "Vooruitbetalingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a22 +msgid "TERRAINS ET CONSTRUCTIONS" +msgstr "Terreinen en gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a220 +#: model:account.account.template,name:l10n_be.a2200 +#: model:account.account.template,name:l10n_be.a2500 +msgid "Terrains" +msgstr "Terreinen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2201 +msgid "Frais d'acquisition sur terrains" +msgstr "Verwervingskosten van terreinen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2208 +msgid "Plus-values actées sur terrains" +msgstr "Gerealiseerde meerwaarden op terreinen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2209 +msgid "Amortissements et réductions de valeur" +msgstr "Afschrijvingen & waardeverminderingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a22090 +msgid "Amortissements sur frais d'acquisition" +msgstr "Afschrijvingen op verwervingskosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a22091 +msgid "Réductions de valeur sur terrains" +msgstr "Waardevermindering van terreinen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a221 +#: model:account.account.template,name:l10n_be.a2501 +#: model:account.account.template,name:l10n_be.a2700 +msgid "Constructions" +msgstr "Gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2210 +#: model:account.account.template,name:l10n_be.a22200 +msgid "Bâtiments industriels" +msgstr "Industriële gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2211 +#: model:account.account.template,name:l10n_be.a22201 +msgid "Bâtiments administratifs et commerciaux" +msgstr "Administratieve en commerciële gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2212 +#: model:account.account.template,name:l10n_be.a22202 +msgid "Autres bâtiments d'exploitation" +msgstr "Andere uitbatingsgebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2213 +#: model:account.account.template,name:l10n_be.a22203 +msgid "Voies de transport et ouvrages d'art" +msgstr "Transportwegen en kunstwerken" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2215 +msgid "Constructions sur sol d'autrui" +msgstr "Gebouwen in buitenland" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2216 +msgid "Frais d'acquisition sur constructions" +msgstr "Verwervingskosten van gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a22180 +#: model:account.account.template,name:l10n_be.a22190 +#: model:account.account.template,name:l10n_be.a22280 +#: model:account.account.template,name:l10n_be.a22290 +msgid "Sur bâtiments industriels" +msgstr "Op industriële gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a22181 +#: model:account.account.template,name:l10n_be.a22191 +#: model:account.account.template,name:l10n_be.a22281 +#: model:account.account.template,name:l10n_be.a22291 +msgid "Sur bâtiments administratifs et commerciaux" +msgstr "Op administratieve en commerciële gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a22182 +#: model:account.account.template,name:l10n_be.a22192 +#: model:account.account.template,name:l10n_be.a22282 +#: model:account.account.template,name:l10n_be.a22292 +msgid "Sur autres bâtiments d'exploitation" +msgstr "Op andere uitbatingsgebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a22184 +#: model:account.account.template,name:l10n_be.a22194 +#: model:account.account.template,name:l10n_be.a22283 +#: model:account.account.template,name:l10n_be.a22293 +msgid "Sur voies de transport et ouvrages d'art" +msgstr "Op transportwegen en kunstwerken" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2219 +msgid "Amortissements sur constructions" +msgstr "Afschrijvingen op gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a22195 +msgid "Sur constructions sur sol d'autrui" +msgstr "Op gebouwen in het buitenland" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a22196 +msgid "Sur frais d'acquisition sur constructions" +msgstr "Op verwervingskosten van gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a222 +msgid "Terrains bâtis" +msgstr "Bebouwde terreinen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2220 +#: model:account.account.template,name:l10n_be.a2230 +#: model:account.account.template,name:l10n_be.a2800 +#: model:account.account.template,name:l10n_be.a2820 +#: model:account.account.template,name:l10n_be.a2840 +#: model:account.account.template,name:l10n_be.a300 +#: model:account.account.template,name:l10n_be.a310 +#: model:account.account.template,name:l10n_be.a320 +#: model:account.account.template,name:l10n_be.a330 +#: model:account.account.template,name:l10n_be.a340 +#: model:account.account.template,name:l10n_be.a350 +#: model:account.account.template,name:l10n_be.a370 +#: model:account.account.template,name:l10n_be.a510 +#: model:account.account.template,name:l10n_be.a520 +msgid "Valeur d'acquisition" +msgstr "Aanschaffingswaarde" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a22204 +msgid "Frais d'acquisition des terrains à bâtir" +msgstr "Verwervingskosten van bouwgronden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2229 +msgid "Amortissements sur terrains bâtis" +msgstr "Afschrijvingen op bebouwde terreinen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a22294 +msgid "Sur frais d'acquisition des terrains bâtis" +msgstr "Op verwervingskosten van bebouwde terreinen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a223 +msgid "Autres droits réels sur des immeubles" +msgstr "Overige zakelijke rechten op onroerende goederen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2239 +#: model:account.account.template,name:l10n_be.a239 +#: model:account.account.template,name:l10n_be.a2409 +msgid "Amortissements" +msgstr "Afschijvingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a23 +msgid "INSTALLATIONS, MACHINES ET OUTILLAGE" +msgstr "Installaties, machines en uitrusting" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a230 +#: model:account.account.template,name:l10n_be.a2510 +msgid "Installations" +msgstr "Installaties" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2300 +msgid "Installation d'eau" +msgstr "Waterinstallatie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2301 +msgid "Installation d'électricité" +msgstr "Electriciteitsinstallatie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2302 +msgid "Installation de vapeur" +msgstr "Stoominstallatie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2303 +msgid "Installation de gaz" +msgstr "Gasinstallatie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2304 +msgid "Installation de chauffage" +msgstr "Verwarmingsinstallatie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2305 +msgid "Installation de conditionnement d'air" +msgstr "Luchtverversingsinstallatie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2306 +msgid "Installation de chargement" +msgstr "Oplaadinstallatie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a231 +#: model:account.account.template,name:l10n_be.a2511 +msgid "Machines" +msgstr "Machines" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2310 +#: model:account.account.template,name:l10n_be.a2370 +msgid "Division A" +msgstr "Divisie A" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2311 +#: model:account.account.template,name:l10n_be.a2371 +msgid "Division B" +msgstr "Divisie B" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a237 +#: model:account.account.template,name:l10n_be.a2512 +msgid "Outillage" +msgstr "Uitrusting" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2380 +#: model:account.account.template,name:l10n_be.a2390 +msgid "Sur installations" +msgstr "Op installaties" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2381 +#: model:account.account.template,name:l10n_be.a2391 +msgid "Sur machines" +msgstr "Op machines" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2382 +#: model:account.account.template,name:l10n_be.a2392 +msgid "Sur outillage" +msgstr "Op uitrusting" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24 +msgid "MOBILIER ET MATERIEL ROULANT" +msgstr "Meubilair en rollend materieel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a240 +#: model:account.account.template,name:l10n_be.a2400 +#: model:account.account.template,name:l10n_be.a2520 +msgid "Mobilier" +msgstr "Meubilair" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24000 +msgid "Mobilier des bâtiments industriels" +msgstr "Van industriële gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24001 +msgid "Mobilier des bâtiments administratifs et commerciaux" +msgstr "Van administratieve en commerciële gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24002 +msgid "Mobilier des autres bâtiments d'exploitation" +msgstr "Van andere uitbatingsgebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24003 +msgid "Mobilier oeuvres sociales" +msgstr "Van sociale werkplaatsen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2401 +msgid "Matériel de bureau et de service social" +msgstr "Kantoormateriaal en materiaal van sociale dienst" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24010 +msgid "Des bâtiments industriels" +msgstr "Van industriële gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24011 +msgid "Des bâtiments administratifs et commerciaux" +msgstr "" +"Van administratieve en commerciële gebouwenDes bâtiments administratifs et " +"commerciaux" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24012 +msgid "Des autres bâtiments d'exploitation" +msgstr "Van andere uitbatingsgebouwenDes autres bâtiments d'exploitation" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24013 +msgid "Des oeuvres sociales" +msgstr "Van sociale werkplaatsenDes oeuvres sociales" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24080 +msgid "Plus-values actées sur mobilier" +msgstr "Gerealiseerde meerwaarden op meubilair" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24081 +msgid "Plus-values actées sur matériel de bureau et service social" +msgstr "" +"Gerealiseerde meerwaarden op kantoormateriaal en materiaal van sociale dienst" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24090 +msgid "Amortissements sur mobilier" +msgstr "Afschrijvingen op meubilair" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24091 +msgid "Amortissements sur matériel de bureau et service social" +msgstr "Afschrijvingen op kantoormateriaal en materiaal van sociale dienst" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a241 +#: model:account.account.template,name:l10n_be.a2521 +msgid "Matériel roulant" +msgstr "Rollend materieel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2410 +msgid "Matériel automobile" +msgstr "Wagens" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24100 +msgid "Voitures" +msgstr "Wagens" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24105 +msgid "Camions" +msgstr "Vrachtwagens" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2411 +msgid "Matériel ferroviaire" +msgstr "Spoorwegmaterieel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2412 +msgid "Matériel fluvial" +msgstr "Binnenscheepvaartmaterieel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2413 +msgid "Matériel naval" +msgstr "Scheepvaartmaterieel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2414 +msgid "Matériel aérien" +msgstr "Luchtvaartmaterieel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2418 +msgid "Plus-values sur matériel roulant" +msgstr "Gerealiseerde meerwaarden op rollend materieel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24180 +msgid "Plus-values sur matériel automobile" +msgstr "Gerealiseerde meerwaarden op wagenuitrusting" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24181 +#: model:account.account.template,name:l10n_be.a24191 +msgid "Idem sur matériel ferroviaire" +msgstr "Idem op spoorwegmaterieel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24182 +#: model:account.account.template,name:l10n_be.a24192 +msgid "Idem sur matériel fluvial" +msgstr "Idem op binnenscheepvaartmaterieel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24183 +#: model:account.account.template,name:l10n_be.a24193 +msgid "Idem sur matériel naval" +msgstr "Idem op scheepvaartmaterieel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24184 +#: model:account.account.template,name:l10n_be.a24194 +msgid "Idem sur matériel aérien" +msgstr "Idem op luchtvaartmaterieel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2419 +msgid "Amortissements sur matériel roulant" +msgstr "Afschrijvingen op rollend materieel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a24190 +msgid "Amortissements sur matériel automobile" +msgstr "Afschrijvingen op wagenuitrusting" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a25 +msgid "IMMOBILISATION DETENUES EN LOCATION-FINANCEMENT ET DROITS SIMILAIRES" +msgstr "Vaste activa in leasing of op grond van een soortgelijk recht" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a250 +msgid "Terrains et constructions" +msgstr "Terreinen en gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2508 +msgid "" +"Plus-values sur emphytéose, leasing et droits similaires : terrains et " +"constructions" +msgstr "" +"Winsten op erfpacht, leasing en soortgelijke rechten: terreinen en gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2509 +msgid "" +"Amortissements et réductions de valeur sur terrains et constructions en " +"leasing" +msgstr "" +"Afschrijvingen en waardeverminderingen op terreinen en gehuurde gebouwen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a251 +#: model:account.account.template,name:l10n_be.a2701 +msgid "Installations, machines et outillage" +msgstr "Installaties, machines en uitrusting" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2518 +msgid "" +"Plus-values actées sur installations, machines et outillage pris en leasing" +msgstr "" +"Gerealiseerde meerwaarden op geleasde installaties, machines en gereeddschap" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2519 +msgid "Amortissements sur installations, machines et outillage pris en leasing" +msgstr "Afschrijvingen op geleasde installaties, machines en gereeddschap" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a252 +#: model:account.account.template,name:l10n_be.a2702 +msgid "Mobilier et matériel roulant" +msgstr "Meubilair en rollend materieel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2528 +msgid "Plus-values actées sur mobilier et matériel roulant en leasing" +msgstr "Gerealiseerde meerwaarden op geleasd rollend materieel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2529 +msgid "Amortissements sur mobilier et matériel roulant en leasing" +msgstr "Afschrijvingen op geleasd rollend materieel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a26 +msgid "AUTRES IMMOBILISATIONS CORPORELLES" +msgstr "Andere materiële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a260 +msgid "Frais d'aménagements de locaux pris en location" +msgstr "Inrichtingskosten gehuurde lokalen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a261 +msgid "Maison d'habitation" +msgstr "Woonhuis" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a262 +msgid "Réserve immobilière" +msgstr "Vastgoed reserve" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a263 +msgid "Matériel d'emballage" +msgstr "Verpakkingsmateriaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a264 +#: model:account.account.template,name:l10n_be.a31061 +msgid "Emballages récupérables" +msgstr "Herbruikbare verpakkingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a268 +msgid "Plus-values actées sur autres immobilisations corporelles" +msgstr "Gerealiseerde meerwaarden op overige vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a269 +msgid "Amortissements sur autres immobilisations corporelles" +msgstr "Afschrijvingen overige vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2690 +msgid "Amortissements sur frais d'aménagement des locaux pris en location" +msgstr "Op inrichtingskosten gehuurde lokalen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2691 +msgid "Amortissements sur maison d'habitation" +msgstr "Op woonhuis" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2692 +msgid "Amortissements sur réserve immobilière" +msgstr "Op vastgoed reserve" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2693 +msgid "Amortissements sur matériel d'emballage" +msgstr "Op verpakkingsmateriaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2694 +msgid "Amortissements sur emballages récupérables" +msgstr "Op Herbruikbare verpakkingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a27 +msgid "IMMOBILISATIONS CORPORELLES EN COURS ET ACOMPTES VERSES" +msgstr "Vaste activa in aanbouw en vooruitbetalingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a270 +msgid "Immobilisations en cours" +msgstr "Gebouwen in aanbouw" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2703 +msgid "Autres immobilisations corporelles" +msgstr "Overige vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a271 +msgid "Avances et acomptes versés sur immobilisations en cours" +msgstr "Voorschotten en vooruitbetalingen bestemd voor gebouwen in aanbouw" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a28 +msgid "IMMOBILISATIONS FINANCIERES" +msgstr "Financiële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a280 +msgid "Participations dans des entreprises liées" +msgstr "Deelnemingen in verbonden ondernemingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2801 +#: model:account.account.template,name:l10n_be.a2821 +#: model:account.account.template,name:l10n_be.a2841 +#: model:account.account.template,name:l10n_be.a511 +msgid "Montants non appelés" +msgstr "Nog te storten bedragen (-) " + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2809 +#: model:account.account.template,name:l10n_be.a2819 +#: model:account.account.template,name:l10n_be.a2829 +#: model:account.account.template,name:l10n_be.a2839 +#: model:account.account.template,name:l10n_be.a359 +msgid "Réductions de valeurs actées" +msgstr "Geboekte waardeverminderingen (-) " + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a281 +msgid "Créances sur des entreprises liées" +msgstr "Vorderingen op verbonden ondernemingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2810 +#: model:account.account.template,name:l10n_be.a2830 +#: model:account.account.template,name:l10n_be.a2850 +#: model:account.account.template,name:l10n_be.a2910 +msgid "Créances en compte" +msgstr "Vorderingen op rekening" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2811 +#: model:account.account.template,name:l10n_be.a2831 +#: model:account.account.template,name:l10n_be.a2851 +#: model:account.account.template,name:l10n_be.a2901 +#: model:account.account.template,name:l10n_be.a2911 +#: model:account.account.template,name:l10n_be.a401 +#: model:account.account.template,name:l10n_be.a4010 +msgid "Effets à recevoir" +msgstr "Te innen wissels" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2812 +msgid "Titres à revenu fixes" +msgstr "Vastrentende effecten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2817 +#: model:account.account.template,name:l10n_be.a2837 +#: model:account.account.template,name:l10n_be.a2857 +#: model:account.account.template,name:l10n_be.a2907 +#: model:account.account.template,name:l10n_be.a2917 +#: model:account.account.template,name:l10n_be.a407 +#: model:account.account.template,name:l10n_be.a417 +msgid "Créances douteuses" +msgstr "Dubieuze debiteuren" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a282 +msgid "" +"Participations dans des entreprises avec lesquelles il existe un lien de " +"participation" +msgstr "" +"Deelnemingen in ondernemingen waarmee een deelnemingsverhouding bestaat" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a283 +msgid "" +"Créances sur des entreprises avec lesquelles il existe un lien de " +"participation" +msgstr "Vorderingen op ondernemingen waarmee een deelnemingsverhouding bestaat" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2832 +#: model:account.account.template,name:l10n_be.a2852 +msgid "Titres à revenu fixe" +msgstr "Vastrentende effecten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a284 +msgid "Autres actions et parts" +msgstr "Andere aandelen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2849 +#: model:account.account.template,name:l10n_be.a2859 +#: model:account.account.template,name:l10n_be.a2909 +#: model:account.account.template,name:l10n_be.a2919 +#: model:account.account.template,name:l10n_be.a309 +#: model:account.account.template,name:l10n_be.a319 +#: model:account.account.template,name:l10n_be.a329 +#: model:account.account.template,name:l10n_be.a339 +#: model:account.account.template,name:l10n_be.a349 +#: model:account.account.template,name:l10n_be.a369 +#: model:account.account.template,name:l10n_be.a379 +#: model:account.account.template,name:l10n_be.a409 +#: model:account.account.template,name:l10n_be.a419 +#: model:account.account.template,name:l10n_be.a519 +#: model:account.account.template,name:l10n_be.a529 +#: model:account.account.template,name:l10n_be.a539 +msgid "Réductions de valeur actées" +msgstr "Geboekte waardeverminderingen (-)" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a285 +#: model:account.account.template,name:l10n_be.a291 +#: model:account.account.template,name:l10n_be.a41671 +msgid "Autres créances" +msgstr "Overige vorderingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a288 +#: model:account.account.template,name:l10n_be.a418 +msgid "Cautionnements versés en numéraires" +msgstr "Borgtochten betaald in contanten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2880 +msgid "Téléphone, télefax, télex" +msgstr "Telefoon, fax, telex" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2881 +#: model:account.account.template,name:l10n_be.a61201 +msgid "Gaz" +msgstr "Gas" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2882 +#: model:account.account.template,name:l10n_be.a61200 +msgid "Eau" +msgstr "Water" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2883 +#: model:account.account.template,name:l10n_be.a61202 +msgid "Electricité" +msgstr "Elektriciteit" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2887 +msgid "Autres cautionnements versés en numéraires" +msgstr "Andere borgtochten betaald in contanten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a29 +msgid "CREANCES A PLUS D'UN AN" +msgstr "Vorderingen op meer dan één jaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a290 +msgid "Créances commerciales" +msgstr "Handelsvorderingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2900 +#: model:account.account.template,name:l10n_be.a400 +#: model:account.account.template,name:l10n_be.a_recv +msgid "Clients" +msgstr "Klanten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a29000 +msgid "Créances en compte sur entreprises liées" +msgstr "Vorderingen voor rekening van verbonden ondernemingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a29001 +#: model:account.account.template,name:l10n_be.a29011 +#: model:account.account.template,name:l10n_be.a29111 +msgid "Sur entreprises avec lesquelles il existe un lien de participation" +msgstr "Op bedrijven waarin een deelneming bestaat" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a29002 +#: model:account.account.template,name:l10n_be.a29012 +msgid "Sur clients Belgique" +msgstr "Op Belgische klanten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a29003 +#: model:account.account.template,name:l10n_be.a29013 +msgid "Sur clients C.E.E." +msgstr "Op klanten binnen de EEG" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a29004 +#: model:account.account.template,name:l10n_be.a29014 +msgid "Sur clients exportation hors C.E.E." +msgstr "Op exportklanten buiten de EEG" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a29005 +msgid "Créances sur les coparticipants" +msgstr "Op co-participanten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a29010 +#: model:account.account.template,name:l10n_be.a29110 +msgid "Sur entreprises liées" +msgstr "Op verbonden ondernemingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2905 +msgid "Retenues sur garanties" +msgstr "Inhoudingen op garanties" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a29100 +msgid "Créances entreprises liées" +msgstr "Lening aan verbonden ondernemingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a29101 +msgid "Créances entreprises avec lesquelles il existe un lien de participation" +msgstr "Op bedrijven waarin een deelneming bestaat" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a29102 +msgid "Créances autres débiteurs" +msgstr "Lening aan andere debiteuren" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a29112 +msgid "Sur autres débiteurs" +msgstr "Op andere debiteuren" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a2912 +msgid "Créances résultant de la cession d'immobilisations données en leasing" +msgstr "Vorderingen als gevolg van de verkoop van geleased vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3 +msgid "CLASSE 3. STOCK ET COMMANDES EN COURS D'EXECUTION" +msgstr "KLASSE 3 - VOORRADEN EN BESTELLINGEN IN UITVOERING" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a30 +msgid "APPROVISIONNEMENTS - MATIERES PREMIERES" +msgstr "Grondstoffen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a31 +msgid "APPROVISIONNEMENTS ET FOURNITURES" +msgstr "Hulpstoffen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3100 +msgid "Matières d'approvisionnement" +msgstr "Aan te leveren materiaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3101 +msgid "Energie, charbon, coke, Mazout, essence, propane" +msgstr "Energie, steenkool, cokes, stookolie, benzine, propaan" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3102 +msgid "Produits d'entretien" +msgstr "Onderhoudsproducten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3103 +msgid "Fournitures diverses et petit outillage" +msgstr "Diverse benodigdheden en klein gereedschap" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3104 +#: model:account.account.template,name:l10n_be.a6123 +msgid "Imprimés et fournitures de bureau" +msgstr "Printers en kantoorbenodigdheden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3105 +msgid "Fournitures de services sociaux" +msgstr "Sociale diensten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3106 +msgid "Emballages commerciaux" +msgstr "Commerciele verpakking" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a31060 +msgid "Emballages perdus" +msgstr "Verloren verpakking" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a32 +msgid "EN COURS DE FABRICATION" +msgstr "Goederen in bewerking" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3200 +msgid "Produits semi-ouvrés" +msgstr "Halffabrikaten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3201 +msgid "Produits en cours de fabrication" +msgstr "Goederen in productie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3202 +msgid "Travaux en cours" +msgstr "Werken in uitvoering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3205 +msgid "Déchets" +msgstr "Afval" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3206 +msgid "Rebuts" +msgstr "Restmateriaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3209 +msgid "Travaux en association momentanée" +msgstr "Werken in joint-venture" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a33 +msgid "PRODUITS FINIS" +msgstr "Gereed product" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3300 +msgid "Produits finis" +msgstr "Gereed product" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a34 +msgid "MARCHANDISES" +msgstr "Handelsgoederen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3400 +msgid "Groupe A" +msgstr "Groep A" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3401 +msgid "Groupe B" +msgstr "Groep B" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a35 +msgid "IMMEUBLES DESTINES A LA VENTE" +msgstr "Onroerende goederen bestemd voor verkoop" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3500 +#: model:account.account.template,name:l10n_be.a3510 +msgid "Immeuble A" +msgstr "Onroerend goed A" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a3501 +#: model:account.account.template,name:l10n_be.a3511 +msgid "Immeuble B" +msgstr "Onroerend goed B" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a351 +msgid "Immeubles construits en vue de leur revente" +msgstr "Vastgoed gebouwd om te verkopen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a36 +msgid "ACOMPTES VERSES SUR ACHATS POUR STOCKS" +msgstr "Vooruitbetalingen op voorraadinkopen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a37 +msgid "COMMANDES EN COURS D'EXECUTION" +msgstr "Bestellingen in uitvoering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a371 +msgid "Bénéfice pris en compte" +msgstr "Toegerekende winst" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4 +msgid "CLASSE 4. CREANCES ET DETTES A UN AN AU PLUS" +msgstr "KLASSE 4 - VORDERINGEN EN SCHULDEN OP TEN HOOGSTE EEN JAAR" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a40 +msgid "CREANCES COMMERCIALES" +msgstr "Handelsvorderingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4007 +msgid "" +"Rabais, remises, ristournes à accorder et autres notes de crédit à établir" +msgstr "Kortingen, rabatten en andere op te maken creditnota's" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4008 +msgid "Créances résultant de livraisons de biens" +msgstr "Vorderingen op geleverde goederen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4013 +msgid "Effets à l'encaissement" +msgstr "Wissels aan toonder" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4015 +msgid "Effets à l'escompte" +msgstr "Wissels op rekening" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a402 +msgid "" +"Clients, créances courantes, entreprises apparentées, administrateurs et " +"gérants" +msgstr "" +"Klanten, vorderingen, gerelateerde bedrijven, bestuurders en zaakvoerders" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4022 +msgid "Administrateurs et gérants d'entreprise" +msgstr "Bestuurders en zaakvoerders van de onderneming" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a403 +msgid "" +"Effets à recevoir sur entreprises apparentées et administrateurs et gérants" +msgstr "" +"Te ontvangen wissels van gerelateerde bedrijven, bestuurders en zaakvoerders" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4032 +msgid "Administrateurs et gérants de l'entreprise" +msgstr "Bestuurders en zaakvoerders" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a404 +#: model:account.account.template,name:l10n_be.a414 +msgid "Produits à recevoir" +msgstr "Te innen opbrengsten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a405 +msgid "Clients : retenues sur garanties" +msgstr "Klanten : inhouding op garanties" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a408 +msgid "Compensation clients" +msgstr "Klanten compensatie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a41 +msgid "AUTRES CREANCES" +msgstr "Overige vorderingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a410 +msgid "Capital appelé, non versé" +msgstr "Opgevraagd, niet-gestort kapitaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4100 +msgid "Appels de fonds" +msgstr "Opvraging fondsen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4101 +msgid "Actionnaires défaillants" +msgstr "Falende aandeelhouders" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a411 +msgid "T.V.A. à récupérer" +msgstr "Terug te vorderen BTW" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a411059 +msgid "T.V.A Déductible" +msgstr "Aftrekbare BTW" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4112 +#: model:account.account.template,name:l10n_be.a4512 +msgid "Compte courant administration T.V.A." +msgstr "Rekening Courant BTW-Administratie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4118 +#: model:account.account.template,name:l10n_be.a4518 +msgid "Taxe d'égalisation due" +msgstr "Verschuldigde egalisatiebelasting" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a412 +msgid "Impôts et versements fiscaux à récupérer" +msgstr "Terug te vorderen belastingen en voorheffingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4120 +msgid "à 4124 Impôts belges sur le résultat" +msgstr "tot 4124 Belgische winstbelastingen " + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4125 +msgid "à 4127 Autres impôts belges" +msgstr "tot 4127 Andere Belgische belastingen " + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4128 +msgid "Impôts étrangers" +msgstr "Buitenlandse belastingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a416 +msgid "Créances diverses" +msgstr "Diverse vorderingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4160 +msgid "Associés" +msgstr "Vennoten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4161 +msgid "Avances et prêts au personnel" +msgstr "Voorschotten en leningen aan het personeel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4162 +msgid "Compte courant des associés en S.P.R.L." +msgstr "Rekening courant vennoten in B.V.B.A" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4163 +msgid "Compte courant des administrateurs et gérants" +msgstr "Rekening courant bestuurders en zaakvoerders" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4164 +msgid "Créances sur sociétés apparentées" +msgstr "Vorderingen op gerelateerde bedrijven" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4166 +msgid "Emballages et matériel à rendre" +msgstr "Terug te geven materiaal en verpakkingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4167 +msgid "Etat et établissements publics" +msgstr "Overheid en openbare instellingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a41670 +msgid "Subsides à recevoir" +msgstr "Te ontvangen subsidies" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4168 +msgid "Rabais, ristournes, remises à obtenir et autres avoirs non encore reçus" +msgstr "Kortingen, rabatten en andere nog te ontvangen tegoeden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a42 +msgid "DETTES A PLUS D'UN AN ECHEANT DANS L'ANNEE" +msgstr "Schulden op meer dan één jaar die binnen het jaar vervallen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a422 +msgid "Dettes de location-financement et assimilées" +msgstr "Leasingschulden en soortgelijke" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4220 +msgid "Financement de biens immobiliers" +msgstr "Financiering vastgoed" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4221 +msgid "Financement de biens mobiliers" +msgstr "Financiering roerend goed" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4250 +#: model:account.account.template,name:l10n_be.a440 +msgid "Fournisseurs" +msgstr "Leveranciers" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4299 +msgid "Autres dettes" +msgstr "Overige schulden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a43 +msgid "DETTES FINANCIERES" +msgstr "Financiële schulden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a430 +msgid "Etablissements de crédit. Emprunts en compte à terme fixe" +msgstr "Kredietinstellingen - Leningen op rekeningen met vaste termijn" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a431 +msgid "Etablissements de crédit. Promesses" +msgstr "Kredietinstellingen - Promessen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a432 +msgid "Etablissements de crédit. Crédits d'acceptation" +msgstr "Kredietinstellingen - Acceptkredieten " + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a433 +msgid "Etablissements de crédit. Dettes en compte courant" +msgstr "Kredietinstellingen - Schulden in rekening courant" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a44 +msgid "DETTES COMMERCIALES" +msgstr "Handelsschulden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a44011 +#: model:account.account.template,name:l10n_be.a44111 +msgid "Fournisseurs CEE" +msgstr "Leveranciers EEG" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4402 +msgid "Dettes envers les coparticipants" +msgstr "Schulden aan mede participanten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4403 +msgid "Fournisseurs - retenues de garanties" +msgstr "Levernaciers - inhoudingen op garanties" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a444 +msgid "Factures à recevoir" +msgstr "Te ontvangen facturen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a446 +msgid "Acomptes reçus" +msgstr "Ontvangen voorschotten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a448 +msgid "Compensations fournisseurs" +msgstr "Compensaties leveranciers" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a45 +msgid "DETTES FISCALES, SALARIALES ET SOCIALES" +msgstr "" +"Schulden met betrekking tot belastingen, bezoldigingen en sociale lasten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a450 +msgid "Dettes fiscales estimées" +msgstr "Geraamd bedrag der belastingschulden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4501 +msgid "à 4504 Impôts sur le résultat" +msgstr "tot 4504 Belgische winstbelastingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4505 +msgid "à 4507 Autres impôts en Belgique" +msgstr "tot 4507 Andere Belgische belastingen en taksen " + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4508 +msgid "Impôts à l'étranger" +msgstr "Buitenlandse belastingen en taksen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a451 +#: model:account.account.template,name:l10n_be.a451054 +msgid "T.V.A. à payer" +msgstr "Te betalen BTW" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a451055 +msgid "T.V.A. à payer - Intra-communautaire" +msgstr "Te betalen BTW - Intracommunautair" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a451056 +msgid "T.V.A. à payer - Cocontractant" +msgstr "Te betalen BTW - Medecontractant" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a451057 +msgid "T.V.A. à payer - Import" +msgstr "Te betalen BTW - Import" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a452 +msgid "Impôts et taxes à payer" +msgstr "Te betalen belastingen en taksen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4520 +msgid "Autres impôts sur le résultat" +msgstr "Andere Belgische winstbelastingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4525 +msgid "Autres impôts et taxes en Belgique" +msgstr "Andere Belgische belastingen en taksen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a45250 +msgid "Précompte immobilier" +msgstr "Onroerende voorheffing" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a45251 +msgid "Impôts communaux à payer" +msgstr "Te betalen gemeentebelasting" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a45252 +msgid "Impôts provinciaux à payer" +msgstr "Te betalen provinciale belasting" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a45253 +msgid "Autres impôts et taxes à payer" +msgstr "Andere te betalen belastingen en taksen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4528 +msgid "Impôts et taxes à l'étranger" +msgstr "Buitenlandse belastingen en taksen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a453 +msgid "Précomptes retenus" +msgstr "Ingehouden voorheffingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4530 +msgid "Précompte professionnel retenu sur rémunérations" +msgstr "Bedrijfsvoorheffing ingehouden op bezoldigingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4531 +msgid "Précompte professionnel retenu sur tantièmes" +msgstr "Bedrijfsvoorheffing ingehouden op tantièmes" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4532 +msgid "Précompte mobilier retenu sur dividendes attribués" +msgstr "Roerende voorheffing ingehouden op uitgekeerde dividenden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4533 +msgid "Précompte mobilier retenu sur intérêts payés" +msgstr "Roerende voorheffing ingehouden op betaalde intresten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4538 +msgid "Autres précomptes retenus" +msgstr "Andere ingehouden voorheffingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a454 +msgid "Office National de la Sécurité Sociale" +msgstr "Rijksdienst voor Sociale Zekerheid" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4540 +msgid "Arriérés" +msgstr "Achterstallen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4541 +msgid "1er trimestre" +msgstr "1e kwartaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4542 +msgid "2ème trimestre" +msgstr "2e kwartaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4543 +msgid "3ème trimestre" +msgstr "3e kwartaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4544 +msgid "4ème trimestre" +msgstr "4e kwartaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a455 +msgid "Rémunérations" +msgstr "Bezoldigingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4550 +msgid "Administrateurs, gérants et commissaires" +msgstr "Bestuurders, zaakvoerders en commissarissen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4551 +#: model:account.account.template,name:l10n_be.a4560 +msgid "Direction" +msgstr "Directiepersoneel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4552 +#: model:account.account.template,name:l10n_be.a4561 +#: model:account.account.template,name:l10n_be.a6202 +msgid "Employés" +msgstr "Bedienden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4553 +#: model:account.account.template,name:l10n_be.a4562 +#: model:account.account.template,name:l10n_be.a6203 +msgid "Ouvriers" +msgstr "Arbeiders" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a456 +msgid "Pécules de vacances" +msgstr "Vakantiegeld" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a459 +msgid "Autres dettes sociales" +msgstr "Andere sociale schulden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4590 +msgid "Provision pour gratifications de fin d'année" +msgstr "Voorziening voor eindejaarspremie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4591 +msgid "Départs de personnel" +msgstr "Ontslag personeel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4592 +msgid "Oppositions sur rémunérations" +msgstr "Loonbeslag" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4593 +msgid "Assurances relatives au personnel" +msgstr "Personeelsverzekeringen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a45930 +msgid "Assurance loi" +msgstr "Wetsverzekering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a45931 +msgid "Assurance salaire garanti " +msgstr "Verzekering gewaarborgd inkomen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a45932 +msgid "Assurance groupe " +msgstr "Groepsverzekering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a45933 +#: model:account.account.template,name:l10n_be.a62302 +msgid "Assurances individuelles" +msgstr "Individuele verzekering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4594 +msgid "Caisse d'assurances sociales pour travailleurs indépendants" +msgstr "Sociale kas voor zelfstandigen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4597 +msgid "Dettes et provisions sociales diverses" +msgstr "Diverse sociale schulden en provisies" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a46 +msgid "ACOMPTES RECUS SUR COMMANDES" +msgstr "Ontvangen vooruitbetalingen op bestellingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a47 +msgid "DETTES DECOULANT DE L'AFFECTATION DES RESULTATS" +msgstr "Schulden uit de bestemming van het resultaat" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a470 +msgid "Dividendes et tantièmes d'exercices antérieurs" +msgstr "Dividenden en tantièmes over vorige boekjaren" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a471 +msgid "Dividendes de l'exercice" +msgstr "Dividenden over het boekjaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a472 +msgid "Tantièmes de l'exercice" +msgstr "Tantièmes over het boekjaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a473 +#: model:account.account.template,name:l10n_be.a696 +msgid "Autres allocataires" +msgstr "Andere rechthebbenden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a48 +msgid "DETTES DIVERSES" +msgstr "Diverse schulden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a480 +msgid "Obligations et coupons échus" +msgstr "Vervallen obligaties en coupons" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a481 +msgid "Actionnaires - capital à rembourser" +msgstr "Aandeelhouders : terug te betalen kapitaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a482 +msgid "Participation du personnel à payer" +msgstr "Personeelsparticipatie te betalen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a483 +msgid "Acomptes reçus d'autres tiers à moins d'un an" +msgstr "Ontvangen voorschotten van derden minder dan 1 jaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a486 +msgid "Emballages et matériel consignés" +msgstr "Verpakkingen en materiaal in consignatie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a49 +msgid "COMPTES DE REGULARISATION ET COMPTES D'ATTENTE" +msgstr "Overlopende rekeningen en wachtrekeningen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a490 +msgid "Charges à reporter" +msgstr "Over te dragen kosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a491 +msgid "Produits acquis" +msgstr "Verkregen opbrengsten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4910 +msgid "Produits d'exploitation" +msgstr "Bedrijfsopbrengsten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a49100 +msgid "Ristournes, rabais à obtenir" +msgstr "Te ontvangen kortingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a49101 +msgid "Commissions à obtenir" +msgstr "Te ontvangen commissies" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a49102 +msgid "Autres produits d'exploitation" +msgstr "Andere bedrijfsopbrengsten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4911 +msgid "Produits financiers" +msgstr "Financiële opbrengsten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a49110 +msgid "Intérêts courus et non échus sur prêts et débits" +msgstr "Oplopende en onbetaalde rente op leningen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a49111 +msgid "Autres produits financiers" +msgstr "Overige financiële opbrengsten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a492 +msgid "Charges à imputer" +msgstr "Toe te rekenen kosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a493 +msgid "Produits à reporter" +msgstr "Over te dragen opbrengsten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4930 +msgid "Produits d'exploitation à reporter" +msgstr "Over te dragen bedrijfsopbrengsten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4931 +msgid "Produits financiers à reporter" +msgstr "Over te dragen financiële opbrengsten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a499 +msgid "Comptes d'attente" +msgstr "Wachtrekeningen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4990 +msgid "Compte d'attente" +msgstr "Wachtrekening" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4991 +msgid "Compte de répartition périodique des charges" +msgstr "Staat van periodieke kostenverdeling" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a4999 +msgid "Transferts d'exercice" +msgstr "Fiscale transfers" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a5 +msgid "CLASSE 5. PLACEMENTS DE TRESORERIE ET DE VALEURS DISPONIBLES" +msgstr "KLASSE 5 - GELDBELEGGINGEN EN LIQUIDE MIDDELEN" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a50 +msgid "ACTIONS PROPRES" +msgstr "Eigen aandelen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a51 +msgid "ACTIONS ET PARTS" +msgstr "Aandelen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a52 +msgid "TITRES A REVENUS FIXES" +msgstr "Vastrentende effecten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a53 +msgid "DEPOTS A TERME" +msgstr "Termijndeposito's" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a530 +msgid "De plus d'un an" +msgstr "Op meer dan één jaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a531 +msgid "De plus d'un mois et à un an au plus" +msgstr "Op meer dan één maand en op ten hoogste één jaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a532 +msgid "D'un mois au plus" +msgstr "Op ten hoogste één maand" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a54 +msgid "VALEURS ECHUES A L'ENCAISSEMENT" +msgstr "Te incasseren vervallen waarden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a540 +msgid "Chèques à encaisser" +msgstr "Te incasseren cheques" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a541 +msgid "Coupons à encaisser" +msgstr "Te incasseren coupons" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a55 +msgid "ETABLISSEMENTS DE CREDIT." +msgstr "Kredietinstellingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a550 +msgid "Comptes ouverts auprès des divers établissements" +msgstr " Rekeningen geopend bij verschillende instellingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a56 +msgid "OFFICE DES CHEQUES POSTAUX" +msgstr "Postcheque en girodienst" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a560 +msgid "Compte courant" +msgstr "Rekening-courant" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a561 +msgid "Chèques émis" +msgstr "Uitgeschreven cheques (-)" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a57 +msgid "CAISSES" +msgstr "Kassen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a570 +msgid "Caisses - espèces" +msgstr "Kassen-contanten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a578 +msgid "Caisses - timbres" +msgstr "Kassen-zegels" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a58 +msgid "VIREMENTS INTERNES" +msgstr "Interne overboekingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6 +msgid "CLASSE 6. - CHARGES" +msgstr "KLASSE 6 - KOSTEN" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a60 +msgid "APPROVISIONNEMENTS ET MARCHANDISES" +msgstr "Handelsgoederen, grond- en hulpstoffen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a601 +msgid "Achats de fournitures" +msgstr "Aankopen van hulpstoffen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a602 +msgid "Achats de services, travaux et études" +msgstr "Aankopen van diensten, werk en studies" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a603 +msgid "Sous-traitances générales" +msgstr "Algemene onderaannemingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a604 +msgid "Achats de marchandises" +msgstr "Aankopen van handelsgoederen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a605 +msgid "Achats d'immeubles destinés à la revente" +msgstr "Aankopen van onroerende goederen bestemd voor verkoop" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a608 +msgid "Remises, ristournes et rabais obtenus sur achats" +msgstr "Ontvangen kortingen, ristorno's en rabatten (-)" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a609 +msgid "Variations de stocks" +msgstr "Voorraadwijzigingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6090 +msgid "De matières premières" +msgstr "van grondstoffen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6091 +msgid "De fournitures" +msgstr "van hulpstoffen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6094 +msgid "De marchandises" +msgstr "van handelsgoederen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6095 +msgid "D'immeubles destinés à la vente" +msgstr "van gekochte onroerende goederen bestemd voor verkoop" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61 +msgid "SERVICES ET BIENS DIVERS" +msgstr "Diensten en diverse goederen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a610 +msgid "Loyers et charges locatives" +msgstr "Huur en huurlasten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6100 +msgid "Loyers divers" +msgstr "Diverse huren" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6101 +msgid "Charges locatives" +msgstr "Huurlasten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a611 +msgid "Entretien et réparation" +msgstr "Onderhoud en herstellingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a612 +msgid "Fournitures faites à l'entreprise" +msgstr "Leveringen aan de onderneming" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6120 +msgid "Eau, gaz, électricité, vapeur" +msgstr "Water, gas, electriciteit, stoom" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61203 +msgid "Vapeur" +msgstr "Stoom" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6121 +msgid "Téléphone, télégrammes, télex, téléfax, frais postaux" +msgstr "Telefoon, telegram, telex, telefax, portkosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61210 +msgid "Téléphone" +msgstr "Telefoon" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61211 +msgid "Télégrammes" +msgstr "Telegram" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61212 +msgid "Télex et téléfax" +msgstr "Telex en telefax" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61213 +msgid "Frais postaux" +msgstr "Portkosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6122 +msgid "Livres, bibliothèque" +msgstr "Boeken en documentatie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a613 +msgid "Rétributions de tiers" +msgstr "Vergoedingen aan derden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6130 +msgid "Redevances et royalties" +msgstr "Commissies en auteursrechten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61300 +msgid "Redevances pour brevets, licences, marques, accessoires" +msgstr "Commissies voor brevetten, licencies, merken en accessoires" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61301 +msgid "Autres redevances" +msgstr "Andere commissies" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6131 +msgid "Assurances non relatives au personnel" +msgstr "Verzekeringen niet personeelsgerelateerd" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61310 +msgid "Assurance incendie" +msgstr "Brandverzekering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61311 +msgid "Assurance vol" +msgstr "Diefstalverzekering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61312 +msgid "Assurance autos" +msgstr "Autoverzekering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61313 +msgid "Assurance crédit" +msgstr "Kredietverzekering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61314 +msgid "Assurances frais généraux" +msgstr "Kostenverzekering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6132 +#: model:account.account.template,name:l10n_be.a62322 +msgid "Divers" +msgstr "Diversen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61320 +msgid "Commissions aux tiers" +msgstr "Commisie aan derden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61321 +msgid "Honoraires d'avocats, d'experts, etc ..." +msgstr "Erelonen advocaten, experten, ..." + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61322 +msgid "Cotisations aux groupements professionnels" +msgstr "Bijdragen aan beroepsverenigingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61323 +msgid "Dons, libéralités, ..." +msgstr "Giften en schenkingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61324 +msgid "Frais de contentieux" +msgstr "Juridische kosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61325 +msgid "Publications légales" +msgstr "Wettelijke publicaties" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6133 +msgid "Transports et déplacements" +msgstr "Transport en verplaatsingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61330 +msgid "Transports de personnel" +msgstr "Personeelsverplaatsingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61331 +msgid "Voyages, déplacements, représentations" +msgstr "Reizen, verplaatsingen, vertegenwoordigingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6134 +msgid "Personnel intérimaire" +msgstr "Interim personeel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a614 +msgid "Annonces, publicité, propagande et documentation" +msgstr "Advertenties, publiciteit, propaganda en documentatie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6140 +msgid "Annonces et insertions" +msgstr "Advertenties en inlassingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6141 +msgid "Catalogues et imprimés" +msgstr "Catalogi en drukwerken" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6142 +msgid "Echantillons" +msgstr "Stalen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6143 +msgid "Foires et expositions" +msgstr "Beurzen en tentoonstellingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6144 +msgid "Primes" +msgstr "Premies" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6145 +msgid "Cadeaux à la clientèle" +msgstr "Relatiegeschenken" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6146 +msgid "Missions et réceptions" +msgstr "Onthaalkosten en recepties" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6147 +msgid "Documentation" +msgstr "Documentatie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a615 +msgid "Sous-traitants" +msgstr "Onderaannemers" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6150 +msgid "Sous-traitants pour activités propres" +msgstr "Onderaannemers voor eigen activiteiten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6151 +msgid "Sous-traitants d'associations momentanées" +msgstr "Onderaannemers voor joint-ventures" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6152 +msgid "Quote-part bénéficiaire des coparticipants" +msgstr "Aandeel in het resultaat van de joint-venture" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61700 +msgid "" +"Personnel intérimaire et personnes mises à la disposition de l'entreprise" +msgstr "Uitzendkrachten en personen ter beschikking gesteld van de onderneming" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a61800 +msgid "Rémunérations, primes pour assurances extralégales" +msgstr "" +"Bezoldigingen, premies voor buitenwettelijke verzekeringen, ouderdoms- en " +"overlevingspensioenen van bestuurders, zaakvoerders en werkende vennoten, " +"die niet worden toegekend uit hoofde van een arbeidsovereenkomst" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a62 +msgid "REMUNERATIONS, CHARGES SOCIALES ET PENSIONS" +msgstr "Bezoldigingen, sociale lasten en pensioenen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a620 +msgid "Rémunérations et avantages sociaux directs" +msgstr "Bezoldigingen en rechtstreekse sociale voordelen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6200 +#: model:account.account.template,name:l10n_be.a695 +msgid "Administrateurs ou gérants" +msgstr "Bestuurders of zaakvoerders" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6201 +msgid "Personnel de direction" +msgstr "Directiepersoneel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6204 +msgid "Autres membres du personnel" +msgstr "Andere personeelsleden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a621 +msgid "Cotisations patronales d'assurances sociales" +msgstr "Werkgeversbijdragen voor sociale verzekeringen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6210 +msgid "Sur salaires" +msgstr "Op lonen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6211 +msgid "Sur appointements et commissions" +msgstr "Op uitkeringen en commissies" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a622 +msgid "Primes patronales pour assurances extralégales" +msgstr "Werkgeverspremies voor bovenwettelijke verzekeringen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a623 +msgid "Autres frais de personnel" +msgstr "Andere personeelskosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6230 +msgid "Assurances du personnel" +msgstr "Peronseelsverzekering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a62300 +msgid "Assurances loi, responsabilité civile, chemin du travail" +msgstr "Wettelijke verzekeringen, burgerlijke aansprakelijkheid, woon-werk" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a62301 +msgid "Assurance salaire garanti" +msgstr "Verzekering gewaarborgd inkomen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6231 +msgid "Charges sociales diverses" +msgstr "Diverse sociale kosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a62310 +msgid "Jours fériés payés" +msgstr "Betaalde feestdagen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a62311 +msgid "Salaire hebdomadaire garanti" +msgstr "Gegarandeerd weekloon" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a62312 +msgid "Allocations familiales complémentaires" +msgstr "Extra kinderbijslag" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6232 +msgid "Charges sociales des administrateurs, gérants et commissaires" +msgstr "Sociale kosten voor bestuurders, zaakvoerders en commissarissen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a62320 +msgid "Allocations familiales complémentaires pour non salariés" +msgstr "Extra kinderbijslag voor niet-loontrekkenden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a62321 +msgid "Lois sociales pour indépendants" +msgstr "Sociale wetgevingen voor zelfstandigen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a624 +msgid "Pensions de retraite et de survie" +msgstr "Ouderdoms- en overlevingspensioenen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6240 +msgid "Administrateurs et gérants" +msgstr "Bestuurders en zaakvoerders" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6241 +msgid "Personnel" +msgstr "Personeel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a625 +msgid "Provision pour pécule de vacances" +msgstr "Voorziening voor vakantiegeld" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6250 +#: model:account.account.template,name:l10n_be.a6310 +#: model:account.account.template,name:l10n_be.a6320 +#: model:account.account.template,name:l10n_be.a6330 +#: model:account.account.template,name:l10n_be.a6340 +#: model:account.account.template,name:l10n_be.a6350 +#: model:account.account.template,name:l10n_be.a6360 +msgid "Dotations" +msgstr "Waardeverminderingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6251 +#: model:account.account.template,name:l10n_be.a6351 +#: model:account.account.template,name:l10n_be.a6361 +#: model:account.account.template,name:l10n_be.a6371 +msgid "Utilisations et reprises" +msgstr "Toewijzingen en terugnames" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a63 +msgid "" +"AMORTISSEMENTS, REDUCTIONS DE VALEUR ET PROVISIONS POUR RISQUES ET CHARGES" +msgstr "" +"Afschrijvingen, waardeverminderingen en voorzieningen voor risico's en kosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a630 +msgid "" +"Dotations aux amortissements et aux réductions de valeur sur immobilisations" +msgstr "Afschrijvingen en waardeverminderingen op vaste activa - Toevoeging" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6300 +msgid "Dotations aux amortissements sur frais d'établissement" +msgstr "Afschrijvingen op oprichtingskosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6301 +msgid "Dotations aux amortissements sur immobilisations incorporelles" +msgstr "Afschrijvingen op immateriële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6302 +msgid "Dotations aux amortissements sur immobilisations corporelles" +msgstr "Afschrijvingen op materiële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6308 +msgid "Dotations aux réductions de valeur sur immobilisations incorporelles" +msgstr "Waardeverminderingen op immateriële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6309 +msgid "Dotations aux réductions de valeur sur immobilisations corporelles" +msgstr "Waardeverminderingen op materiële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a631 +msgid "Réductions de valeur sur stocks" +msgstr "Waardeverminderingen op voorraden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6311 +#: model:account.account.template,name:l10n_be.a6321 +#: model:account.account.template,name:l10n_be.a6331 +#: model:account.account.template,name:l10n_be.a6341 +#: model:account.account.template,name:l10n_be.a6511 +msgid "Reprises" +msgstr "Terugneming (-)" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a632 +msgid "Réductions de valeur sur commandes en cours d'exécution" +msgstr "Waardeverminderingen op bestellingen in uitvoering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a633 +msgid "Réductions de valeur sur créances commerciales à plus d'un an" +msgstr "Waardeverminderingen op handelsvorderingen op meer dan één jaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a634 +msgid "Réductions de valeur sur créances commerciales à un an au plus" +msgstr "Waardeverminderingen op handelsvorderingen op ten hoogste één jaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6370 +#: model:account.account.template,name:l10n_be.a6510 +msgid "Dotations " +msgstr "Toevoeging" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a64 +msgid "AUTRES CHARGES D'EXPLOITATION" +msgstr "Andere bedrijfskosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a640 +msgid "Charges fiscales d'exploitation" +msgstr "Bedrijfsbelastingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6400 +msgid "Taxes et impôts directs" +msgstr "Directe belastingen en taksen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a64000 +msgid "Taxes sur autos et camions" +msgstr "Verkeersbelasting bedrijfswagens" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6401 +msgid "Taxes et impôts indirects" +msgstr "Indirecte belastingen en taksen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a64010 +msgid "Timbres fiscaux pris en charge par la firme" +msgstr "Fiscale zegels ten laste van de onderneming" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a64011 +msgid "Droits d'enregistrement" +msgstr "Registratierechten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a64012 +msgid "T.V.A. non déductible" +msgstr "Niet aftrekbare BTW" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6402 +msgid "Impôts provinciaux et communaux" +msgstr "Provinciale en gemeentelijke belastingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a64020 +msgid "Taxe sur la force motrice" +msgstr "Roerende voorheffing" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a64021 +msgid "Taxe sur le personnel occupé" +msgstr "Taks op tewerkgesteld personeel" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6403 +msgid "Taxes diverses" +msgstr "Diverse taksen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a641 +msgid "Moins-values sur réalisations courantes d'immobilisations corporelles" +msgstr "Minderwaarden op de courante realisatie van vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a642 +msgid "Moins-values sur réalisations de créances commerciales" +msgstr "Minderwaarden op de realisatie van handelsvorderingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a643 +msgid "à 648 Charges d'exploitations diverses" +msgstr "tot 648 Diverse bedrijfskosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a649 +msgid "Charges d'exploitation portées à l'actif au titre de restructuration" +msgstr "Als herstructureringskosten geactiveerde bedrijfskosten (-)" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a65 +msgid "CHARGES FINANCIERES" +msgstr "Financiële kosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a650 +msgid "Charges des dettes" +msgstr "Kosten van schulden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6500 +msgid "Intérêts, commissions et frais afférents aux dettes" +msgstr "Rente, commissies en kosten verbonden aan schulden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6501 +msgid "Amortissements des agios et frais d'émission d'emprunts" +msgstr "Afschrijving van kosten bij uitgifte van leningen en van disagio" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6502 +msgid "Autres charges de dettes" +msgstr "Andere kosten van schulden" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6503 +msgid "Intérêts intercalaires portés à l'actif" +msgstr "Geactiveerde intercalaire interesten (-)" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a651 +msgid "Réductions de valeur sur actifs circulants" +msgstr "Waardeverminderingen op vlottende activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a652 +msgid "Moins-values sur réalisation d'actifs circulants" +msgstr "Minderwaarden op de realisatie van vlottende activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a653 +msgid "Charges d'escompte de créances" +msgstr "Discontokosten op vorderingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a654 +#: model:account.account.template,name:l10n_be.a754 +msgid "Différences de change" +msgstr "Wisselresultaten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a655 +#: model:account.account.template,name:l10n_be.a755 +msgid "Ecarts de conversion des devises" +msgstr "Resultaten uit de omrekening van vreemde valuta" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a656 +msgid "Frais de banques, de chèques postaux" +msgstr "Bank en chequekosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a657 +msgid "Commissions sur ouvertures de crédit, cautions, avals" +msgstr "Commissies bij opening van krediet" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a658 +msgid "Frais de vente des titres" +msgstr "Verkoop van effecten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a66 +msgid "CHARGES EXCEPTIONNELLES" +msgstr "Uitzonderlijke kosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a660 +msgid "Amortissements et réductions de valeur exceptionnels" +msgstr "Uitzonderlijke afschrijvingen en waardeverminderingen (toevoeging)" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6600 +msgid "Sur frais d'établissement" +msgstr "op oprichtingskosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6601 +#: model:account.account.template,name:l10n_be.a6630 +#: model:account.account.template,name:l10n_be.a7600 +#: model:account.account.template,name:l10n_be.a7630 +msgid "Sur immobilisations incorporelles" +msgstr "op immateriële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6602 +#: model:account.account.template,name:l10n_be.a6631 +#: model:account.account.template,name:l10n_be.a7601 +#: model:account.account.template,name:l10n_be.a7631 +msgid "Sur immobilisations corporelles" +msgstr "op materiële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a661 +msgid "Réductions de valeur sur immobilisations financières" +msgstr "Waardeverminderingen op financiële vaste activa (toevoeging)" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a662 +msgid "Provisions pour risques et charges exceptionnels" +msgstr "Voorzieningen voor uitzonderlijke risico's en kosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a663 +msgid "Moins-values sur réalisation d'actifs immobilisés" +msgstr "Minderwaarden op de realisatie van vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6632 +msgid "" +"Sur immobilisations détenues en location-financement et droits similaires" +msgstr "Op financiele leasing en gelijkaardige rechten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6633 +#: model:account.account.template,name:l10n_be.a7632 +msgid "Sur immobilisations financières" +msgstr "Op financiele vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6634 +msgid "Sur immeubles acquis ou construits en vue de la revente" +msgstr "Op onroerende goederen bestemd voor verkoop" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a664 +msgid "Pénalités et amendes diverses" +msgstr "Diverse boetes en straffen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a665 +msgid "Différence de charge" +msgstr "Kostenverschillen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a668 +msgid "Autres charges exceptionnelles" +msgstr "Andere uitzonderlijke kosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a669 +msgid "" +"Charges exceptionnelles transférées à l'actif en frais de restructuration" +msgstr "" +"Uitzonderlijke kosten als herstructureringskosten opgenomen onder de activa " +"(-)" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a67 +msgid "IMPOTS SUR LE RESULTAT" +msgstr "Belastingen op het resultaat" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a670 +msgid "Impôts belges sur le résultat de l'exercice" +msgstr "Belgische belastingen op het resultaat van het boekjaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6700 +msgid "Impôts et précomptes dus ou versés" +msgstr "Verschuldigde of gestorte belastingen en voorheffingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6701 +msgid "Excédent de versements d'impôts et précomptes porté à l'actif" +msgstr "" +"Geactiveerde overschotten van betaalde belastingen en voorheffingen (-)" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6702 +msgid "Charges fiscales estimées" +msgstr "Geraamde belastingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a671 +msgid "Impôts belges sur le résultat d'exercices antérieurs" +msgstr "Belgische belastingen op het resultaat van vorige boekjaren" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6710 +msgid "Suppléments d'impôts dus ou versés" +msgstr "Verschuldigde of gestorte belastingsupplementen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6711 +msgid "Suppléments d'impôts estimés" +msgstr "Geraamde belastingsupplementen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a6712 +msgid "Provisions fiscales constituées" +msgstr "Gevormde fiscale voorzieningen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a672 +msgid "Impôts étrangers sur le résultat de l'exercice" +msgstr "Buitenlandse belastingen op het resultaat van het boekjaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a673 +msgid "Impôts étrangers sur le résultat d'exercices antérieurs" +msgstr "Buitenlandse belastingen op het resultaat van vorige boekjaren" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a68 +msgid "TRANSFERTS AUX RESERVES IMMUNISEES" +msgstr "" +"Overboeking naar de uitgestelde belastingen en naar de belastingvrije " +"reserves" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a69 +msgid "AFFECTATION DES RESULTATS" +msgstr "Resultaatverwerking" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a690 +msgid "Perte reportée de l'exercice précédent" +msgstr "Overgedragen verlies van het vorige boekjaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a691 +msgid "Dotation à la réserve légale" +msgstr "Toevoeging aan het kapitaal en aan de uitgiftepremie" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a692 +msgid "Dotation aux autres réserves" +msgstr "Toevoeging aan de reserves" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a693 +msgid "Bénéfice à reporter" +msgstr "Over te dragen winst" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a694 +msgid "Rémunération du capital" +msgstr "Vergoeding van het kapitaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7 +msgid "CLASSE 7. - PRODUITS" +msgstr "KLASSE 7 - OPBRENGSTEN" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a70 +msgid "CHIFFRE D'AFFAIRES" +msgstr "Omzet" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a700 +msgid "Ventes de marchandises" +msgstr "Verkopen van handelsgoederen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7000 +#: model:account.account.template,name:l10n_be.a7020 +#: model:account.account.template,name:l10n_be.a_sale +msgid "Ventes en Belgique" +msgstr "Verkopen in België" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7001 +#: model:account.account.template,name:l10n_be.a7011 +#: model:account.account.template,name:l10n_be.a7021 +msgid "Ventes dans les pays membres de la C.E.E." +msgstr "Verkopen in lidstaten van de E.E.G." + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7002 +#: model:account.account.template,name:l10n_be.a7012 +#: model:account.account.template,name:l10n_be.a7022 +msgid "Ventes à l'exportation" +msgstr "Verkopen buiten de E.E.G. (export)" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a701 +msgid "Ventes de produits finis" +msgstr "Verkopen van afgewerkte produkten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a702 +msgid "Ventes de déchets et rebuts" +msgstr "Verkoop van afval en restmateriaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a703 +msgid "Ventes d'emballages récupérables" +msgstr "Verkoop van herbruikbare verpakking" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a704 +msgid "Facturations des travaux en cours" +msgstr "Facturatie werk in uitvoering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a705 +#: model:account.account.template,name:l10n_be.a746 +msgid "Prestations de services" +msgstr "Dienstverlening" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7050 +msgid "Prestations de services en Belgique" +msgstr "Dienstverlening in België" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7051 +msgid "Prestations de services dans les pays membres de la C.E.E." +msgstr "Dienstverlening in lidstaten van de E.E.G." + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7052 +msgid "Prestations de services en vue de l'exportation" +msgstr "Dienstverlening buiten de E.E.G. (export)" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a706 +msgid "Pénalités et dédits obtenus par l'entreprise" +msgstr "Boeten en verbeurdverklaringen verkregen door de onderneming" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a708 +msgid "Remises, ristournes et rabais accordés" +msgstr "Toegekende kortingen, ristorno's en rabatten (-)" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7080 +msgid "Sur ventes de marchandises" +msgstr "op handelsgoederen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7081 +msgid "Sur ventes de produits finis" +msgstr "op afgewerkte produkten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7082 +msgid "Sur ventes de déchets et rebuts" +msgstr "op afval en restmateriaal" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7083 +msgid "Sur prestations de services" +msgstr "op dienstverlening" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7084 +msgid "Mali sur travaux facturés aux associations momentanées" +msgstr "Mali op gefactureerde werken in joint-venture" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a71 +msgid "VARIATION DES STOCKS ET DES COMMANDES EN COURS D'EXECUTION" +msgstr "Wijzigingen in de voorraden en in de bestellingen in uitvoering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a712 +msgid "Des en cours de fabrication" +msgstr "In de voorraad goederen in bewerking" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a713 +msgid "Des produits finis" +msgstr "In de voorraad gereed product" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a715 +msgid "Des immeubles construits destinés à la vente" +msgstr "In de voorraad onroerende goederen bestemd voor verkoop" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a717 +msgid "Des commandes en cours d'exécution" +msgstr "In de bestellingen in uitvoering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7170 +msgid "Commandes en cours - Coût de revient" +msgstr "Aanschafwaarde" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a71700 +msgid "Coût des commandes en cours d'exécution" +msgstr "Kost van bestellingen in uitvoering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a71701 +msgid "Coût des travaux en cours des associations momentanées" +msgstr "Kost van werken in uitvoering in joint-ventures" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7171 +msgid "Bénéfices portés en compte sur commandes en cours" +msgstr "Toegerekende winst" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a71710 +msgid "Sur commandes en cours d'exécution" +msgstr "Op bestellingen in uitvoering" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a71711 +msgid "Sur travaux en cours des associations momentanées" +msgstr "Op werken in uitvoering in joint-ventures" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a72 +msgid "PRODUCTION IMMOBILISEE" +msgstr "Geproduceerde vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a720 +msgid "En frais d'établissement" +msgstr "In oprichtingskosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a721 +msgid "En immobilisations incorporelles" +msgstr "In immateriële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a722 +msgid "En immobilisations corporelles" +msgstr "In materiële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a723 +msgid "En immobilisations en cours" +msgstr "In vaste activa in aanbouw" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a74 +msgid "AUTRES PRODUITS D'EXPLOITATION" +msgstr "Andere bedrijfsopbrengsten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a740 +msgid "Subsides d'exploitation et montants compensatoires" +msgstr "Bedrijfssubsidies en compenserende bedragen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a741 +msgid "Plus-values sur réalisations courantes d'immobilisations corporelles" +msgstr "Meerwaarden op de courante realisatie van materiële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a742 +msgid "Plus-values sur réalisations de créances commerciales" +msgstr "Meerwaarden op de realisatie van handelsvorderingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a743 +msgid "Produits de services exploités dans l'intérêt du personnel" +msgstr "Recuperatie personeelskost" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a744 +msgid "Commissions et courtages" +msgstr "Commissies" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a745 +msgid "Redevances pour brevets et licences" +msgstr "Commissies voor brevetten en licenties" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a747 +msgid "Revenus des immeubles affectés aux activités non professionnelles" +msgstr "Inkomsten uit vastgoed verbonden aan niet-professionele activiteiten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a748 +msgid "Locations diverses à caractère professionnel" +msgstr "Diverse verhuring met professioneel karakter" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a749 +msgid "Produits divers" +msgstr "Diverse opbrengsten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7490 +msgid "Bonis sur reprises d'emballages consignés" +msgstr "Boni bij terugneming herbruikbare verpakking" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7491 +msgid "Bonis sur travaux en associations momentanées" +msgstr "Boni op werken in joint-venture" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a75 +msgid "PRODUITS FINANCIERS" +msgstr "Financiële opbrengsten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a750 +msgid "Produits des immobilisations financières" +msgstr "Opbrengsten uit financiële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7500 +msgid "Revenus des actions" +msgstr "Opbrengsten uit aandelen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7501 +msgid "Revenus des obligations" +msgstr "Opbrengsten uit obligaties" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7502 +msgid "Revenus des créances à plus d'un an" +msgstr "Inkomsten uit schuld > 1 jaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a751 +msgid "Produits des actifs circulants" +msgstr "Opbrengsten uit vlottende activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a752 +msgid "Plus-values sur réalisations d'actifs circulants" +msgstr "Meerwaarden op de realisatie van vlottende activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a753 +msgid "Subsides en capital et en intérêts" +msgstr "Kapitaal- en interestsubsidies" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a756 +msgid "Produits des autres créances" +msgstr "Diverse financiële opbrengsten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a757 +msgid "Escomptes obtenus" +msgstr "Bekomen kortingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a76 +msgid "PRODUITS EXCEPTIONNELS" +msgstr "Uitzonderlijke opbrengsten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a760 +msgid "Reprises d'amortissements et de réductions de valeur" +msgstr "Terugneming van afschrijvingen en waardeverminderingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a761 +msgid "Reprises de réductions de valeur sur immobilisations financières" +msgstr "Terugneming van waardeverminderingen op financiële vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a762 +msgid "Reprises de provisions pour risques et charges exceptionnelles" +msgstr "Terugneming van voorzieningen voor uitzonderlijke risico's en kosten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a763 +msgid "Plus-values sur réalisation d'actifs immobilisés" +msgstr "Meerwaarden op de realisatie van vaste activa" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a764 +msgid "Autres produits exceptionnels" +msgstr "Andere uitzonderlijke opbrengsten" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a77 +msgid "REGULARISATIONS D'IMPOTS ET REPRISES DE PROVISIONS FISCALES" +msgstr "" +"Regularisering van belastingen en terugneming van fiscale voorzieningen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a771 +msgid "Impôts belges sur le résultat" +msgstr "Belgische belastingen op het resultaat" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7710 +msgid "Régularisations d'impôts dus ou versés" +msgstr "Regularisering van verschuldigde of betaalde belastingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7711 +msgid "Régularisations d'impôts estimés" +msgstr "Regularisering van geraamde belastingen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a7712 +msgid "Reprises de provisions fiscales" +msgstr "Terugneming van fiscale voorzieningen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a773 +msgid "Impôts étrangers sur le résultat" +msgstr "Buitenlandse belastingen op het resultaat" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a79 +msgid "AFFECTATION AUX RESULTATS" +msgstr "Resultaatverwerking" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a790 +msgid "Bénéfice reporté de l'exercice précédent" +msgstr "Overgedragen winst van het vorige boekjaar" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a791 +msgid "Prélèvement sur le capital et les primes d'émission" +msgstr "Onttrekking aan het kapitaal en aan de uitgiftepremies" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a792 +msgid "Prélèvement sur les réserves" +msgstr "Onttrekking aan de reserves" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a793 +msgid "Perte à reporter" +msgstr "Over te dragen verlies" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a794 +msgid "Intervention d'associés" +msgstr "Tussenkomst van vennoten (of van de eigenaar) in het verlies" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a_expense +msgid "Achats de matières premières" +msgstr "Aankopen van grondstoffen" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.a_root +msgid "PLAN COMPTABLE MINIMUM NORMALISE" +msgstr "MINIMUM GENORMALISEERD REKENINGSTELSEL" + +#. module: l10n_be +#: model:account.account.template,name:l10n_be.cash +msgid "Caisse principale" +msgstr "Kas" + +#. module: l10n_be +#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_1 +msgid "Régime National" +msgstr "Nationaal" + +#. module: l10n_be +#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_2 +msgid "Régime Extra-Communautaire" +msgstr "Export" + +#. module: l10n_be +#: model:account.fiscal.position.template,name:l10n_be.fiscal_position_template_3 +msgid "Régime Intra-Communautaire" +msgstr "Intra-Communautair" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_00 +#: model:account.tax.code.template,name:l10n_be.atctn_IIA +msgid "Opérations soumises à un régime particulier" +msgstr "Handelingen onderworpen aan een bijzondere regeling" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_01 +msgid "Opérations avec TVA à 6%" +msgstr "Aan het tarief van 6%" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_02 +msgid "Opérations avec TVA à 12%" +msgstr "Aan het tarief van 12%" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_03 +msgid "Opérations avec TVA à 21%" +msgstr "Aan het tarief van 21%" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_44 +msgid "Services intra-communautaires" +msgstr "" +"Diensten waarvoor de buitenlandse btw verschuldigd is door de medecontractant" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_45 +#: model:account.tax.code.template,name:l10n_be.atctn_IID +msgid "Opérations avec TVA due par le cocontractant" +msgstr "Handelingen waarvoor de btw verschuldigd is door de medecontractant" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_46 +#: model:account.tax.code.template,name:l10n_be.atctn_IIE +msgid "Livraisons intra-communautaire exemptées" +msgstr "" +"Vrijgestelde intracommunautaire leveringen verricht in België en ABC-verkopen" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_46L +msgid "Livraisons biens intra-communautaire exemptées" +msgstr "Vrijgestelde intracommunautaire leveringen" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_46T +msgid "ABC intra-communautaires" +msgstr "Vrijgestelde intracommunautaire ABC-verkopen" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_47 +#: model:account.tax.code.template,name:l10n_be.atctn_IIF +msgid "Autres opérations exemptées" +msgstr "" +"Andere vrijgestelde handelingen en andere handelingen verricht in het " +"buitenland" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_48 +msgid "Notes de crédit aux opérations grilles [44] et [46]" +msgstr "Met betrekking tot de handelingen ingeschreven in de roosters 44 en 46" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_48s44 +msgid "Notes de crédit aux opérations grille [44]" +msgstr "Met betrekking tot de handelingen ingeschreven in rooster 44" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_48s46L +msgid "Notes de crédit aux opérations grille [46L]" +msgstr "Met betrekking tot de handelingen ingeschreven in rooster 46L" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_48s46T +msgid "Notes de crédit aux opérations grille [46T]" +msgstr "Met betrekking tot de handelingen ingeschreven in rooster 46T" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_49 +msgid "Notes de crédit aux opérations du point II" +msgstr "Met betrekking tot de andere handelingen van kader II" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_54 +msgid "TVA sur opérations des grilles [01], [02], [03]" +msgstr "Btw op de handelingen aangegeven in de roosters 01, 02 en 03" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_55 +msgid "TVA sur opérations des grilles [86] et [88]" +msgstr "Btw op de handelingen aangegeven in de roosters 86 en 88" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_56 +msgid "TVA sur opérations de la grille [87]" +msgstr "" +"Btw op de handelingen aangegeven in rooster 87, met uitzondering van " +"invoeren met verlegging van heffing" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_57 +#: model:account.tax.code.template,name:l10n_be.atctn_IVB +msgid "TVA relatives aux importations" +msgstr "Btw op invoeren met verlegging van heffing" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_59 +#: model:account.tax.code.template,name:l10n_be.atctn_VA +msgid "TVA déductible" +msgstr "Aftrekbare BTW" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_61 +#: model:account.tax.code.template,name:l10n_be.atctn_IVC +msgid "Diverses régularisations en faveur de l'Etat" +msgstr "Diverse btw-regularisaties in het voordeel van de Staat" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_62 +#: model:account.tax.code.template,name:l10n_be.atctn_VB +msgid "Régularisations TVA en faveur du déclarant" +msgstr "Diverse btw-regularisaties in het voordeel van de aangever" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_63 +#: model:account.tax.code.template,name:l10n_be.atctn_IVD +msgid "TVA à reverser sur notes de crédit reçues" +msgstr "Terug te storten btw vermeld op ontvangen creditnota's" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_64 +#: model:account.tax.code.template,name:l10n_be.atctn_VC +msgid "TVA à recuperer sur notes de crédit delivrées" +msgstr "Te recupereren btw vermeld op uitgereikte creditnota's" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_81 +msgid "Marchandises, matières premières et auxiliaires" +msgstr "Handelsgoederen, grond- en hulpstoffen" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_82 +msgid "Services et biens divers" +msgstr "Diensten en diverse goederen" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_83 +msgid "Biens d'investissement" +msgstr "Bedrijfsmiddelen" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_84 +msgid "Notes de crédits sur opérations case [86] et [88]" +msgstr "" +"Creditnota's met betrekking tot de handelingen ingeschreven in de roosters " +"86 en 88" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_85 +msgid "Notes de crédits autres opérations" +msgstr "Creditnota's met betrekking tot de andere handelingen van kader III" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_86 +#: model:account.tax.code.template,name:l10n_be.atctn_IIIC +msgid "Acquisition intra-communautaires et ventes ABC" +msgstr "Intracommunautaire verwervingen verricht in België en ABC-verkopen" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_87 +msgid "Autres opérations" +msgstr "" +"Andere inkomende handelingen waarvoor de btw verschuldigd is door de aangever" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_88 +msgid "Acquisition services intra-communautaires" +msgstr "Intracommunautaire diensten met verlegging van heffing" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_91 +msgid "TVA due pour la période du 1er au 20 décembre" +msgstr "Werkelijk verschuldigde btw voor de periode van 1 tot 20 december" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_I +msgid "Plan de Taxes Belge" +msgstr "Belgisch BTW stelsel" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_II +msgid "Opérations à la sortie" +msgstr "Uitgaande handelingen" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_IIB +msgid "TVA due par le déclarant" +msgstr "Handelingen waarvoor de btw verschuldigd is door de aangever" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_IIC +msgid "TVA étrangère due par le cocontractant" +msgstr "" +"Diensten waarvoor de buitenlandse btw verschuldigd is door de medecontractant" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_IIG +msgid "Notes de crédit délivrées et corrections négatives" +msgstr "Uitgereikte creditnota's en de negatieve verbeteringen" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_III +msgid "Opérations a l'entrée" +msgstr "Inkomende handelingen" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_IIIA +msgid "Opérations à l'entrée y compris notes de crédit et corrections" +msgstr "" +"Inkomende handelingen rekening houdend met de ontvangen creditnota's en " +"andere verbeteringen" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_IIIB +msgid "Notes de crédit reçues et corrections négatives" +msgstr "Ontvangen creditnota's en de negatieve verbeteringen" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_IIID +msgid "Autres opérations à l'entrée avec TVA due par le déclarant" +msgstr "" +"Andere inkomende handelingen waarvoor de btw verschuldigd is door de aangever" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_IIIE +msgid "Services intracommunautaires avec report de perception" +msgstr "Intracommunautaire diensten met verlegging van heffing" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_IVA +msgid "TVA aux opérations en grilles 01, 02, 03, 86 et 87" +msgstr "Btw op de handelingen aangegeven in rooster 01, 02, 03, 86 et 87" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_VI +msgid "Solde (71-72)" +msgstr "Saldo (71-72)" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_VII +msgid "Acompte" +msgstr "Voorschot" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_XX +msgid "A payer - Total" +msgstr "Te betalen - Totaal" + +#. module: l10n_be +#: model:account.tax.code.template,name:l10n_be.atctn_YY +msgid "A déduire - Total" +msgstr "Af te trekken - Totaal" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-00 +msgid "TVA à l'entrée 0% - Approvisionn. et marchandises" +msgstr "BTW inkomend 0% - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-00-C1 +msgid "VAT-IN-V81-00-C1" +msgstr "VAT-IN-V81-00-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-00-C2 +msgid "VAT-IN-V81-00-C2" +msgstr "VAT-IN-V81-00-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-00-CC +msgid "TVA à l'entrée 0% Cocontract. - Approvisionn. et marchandises" +msgstr "BTW inkomend 0% Medecontr. - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-00-CC-C1 +msgid "VAT-IN-V81-00-CC-C1" +msgstr "VAT-IN-V81-00-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-00-CC-C2 +msgid "VAT-IN-V81-00-CC-C2" +msgstr "VAT-IN-V81-00-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-00-CC-C3 +msgid "VAT-IN-V81-00-CC-C3" +msgstr "VAT-IN-V81-00-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-00-EU +msgid "TVA à l'entrée 0% Intracomm. - Approvisionn. et marchandises" +msgstr "BTW inkomend 0% Intracomm. - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-00-EU-C1 +msgid "VAT-IN-V81-00-EU-C1" +msgstr "VAT-IN-V81-00-EU-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-00-EU-C2 +msgid "VAT-IN-V81-00-EU-C2" +msgstr "VAT-IN-V81-00-EU-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-00-EU-C3 +msgid "VAT-IN-V81-00-EU-C3" +msgstr "VAT-IN-V81-00-EU-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-00-ROW-CC +msgid "TVA à l'entrée 0% Hors EU - Approvisionn. et marchandises" +msgstr "BTW inkomend 0% Buiten EU - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-00-ROW-CC-C1 +msgid "VAT-IN-V81-00-ROW-CC-C1" +msgstr "VAT-IN-V81-00-ROW-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-00-ROW-CC-C2 +msgid "VAT-IN-V81-00-ROW-CC-C2" +msgstr "VAT-IN-V81-00-ROW-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-06 +msgid "TVA Déductible 6% - Approvisionn. et marchandises" +msgstr "BTW aftrekbaar 6% - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-06-C1 +msgid "VAT-IN-V81-06-C1" +msgstr "VAT-IN-V81-06-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-06-C2 +msgid "VAT-IN-V81-06-C2" +msgstr "VAT-IN-V81-06-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-06-CC +msgid "TVA Déductible 6% Cocontract. - Approvisionn. et marchandises" +msgstr "BTW aftrekbaar 6% Medecontr. - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-06-CC-C1 +msgid "VAT-IN-V81-06-CC-C1" +msgstr "VAT-IN-V81-06-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-06-CC-C2 +msgid "VAT-IN-V81-06-CC-C2" +msgstr "VAT-IN-V81-06-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-06-CC-C3 +msgid "VAT-IN-V81-06-CC-C3" +msgstr "VAT-IN-V81-06-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-06-EU +msgid "TVA Déductible 6% Intracomm. - Approvisionn. et marchandises" +msgstr "BTW aftrekbaar 6% Intracomm. - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-06-EU-C1 +msgid "VAT-IN-V81-06-EU-C1" +msgstr "VAT-IN-V81-06-EU-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-06-EU-C2 +msgid "VAT-IN-V81-06-EU-C2" +msgstr "VAT-IN-V81-06-EU-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-06-EU-C3 +msgid "VAT-IN-V81-06-EU-C3" +msgstr "VAT-IN-V81-06-EU-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-06-ROW-CC +msgid "TVA Déductible 6% Hors EU - Approvisionn. et marchandises" +msgstr "BTW aftrekbaar 6% Buiten EU - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-06-ROW-CC-C1 +msgid "VAT-IN-V81-06-ROW-CC-C1" +msgstr "VAT-IN-V81-06-ROW-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-06-ROW-CC-C2 +msgid "VAT-IN-V81-06-ROW-CC-C2" +msgstr "VAT-IN-V81-06-ROW-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-06-ROW-CC-C3 +msgid "VAT-IN-V81-06-ROW-CC-C3" +msgstr "VAT-IN-V81-06-ROW-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-12 +msgid "TVA Déductible 12% - Approvisionn. et marchandises" +msgstr "BTW aftrekbaar 12% - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-12-C1 +msgid "VAT-IN-V81-12-C1" +msgstr "VAT-IN-V81-12-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-12-C2 +msgid "VAT-IN-V81-12-C2" +msgstr "VAT-IN-V81-12-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-12-CC +msgid "TVA Déductible 12% Cocontract. - Approvisionn. et marchandises" +msgstr "BTW aftrekbaar 12% Medecontr. - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-12-CC-C1 +msgid "VAT-IN-V81-12-CC-C1" +msgstr "VAT-IN-V81-12-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-12-CC-C2 +msgid "VAT-IN-V81-12-CC-C2" +msgstr "VAT-IN-V81-12-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-12-CC-C3 +msgid "VAT-IN-V81-12-CC-C3" +msgstr "VAT-IN-V81-12-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-12-EU +msgid "TVA Déductible 12% Intracomm. - Approvisionn. et marchandises" +msgstr "BTW aftrekbaar 12% Intracomm. - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-12-EU-C1 +msgid "VAT-IN-V81-12-EU-C1" +msgstr "VAT-IN-V81-12-EU-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-12-EU-C2 +msgid "VAT-IN-V81-12-EU-C2" +msgstr "VAT-IN-V81-12-EU-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-12-EU-C3 +msgid "VAT-IN-V81-12-EU-C3" +msgstr "VAT-IN-V81-12-EU-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-12-ROW-CC +msgid "TVA Déductible 12% Hors EU - Approvisionn. et marchandises" +msgstr "BTW aftrekbaar 12% Buiten EU - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-12-ROW-CC-C1 +msgid "VAT-IN-V81-12-ROW-CC-C1" +msgstr "VAT-IN-V81-12-ROW-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-12-ROW-CC-C2 +msgid "VAT-IN-V81-12-ROW-CC-C2" +msgstr "VAT-IN-V81-12-ROW-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-12-ROW-CC-C3 +msgid "VAT-IN-V81-12-ROW-CC-C3" +msgstr "VAT-IN-V81-12-ROW-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-21 +msgid "TVA Déductible 21% - Approvisionn. et marchandises" +msgstr "BTW aftrekbaar 21% - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-21-C1 +msgid "VAT-IN-V81-21-C1" +msgstr "VAT-IN-V81-21-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-21-C2 +msgid "VAT-IN-V81-21-C2" +msgstr "VAT-IN-V81-21-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-21-CC +msgid "TVA Déductible 21% Cocontract. - Approvisionn. et marchandises" +msgstr "BTW aftrekbaar 21% Medecontr. - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-21-CC-C1 +msgid "VAT-IN-V81-21-CC-C1" +msgstr "VAT-IN-V81-21-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-21-CC-C2 +msgid "VAT-IN-V81-21-CC-C2" +msgstr "VAT-IN-V81-21-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-21-CC-C3 +msgid "VAT-IN-V81-21-CC-C3" +msgstr "VAT-IN-V81-21-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-21-EU +msgid "TVA Déductible 21% Intracomm. - Approvisionn. et marchandises" +msgstr "BTW aftrekbaar 21% Intracomm. - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-21-EU-C1 +msgid "VAT-IN-V81-21-EU-C1" +msgstr "VAT-IN-V81-21-EU-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-21-EU-C2 +msgid "VAT-IN-V81-21-EU-C2" +msgstr "VAT-IN-V81-21-EU-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-21-EU-C3 +msgid "VAT-IN-V81-21-EU-C3" +msgstr "VAT-IN-V81-21-EU-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-21-ROW-CC +msgid "TVA Déductible 21% Hors EU - Approvisionn. et marchandises" +msgstr "BTW aftrekbaar 21% Buiten EU - Grondstoffen en handelsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-21-ROW-CC-C1 +msgid "VAT-IN-V81-21-ROW-CC-C1" +msgstr "VAT-IN-V81-21-ROW-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-21-ROW-CC-C2 +msgid "VAT-IN-V81-21-ROW-CC-C2" +msgstr "VAT-IN-V81-21-ROW-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V81-21-ROW-CC-C3 +msgid "VAT-IN-V81-21-ROW-CC-C3" +msgstr "VAT-IN-V81-21-ROW-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-CC +msgid "TVA à l'entrée 0% Cocontract. - Services and other goods" +msgstr "BTW inkomend 0% Medecontr. - Diensten en diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-CC-C1 +msgid "VAT-IN-V82-00-CC-C1" +msgstr "VAT-IN-V82-00-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-CC-C2 +msgid "VAT-IN-V82-00-CC-C2" +msgstr "VAT-IN-V82-00-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-CC-C3 +msgid "VAT-IN-V82-00-CC-C3" +msgstr "VAT-IN-V82-00-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-EU-G +msgid "TVA à l'entrée 0% Intracomm. - Biens divers" +msgstr "BTW inkomend 0% Intracomm. - Diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-EU-G-C1 +msgid "VAT-IN-V82-00-EU-G-C1" +msgstr "VAT-IN-V82-00-EU-G-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-EU-G-C2 +msgid "VAT-IN-V82-00-EU-G-C2" +msgstr "VAT-IN-V82-00-EU-G-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-EU-G-C3 +msgid "VAT-IN-V82-00-EU-G-C3" +msgstr "VAT-IN-V82-00-EU-G-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-EU-S +msgid "TVA à l'entrée 0% Intracomm. - Services" +msgstr "BTW inkomend 0% Intracomm. - Diensten" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-EU-S-C1 +msgid "VAT-IN-V82-00-EU-S-C1" +msgstr "VAT-IN-V82-00-EU-S-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-EU-S-C2 +msgid "VAT-IN-V82-00-EU-S-C2" +msgstr "VAT-IN-V82-00-EU-S-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-EU-S-C3 +msgid "VAT-IN-V82-00-EU-S-C3" +msgstr "VAT-IN-V82-00-EU-S-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-G +msgid "TVA à l'entrée 0% - Biens divers" +msgstr "BTW inkomend 0% - Diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-G-C1 +msgid "VAT-IN-V82-00-G-C1" +msgstr "VAT-IN-V82-00-G-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-G-C2 +msgid "VAT-IN-V82-00-G-C2" +msgstr "VAT-IN-V82-00-G-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-ROW-CC +msgid "TVA à l'entrée 0% Hors EU - Services and other goods" +msgstr "BTW inkomend 0% Buiten EU - Diensten en diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-ROW-CC-C1 +msgid "VAT-IN-V82-00-ROW-CC-C1" +msgstr "VAT-IN-V82-00-ROW-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-ROW-CC-C2 +msgid "VAT-IN-V82-00-ROW-CC-C2" +msgstr "VAT-IN-V82-00-ROW-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-S +msgid "TVA à l'entrée 0% - Services" +msgstr "BTW inkomend 0% - Diensten" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-S-C1 +msgid "VAT-IN-V82-00-S-C1" +msgstr "VAT-IN-V82-00-S-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-00-S-C2 +msgid "VAT-IN-V82-00-S-C2" +msgstr "VAT-IN-V82-00-S-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-CC +msgid "TVA Déductible 6% Cocontract. - Services and other goods" +msgstr "BTW aftrekbaar 6% Medecontr. - Diensten en diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-CC-C1 +msgid "VAT-IN-V82-06-CC-C1" +msgstr "VAT-IN-V82-06-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-CC-C2 +msgid "VAT-IN-V82-06-CC-C2" +msgstr "VAT-IN-V82-06-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-CC-C3 +msgid "VAT-IN-V82-06-CC-C3" +msgstr "VAT-IN-V82-06-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-EU-G +msgid "TVA Déductible 6% Intracomm. - Biens divers" +msgstr "BTW aftrekbaar 6% Intracomm. - Diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-EU-G-C1 +msgid "VAT-IN-V82-06-EU-G-C1" +msgstr "VAT-IN-V82-06-EU-G-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-EU-G-C2 +msgid "VAT-IN-V82-06-EU-G-C2" +msgstr "VAT-IN-V82-06-EU-G-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-EU-G-C3 +msgid "VAT-IN-V82-06-EU-G-C3" +msgstr "VAT-IN-V82-06-EU-G-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-EU-S +msgid "TVA Déductible 6% Intracomm. - Services" +msgstr "BTW aftrekbaar 6% Intracomm. - Diensten" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-EU-S-C1 +msgid "VAT-IN-V82-06-EU-S-C1" +msgstr "VAT-IN-V82-06-EU-S-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-EU-S-C2 +msgid "VAT-IN-V82-06-EU-S-C2" +msgstr "VAT-IN-V82-06-EU-S-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-EU-S-C3 +msgid "VAT-IN-V82-06-EU-S-C3" +msgstr "VAT-IN-V82-06-EU-S-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-G +msgid "TVA Déductible 6% - Biens divers" +msgstr "BTW aftrekbaar 6% - Diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-G-C1 +msgid "VAT-IN-V82-06-G-C1" +msgstr "VAT-IN-V82-06-G-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-G-C2 +msgid "VAT-IN-V82-06-G-C2" +msgstr "VAT-IN-V82-06-G-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-ROW-CC +msgid "TVA Déductible 6% Hors EU - Services and other goods" +msgstr "BTW afrekbaar 6% Buiten EU - Diensten en diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-ROW-CC-C1 +msgid "VAT-IN-V82-06-ROW-CC-C1" +msgstr "VAT-IN-V82-06-ROW-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-ROW-CC-C2 +msgid "VAT-IN-V82-06-ROW-CC-C2" +msgstr "VAT-IN-V82-06-ROW-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-ROW-CC-C3 +msgid "VAT-IN-V82-06-ROW-CC-C3" +msgstr "VAT-IN-V82-06-ROW-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-S +msgid "TVA Déductible 6% - Services" +msgstr "BTW aftrekbaar 6% - Diensten" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-S-C1 +msgid "VAT-IN-V82-06-S-C1" +msgstr "VAT-IN-V82-06-S-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-06-S-C2 +msgid "VAT-IN-V82-06-S-C2" +msgstr "VAT-IN-V82-06-S-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-CC +msgid "TVA Déductible 12% Cocontract. - Services and other goods" +msgstr "BTW aftrekbaar 12% Medecontr. - Diensten en diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-CC-C1 +msgid "VAT-IN-V82-12-CC-C1" +msgstr "VAT-IN-V82-12-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-CC-C2 +msgid "VAT-IN-V82-12-CC-C2" +msgstr "VAT-IN-V82-12-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-CC-C3 +msgid "VAT-IN-V82-12-CC-C3" +msgstr "VAT-IN-V82-12-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-EU-G +msgid "TVA Déductible 12% Intracomm. - Biens divers" +msgstr "BTW aftrekbaar 12% Intracomm. - Diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-EU-G-C1 +msgid "VAT-IN-V82-12-EU-G-C1" +msgstr "VAT-IN-V82-12-EU-G-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-EU-G-C2 +msgid "VAT-IN-V82-12-EU-G-C2" +msgstr "VAT-IN-V82-12-EU-G-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-EU-G-C3 +msgid "VAT-IN-V82-12-EU-G-C3" +msgstr "VAT-IN-V82-12-EU-G-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-EU-S +msgid "TVA Déductible 12% Intracomm. - Services" +msgstr "BTW aftrekbaar 12% Intracomm. - Diensten" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-EU-S-C1 +msgid "VAT-IN-V82-12-EU-S-C1" +msgstr "VAT-IN-V82-12-EU-S-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-EU-S-C2 +msgid "VAT-IN-V82-12-EU-S-C2" +msgstr "VAT-IN-V82-12-EU-S-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-EU-S-C3 +msgid "VAT-IN-V82-12-EU-S-C3" +msgstr "VAT-IN-V82-12-EU-S-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-G +msgid "TVA Déductible 12% - Biens divers" +msgstr "BTW aftrekbaar 12% - Diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-G-C1 +msgid "VAT-IN-V82-12-G-C1" +msgstr "VAT-IN-V82-12-G-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-G-C2 +msgid "VAT-IN-V82-12-G-C2" +msgstr "VAT-IN-V82-12-G-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-ROW-CC +msgid "TVA Déductible 12% Hors EU - Services and other goods" +msgstr "BTW afrekbaar 12% Buiten EU - Diensten en diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-ROW-CC-C1 +msgid "VAT-IN-V82-12-ROW-CC-C1" +msgstr "VAT-IN-V82-12-ROW-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-ROW-CC-C2 +msgid "VAT-IN-V82-12-ROW-CC-C2" +msgstr "VAT-IN-V82-12-ROW-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-ROW-CC-C3 +msgid "VAT-IN-V82-12-ROW-CC-C3" +msgstr "VAT-IN-V82-12-ROW-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-S +msgid "TVA Déductible 12% - Services" +msgstr "BTW aftrekbaar 12% - Diensten" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-S-C1 +msgid "VAT-IN-V82-12-S-C1" +msgstr "VAT-IN-V82-12-S-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-12-S-C2 +msgid "VAT-IN-V82-12-S-C2" +msgstr "VAT-IN-V82-12-S-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-CC +msgid "TVA Déductible 21% Cocontract. - Services and other goods" +msgstr "BTW aftrekbaar 21% Medecontr. - Diensten en diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-CC-C1 +msgid "VAT-IN-V82-21-CC-C1" +msgstr "VAT-IN-V82-21-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-CC-C2 +msgid "VAT-IN-V82-21-CC-C2" +msgstr "VAT-IN-V82-21-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-CC-C3 +msgid "VAT-IN-V82-21-CC-C3" +msgstr "VAT-IN-V82-21-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-EU-G +msgid "TVA Déductible 21% Intracomm. - Biens divers" +msgstr "BTW aftrekbaar 21% Intracomm. - Diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-EU-G-C1 +msgid "VAT-IN-V82-21-EU-G-C1" +msgstr "VAT-IN-V82-21-EU-G-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-EU-G-C2 +msgid "VAT-IN-V82-21-EU-G-C2" +msgstr "VAT-IN-V82-21-EU-G-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-EU-G-C3 +msgid "VAT-IN-V82-21-EU-G-C3" +msgstr "VAT-IN-V82-21-EU-G-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-EU-S +msgid "TVA Déductible 21% Intracomm. - Services" +msgstr "BTW aftrekbaar 21% Intracomm. - Diensten" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-EU-S-C1 +msgid "VAT-IN-V82-21-EU-S-C1" +msgstr "VAT-IN-V82-21-EU-S-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-EU-S-C2 +msgid "VAT-IN-V82-21-EU-S-C2" +msgstr "VAT-IN-V82-21-EU-S-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-EU-S-C3 +msgid "VAT-IN-V82-21-EU-S-C3" +msgstr "VAT-IN-V82-21-EU-S-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-G +msgid "TVA Déductible 21% - Biens divers" +msgstr "BTW aftrekbaar 21% - Diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-G-C1 +msgid "VAT-IN-V82-21-G-C1" +msgstr "VAT-IN-V82-21-G-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-G-C2 +msgid "VAT-IN-V82-21-G-C2" +msgstr "VAT-IN-V82-21-G-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-ROW-CC +msgid "TVA Déductible 21% Hors EU - Services and other goods" +msgstr "BTW afrekbaar 21% Buiten EU - Diensten en diverse goederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-ROW-CC-C1 +msgid "VAT-IN-V82-21-ROW-CC-C1" +msgstr "VAT-IN-V82-21-ROW-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-ROW-CC-C2 +msgid "VAT-IN-V82-21-ROW-CC-C2" +msgstr "VAT-IN-V82-21-ROW-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-ROW-CC-C3 +msgid "VAT-IN-V82-21-ROW-CC-C3" +msgstr "VAT-IN-V82-21-ROW-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-S +msgid "TVA Déductible 21% - Services" +msgstr "BTW aftrekbaar 21% - Diensten" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-S-C1 +msgid "VAT-IN-V82-21-S-C1" +msgstr "VAT-IN-V82-21-S-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-21-S-C2 +msgid "VAT-IN-V82-21-S-C2" +msgstr "VAT-IN-V82-21-S-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-CAR-EXC +msgid "TVA Entrant - Frais de voiture - VAT 50% Non Deductible (Price Excl.)" +msgstr "BTW inkomend - onkosten wagen - BTW 50% Niet-aftrekbaar (Prijs Excl.)" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-CAR-EXC-C1 +msgid "Frais de voiture - VAT 50% Non Deductible" +msgstr "Onkosten wagen - BTW 50% Niet aftrekbaar" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-CAR-EXC-C2 +msgid "Frais de voiture - VAT 50% Deductible (Price Excl.)" +msgstr "Onkosten wagen - BTW 50% Aftrekbaar (Prijs Excl.)" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-CAR-EXC-C3 +msgid "Frais de voiture - Montant de la note de crédit (Price Excl.)" +msgstr "Onkosten wagen - Bedrag creditnota (Prijs Excl.)" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-CAR-INC +msgid "TVA Entrant - Frais de voiture - VAT 50% Non Deductible (Price Incl.)" +msgstr "BTW inkomend - onkosten wagen - BTW 50% Niet aftrekbaar (Prijs Incl.)" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-CAR-INC-C1 +msgid "Frais de voiture - VAT 50% Deductible" +msgstr "Onkosten wagen - BTW 50% Aftrekbaar" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V82-CAR-INC-C2 +msgid "Frais de voiture - Montant de la note de crédit" +msgstr "Onkosten wagen - Bedrag creditnota" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-00 +msgid "TVA à l'entrée 0% - Biens d'investissement" +msgstr "BTW inkomend 0% - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-00-C1 +msgid "VAT-IN-V83-00-C1" +msgstr "VAT-IN-V83-00-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-00-C2 +msgid "VAT-IN-V83-00-C2" +msgstr "VAT-IN-V83-00-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-00-CC +msgid "TVA à l'entrée 0% Cocontract. - Biens d'investissement" +msgstr "BTW inkomend 0% Medecontr. - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-00-CC-C1 +msgid "VAT-IN-V83-00-CC-C1" +msgstr "VAT-IN-V83-00-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-00-CC-C2 +msgid "VAT-IN-V83-00-CC-C2" +msgstr "VAT-IN-V83-00-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-00-CC-C3 +msgid "VAT-IN-V83-00-CC-C3" +msgstr "VAT-IN-V83-00-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-00-EU +msgid "TVA à l'entrée 0% Intracomm. - Biens d'investissement" +msgstr "BTW inkomend 0% Intracomm. - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-00-EU-C1 +msgid "VAT-IN-V83-00-EU-C1" +msgstr "VAT-IN-V83-00-EU-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-00-EU-C2 +msgid "VAT-IN-V83-00-EU-C2" +msgstr "VAT-IN-V83-00-EU-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-00-EU-C3 +msgid "VAT-IN-V83-00-EU-C3" +msgstr "VAT-IN-V83-00-EU-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-00-ROW-CC +msgid "TVA à l'entrée 0% Hors EU - Biens d'investissement" +msgstr "BTW inkomend 0% Buiten EU - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-00-ROW-CC-C1 +msgid "VAT-IN-V83-00-ROW-CC-C1" +msgstr "VAT-IN-V83-00-ROW-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-00-ROW-CC-C2 +msgid "VAT-IN-V83-00-ROW-CC-C2" +msgstr "VAT-IN-V83-00-ROW-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-06 +msgid "TVA Déductible 6% - Biens d'investissement" +msgstr "BTW aftrekbaar 6% - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-06-C1 +msgid "VAT-IN-V83-06-C1" +msgstr "VAT-IN-V83-06-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-06-C2 +msgid "VAT-IN-V83-06-C2" +msgstr "VAT-IN-V83-06-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-06-CC +msgid "TVA Déductible 6% Cocontract. - Biens d'investissement" +msgstr "BTW aftrekbaar 6% Medecontr. - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-06-CC-C1 +msgid "VAT-IN-V83-06-CC-C1" +msgstr "VAT-IN-V83-06-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-06-CC-C2 +msgid "VAT-IN-V83-06-CC-C2" +msgstr "VAT-IN-V83-06-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-06-CC-C3 +msgid "VAT-IN-V83-06-CC-C3" +msgstr "VAT-IN-V83-06-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-06-EU +msgid "TVA Déductible 6% Intracomm. - Biens d'investissement" +msgstr "BTW aftrekbaar 6% Intracomm. - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-06-EU-C1 +msgid "VAT-IN-V83-06-EU-C1" +msgstr "VAT-IN-V83-06-EU-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-06-EU-C2 +msgid "VAT-IN-V83-06-EU-C2" +msgstr "VAT-IN-V83-06-EU-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-06-EU-C3 +msgid "VAT-IN-V83-06-EU-C3" +msgstr "VAT-IN-V83-06-EU-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-06-ROW-CC +msgid "TVA Déductible 6% Hors EU - Biens d'investissement" +msgstr "BTW aftrekbaar 6% Buiten EU - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-06-ROW-CC-C1 +msgid "VAT-IN-V83-06-ROW-CC-C1" +msgstr "VAT-IN-V83-06-ROW-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-06-ROW-CC-C2 +msgid "VAT-IN-V83-06-ROW-CC-C2" +msgstr "VAT-IN-V83-06-ROW-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-06-ROW-CC-C3 +msgid "VAT-IN-V83-06-ROW-CC-C3" +msgstr "VAT-IN-V83-06-ROW-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-12 +msgid "TVA Déductible 12% - Biens d'investissement" +msgstr "BTW aftrekbaar 12% - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-12-C1 +msgid "VAT-IN-V83-12-C1" +msgstr "VAT-IN-V83-12-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-12-C2 +msgid "VAT-IN-V83-12-C2" +msgstr "VAT-IN-V83-12-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-12-CC +msgid "TVA Déductible 12% Cocontract. - Biens d'investissement" +msgstr "BTW aftrekbaar 12% Medecontr. - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-12-CC-C1 +msgid "VAT-IN-V83-12-CC-C1" +msgstr "VAT-IN-V83-12-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-12-CC-C2 +msgid "VAT-IN-V83-12-CC-C2" +msgstr "VAT-IN-V83-12-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-12-CC-C3 +msgid "VAT-IN-V83-12-CC-C3" +msgstr "VAT-IN-V83-12-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-12-EU +msgid "TVA Déductible 12% Intracomm. - Biens d'investissement" +msgstr "BTW aftrekbaar 12% Intracomm. - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-12-EU-C1 +msgid "VAT-IN-V83-12-EU-C1" +msgstr "VAT-IN-V83-12-EU-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-12-EU-C2 +msgid "VAT-IN-V83-12-EU-C2" +msgstr "VAT-IN-V83-12-EU-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-12-EU-C3 +msgid "VAT-IN-V83-12-EU-C3" +msgstr "VAT-IN-V83-12-EU-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-12-ROW-CC +msgid "TVA Déductible 12% Hors EU - Biens d'investissement" +msgstr "BTW aftrekbaar 12% Buiten EU - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-12-ROW-CC-C1 +msgid "VAT-IN-V83-12-ROW-CC-C1" +msgstr "VAT-IN-V83-12-ROW-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-12-ROW-CC-C2 +msgid "VAT-IN-V83-12-ROW-CC-C2" +msgstr "VAT-IN-V83-12-ROW-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-12-ROW-CC-C3 +msgid "VAT-IN-V83-12-ROW-CC-C3" +msgstr "VAT-IN-V83-12-ROW-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-21 +msgid "TVA Déductible 21% - Biens d'investissement" +msgstr "BTW aftrekbaar 21% - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-21-C1 +msgid "VAT-IN-V83-21-C1" +msgstr "VAT-IN-V83-21-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-21-C2 +msgid "VAT-IN-V83-21-C2" +msgstr "VAT-IN-V83-21-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-21-CC +msgid "TVA Déductible 21% Cocontract. - Biens d'investissement" +msgstr "BTW aftrekbaar 21% Medecontr. - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-21-CC-C1 +msgid "VAT-IN-V83-21-CC-C1" +msgstr "VAT-IN-V83-21-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-21-CC-C2 +msgid "VAT-IN-V83-21-CC-C2" +msgstr "VAT-IN-V83-21-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-21-CC-C3 +msgid "VAT-IN-V83-21-CC-C3" +msgstr "VAT-IN-V83-21-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-21-EU +msgid "TVA Déductible 21% Intracomm. - Biens d'investissement" +msgstr "BTW aftrekbaar 21% Intracomm. - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-21-EU-C1 +msgid "VAT-IN-V83-21-EU-C1" +msgstr "VAT-IN-V83-21-EU-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-21-EU-C2 +msgid "VAT-IN-V83-21-EU-C2" +msgstr "VAT-IN-V83-21-EU-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-21-EU-C3 +msgid "VAT-IN-V83-21-EU-C3" +msgstr "VAT-IN-V83-21-EU-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-21-ROW-CC +msgid "TVA Déductible 21% Hors EU - Biens d'investissement" +msgstr "BTW aftrekbaar 21% Buiten EU - Investeringsgoederen" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-21-ROW-CC-C1 +msgid "VAT-IN-V83-21-ROW-CC-C1" +msgstr "VAT-IN-V83-21-ROW-CC-C1" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-21-ROW-CC-C2 +msgid "VAT-IN-V83-21-ROW-CC-C2" +msgstr "VAT-IN-V83-21-ROW-CC-C2" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-IN-V83-21-ROW-CC-C3 +msgid "VAT-IN-V83-21-ROW-CC-C3" +msgstr "VAT-IN-V83-21-ROW-CC-C3" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-OUT-00-CC +msgid "VAT 0% Cocontractant" +msgstr "BTW 0% Medecontractant" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-OUT-00-EU-L +msgid "Marchandises EU (Code L)" +msgstr "Handelsgoederen EU (Code L)" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-OUT-00-EU-S +msgid "Services EU" +msgstr "Diensten EU" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-OUT-00-EU-T +msgid "Marchandises EU (Code T)" +msgstr "Handelsgoederen EU (Code T)" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-OUT-00-L +msgid "VAT 0%" +msgstr "BTW 0%" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-OUT-00-ROW +msgid "Export hors EU" +msgstr "Export Buiten EU" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-OUT-00-S +msgid "VAT 0% - Services" +msgstr "BTW 0% - Diensten" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-OUT-06-L +msgid "VAT 6%" +msgstr "BTW 6%" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-OUT-06-S +msgid "VAT 6% - Services" +msgstr "BTW 6% - Diensten" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-OUT-12-L +msgid "VAT 12%" +msgstr "BTW 12%" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-OUT-12-S +msgid "VAT 12% - Services" +msgstr "BTW 12% - Diensten" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-OUT-21-L +msgid "VAT 21%" +msgstr "BTW 21%" + +#. module: l10n_be +#: model:account.tax.template,name:l10n_be.attn_VAT-OUT-21-S +msgid "VAT 21% - Services" +msgstr "BTW 21% - Diensten" diff --git a/addons/l10n_be/wizard/account_wizard.xml b/addons/l10n_be/wizard/account_wizard.xml new file mode 100644 index 00000000000..dde7a77516a --- /dev/null +++ b/addons/l10n_be/wizard/account_wizard.xml @@ -0,0 +1,7 @@ + + + + open + + + diff --git a/addons/l10n_be/wizard/l10n_be_vat_intra.py b/addons/l10n_be/wizard/l10n_be_vat_intra.py index a572c3b83b4..1a2d9201790 100644 --- a/addons/l10n_be/wizard/l10n_be_vat_intra.py +++ b/addons/l10n_be/wizard/l10n_be_vat_intra.py @@ -202,11 +202,11 @@ class partner_vat_intra(osv.osv_memory): 'vatnum': row['vat'][2:].replace(' ','').upper(), 'vat': row['vat'], 'country': row['vat'][:2], - 'amount': amt, + 'amount': round(amt,2), 'intra_code': row['intra_code'], 'code': intra_code}) - xmldict.update({'dnum': dnum, 'clientnbr': str(seq), 'amountsum': amount_sum, 'partner_wo_vat': p_count}) + xmldict.update({'dnum': dnum, 'clientnbr': str(seq), 'amountsum': round(amount_sum,2), 'partner_wo_vat': p_count}) return xmldict def create_xml(self, cursor, user, ids, context=None): @@ -247,9 +247,9 @@ class partner_vat_intra(osv.osv_memory): for client in xml_data['clientlist']: if not client['vatnum']: raise osv.except_osv(_('Insufficient Data!'),_('No vat number defined for %s.') % client['partner_name']) - data_clientinfo +='\n\t\t\n\t\t\t%(vatnum)s\n\t\t\t%(code)s\n\t\t\t%(amount)s\n\t\t' % (client) + data_clientinfo +='\n\t\t\n\t\t\t%(vatnum)s\n\t\t\t%(code)s\n\t\t\t%(amount).2f\n\t\t' % (client) - data_decl = '\n\t' % (xml_data) + data_decl = '\n\t' % (xml_data) data_file += data_head + data_decl + data_comp_period + data_clientinfo + '\n\t\t%(comments)s\n\t\n' % (xml_data) context['file_save'] = data_file diff --git a/addons/l10n_be_coda/i18n/ar.po b/addons/l10n_be_coda/i18n/ar.po index b33040ca428..9b6ca3d8294 100644 --- a/addons/l10n_be_coda/i18n/ar.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/bg.po b/addons/l10n_be_coda/i18n/bg.po index 2b3a2f5996a..c30b48279ad 100644 --- a/addons/l10n_be_coda/i18n/bg.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/ca.po b/addons/l10n_be_coda/i18n/ca.po index c88de23ecda..ecd941418ec 100644 --- a/addons/l10n_be_coda/i18n/ca.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/da.po b/addons/l10n_be_coda/i18n/da.po index a5c1b698c85..ee538f18271 100644 --- a/addons/l10n_be_coda/i18n/da.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/de.po b/addons/l10n_be_coda/i18n/de.po index ed74bed988b..dafc5004416 100644 --- a/addons/l10n_be_coda/i18n/de.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/el.po b/addons/l10n_be_coda/i18n/el.po index b329a681649..e3d46cb9fb5 100644 --- a/addons/l10n_be_coda/i18n/el.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/en_AU.po b/addons/l10n_be_coda/i18n/en_AU.po index d9b96934af4..472d3e4fd7b 100644 --- a/addons/l10n_be_coda/i18n/en_AU.po +++ b/addons/l10n_be_coda/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:10+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/en_GB.po b/addons/l10n_be_coda/i18n/en_GB.po index 8677bda1fd9..e3503552fb8 100644 --- a/addons/l10n_be_coda/i18n/en_GB.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:10+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/es.po b/addons/l10n_be_coda/i18n/es.po index 5a1ede1fbfb..a7c5a1660be 100644 --- a/addons/l10n_be_coda/i18n/es.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:09+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 @@ -272,23 +272,23 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_207 msgid "Non-conformity fee" -msgstr "" +msgstr "Tasa de no conformidad" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_022 msgid "Priority costs" -msgstr "" +msgstr "Costes prioritarios" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:145 #, python-format msgid "Warning!" -msgstr "" +msgstr "¡Advertencia!" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_045 msgid "Handling costs" -msgstr "" +msgstr "Gastos de manipulación" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_47_13 @@ -303,17 +303,17 @@ msgstr "Fecha de importación" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_039 msgid "Telecommunications" -msgstr "" +msgstr "Telecomunicaciones" #. module: l10n_be_coda #: field:coda.bank.statement.line,globalisation_id:0 msgid "Globalisation ID" -msgstr "" +msgstr "ID global" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_000 msgid "Net amount" -msgstr "" +msgstr "Importe neto" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_11 @@ -344,13 +344,13 @@ msgstr "" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_account_bank_statement_line_global msgid "Batch Payment Info" -msgstr "" +msgstr "Información del pago por lote" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_33 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_83 msgid "Value correction" -msgstr "" +msgstr "Correción del valor" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_27 diff --git a/addons/l10n_be_coda/i18n/es_CR.po b/addons/l10n_be_coda/i18n/es_CR.po index d2aa663860e..0d949e6e874 100644 --- a/addons/l10n_be_coda/i18n/es_CR.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:10+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: es\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/es_EC.po b/addons/l10n_be_coda/i18n/es_EC.po index c4367954196..1da140f6395 100644 --- a/addons/l10n_be_coda/i18n/es_EC.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:11+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/es_PY.po b/addons/l10n_be_coda/i18n/es_PY.po index 5b8bdced2d4..b217f77fa5a 100644 --- a/addons/l10n_be_coda/i18n/es_PY.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:11+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/et.po b/addons/l10n_be_coda/i18n/et.po index 3018ebe4a1c..1d2ee3e69df 100644 --- a/addons/l10n_be_coda/i18n/et.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/fa.po b/addons/l10n_be_coda/i18n/fa.po index 0c778ebd6fd..221d0b9c02e 100644 --- a/addons/l10n_be_coda/i18n/fa.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:09+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/fi.po b/addons/l10n_be_coda/i18n/fi.po index d1ce4e727af..bab51b0d5e7 100644 --- a/addons/l10n_be_coda/i18n/fi.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/fr.po b/addons/l10n_be_coda/i18n/fr.po index 13d0ede73ca..67157452276 100644 --- a/addons/l10n_be_coda/i18n/fr.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 @@ -50,7 +50,7 @@ msgstr "Ordre de transfert individuel à l'initiative de la banque" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_21 msgid "Charges for preparing pay packets" -msgstr "" +msgstr "Coût de préparation de la commande" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_9 @@ -60,12 +60,12 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_426 msgid "Belgian broker's commission" -msgstr "" +msgstr "Commission de courtier belge" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_031 msgid "Charges foreign cheque" -msgstr "" +msgstr "Coût de prise en charge des chèques étrangers" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_002 @@ -83,16 +83,18 @@ msgid "" "cheques debited on account, but debit cancelled afterwards for lack of cover " "(double debit/contra-entry of transaction 01 or 05)" msgstr "" +"Chèque débité sur le compte, mais annulé suite à la non couverture (double " +"debit/contra-entry of transaction 01 or 05)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_05 msgid "Bill claimed back" -msgstr "" +msgstr "réclamation factures" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_016 msgid "BLIW/IBLC dues" -msgstr "" +msgstr "BLIW/IBLC" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:909 @@ -118,7 +120,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_042 msgid "Payment card costs" -msgstr "" +msgstr "Coûts des cartes de paiement" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_212 @@ -212,7 +214,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_39 msgid "Return of an irregular bill of exchange" -msgstr "" +msgstr "Retour d'un effet de change irrégulier" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_011 @@ -229,7 +231,7 @@ msgstr "" #: model:ir.actions.act_window,name:l10n_be_coda.action_account_coda_comm_type_form #: model:ir.ui.menu,name:l10n_be_coda.menu_action_account_coda_comm_type_form msgid "CODA Structured Communication Types" -msgstr "" +msgstr "Types de communication structurées en CODA" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_50 @@ -258,7 +260,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_207 msgid "Non-conformity fee" -msgstr "" +msgstr "Frais de non-conformité" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_022 @@ -274,7 +276,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_045 msgid "Handling costs" -msgstr "" +msgstr "Coûts de traitement" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_47_13 @@ -309,12 +311,12 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_206 msgid "Surety fee/payment under reserve" -msgstr "" +msgstr "Frais de sûreté/Paiement sous réserve" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_53 msgid "Cash deposit at an ATM" -msgstr "" +msgstr "Dépôt d'espèces (en ATM)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_52 @@ -371,7 +373,7 @@ msgstr "Débit direct" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_00 msgid "Undefined transactions" -msgstr "" +msgstr "Transactions non définies" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_62 @@ -483,7 +485,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_052 msgid "Residence state tax" -msgstr "" +msgstr "Taxe de l'état de résidence" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:462 @@ -530,7 +532,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_104 msgid "Equivalent in EUR" -msgstr "" +msgstr "Équivalent en euro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_50 @@ -548,7 +550,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_03 msgid "Your purchase by payment card" -msgstr "" +msgstr "Votre achat par carte de paiement" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_1 @@ -633,14 +635,14 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_51 msgid "Transfer in your favour – initiated by the bank" -msgstr "" +msgstr "Transfert en votre faveur - initié par la banque" #. module: l10n_be_coda #: view:account.coda:0 #: field:account.coda,coda_data:0 #: field:account.coda.import,coda_data:0 msgid "CODA File" -msgstr "" +msgstr "Fichier CODA" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_003 @@ -697,7 +699,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_01 msgid "Short-term loan" -msgstr "" +msgstr "Prêt à court terme" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_01 @@ -712,7 +714,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_402 msgid "Certification costs" -msgstr "" +msgstr "Coûts de certification" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_015 @@ -723,14 +725,14 @@ msgstr "" #: model:account.coda.trans.category,description:l10n_be_coda.actrca_415 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_39 msgid "Surety fee" -msgstr "" +msgstr "Frais de sûreté" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_017 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_23 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_41 msgid "Research costs" -msgstr "" +msgstr "Coûts de recherche" #. module: l10n_be_coda #: code:addons/l10n_be_coda/l10n_be_coda.py:304 @@ -744,7 +746,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_07 msgid "Collective transfer" -msgstr "" +msgstr "Transfert collectif" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:910 @@ -770,7 +772,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_52 msgid "Payment in your favour" -msgstr "" +msgstr "Paiement en votre faveur" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_08 @@ -2675,7 +2677,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_03_17 msgid "Amount of the cheque; if any, charges receive code 37" -msgstr "" +msgstr "Montant du chèque; si présent, réception du code 37" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_103 @@ -3389,7 +3391,7 @@ msgstr "" #: model:account.coda.trans.category,description:l10n_be_coda.actrca_053 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_43 msgid "Printing of forms" -msgstr "" +msgstr "Impression des formulaires" #. module: l10n_be_coda #: help:coda.bank.account,state:0 diff --git a/addons/l10n_be_coda/i18n/gl.po b/addons/l10n_be_coda/i18n/gl.po index f05b020ab85..fff188c31e1 100644 --- a/addons/l10n_be_coda/i18n/gl.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/hr.po b/addons/l10n_be_coda/i18n/hr.po index d149a2c77c2..43f74d6b5e8 100644 --- a/addons/l10n_be_coda/i18n/hr.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:09+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/hu.po b/addons/l10n_be_coda/i18n/hu.po index 7617e31bd6b..0fe9890dfb5 100644 --- a/addons/l10n_be_coda/i18n/hu.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/it.po b/addons/l10n_be_coda/i18n/it.po index d778d9ae360..379b50df34d 100644 --- a/addons/l10n_be_coda/i18n/it.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/ja.po b/addons/l10n_be_coda/i18n/ja.po index 09eb7987c78..f9ca3abc7bf 100644 --- a/addons/l10n_be_coda/i18n/ja.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/lv.po b/addons/l10n_be_coda/i18n/lv.po index 263f16f34a8..b453665d531 100644 --- a/addons/l10n_be_coda/i18n/lv.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:09+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/mk.po b/addons/l10n_be_coda/i18n/mk.po index b47a0d41828..8a62f9db4aa 100644 --- a/addons/l10n_be_coda/i18n/mk.po +++ b/addons/l10n_be_coda/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:09+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/mn.po b/addons/l10n_be_coda/i18n/mn.po index a5130163b7f..0660ecec9aa 100644 --- a/addons/l10n_be_coda/i18n/mn.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:09+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/nb.po b/addons/l10n_be_coda/i18n/nb.po index 7d12cabf790..060175975c9 100644 --- a/addons/l10n_be_coda/i18n/nb.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:09+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/nl.po b/addons/l10n_be_coda/i18n/nl.po index a5b58e191f0..bc171cfa42b 100644 --- a/addons/l10n_be_coda/i18n/nl.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/nl_BE.po b/addons/l10n_be_coda/i18n/nl_BE.po index d159bfb3928..f5889694856 100644 --- a/addons/l10n_be_coda/i18n/nl_BE.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:10+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/pl.po b/addons/l10n_be_coda/i18n/pl.po index ea1b6b472b4..869c0c846d8 100644 --- a/addons/l10n_be_coda/i18n/pl.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:09+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/pt.po b/addons/l10n_be_coda/i18n/pt.po index ef4c55714fa..9c0fa66be9f 100644 --- a/addons/l10n_be_coda/i18n/pt.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:09+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/pt_BR.po b/addons/l10n_be_coda/i18n/pt_BR.po index f6ce4ea3d36..085427198d9 100644 --- a/addons/l10n_be_coda/i18n/pt_BR.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:10+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 @@ -25,7 +25,7 @@ msgstr "Saque de dinheiro no cartão (PROTON)" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_412 msgid "Advice of expiry charges" -msgstr "" +msgstr "Assessoria de carga de validade" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_11 @@ -50,32 +50,32 @@ msgstr "Ordem de transferência individual iniciada pelo banco" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_21 msgid "Charges for preparing pay packets" -msgstr "" +msgstr "Encargos de pacotes de pagamento pré-pagos" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_9 msgid "Detail of 7. The records in a separate application keep type 9." -msgstr "" +msgstr "Detalhe da 7. Os registros de uma aplicação separada manter tipo 9." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_426 msgid "Belgian broker's commission" -msgstr "" +msgstr "Comissão do corretor belga" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_031 msgid "Charges foreign cheque" -msgstr "" +msgstr "Encargos de verificação externa" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_002 msgid "Interest paid" -msgstr "" +msgstr "Juros pagos" #. module: l10n_be_coda #: field:account.coda.trans.type,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Parente" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_03_62 @@ -83,47 +83,49 @@ msgid "" "cheques debited on account, but debit cancelled afterwards for lack of cover " "(double debit/contra-entry of transaction 01 or 05)" msgstr "" +"cheques debitados em conta, débito Depois cancelado por falta de cobertura " +"(duplo fluxo / contrapartida da operação 01 ou 05), mas" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_05 msgid "Bill claimed back" -msgstr "" +msgstr "Bill reclamado" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_016 msgid "BLIW/IBLC dues" -msgstr "" +msgstr "Bliw / IBLC devido" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:909 #, python-format msgid "CODA File is Imported :" -msgstr "" +msgstr "CODA arquivo é importado:" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_066 msgid "Fixed loan advance - reimbursement" -msgstr "" +msgstr "Antecedência empréstimo fixo - reembolso" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_05 msgid "Purchase of foreign bank notes" -msgstr "" +msgstr "Compra de notas estrangeiras" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_030 msgid "Account insurance" -msgstr "" +msgstr "Seguro conta" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_042 msgid "Payment card costs" -msgstr "" +msgstr "Custos de cartões de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_212 msgid "Warehousing fee" -msgstr "" +msgstr "Taxa Warehousing" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:278 @@ -133,21 +135,23 @@ msgid "" "\n" "The File contains an invalid CODA Transaction Family : %s." msgstr "" +"\n" +"O arquivo contém uma transação inválido CODA Família:% s." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_66 msgid "Financial centralization" -msgstr "" +msgstr "Centralização financeira" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_420 msgid "Retention charges" -msgstr "" +msgstr "Os custos de retenção" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_50 msgid "Transfer in your favour" -msgstr "" +msgstr "Transferência em seu favor" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_87 @@ -163,37 +167,37 @@ msgstr "" #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_87 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_87 msgid "Reimbursement of costs" -msgstr "" +msgstr "Reembolso das despesas" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_56 msgid "Remittance of supplier's bill with guarantee" -msgstr "" +msgstr "Remessa de conta do fornecedor com garantia" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_002 msgid "Communication of the bank" -msgstr "" +msgstr "A comunicação do banco" #. module: l10n_be_coda #: field:coda.bank.statement.line,amount:0 msgid "Amount" -msgstr "" +msgstr "Quantidade" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_70 msgid "Only with stockbrokers when they deliver the securities to the bank" -msgstr "" +msgstr "Somente com corretores quando entregar os títulos para o banco" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_413 msgid "Acceptance charges" -msgstr "" +msgstr "Acusações de aceitação" #. module: l10n_be_coda #: field:coda.bank.statement.line,counterparty_bic:0 msgid "Counterparty BIC" -msgstr "" +msgstr "BIC contraparte" #. module: l10n_be_coda #: help:coda.bank.account,def_receivable:0 @@ -201,6 +205,8 @@ msgid "" "Set here the receivable account that will be used, by default, if the " "partner is not found." msgstr "" +"Defina aqui a conta a receber que será usado, por padrão, se o parceiro não " +"for encontrado." #. module: l10n_be_coda #: help:coda.bank.account,def_payable:0 @@ -208,33 +214,35 @@ msgid "" "Set here the payable account that will be used, by default, if the partner " "is not found." msgstr "" +"Defina aqui a conta a pagar que será usado, por padrão, se o parceiro não " +"for encontrado." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_39 msgid "Return of an irregular bill of exchange" -msgstr "" +msgstr "Retorno de um projeto de lei irregular de troca" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_011 msgid "VAT" -msgstr "" +msgstr "IVA" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_09 msgid "Debit of the agios to the account of the drawee" -msgstr "" +msgstr "Débito dos ágios na conta do sacado" #. module: l10n_be_coda #: view:account.coda.comm.type:0 #: model:ir.actions.act_window,name:l10n_be_coda.action_account_coda_comm_type_form #: model:ir.ui.menu,name:l10n_be_coda.menu_action_account_coda_comm_type_form msgid "CODA Structured Communication Types" -msgstr "" +msgstr "CODA Tipos de comunicação estruturada" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_50 msgid "Spot sale of foreign exchange" -msgstr "" +msgstr "Venda à vista de divisas" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:321 @@ -244,42 +252,46 @@ msgid "" "CODA parsing error on movement data record 2.2, seq nr %s.\n" "Please report this issue via your OpenERP support channel." msgstr "" +"\n" +"Erro de análise CODA em movimento registro de dados 2.2, seq nr% s. \n" +"favor relate este problema através de seu canal de suporte OpenERP." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_58 msgid "Remittance of supplier's bill without guarantee" -msgstr "" +msgstr "Remessa de conta do fornecedor, sem garantia" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_03 msgid "Payment receipt card" -msgstr "" +msgstr "Cartão de recibo de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_207 msgid "Non-conformity fee" -msgstr "" +msgstr "Taxa de não-conformidade" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_022 msgid "Priority costs" -msgstr "" +msgstr "Custos prioritárias" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:145 #, python-format msgid "Warning!" -msgstr "" +msgstr "Atenção!" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_045 msgid "Handling costs" -msgstr "" +msgstr "Custos de manutenção" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_47_13 msgid "Debit customer, payment of agios, interest, exchange commission, etc." msgstr "" +"Cliente de débito, pagamento de juros, juros, câmbio de comissão, etc" #. module: l10n_be_coda #: field:account.coda,date:0 @@ -289,157 +301,160 @@ msgstr "Data de Importação" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_039 msgid "Telecommunications" -msgstr "" +msgstr "Telecomunicações" #. module: l10n_be_coda #: field:coda.bank.statement.line,globalisation_id:0 msgid "Globalisation ID" -msgstr "" +msgstr "Globalização ID" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_000 msgid "Net amount" -msgstr "" +msgstr "Valor líquido" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_11 msgid "Department store cheque" -msgstr "" +msgstr "Loja de departamentos de verificação" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_206 msgid "Surety fee/payment under reserve" -msgstr "" +msgstr "Taxa / pagamento sob reserva de garantia" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_53 msgid "Cash deposit at an ATM" -msgstr "" +msgstr "Depósito em dinheiro em um caixa eletrônico" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_52 msgid "Forward sale of foreign exchange" -msgstr "" +msgstr "Venda a prazo de divisas" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_05 msgid "" "Debit of the subscriber for the complementary payment of partly-paid shares" msgstr "" +"Débito do assinante para o pagamento complementar de ações parcialmente pagos" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_account_bank_statement_line_global msgid "Batch Payment Info" -msgstr "" +msgstr "Batch Informação do pagamento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_33 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_83 msgid "Value correction" -msgstr "" +msgstr "Correção do valor" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_27 msgid "For publications of the financial institution" -msgstr "" +msgstr "Para publicações da instituição financeira" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_01 msgid "Payment of foreign bill" -msgstr "" +msgstr "Pagamento da conta externa" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_024 msgid "Growth premium" -msgstr "" +msgstr "Prémio crescimento" #. module: l10n_be_coda #: selection:account.coda.trans.code,type:0 msgid "Transaction Code" -msgstr "" +msgstr "Código de Transação" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_13 msgid "Discount foreign supplier's bills" -msgstr "" +msgstr "Contas de desconto do fornecedor estrangeiro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_05 msgid "Direct debit" -msgstr "" +msgstr "O débito direto" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_00 msgid "Undefined transactions" -msgstr "" +msgstr "Transações indefinidos" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_62 msgid "When reimbursed separately to the subscriber" -msgstr "" +msgstr "Quando reembolsados ​​separadamente para o assinante" #. module: l10n_be_coda #: view:account.coda.trans.category:0 msgid "CODA Transaction Category" -msgstr "" +msgstr "CODA Transação Categoria" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_067 msgid "Fixed loan advance - extension" -msgstr "" +msgstr "Antecedência empréstimo fixa - extensão" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_07 msgid "Your repayment instalment credits" -msgstr "" +msgstr "Seu reembolso créditos parcelados" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_09_13 msgid "On the account of the head office" -msgstr "" +msgstr "Por conta da sede" #. module: l10n_be_coda #: constraint:account.bank.statement:0 msgid "The journal and period chosen have to belong to the same company." -msgstr "" +msgstr "O diário eo período escolhido tem que pertencer à mesma empresa." #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_115 msgid "Terminal cash deposit" -msgstr "" +msgstr "Depósito em dinheiro Terminal" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_43_01 msgid "" "Debit of a cheque in foreign currency or in EUR in favour of a foreigner" msgstr "" +"Débito de um cheque em moeda estrangeira ou em euros a favor de um " +"estrangeiro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_54 msgid "Discount abroad" -msgstr "" +msgstr "Desconto no exterior" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_62 msgid "Remittance of documents abroad - credit after collection" -msgstr "" +msgstr "Remessa de documentos no exterior - o crédito após a coleta" #. module: l10n_be_coda #: field:coda.bank.statement.line,name:0 msgid "Communication" -msgstr "" +msgstr "Comunicação" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_35 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_85 msgid "Correction" -msgstr "" +msgstr "Correção" #. module: l10n_be_coda #: code:addons/l10n_be_coda/l10n_be_coda.py:403 #, python-format msgid "Delete operation not allowed." -msgstr "" +msgstr "Excluir Operação Localidade: Não permitida." #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:269 @@ -448,29 +463,31 @@ msgid "" "\n" "The File contains an invalid CODA Transaction Type : %s." msgstr "" +"\n" +"O arquivo contém um inválido CODA tipo de transação:% s." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_33 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_83 msgid "Value (date) correction" -msgstr "" +msgstr "Valor de Correção (dados)" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_063 msgid "Rounding differences" -msgstr "" +msgstr "Diferenças de Arredondamento" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:296 #: code:addons/l10n_be_coda/wizard/account_coda_import.py:489 #, python-format msgid "Transaction Category unknown, please consult your bank." -msgstr "" +msgstr "Transação categoria Desconhecido, Por favor Consulte o Seu banco." #. module: l10n_be_coda #: view:account.coda.trans.code:0 msgid "CODA Transaction Code" -msgstr "" +msgstr "CODA Código de Transação" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:171 @@ -479,11 +496,13 @@ msgid "" "\n" "Unsupported bank account structure." msgstr "" +"\n" +"Estrutura conta bancária não suportado." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_052 msgid "Residence state tax" -msgstr "" +msgstr "Fiscal do Estado de Residência" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:462 @@ -492,48 +511,51 @@ msgid "" "\n" "The File contains an invalid CODA Transaction Type : %s!" msgstr "" +"\n" +"O arquivo contém um inválido CODA tipo de transação:% s!" #. module: l10n_be_coda #: view:account.coda:0 msgid "Additional Information" -msgstr "" +msgstr "Informações adicionais" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_120 msgid "Correction of a transaction" -msgstr "" +msgstr "Correção de uma transação" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_64 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_64 msgid "Transfer to your account" -msgstr "" +msgstr "Transferir para a sua conta" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_124 msgid "Number of the credit card" -msgstr "" +msgstr "Número do cartão de crédito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_13 msgid "Renting of safes" -msgstr "" +msgstr "Aluguel de cofres" #. module: l10n_be_coda #: help:coda.bank.account,find_bbacom:0 msgid "" "Partner lookup via the 'BBA' Structured Communication field of the Invoice." msgstr "" +"Parceiro de pesquisa via campo comunicação estruturada a \"BBA\" da fatura." #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_104 msgid "Equivalent in EUR" -msgstr "" +msgstr "Equivalente em EUR" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_50 msgid "Remittance of foreign bill credit after collection" -msgstr "" +msgstr "Remessa de projeto de lei de crédito estrangeiro após a coleta" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:156 @@ -542,11 +564,13 @@ msgid "" "\n" "Foreign bank accounts with BBAN structure are not supported." msgstr "" +"\n" +"Contas bancárias no exterior com estrutura BBAN não são suportados." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_03 msgid "Your purchase by payment card" -msgstr "" +msgstr "Sua compra por cartão de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_1 @@ -557,26 +581,31 @@ msgid "" "matter of principle, this type is also used when no detailed data is " "following (type 5)." msgstr "" +"Saldo totalizados pelo cliente, por exemplo, um arquivo de pagamentos " +"reagrupamento de salários ou pagamentos a fornecedores ou um arquivo de " +"reagrupar as coleções para o qual o cliente é debitado ou creditado com um " +"único valor. Por uma questão de princípio, este tipo também é usado quando " +"há dados detalhados está seguindo (tipo 5)." #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Credit Transactions." -msgstr "" +msgstr "Operações de Crédito." #. module: l10n_be_coda #: field:account.coda.trans.type,type:0 msgid "Transaction Type" -msgstr "" +msgstr "Tipo de Transação" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_account_coda msgid "Object to store CODA Data Files" -msgstr "" +msgstr "Objeto para armazenar ficheiros de dados CODA" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_029 msgid "Protest charges" -msgstr "" +msgstr "Acusações de protesto" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:521 @@ -586,11 +615,14 @@ msgid "" "CODA parsing error on information data record 3.3, seq nr %s.\n" "Please report this issue via your OpenERP support channel." msgstr "" +"\n" +"Erro de análise CODA em informações de dados de registro 3.3, seq nr% s. \n" +"favor relate este problema através de seu canal de suporte OpenERP." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_003 msgid "Credit commission" -msgstr "" +msgstr "Crédito comissão" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:632 @@ -600,16 +632,20 @@ msgid "" "Configuration Error!\n" "Please verify the Default Debit and Credit Account settings in journal %s." msgstr "" +"\n" +"Erro de configuração! \n" +"verifique o débito padrão e as configurações da conta de crédito no diário% " +"s." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_58 msgid "Remittance of foreign cheque credit after collection" -msgstr "" +msgstr "Remessa de verificação de crédito estrangeiro após a coleta" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_8 msgid "Detail of 3." -msgstr "" +msgstr "Detalhe da 3." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_05_58 @@ -617,118 +653,122 @@ msgid "" "(cancellation of an undue debit of the debtor at the initiative of the " "financial institution or the debtor for lack of cover)" msgstr "" +"(Anulação de um fluxo excessivo do devedor por iniciativa da instituição " +"financeira ou o devedor por falta de cobertura)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_11 msgid "Payable coupons/repayable securities" -msgstr "" +msgstr "Cupons de títulos a pagar / reembolsável" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_50 msgid "Sale of securities" -msgstr "" +msgstr "Venda de valores mobiliários" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_51 msgid "Transfer in your favour – initiated by the bank" -msgstr "" +msgstr "Transferir a sua favor - iniciado pelo Banco" #. module: l10n_be_coda #: view:account.coda:0 #: field:account.coda,coda_data:0 #: field:account.coda.import,coda_data:0 msgid "CODA File" -msgstr "" +msgstr "CODA Arquivo" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_003 msgid "RBP data" -msgstr "" +msgstr "Dados RBP" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_06 msgid "Share option plan – exercising an option" -msgstr "" +msgstr "Plano de Opção - exercer uma opção" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_051 msgid "Withholding tax" -msgstr "" +msgstr "Retenção na fonte" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_006 msgid "Information concerning the detail amount" -msgstr "" +msgstr "Informações sobre o montante detalhes" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_37 msgid "Costs relating to payment of foreign cheques" -msgstr "" +msgstr "Os custos relativos ao pagamento de cheques estrangeiros" #. module: l10n_be_coda #: field:account.coda.trans.code,parent_id:0 msgid "Family" -msgstr "" +msgstr "Família" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_66 msgid "Retrocession of issue commission" -msgstr "" +msgstr "Retrocessão de emissão comissão" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_68 msgid "Credit after Proton payments" -msgstr "" +msgstr "Pagamentos de protões eficazes de crédito" #. module: l10n_be_coda #: view:coda.bank.statement:0 #: field:coda.bank.statement,period_id:0 msgid "Period" -msgstr "" +msgstr "Period" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_09_01 msgid "" "Withdrawal by counter cheque or receipt; cash remitted by the bank clerk" msgstr "" +"Retirada por cheque contador ou recibo, o dinheiro remetido pelo funcionário " +"do banco" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_01 msgid "Short-term loan" -msgstr "" +msgstr "Empréstimo de curto prazo" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_01 msgid "Domestic or local SEPA credit transfers" -msgstr "" +msgstr "Transferências a crédito SEPA nacionais ou locais" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_03 msgid "Settlement credit cards" -msgstr "" +msgstr "Cartões de crédito de liquidação" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_402 msgid "Certification costs" -msgstr "" +msgstr "Os custos de certificação" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_015 msgid "Correspondent charges" -msgstr "" +msgstr "Combinar cargas" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_415 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_39 msgid "Surety fee" -msgstr "" +msgstr "Fiador taxa" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_017 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_23 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_41 msgid "Research costs" -msgstr "" +msgstr "As despesas de investigação" #. module: l10n_be_coda #: code:addons/l10n_be_coda/l10n_be_coda.py:304 @@ -738,11 +778,14 @@ msgid "" "The associated Bank Statement has already been confirmed.\n" "Please undo this action first." msgstr "" +"CODA extrato bancário não pode excluir '% s' do arquivo de log '% s'. \n" +"associado o extrato bancário já confirmou beens. \n" +"favor desfazer esse trabalho em primeiro lugar." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_07 msgid "Collective transfer" -msgstr "" +msgstr "Transferência coletiva" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:910 @@ -752,33 +795,36 @@ msgid "" "\n" "Number of statements : " msgstr "" +"\n" +"\n" +"Número de declarações: " #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_05 #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_07 msgid "" "The principal will be debited for the total amount of the file entered." -msgstr "" +msgstr "O será debitado principal para o Valor Total do arquivo inserido." #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_111 msgid "POS credit – Globalisation" -msgstr "" +msgstr "Crédito POS - Globalização" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_52 msgid "Payment in your favour" -msgstr "" +msgstr "Pagamento em seu favor" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_08 msgid "Registering compensation for savings accounts" -msgstr "" +msgstr "Compensação se registrar para contas de poupança" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_51 msgid "Company issues paper in return for cash" -msgstr "" +msgstr "Emissões de papel em troca de dinheiro da empresa" #. module: l10n_be_coda #: field:coda.bank.account,journal:0 @@ -790,17 +836,17 @@ msgstr "Diário" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_19 msgid "Settlement of credit cards" -msgstr "" +msgstr "Liquidação de cartões de crédito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_87 msgid "Reimbursement of cheque-related costs" -msgstr "" +msgstr "Reembolso das despesas de check-relacionados" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_50 msgid "Settlement of instalment credit" -msgstr "" +msgstr "Solução de crédito parcelado" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_08 @@ -808,33 +854,35 @@ msgid "" "Debit of the remitter when the drawee pays in advance directly to the " "remitter (regards bank acceptances)" msgstr "" +"Débito do remetente, quando o sacado paga com antecedência diretamente para " +"o remetente (matéria aceites bancários)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_60 msgid "Remittance of documents abroad - credit under usual reserve" -msgstr "" +msgstr "Remessa de documentos no exterior - o crédito sob reserva habitual" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_52 msgid "Loading GSM cards" -msgstr "" +msgstr "Carregar cartões GSM" #. module: l10n_be_coda #: view:coda.bank.statement:0 #: view:coda.bank.statement.line:0 #: field:coda.bank.statement.line,note:0 msgid "Notes" -msgstr "" +msgstr "Notas" #. module: l10n_be_coda #: field:coda.bank.statement,balance_end_real:0 msgid "Ending Balance" -msgstr "" +msgstr "Saldo final" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_64 msgid "Your issue" -msgstr "" +msgstr "Seu problema" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:871 @@ -850,13 +898,22 @@ msgid "" "Account Holder Name: %s\n" "Date: %s, Starting Balance: %.2f, Ending Balance: %.2f%s" msgstr "" +"\n" +"\n" +"Bank Journal: %s\n" +"CODA Version: %s\n" +"CODA Sequence Number: %s\n" +"Paper Statement Sequence Number: %s\n" +"Bank Account: %s\n" +"Account Holder Name: %s\n" +"Date: %s, Starting Balance: %.2f, Ending Balance: %.2f%s" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:590 #: code:addons/l10n_be_coda/wizard/account_coda_import.py:924 #, python-format msgid "CODA Import failed." -msgstr "" +msgstr "CODA Import falhou." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_01 @@ -864,148 +921,153 @@ msgid "" "Purchase of domestic or foreign securities, including subscription rights, " "certificates, etc." msgstr "" +"Compra de títulos nacionais ou estrangeiros, incluindo direitos de " +"subscrição, certificados, etc." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_38 msgid "Costs relating to incoming foreign and non-SEPA transfers" -msgstr "" +msgstr "Custos relativos a transferências externas e não-SEPA entrada" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_52 msgid "Whatever the currency of the security" -msgstr "" +msgstr "Qualquer que seja a moeda da segurança" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_069 msgid "Forward arbitrage contracts : sum to be supplied by customer" msgstr "" +"Contratos para a frente arbitragem: Soma a ser fornecido pelo cliente" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_51 msgid "Unloading Proton" -msgstr "" +msgstr "Descarga Proton" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_407 msgid "Costs Article 45" -msgstr "" +msgstr "Artigo 45 º Custos" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_007 msgid "Information concerning the detail cash" -msgstr "" +msgstr "Informações sobre o dinheiro detalhes" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Bank Transaction" -msgstr "" +msgstr "Transação bancária" #. module: l10n_be_coda #: view:coda.bank.account:0 msgid "CODA Bank Account" -msgstr "" +msgstr "CODA Bank Account" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_35 msgid "Cash advance" -msgstr "" +msgstr "Cash advance" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_47 msgid "Foreign commercial paper" -msgstr "" +msgstr "Foreign commercial paper" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_13_15 msgid "" "Hire-purchase agreement under which the financial institution is the lessor" msgstr "" +"Hire-purchase agreement under which the financial institution is the lessor" #. module: l10n_be_coda #: view:account.coda.import:0 msgid "or" -msgstr "" +msgstr "ou" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_66 msgid "Remittance of cheque by your branch - credit under usual reserve" -msgstr "" +msgstr "Remittance of cheque by your branch - credit under usual reserve" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_50 msgid "Credit of the remitter" -msgstr "" +msgstr "De crédito do remetente" #. module: l10n_be_coda #: field:account.coda.trans.category,category:0 msgid "Transaction Category" -msgstr "" +msgstr "Transaction Category" #. module: l10n_be_coda #: field:account.coda,statement_ids:0 msgid "Generated CODA Bank Statements" -msgstr "" +msgstr "Generated CODA Bank Statements" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_09 msgid "Purchase of petrol coupons" -msgstr "" +msgstr "Aquisição de cupons de gasolina" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_52 msgid "Remittance of foreign bill credit under usual reserve" msgstr "" +"Remessa de projeto de lei de crédito estrangeiro sob reserva habitual" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_061 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_47 msgid "Charging fees for transactions" -msgstr "" +msgstr "Cobrança de taxas para transações" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_account_coda_trans_category msgid "CODA transaction category" -msgstr "" +msgstr "CODA categoria de transação" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_21 msgid "Other credit applications" -msgstr "" +msgstr "Outros pedidos de crédito" #. module: l10n_be_coda #: selection:coda.bank.statement.line,type:0 msgid "Supplier" -msgstr "" +msgstr "Suplicar" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_009 msgid "Travelling expenses" -msgstr "" +msgstr "As despesas de viagem" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_30 msgid "Various transactions" -msgstr "" +msgstr "Diversas operações" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_406 msgid "Collection charges" -msgstr "" +msgstr "Despesas de cobrança" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_55 msgid "Fixed advance – interest only" -msgstr "" +msgstr "Avanço fixo - interesse apenas" #. module: l10n_be_coda #: view:coda.bank.statement:0 msgid "Transactions" -msgstr "" +msgstr "Transações" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_50 msgid "Cash payment" -msgstr "" +msgstr "Pagamento à vista" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:636 @@ -1015,47 +1077,52 @@ msgid "" "The CODA Statement %s Starting Balance (%.2f) does not correspond with the " "previous Closing Balance (%.2f) in journal %s." msgstr "" +"\n" +"The CODA Statement %s Starting Balance (%.2f) does not correspond with the " +"previous Closing Balance (%.2f) in journal %s." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_27 msgid "Subscription fee" -msgstr "" +msgstr "Taxa de inscrição" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_036 msgid "Costs relating to a refused cheque" -msgstr "" +msgstr "Custos relativos a um cheque recusado" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_101 msgid "Credit transfer or cash payment with structured format communication" msgstr "" +"Transferência de crédito ou pagamento à vista com comunicação formato " +"estruturado" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_127 msgid "European direct debit (SEPA)" -msgstr "" +msgstr "Débito directo a nível europeu (SEPA)" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_068 msgid "Countervalue of an entry" -msgstr "" +msgstr "Contravalor de uma entrada" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_010 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_31 msgid "Writ service fee" -msgstr "" +msgstr "Taxa de serviço Mandado" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_13 msgid "Your repurchase of issue" -msgstr "" +msgstr "Seu recompra de emissão" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_409 msgid "Safe deposit charges" -msgstr "" +msgstr "Taxas de depósito seguro" #. module: l10n_be_coda #: field:coda.bank.account,def_payable:0 @@ -1065,12 +1132,12 @@ msgstr "Conta de Pagamento padrão" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_055 msgid "Repayment loan or credit capital" -msgstr "" +msgstr "Reembolso do empréstimo ou de capital de crédito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_05 msgid "Settlement of fixed advance" -msgstr "" +msgstr "Liquidação de avanço fixo" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:333 @@ -1081,6 +1148,9 @@ msgid "" "CODA parsing error on movement data record 2.3, seq nr %s.\n" "Please report this issue via your OpenERP support channel." msgstr "" +"\n" +"Erro de análise CODA em movimento registro de dados 2.3, seq nr% s. \n" +"favor relate este problema através de seu canal de suporte OpenERP." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_15 @@ -1088,11 +1158,13 @@ msgid "" "Commission collected to the debit of the customer to whom the bank delivers " "a key which gives access to the night safe" msgstr "" +"Comissão recolheu o débito do cliente para que o banco oferece uma chave que " +"dá acesso ao cofre noite" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_059 msgid "Default interest" -msgstr "" +msgstr "Juros de mora" #. module: l10n_be_coda #: help:coda.bank.account,coda_st_naming:0 @@ -1108,13 +1180,22 @@ msgid "" "CODA sequence number: %(coda)s\n" "Paper Statement sequence number: %(paper)s" msgstr "" +". Definir as regras para criar o nome dos extratos bancários gerados pelo " +"processamento do CODA \n" +"% Exemplo (código) s% (y) s /% (papel) s \n" +"Variáveis: \n" +"Jornal Banco Código:% (código) s \n" +"do ano atual com a do século: % (ano) s \n" +"Ano em curso sem Century:% (y) s \n" +"CODA número de seqüência:% (coda) s \n" +"Paper número de seqüência de Declaração:% (papel) s" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_108 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_35_01 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_35_50 msgid "Closing" -msgstr "" +msgstr "Encerramento" #. module: l10n_be_coda #: help:coda.bank.statement.line,globalisation_id:0 @@ -1122,88 +1203,91 @@ msgid "" "Code to identify transactions belonging to the same globalisation level " "within a batch payment" msgstr "" +"Código para identificar as transações que pertencem ao mesmo nível de " +"globalização dentro de um lote de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_05 msgid "Commercial paper claimed back" -msgstr "" +msgstr "O papel comercial reclamado" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_411 msgid "Fixed collection charge" -msgstr "" +msgstr "Carga coleção fixa" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_64 msgid "Your winning lottery ticket" -msgstr "" +msgstr "Seu bilhete de loteria premiado" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_009 msgid "" "Identification of the de ultimate ordering customer/debtor (SEPA SCT/SDD)" msgstr "" +"Identificação do final de ordenação cliente / devedor (SEPA SCT / SDD)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_05 msgid "Card charges" -msgstr "" +msgstr "Taxas de cartão" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_03 msgid "Payment card charges" -msgstr "" +msgstr "Encargos do cartão de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_54 msgid "Remittance of commercial paper for discount" -msgstr "" +msgstr "Remessa de papel comercial para desconto" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_01 msgid "Payment" -msgstr "" +msgstr "Pagamento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_07 msgid "Purchase of gold/pieces" -msgstr "" +msgstr "Compra de ouro / peças" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_15 msgid "Balance due insurance premium" -msgstr "" +msgstr "Saldo devido prémio de seguro" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_11 msgid "Debit of the issuer by the bank in charge of the financial service" -msgstr "" +msgstr "Débito da emissora pelo banco responsável pelo serviço financeiro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_58 msgid "Remittance of cheques, vouchers, etc. credit after collection" -msgstr "" +msgstr "Envio de cheques, vales, etc crédito após a coleta" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_19 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_68 msgid "Difference in payment" -msgstr "" +msgstr "Diferença de pagamento" #. module: l10n_be_coda #: field:coda.bank.statement.line,date:0 msgid "Entry Date" -msgstr "" +msgstr "Data entrada" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_58 msgid "Idem without guarantee" -msgstr "" +msgstr "Idem, sem garantia" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_63 msgid "Second credit of unpaid cheque" -msgstr "" +msgstr "Segundo crédito de cheque não pago" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:389 @@ -1216,11 +1300,16 @@ msgid "" "otherwise change the corresponding entry manually in the generated Bank " "Statement." msgstr "" +"\n" +" Extrato bancário '% s' linha '% s':\n" +" Não há nota fiscal correspondente à comunicação estruturada '% s'.\n" +" Verifique e ajuste a fatura e realizar a importação novamente ou " +"alterar a entrada correspondente manualmente no extrato bancário gerado." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_065 msgid "Interest payment advice" -msgstr "" +msgstr "Aviso de pagamento de juros" #. module: l10n_be_coda #: field:account.coda.trans.code,type:0 @@ -1228,22 +1317,22 @@ msgstr "" #: field:coda.bank.statement,type:0 #: field:coda.bank.statement.line,type:0 msgid "Type" -msgstr "" +msgstr "Tipo" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_112 msgid "ATM payment (usually Eurocheque card)" -msgstr "" +msgstr "Pagamento ATM (geralmente cartão Eurocheque)" #. module: l10n_be_coda #: field:coda.bank.account,description1:0 msgid "Primary Account Description" -msgstr "" +msgstr "Primário Descrição da Conta" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_126 msgid "Term investments" -msgstr "" +msgstr "Investimentos de longo prazo" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_100 @@ -1251,116 +1340,119 @@ msgid "" "(SEPA) payment with a structured format communication applying the ISO " "standard 11649: Structured creditor reference to remittan" msgstr "" +"(SEPA) o pagamento de uma comunicação formato estruturado aplicação da norma " +"ISO 11649: referência credor estruturado para remittan" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_100 msgid "Gross amount" -msgstr "" +msgstr "Valor bruto" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_62 msgid "Reversal of cheques" -msgstr "" +msgstr "Reversão de cheques" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_64 #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_41_13 #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_41_64 msgid "Intracompany" -msgstr "" +msgstr "Intracompany" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_01 msgid "Spot purchase of foreign exchange" -msgstr "" +msgstr "Local de compra de divisas" #. module: l10n_be_coda #: field:coda.bank.statement.line,val_date:0 msgid "Valuta Date" -msgstr "" +msgstr "Data do Crédito" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_429 msgid "Foreign Stock Exchange tax" -msgstr "" +msgstr "Exterior Bolsa de Valores de Imposto" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_05 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_54 msgid "Reimbursement" -msgstr "" +msgstr "Reembolso" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:869 #, python-format msgid "None" -msgstr "" +msgstr "Ningún" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_405 msgid "Bill guarantee commission" -msgstr "" +msgstr "Bill comissão de Garantia" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_06 msgid "Extension" -msgstr "" +msgstr "Extensão" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_008 msgid "Identification of the de ultimate beneficiary/creditor (SEPA SCT/SDD)" -msgstr "" +msgstr "Identificação do final de beneficiário / credor (SEPA SCT / SDD)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_49 msgid "Foreign counter transactions" -msgstr "" +msgstr "Operações de balcão no exterior" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_01 msgid "Cash withdrawal" -msgstr "" +msgstr "Retirada de dinheiro" #. module: l10n_be_coda #: field:coda.bank.statement.line,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Parceiro" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_37 msgid "" "Fixed right, either one-off or periodical; for details, see \"categories\"" msgstr "" +"Direito fixo, ou one-off ou periódico, para mais detalhes, ver \"categorias\"" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_05 msgid "Loading Proton" -msgstr "" +msgstr "Carga Proton" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_21 msgid "Pay-packet charges" -msgstr "" +msgstr "Acusações de pacotes de pay-" #. module: l10n_be_coda #: field:coda.bank.account,transfer_account:0 msgid "Default Internal Transfer Account" -msgstr "" +msgstr "Padrão Conta Transferência Interna" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_074 msgid "Mailing costs" -msgstr "" +msgstr "Custos de envio" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_07 msgid "Unpaid foreign bill" -msgstr "" +msgstr "Projeto de lei estrangeira não remunerado" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_07 msgid "Payment by GSM" -msgstr "" +msgstr "Pagamento por GSM" #. module: l10n_be_coda #: view:coda.bank.account:0 @@ -1368,29 +1460,29 @@ msgstr "" #: view:coda.bank.statement:0 #: selection:coda.bank.statement,type:0 msgid "Normal" -msgstr "" +msgstr "Normal" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_50 msgid "Credit after collection" -msgstr "" +msgstr "Crédito após a coleta" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_80 msgid "Separately charged costs and provisions" -msgstr "" +msgstr "Custos cobrados separadamente e provisões" #. module: l10n_be_coda #: view:coda.bank.account:0 #: field:coda.bank.account,currency:0 #: field:coda.bank.statement,currency:0 msgid "Currency" -msgstr "" +msgstr "Moeda" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_06 msgid "Extension of maturity date" -msgstr "" +msgstr "Extensão da data de vencimento" #. module: l10n_be_coda #: field:coda.bank.account,def_receivable:0 @@ -1400,17 +1492,17 @@ msgstr "Conta de Recebimento padrão" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_15 msgid "Night safe" -msgstr "" +msgstr "Seguro noite" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Total Amount" -msgstr "" +msgstr "Valor Total" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_214 msgid "Issue commission (delivery order)" -msgstr "" +msgstr "Comissão de emissão (de entrega)" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_13_07 @@ -1418,37 +1510,39 @@ msgid "" "Often by standing order or direct debit. In case of direct debit, family 13 " "is used." msgstr "" +"Muitas vezes, por ordem ou de débito directo em pé. Em caso de débito " +"directo, a família 13 é usado." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_01 msgid "Loading a GSM card" -msgstr "" +msgstr "Carregar um cartão GSM" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_021 msgid "Costs for drawing up a bank cheque" -msgstr "" +msgstr "Os custos para a elaboração de um cheque bancário" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_026 msgid "Handling commission" -msgstr "" +msgstr "Manipulação de comissão" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_201 msgid "Advice notice commission" -msgstr "" +msgstr "Assessoria de Comunicação da Comissão" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_64 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_64 msgid "Warrant" -msgstr "" +msgstr "Garantia" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_07 msgid "Unpaid commercial paper" -msgstr "" +msgstr "Papel comercial não remunerado" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:121 @@ -1466,22 +1560,22 @@ msgstr "" #: code:addons/l10n_be_coda/wizard/account_coda_import.py:499 #, python-format msgid "Data Error!" -msgstr "" +msgstr "Erro de dados!" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_010 msgid "Information pertaining to sale or purchase of securities" -msgstr "" +msgstr "Informações relativas à venda ou compra de valores mobiliários" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_54 msgid "Your payment ATM" -msgstr "" +msgstr "Seu ATM pagamento" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_123 msgid "Fees and commissions" -msgstr "" +msgstr "Taxas e comissões" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:690 @@ -1490,16 +1584,18 @@ msgid "" "Free Communication:\n" " %s" msgstr "" +"Free Communication:\n" +" %s" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_15 msgid "Purchase of an international bank cheque" -msgstr "" +msgstr "Compra de um cheque bancário internacional" #. module: l10n_be_coda #: field:coda.bank.account,coda_st_naming:0 msgid "Bank Statement Naming Policy" -msgstr "" +msgstr "Declaração Bancária Politica Naming" #. module: l10n_be_coda #: field:coda.bank.statement,date:0 @@ -1511,17 +1607,17 @@ msgstr "Data" #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_39 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_89 msgid "Undefined transaction" -msgstr "" +msgstr "Transação Undefined" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Extended Filters..." -msgstr "" +msgstr "Filtros estendidas ..." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_06 msgid "Costs chargeable to the remitter" -msgstr "" +msgstr "Os custos a cargo do remetente" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_205 @@ -1529,41 +1625,43 @@ msgid "" "Documentary payment commission | Document commission | Drawdown fee | " "Negotiation fee" msgstr "" +"Taxa de Negociação | pagamento de comissão Documentário | Comitê Documento | " +"taxa de rebaixamento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_60 msgid "Settlement of mortgage loan" -msgstr "" +msgstr "Liquidação de empréstimo hipotecário" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_01 msgid "Purchase of securities" -msgstr "" +msgstr "Compra de títulos" #. module: l10n_be_coda #: field:account.coda,note:0 msgid "Import Log" -msgstr "" +msgstr "Importar Log" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_07 msgid "Domestic commercial paper" -msgstr "" +msgstr "O papel comercial doméstico" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_034 msgid "Reinvestment fee" -msgstr "" +msgstr "Taxa de reinvestimento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_12 msgid "Costs for opening a bank guarantee" -msgstr "" +msgstr "Os custos para a abertura de uma garantia bancária" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_414 msgid "Regularisation charges" -msgstr "" +msgstr "Acusações de regularização" #. module: l10n_be_coda #: view:coda.bank.statement:0 @@ -1571,37 +1669,38 @@ msgstr "" #: model:ir.actions.act_window,name:l10n_be_coda.act_account_bank_statement_goto_coda_bank_statement #: model:ir.model,name:l10n_be_coda.model_coda_bank_statement msgid "CODA Bank Statement" -msgstr "" +msgstr "CODA extrato bancário" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_15 msgid "Your repayment hire-purchase and similar claims" msgstr "" +"Seu reembolso de aluguer com opção de compra e reivindicações semelhantes" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_62 msgid "Reversal of cheque" -msgstr "" +msgstr "Reversão de cheque" #. module: l10n_be_coda #: field:account.coda.trans.code,code:0 msgid "Code" -msgstr "" +msgstr "Código" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_032 msgid "Drawing up a circular cheque" -msgstr "" +msgstr "Elaboração de um cheque circular" #. module: l10n_be_coda #: view:coda.bank.statement:0 msgid "Seq" -msgstr "" +msgstr "Seq" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_52 msgid "Payment night safe" -msgstr "" +msgstr "Pagamento seguro noite" #. module: l10n_be_coda #: model:ir.actions.act_window,name:l10n_be_coda.act_coda_bank_statement_goto_account_bank_statement @@ -1612,17 +1711,17 @@ msgstr "Extrato bancário" #. module: l10n_be_coda #: field:coda.bank.statement.line,counterparty_name:0 msgid "Counterparty Name" -msgstr "" +msgstr "Nome contraparte" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_006 msgid "Various fees/commissions" -msgstr "" +msgstr "Várias taxas / comissões" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_209 msgid "Transfer commission" -msgstr "" +msgstr "Transferência de comissão" #. module: l10n_be_coda #: view:account.coda.import:0 @@ -1632,13 +1731,13 @@ msgstr "Cancelar" #. module: l10n_be_coda #: selection:coda.bank.statement.line,type:0 msgid "Information" -msgstr "" +msgstr "Informações" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_39 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_89 msgid "Cancellation of a transaction" -msgstr "" +msgstr "O cancelamento de uma transação" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_3 @@ -1646,82 +1745,85 @@ msgid "" "Simple amount with detailed data; e.g. in case of charges for cross-border " "credit transfers." msgstr "" +"Montante simples, com dados detalhados, por exemplo, no caso de taxas de " +"transferências bancárias transfronteiras." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_15 msgid "Your purchase of lottery tickets" -msgstr "" +msgstr "A compra de bilhetes de loteria" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_05 msgid "Collective payments of wages" -msgstr "" +msgstr "Pagamentos coletivos de salários" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_17 msgid "Collected for unsealed deposit of securities, and other parcels" msgstr "" +"Recolhidos para depósito de valores mobiliários sem lacre, e outras parcelas" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_004 msgid "Counterparty’s banker" -msgstr "" +msgstr "Banqueiro da contraparte" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_01 msgid "Payment of a foreign cheque" -msgstr "" +msgstr "Pagamento de um cheque estrangeiro" #. module: l10n_be_coda #: help:coda.bank.account,journal:0 msgid "Bank Journal for the Bank Statement" -msgstr "" +msgstr "Jornal banco para o extrato bancário" #. module: l10n_be_coda #: selection:coda.bank.statement.line,type:0 msgid "Globalisation" -msgstr "" +msgstr "Globalização" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_54 msgid "Fixed advance – capital and interest" -msgstr "" +msgstr "Antecedência fixa - capital e juros" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_11 msgid "Payment documents abroad" -msgstr "" +msgstr "Documentos de pagamento no exterior" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_09 msgid "" "Postage recouped to the debit of the customer (including forwarding charges)" -msgstr "" +msgstr "Selo recuperado para o débito do cliente (incluindo custos de envio)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_04 msgid "Costs for holding a documentary cash credit" -msgstr "" +msgstr "Os custos para a realização de um crédito em dinheiro documentário" #. module: l10n_be_coda #: field:coda.bank.statement,balance_start:0 msgid "Starting Balance" -msgstr "" +msgstr "Saldo Inicial" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_13 msgid "Settlement of bank acceptances" -msgstr "" +msgstr "A liquidação das aceitações banco" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_200 msgid "Overall documentary credit charges" -msgstr "" +msgstr "Taxas de crédito documentário geral" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_25 msgid "Renting of direct debit box" -msgstr "" +msgstr "Locação de caixa de débito directo" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_52 @@ -1729,6 +1831,8 @@ msgid "" "Payment of coupons from a deposit or settlement of coupons delivered over " "the counter - credit under usual reserve" msgstr "" +"Pagamento de cupons de um depósito ou pagamento de cupons entregues no " +"balcão - o crédito sob reserva habitual" #. module: l10n_be_coda #: help:coda.bank.statement.line,globalisation_level:0 @@ -1737,45 +1841,48 @@ msgid "" "globalisation of which this record is the first.\n" "The same code will be repeated at the end of the globalisation." msgstr "" +"O valor que é mencionado (1 a 9), define o nível de hierarquia do " +"globalização das quais este é o primeiro registo. \n" +"O mesmo código serão repetidos no final da globalização." #. module: l10n_be_coda #: field:coda.bank.account,description2:0 msgid "Secondary Account Description" -msgstr "" +msgstr "Secundária Descrição da Conta" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_211 msgid "Credit arrangement fee | Additional credit arrangement fee" -msgstr "" +msgstr "Taxa de arranjo de Crédito | taxa de arranjo adicional de crédito" #. module: l10n_be_coda #: view:coda.bank.statement:0 #: model:ir.actions.act_window,name:l10n_be_coda.action_coda_bank_statements #: model:ir.ui.menu,name:l10n_be_coda.menu_coda_bank_statements msgid "CODA Bank Statements" -msgstr "" +msgstr "CODA extratos bancários" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_62 msgid "Term loan" -msgstr "" +msgstr "Empréstimo a prazo" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_70 msgid "Sale of traveller’s cheque" -msgstr "" +msgstr "Venda de cheques de viagem" #. module: l10n_be_coda #: field:coda.bank.account,name:0 #: field:coda.bank.statement,name:0 msgid "Name" -msgstr "" +msgstr "Nome" #. module: l10n_be_coda #: view:account.coda:0 #: field:account.coda,coda_creation_date:0 msgid "CODA Creation Date" -msgstr "" +msgstr "CODA Data de criação" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:585 @@ -1785,27 +1892,30 @@ msgid "" "\n" "Unknown Error : " msgstr "" +"\n" +"Erro desconhecido: " #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_035 msgid "Charges foreign documentary bill" -msgstr "" +msgstr "Encargos conta documentário estrangeiro" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_39 msgid "Agios on guarantees given" -msgstr "" +msgstr "Agios de garantias prestadas" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_070 msgid "Forward arbitrage contracts : sum to be supplied by bank" msgstr "" +"Contratos de arbitragem para a frente: soma a ser fornecido pelo banco" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_56 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_56 msgid "Reserve" -msgstr "" +msgstr "Reserva" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_23 @@ -1813,11 +1923,13 @@ msgid "" "Costs charged for all kinds of research (information on past transactions, " "address retrieval, ...)" msgstr "" +"Custos cobrados para todos os tipos de pesquisa (informações sobre " +"transações passadas, recuperação de endereço, ...)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_14 msgid "Handling costs instalment credit" -msgstr "" +msgstr "Os custos de manuseio crédito parcelado" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_6 @@ -1827,26 +1939,30 @@ msgid "" "the detailed data. In that case, one will speak of a ‘separate application’. " "The records in a separate application keep type 6." msgstr "" +"Detalhe da 2. Montante simples, sem dados detalhados. Normalmente, este tipo " +"de dados vem depois do tipo 2. O cliente pode pedir um arquivo separado " +"contendo os dados detalhados. Nesse caso, ninguém vai falar de um " +"\"aplicativo separado. Os registros em um aplicativo separado manter tipo 6." #. module: l10n_be_coda #: view:account.coda:0 msgid "CODA Files" -msgstr "" +msgstr "Arquivos CODA" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_17 msgid "Financial centralisation" -msgstr "" +msgstr "Centralização financeira" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_404 msgid "Discount commission" -msgstr "" +msgstr "Comissão de desconto" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_45 msgid "Documentary credit charges" -msgstr "" +msgstr "Taxas de crédito documentário" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:911 @@ -1855,63 +1971,65 @@ msgid "" "\n" "Number of errors : " msgstr "" +"\n" +"Número de erros: " #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_22 msgid "Management/custody" -msgstr "" +msgstr "Gestão / custódia" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_51 msgid "Tender" -msgstr "" +msgstr "Tenro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_56 msgid "Non-presented certified cheques" -msgstr "" +msgstr "Cheques visados ​​não apresentadas" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_408 msgid "Cover commission" -msgstr "" +msgstr "Cubra comissão" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_071 msgid "Fixed loan advance - availability" -msgstr "" +msgstr "Antecedência empréstimo fixo - Disponibilidade" #. module: l10n_be_coda #: field:account.coda,name:0 #: field:account.coda.import,coda_fname:0 msgid "CODA Filename" -msgstr "" +msgstr "CODA Matrícula" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_31 msgid "E.g. for signing invoices" -msgstr "" +msgstr "Por exemplo, para assinar faturas" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_37 msgid "Various costs for possessing or using a payment card" -msgstr "" +msgstr "Vários custos para posse ou uso de um cartão de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_37 msgid "Costs related to commercial paper" -msgstr "" +msgstr "Os custos relacionados a papel comercial" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_043 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_07 msgid "Insurance costs" -msgstr "" +msgstr "Os custos do seguro" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_431 msgid "Delivery of a copy" -msgstr "" +msgstr "Entrega de uma cópia" #. module: l10n_be_coda #: help:coda.bank.account,transfer_account:0 @@ -1919,6 +2037,9 @@ msgid "" "Set here the default account that will be used for internal transfer between " "own bank accounts (e.g. transfer between current and deposit bank accounts)." msgstr "" +"Defina aqui a conta padrão que será utilizado para a transferência interna " +"entre contas bancárias próprias (por exemplo, transferência entre contas " +"correntes bancárias e depósito)." #. module: l10n_be_coda #: view:account.coda:0 @@ -1941,92 +2062,94 @@ msgid "" "\n" "System Error : " msgstr "" +"\n" +"Erro de sistema: " #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_60 msgid "Non-presented circular cheque" -msgstr "" +msgstr "Não apresentou cheque circular" #. module: l10n_be_coda #: field:coda.bank.statement,line_ids:0 msgid "CODA Bank Statement lines" -msgstr "" +msgstr "CODA linhas extrato bancário" #. module: l10n_be_coda #: sql_constraint:account.coda:0 msgid "This CODA has already been imported !" -msgstr "" +msgstr "Este CODA já foi importado!" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_19 msgid "Documentary import credits" -msgstr "" +msgstr "Créditos documentários de importação" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_001 msgid "Data concerning the counterparty" -msgstr "" +msgstr "Os dados relativos a contraparte" #. module: l10n_be_coda #: view:account.coda.comm.type:0 msgid "CODA Structured Communication Type" -msgstr "" +msgstr "CODA Structured Tipo de Comunicação" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_07 msgid "Contra-entry of a direct credit or of a discount" -msgstr "" +msgstr "Contrapartida de um crédito direto ou de um desconto" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_55 msgid "Interest term investment" -msgstr "" +msgstr "Investimento de longo prazo Juros" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_007 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_37 msgid "Access right to database" -msgstr "" +msgstr "Direito de acesso ao banco de dados" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_account_coda_trans_type msgid "CODA transaction type" -msgstr "" +msgstr "CODA tipo de transação" #. module: l10n_be_coda #: field:coda.bank.statement.line,account_id:0 msgid "Account" -msgstr "" +msgstr "Conta" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_17 msgid "Management fee" -msgstr "" +msgstr "Taxa de administração" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_37 msgid "Costs relating to the payment of a foreign bill" -msgstr "" +msgstr "Os custos relativos ao pagamento de uma conta externa" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_13 msgid "Eurocheque written out abroad" -msgstr "" +msgstr "Eurocheque escrito no exterior" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_13_01 msgid "Capital and/or interest (specified by the category)" -msgstr "" +msgstr "Capital e / ou juros (especificado pela categoria)" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Glob. Am." -msgstr "" +msgstr "Glob. Sou." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_17 msgid "Charge for safe custody" -msgstr "" +msgstr "Responsável pela custódia segura" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_102 @@ -2034,11 +2157,13 @@ msgid "" "Credit transfer or cash payment with reconstituted structured format " "communication" msgstr "" +"Transferência de crédito ou pagamento à vista com comunicação formato " +"estruturado reconstituído" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_86 msgid "Payment after cession" -msgstr "" +msgstr "Pagamento após cessão" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:140 @@ -2048,39 +2173,42 @@ msgid "" "CODA File with Filename '%s' and Creation Date '%s' has already been " "imported." msgstr "" +"\n" +"CODA arquivo com Nome do arquivo '% s' e Data de Criação '% s' já foi " +"importado." #. module: l10n_be_coda #: code:addons/l10n_be_coda/l10n_be_coda.py:303 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Inválido Ação!" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_14 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_14 msgid "Warrant fallen due" -msgstr "" +msgstr "Garante vencidos" #. module: l10n_be_coda #: model:ir.actions.act_window,name:l10n_be_coda.action_imported_coda_files #: model:ir.ui.menu,name:l10n_be_coda.menu_imported_coda_files msgid "Imported CODA Files" -msgstr "" +msgstr "Arquivos CODA importados" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_29 msgid "Charges collected for: - commercial information - sundry information" -msgstr "" +msgstr "Taxas cobradas para: - informações comerciais - Informações diversos" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_15 msgid "In case of subscription before the interest due date" -msgstr "" +msgstr "Em caso de inscrição antes da data de vencimento de juros" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_43 msgid "Foreign cheques" -msgstr "" +msgstr "Cheques estrangeiros" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:126 @@ -2090,56 +2218,60 @@ msgid "" "The CODA creation date doesn't fall within a defined Accounting Period.\n" "Please create the Accounting Period for date %s." msgstr "" +"\n" +"A data de criação CODA não se enquadra no período de contabilização " +"definido. \n" +"crie período contábil para a data% s." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_62 msgid "Sale of gold/pieces under usual reserve" -msgstr "" +msgstr "Venda de ouro / peças sob reserva habitual" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_51 msgid "The bank takes the initiative for crediting the customer’s account." -msgstr "" +msgstr "O banco toma a iniciativa para crédito na conta do cliente." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_13_05 msgid "Full or partial reimbursement of a fixed advance at maturity date" -msgstr "" +msgstr "Reembolso total ou parcial de um avanço fixo na data de vencimento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_26 msgid "Travel insurance premium" -msgstr "" +msgstr "Prêmio de seguro de viagem" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_416 msgid "Charges for the deposit of security" -msgstr "" +msgstr "Encargos para o depósito de segurança" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_04 msgid "At home as well as abroad" -msgstr "" +msgstr "Em casa e no exterior" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_47_11 msgid "Bills of lading" -msgstr "" +msgstr "Conhecimentos de embarque" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_50 msgid "Remittance of commercial paper - credit after collection" -msgstr "" +msgstr "Remessa de papel comercial - o crédito após a coleta" #. module: l10n_be_coda #: view:coda.bank.statement:0 msgid "Search CODA Bank Statements" -msgstr "" +msgstr "Busca CODA extratos bancários" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_410 msgid "Reclamation charges" -msgstr "" +msgstr "Taxas de recuperação" #. module: l10n_be_coda #: model:ir.actions.act_window,help:l10n_be_coda.action_coda_bank_statements @@ -2149,38 +2281,42 @@ msgid "" "associated with a CODA contain the subset of the CODA Bank Statement data " "that is required for the creation of the Accounting Entries." msgstr "" +"Os extratos bancários CODA conter a informação codificada no seu arquivo de " +"origem CODA em um formato legível. Os extratos bancários associados a um " +"CODA conter o subconjunto dos dados extrato bancário CODA que é necessário " +"para a criação dos lançamentos contábeis." #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_114 msgid "POS credit - individual transaction" -msgstr "" +msgstr "POS crédito - transação individual" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_70 msgid "Settlement of discount bank acceptance" -msgstr "" +msgstr "Liquidação de aceitação banco desconto" #. module: l10n_be_coda #: code:addons/l10n_be_coda/l10n_be_coda.py:114 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (copy)" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_02 #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_08 msgid "Eurozone = countries which have the euro as their official currency" -msgstr "" +msgstr "Países da zona do euro = que têm o euro como moeda oficial" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_02 msgid "The bank takes the initiative for debiting the customer’s account." -msgstr "" +msgstr "O banco toma a iniciativa de débito na conta do cliente." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_58 msgid "Reversal" -msgstr "" +msgstr "Reversão" #. module: l10n_be_coda #: view:coda.bank.account:0 @@ -2188,53 +2324,53 @@ msgstr "" #: view:coda.bank.statement:0 #: selection:coda.bank.statement,type:0 msgid "Info" -msgstr "" +msgstr "Informations" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_02 msgid "Costs relating to electronic output" -msgstr "" +msgstr "Os custos relativos à produção eletrônica" #. module: l10n_be_coda #: sql_constraint:account.coda.comm.type:0 msgid "The Structured Communication Code must be unique !" -msgstr "" +msgstr "O Código de comunicação estruturada deve ser único!" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_418 msgid "Endorsement commission" -msgstr "" +msgstr "Comissão de aval" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_005 msgid "Renting of letterbox" -msgstr "" +msgstr "Locação de caixa de correio" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:58 #, python-format msgid "Wizard in incorrect state. Please hit the Cancel button." -msgstr "" +msgstr "Assistente em estado incorreto. Por favor, clique no botão Cancel." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_13 msgid "Commission for renting a safe deposit box" -msgstr "" +msgstr "Comissão para alugar um cofre" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_39 msgid "To be used for issued circular cheques given in consignment" -msgstr "" +msgstr "Para ser usado para cheques circulares emitidas dadas em consignação" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_11 msgid "Securities" -msgstr "" +msgstr "Valores mobiliários" #. module: l10n_be_coda #: selection:coda.bank.statement.line,type:0 msgid "Free Communication" -msgstr "" +msgstr "Free Comunicação" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_2 @@ -2243,11 +2379,15 @@ msgid "" "credit transfers with a structured communication As a matter of principle, " "this type will also be used when no detailed data (type 6 or 7) is following." msgstr "" +"Saldo totalizados pelo banco, por exemplo: a quantidade total de uma série " +"de transferências de crédito com uma comunicação estruturada como uma " +"questão de princípio, este tipo também será usado quando há dados detalhados " +"(tipo 6 ou 7) está seguindo." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_033 msgid "Charges for a foreign bill" -msgstr "" +msgstr "Encargos de uma lei estrangeira" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:302 @@ -2257,11 +2397,13 @@ msgid "" "\n" "The File contains an invalid Structured Communication Type : %s." msgstr "" +"\n" +"O arquivo contém um inválido Structured Tipo de comunicação:% s." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_049 msgid "Fiscal stamps/stamp duty" -msgstr "" +msgstr "Selos fiscais / imposto de selo" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_03_58 @@ -2269,21 +2411,23 @@ msgid "" "Also for vouchers, postal orders, anything but bills of exchange, " "acquittances, promissory notes, etc." msgstr "" +"Também para vouchers, vales postais, qualquer coisa, mas letras de câmbio, " +"acquittances, notas promissórias, etc" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_06 msgid "Damage relating to bills and cheques" -msgstr "" +msgstr "Danos relacionados com títulos e cheques" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_09 msgid "Unpaid voucher" -msgstr "" +msgstr "Vale não remunerado" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_13 msgid "Unissued part (see 64)" -msgstr "" +msgstr "Parte Unissued (ver 64)" #. module: l10n_be_coda #: view:account.coda.import:0 @@ -2292,39 +2436,39 @@ msgstr "" #: model:ir.actions.act_window,name:l10n_be_coda.wizard_account_coda_import_2 #: model:ir.model,name:l10n_be_coda.model_account_coda_import msgid "Import CODA File" -msgstr "" +msgstr "Importar arquivo CODA" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:290 #: code:addons/l10n_be_coda/wizard/account_coda_import.py:483 #, python-format msgid "Transaction Code unknown, please consult your bank." -msgstr "" +msgstr "Transaction desconhecido Código, por favor, consultar o seu banco." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_014 msgid "Collection commission" -msgstr "" +msgstr "Colecção commission" #. module: l10n_be_coda #: view:account.coda.trans.type:0 msgid "CODA Transaction Type" -msgstr "" +msgstr "CODA Tipo de Transação" #. module: l10n_be_coda #: field:coda.bank.statement.line,globalisation_level:0 msgid "Globalisation Level" -msgstr "" +msgstr "Globalização Nível" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_020 msgid "Costs of physical delivery" -msgstr "" +msgstr "Os custos de entrega física" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_60 msgid "Sale of foreign bank notes" -msgstr "" +msgstr "Venda de notas estrangeiras" #. module: l10n_be_coda #: field:account.coda.import,note:0 @@ -2334,12 +2478,12 @@ msgstr "Log" #. module: l10n_be_coda #: view:account.coda:0 msgid "Search CODA Files" -msgstr "" +msgstr "De busca Arquivos de CODA" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_52 msgid "Remittance of commercial paper - credit under usual reserve" -msgstr "" +msgstr "Remessa de papel comercial - Crédito sob reserva habitual" #. module: l10n_be_coda #: help:coda.bank.account,active:0 @@ -2347,16 +2491,18 @@ msgid "" "If the active field is set to False, it will allow you to hide the Bank " "Account without removing it." msgstr "" +"Se o campo ativo é definido como False, ele permitirá que você esconda a " +"conta bancária sem removê-lo." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_54 msgid "Among other things advances or promissory notes" -msgstr "" +msgstr "Entre outras coisas, os avanços ou notas promissórias" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_10 msgid "Purchase of Smartcard" -msgstr "" +msgstr "Compra de Smartcard" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:665 @@ -2369,27 +2515,33 @@ msgid "" "Structured Communication Type: %s - %s\n" "Communication: %s" msgstr "" +"Tipo de transação:% s -% s \n" +"Família da transação:% s -% s \n" +"código de transação:% s -% s \n" +"categoria de transação:% s -% s \n" +"Structured Tipo de comunicação:% s -% s \n" +"Comunicação:% s" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_208 msgid "Commitment fee deferred payment" -msgstr "" +msgstr "Compromisso taxa de pagamento diferido" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_005 msgid "Data concerning the correspondent" -msgstr "" +msgstr "Os dados relativos ao correspondente" #. module: l10n_be_coda #: model:ir.ui.menu,name:l10n_be_coda.menu_account_coda msgid "CODA Processing" -msgstr "" +msgstr "CODA Processamento" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_19 msgid "" "Collected for securities, gold, pass-books, etc. placed in safe custody" -msgstr "" +msgstr "Coletado por títulos, ouro, passa-books, etc colocado sob custódia" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_09_19 @@ -2397,31 +2549,33 @@ msgid "" "Used in case of payments accepted under reserve of count, result of " "overcrediting" msgstr "" +"Usado em caso de pagamentos aceitos sob reserva de contagem, resultado de " +"overcrediting" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_09 msgid "Agio on supplier's bill" -msgstr "" +msgstr "Agio na conta do fornecedor" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_213 msgid "Financing fee" -msgstr "" +msgstr "Taxa de financiamento" #. module: l10n_be_coda #: field:coda.bank.account,active:0 msgid "Active" -msgstr "" +msgstr "Ativo" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_38 msgid "Provisionally unpaid" -msgstr "" +msgstr "Provisoriamente não remunerado" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_03 msgid "Subscription to securities" -msgstr "" +msgstr "Subscrição de valores mobiliários" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:194 @@ -2432,6 +2586,9 @@ msgid "" "Description' fields of your configuration record match with '%s', '%s' and " "'%s'." msgstr "" +"\n" +"Por favor verifique se o 'Bank Account Number', 'Hoje' e 'descrição da " +"conta' campos de seu jogo registro de configuração com '% s', '% s' e '% s'." #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_7 @@ -2439,23 +2596,25 @@ msgid "" "Detail of 2. Simple account with detailed data The records in a separate " "application keep type 7." msgstr "" +"Detalhe da 2. Conta simples, com dados detalhados os registros em um " +"aplicativo separado manter tipo 7." #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_125 #: model:account.coda.trans.code,description:l10n_be_coda.actcf_13 #: view:coda.bank.statement.line:0 msgid "Credit" -msgstr "" +msgstr "Crédito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_09 msgid "Counter transactions" -msgstr "" +msgstr "Operações de balcão" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_coda_bank_statement_line msgid "CODA Bank Statement Line" -msgstr "" +msgstr "CODA Banco Linha Declaração" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_17 @@ -2464,26 +2623,28 @@ msgid "" "In case of centralisation by the bank, type 2 will be allotted to this " "transaction. This total can be followed by the detailed movement." msgstr "" +"Em caso de centralização pelo banco, do tipo 2 será alocado para essa " +"transação. Este total pode ser seguido pelo movimento detalhado." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_057 msgid "Interest subsidy" -msgstr "" +msgstr "Bonificação de juros" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_41 msgid "International credit transfers - non-SEPA credit transfers" -msgstr "" +msgstr "Transferências internacionais - transferências de créditos não-SEPA" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_03_87 msgid "Overall amount, VAT included" -msgstr "" +msgstr "Montante global, IVA incluído" #. module: l10n_be_coda #: selection:coda.bank.statement.line,type:0 msgid "General" -msgstr "" +msgstr "Geral" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:857 @@ -2492,11 +2653,13 @@ msgid "" "\n" "Incorrect ending Balance in CODA Statement %s for Bank Account %s." msgstr "" +"\n" +"Incorreto saldo final em CODA Declaração% s para Conta Bancária% s." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_04 msgid "Issues" -msgstr "" +msgstr "Questões" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_37 @@ -2504,83 +2667,85 @@ msgid "" "If any, detail in the category (e.g. costs for presentation for acceptance, " "etc.)" msgstr "" +"Se qualquer detalhe, na categoria (por exemplo, os custos para a " +"apresentação ao aceite, etc)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_17 msgid "Purchase of fiscal stamps" -msgstr "" +msgstr "Compra de selos fiscais" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_01 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_50 msgid "Transfer" -msgstr "" +msgstr "Transferir" #. module: l10n_be_coda #: view:account.coda.import:0 msgid "View Bank Statement(s)" -msgstr "" +msgstr "Ver extrato bancário (s)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_20 msgid "Drawing up a certificate" -msgstr "" +msgstr "Elaboração de um certificado" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_013 msgid "Payment commission" -msgstr "" +msgstr "Comissão de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_01 msgid "" "Bills of exchange, acquittances, promissory notes; debit of the drawee" -msgstr "" +msgstr "Letras de câmbio, notas promissórias, acquittances; débito do sacado" #. module: l10n_be_coda #: view:account.coda.import:0 msgid "View CODA Bank Statement(s)" -msgstr "" +msgstr "Ver CODA Banco Statement (s)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_15 msgid "Your purchase bank cheque" -msgstr "" +msgstr "Sua compra cheque" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_05 msgid "Payment of voucher" -msgstr "" +msgstr "Pagamento de vale" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_68 msgid "Documentary export credits" -msgstr "" +msgstr "Créditos documentários de exportação" #. module: l10n_be_coda #: field:coda.bank.account,find_bbacom:0 msgid "Lookup Invoice" -msgstr "" +msgstr "Pesquisa fatura" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_03 msgid "Cheques" -msgstr "" +msgstr "Cheques" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_12 msgid "Safe custody" -msgstr "" +msgstr "Custódia" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_56 msgid "Unexecutable reimbursement" -msgstr "" +msgstr "Reembolso inexeqüível" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_03 msgid "Unpaid debt" -msgstr "" +msgstr "Dívida a pagar" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:193 @@ -2589,6 +2754,8 @@ msgid "" "\n" "No matching CODA Bank Account Configuration record found." msgstr "" +"\n" +"No Banco registro de configuração de conta correspondente CODA encontrado." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_52 @@ -2596,6 +2763,8 @@ msgid "" "First credit of cheques, vouchers, luncheon vouchers, postal orders, credit " "under usual reserve" msgstr "" +"Primeiro crédito de cheques, vales, cheques-refeição, vales postais, crédito " +"sob reserva habitual" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_05 @@ -2603,6 +2772,8 @@ msgid "" "Bill claimed back at the drawer's request (bill claimed back before maturity " "date)" msgstr "" +"Bill reclamado, a pedido da gaveta (projeto de lei reclamado antes da data " +"de vencimento)" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_11 @@ -2610,6 +2781,8 @@ msgid "" "Costs chargeable to clients who ask to have their correspondence kept at " "their disposal at the bank's counter" msgstr "" +"Custos imputáveis ​​aos clientes que pedem para ter sua correspondência " +"mantida a sua disposição no balcão do banco" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_64 @@ -2618,21 +2791,24 @@ msgid "" "underwriting or not); also used for the payment in full of partly-paid " "shares, see transaction 05" msgstr "" +"Valor pago ao emitente pelo banco responsável pela colocação (underwriting " +"firme ou não), também usado para o pagamento integral das ações parcialmente " +"pagos, consulte transação 05" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_03_15 msgid "Cheque drawn by the bank on itself, usually with charges." -msgstr "" +msgstr "Cheque elaborado pelo banco em si, geralmente com acusações." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_072 msgid "Countervalue of commission to third party" -msgstr "" +msgstr "Contravalor de comissão a terceiros" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_01 msgid "Individual transfer order" -msgstr "" +msgstr "Ordem de transferência Individual" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:165 @@ -2641,11 +2817,13 @@ msgid "" "\n" "Foreign bank accounts with IBAN structure are not supported." msgstr "" +"\n" +"Contas bancárias no exterior com estrutura IBAN não são suportados." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_02 msgid "Payment by means of a payment card within the Eurozone" -msgstr "" +msgstr "O pagamento por meio de cartão de pagamento na zona euro" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_01 @@ -2654,58 +2832,61 @@ msgid "" "the execution date of this transfer is in the future. Domestic payments as " "well as euro payments meeting the requirements." msgstr "" +"Transferência de crédito dado pelo cliente em papel ou eletronicamente, " +"mesmo que a data de execução dessa transferência é no futuro. Os pagamentos " +"domésticos, bem como pagamentos em euros atender aos requisitos." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_35 msgid "Closing (periodical settlements for interest, costs,…)" -msgstr "" +msgstr "Fechamento (assentamentos periódicos de juros, custos, ...)" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_019 msgid "Tax on physical delivery" -msgstr "" +msgstr "Imposto sobre a Entrega Física" #. module: l10n_be_coda #: field:coda.bank.statement,statement_id:0 msgid "Associated Bank Statement" -msgstr "" +msgstr "Extrato bancário associado" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_03_17 msgid "Amount of the cheque; if any, charges receive code 37" -msgstr "" +msgstr "Valor do cheque, se for o caso, os encargos receber o código 37" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_103 msgid "number (e.g. of the cheque, of the card, etc.)" -msgstr "" +msgstr "número (por exemplo, do controlo, do cartão, etc)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_24 msgid "Participation in and management of interest refund system" -msgstr "" +msgstr "Participação e gestão do sistema de bonificação de juros" #. module: l10n_be_coda #: view:coda.bank.statement:0 #: view:coda.bank.statement.line:0 msgid "Glob. Amount" -msgstr "" +msgstr "Glob. Quantidade" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_58 msgid "Payment by your branch/agents" -msgstr "" +msgstr "Pagamento por sua filial / agentes" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_25 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_70 msgid "Purchase of traveller’s cheque" -msgstr "" +msgstr "Compra de cheques de viagem" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_39 msgid "Your issue circular cheque" -msgstr "" +msgstr "Seu problema circular cheque" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_09 @@ -2713,6 +2894,8 @@ msgid "" "For professionals (stockbrokers) only, whoever the issuer may be (Belgian or " "foreigner)" msgstr "" +"Para profissionais (corretores), apenas, quem o emitente pode ser (belga ou " +"estrangeiro)" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_33 @@ -2721,27 +2904,30 @@ msgid "" "collecting, ordering funds). VAT excluded = type 0 VAT included = type 3 (at " "least 3 articles)" msgstr "" +"Os custos não especificado de outra forma, muitas vezes com uma comunicação " +"manual (por exemplo, para a coleta, ordenação de fundos). Sem IVA = tipo 0 " +"IVA incluído = tipo 3 (pelo menos 3 artigos)" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_023 msgid "Exercising fee" -msgstr "" +msgstr "Exercitando taxa" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_419 msgid "Bank service fee" -msgstr "" +msgstr "Banco taxa de serviço" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:932 #, python-format msgid "Import CODA File result" -msgstr "" +msgstr "Import resultado Arquivo CODA" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Search Bank Transactions" -msgstr "" +msgstr "Busca transações bancárias" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:579 @@ -2750,6 +2936,8 @@ msgid "" "\n" "Application Error : " msgstr "" +"\n" +"Erro de aplicativo: " #. module: l10n_be_coda #: help:coda.bank.account,description1:0 @@ -2758,69 +2946,73 @@ msgid "" "The Primary or Secondary Account Description should match the corresponding " "Account Description in the CODA file." msgstr "" +"O Primário ou Secundário Descrição da Conta deve coincidir com o " +"correspondente Descrição da Conta no arquivo CODA." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_13 msgid "Cash withdrawal by your branch or agents" -msgstr "" +msgstr "Retirada de dinheiro por seu ramo ou agentes" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_03 msgid "Cash withdrawal by card (ATM)" -msgstr "" +msgstr "Retirada de dinheiro através de cartão (ATM)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_16 msgid "Bank confirmation to revisor or accountant" -msgstr "" +msgstr "Confirmação bancária de revisor ou contador" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_04 msgid "Cards" -msgstr "" +msgstr "Cartões" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Statement" -msgstr "" +msgstr "Afirmação" #. module: l10n_be_coda #: view:account.coda.trans.type:0 #: model:ir.actions.act_window,name:l10n_be_coda.action_account_coda_trans_type_form #: model:ir.ui.menu,name:l10n_be_coda.menu_action_account_coda_trans_type_form msgid "CODA Transaction Types" -msgstr "" +msgstr "Tipos de transação CODA" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_50 msgid "Credit after a payment at a terminal" -msgstr "" +msgstr "Crédito após o pagamento de um terminal" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_02 msgid "Long-term loan" -msgstr "" +msgstr "Empréstimo de longo prazo" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_05 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_54 msgid "Capital and/or interest term investment" -msgstr "" +msgstr "Capital e / ou investimento de longo prazo interesse" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_68 msgid "Credit of a payment via electronic purse" -msgstr "" +msgstr "Crédito de um pagamento via bolsa eletrônica" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_028 msgid "Fidelity premium" -msgstr "" +msgstr "Fidelity prémio" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_39 msgid "Provisionally unpaid due to other reason than manual presentation" msgstr "" +"Provisoriamente não remunerado devido a outra razão que o manual de " +"apresentação" #. module: l10n_be_coda #: constraint:coda.bank.account:0 @@ -2830,6 +3022,10 @@ msgid "" "Configuration Error! \n" "The Bank Account Currency should match the Journal Currency !" msgstr "" +"\n" +"\n" +"Erro de configuração! \n" +"A Moeda de conta bancária deve corresponder ao Jornal Hoje!" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_35 @@ -2837,6 +3033,8 @@ msgid "" "Costs charged for calculating the amount of the tax to be paid (e.g. " "Fiscomat)." msgstr "" +"Custos cobrados para o cálculo do montante do imposto a ser pago (por " +"exemplo Fiscomat)." #. module: l10n_be_coda #: view:account.coda:0 @@ -2850,62 +3048,62 @@ msgstr "Empresa" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_52 msgid "Remittance of foreign cheque credit under usual reserve" -msgstr "" +msgstr "Remessa de verificação de crédito estrangeiro sob reserva habitual" #. module: l10n_be_coda #: field:coda.bank.statement.line,counterparty_number:0 msgid "Counterparty Number" -msgstr "" +msgstr "Número de contraparte" #. module: l10n_be_coda #: view:account.coda.import:0 msgid "_Import" -msgstr "" +msgstr "_import" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_03 msgid "See annexe III : communication 124" -msgstr "" +msgstr "Ver anexo III: Comunicação 124" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_037 msgid "Commission for handling charges" -msgstr "" +msgstr "Comissão de cargas de manipulação" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_113 msgid "ATM/POS debit" -msgstr "" +msgstr "ATM / POS débito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_03 msgid "Forward purchase of foreign exchange" -msgstr "" +msgstr "Termo de compra de divisas" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_50 msgid "Credit of a payment via terminal" -msgstr "" +msgstr "Crédito de um pagamento via terminal" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_52 msgid "Credit provider" -msgstr "" +msgstr "Provedor de crédito" #. module: l10n_be_coda #: selection:account.coda.trans.code,type:0 msgid "Transaction Family" -msgstr "" +msgstr "Família Transação" #. module: l10n_be_coda #: field:coda.bank.statement.line,ref:0 msgid "Reference" -msgstr "" +msgstr "Referência" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_68 msgid "In case coupons attached to a purchased security are missing" -msgstr "" +msgstr "No caso de cupons anexados a um título comprado faltam" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:58 @@ -2916,13 +3114,15 @@ msgstr "" #: code:addons/l10n_be_coda/wizard/account_coda_import.py:526 #, python-format msgid "Error!" -msgstr "" +msgstr "Erro!" #. module: l10n_be_coda #: help:coda.bank.statement,type:0 msgid "" "No Bank Statements are associated with CODA Bank Statements of type 'Info'." msgstr "" +"Não há extratos bancários estão associados com CODA extratos bancários do " +"tipo 'Info'." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_09_58 @@ -2930,67 +3130,69 @@ msgid "" "Takes priority over transaction 52 (hence a payment made by an agent in a " "night safe = 58 and not 52)" msgstr "" +"Tem prioridade sobre a operação de 52 (portanto, um pagamento feito por um " +"agente em uma noite segura = 58 e não 52)" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_121 msgid "Commercial bills" -msgstr "" +msgstr "Contas comerciais" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_11 msgid "Costs for the safe custody of correspondence" -msgstr "" +msgstr "Os custos para a guarda segura de correspondência" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_041 msgid "Credit card costs" -msgstr "" +msgstr "Custos de cartão de crédito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_56 msgid "Subsidy" -msgstr "" +msgstr "Subsídio" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_06 msgid "Payment with tank card" -msgstr "" +msgstr "Pagamento com cartão de tanque" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_107 msgid "Direct debit – DOM’80" -msgstr "" +msgstr "Débito directo - DOM'80" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_60 msgid "Reversal of voucher" -msgstr "" +msgstr "Reversão de vale" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_87 msgid "Costs refunded" -msgstr "" +msgstr "Os custos reembolsados" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_17 msgid "Financial centralisation (debit)" -msgstr "" +msgstr "Centralização financeira (débito)" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_02 msgid "Payment to the bank on maturity date" -msgstr "" +msgstr "Pagamento ao banco na data de vencimento" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_025 msgid "Individual entry for exchange charges" -msgstr "" +msgstr "Entrada individual para taxas de acusações" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_004 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_09 msgid "Postage" -msgstr "" +msgstr "Postagem" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_09_50 @@ -2999,6 +3201,10 @@ msgid "" "also for mixed payments (cash + cheques) - not to be communicated to the " "clients; for payments made by a third person: see family 01" msgstr "" +"Por conta própria - o comentário para o cliente é dada na comunicação, " +"também para pagamentos mistos (caixa + cheques) - não devem ser comunicados " +"aos clientes, para os pagamentos feitos por uma terceira pessoa: ver a " +"família 01" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_09_68 @@ -3006,6 +3212,8 @@ msgid "" "In case of payment accepted under reserve of count; result of undercrediting " "- see also transaction 19" msgstr "" +"Em caso de pagamento aceites sob reserva de contagem, resultado de " +"undercrediting - ver também a transação 19" #. module: l10n_be_coda #: help:coda.bank.account,bank_id:0 @@ -3014,11 +3222,14 @@ msgid "" "The CODA import function will find its CODA processing parameters on this " "number." msgstr "" +"Número de Conta Bancária. \n" +"A função de importação CODA vai encontrar seus parâmetros de processamento " +"CODA neste número." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_05 msgid "Payment of wages, etc." -msgstr "" +msgstr "Pagamento de salários, etc" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:428 @@ -3030,48 +3241,53 @@ msgid "" " Please adjust the corresponding entry manually in the generated Bank " "Statement." msgstr "" +"\n" +" Extrato bancário '% s' linha '% s':\n" +" Nenhum registro sócio correspondente encontrado.\n" +" Por favor ajuste a entrada correspondente manualmente no extrato " +"bancário gerado." #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Debit" -msgstr "" +msgstr "Débito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_10 msgid "Renewal of agreed maturity date" -msgstr "" +msgstr "Renovação da data de vencimento acordado" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_55 msgid "Income from payments by GSM" -msgstr "" +msgstr "Receitas de pagamentos por GSM" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_19 msgid "Regularisation costs" -msgstr "" +msgstr "Custos de regularização" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_13 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_13 msgid "Transfer from your account" -msgstr "" +msgstr "Transferir da sua conta" #. module: l10n_be_coda #: sql_constraint:account.bank.statement.line.global:0 msgid "The code must be unique !" -msgstr "" +msgstr "O código deve ser único!" #. module: l10n_be_coda #: help:coda.bank.account,currency:0 #: help:coda.bank.statement,currency:0 msgid "The currency of the CODA Bank Statement" -msgstr "" +msgstr "A moeda do extrato bancário CODA" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_07 msgid "Collective transfers" -msgstr "" +msgstr "Transferências coletivas" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:117 @@ -3080,16 +3296,18 @@ msgid "" "\n" "CODA V%s statements are not supported, please contact your bank." msgstr "" +"\n" +"Declarações CODA V% s não são suportadas, por favor contacte o seu banco." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_018 msgid "Tental guarantee charges" -msgstr "" +msgstr "Custos de garantia Tental" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_427 msgid "Belgian Stock Exchange tax" -msgstr "" +msgstr "Belga Stock Exchange fiscal" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:438 @@ -3098,6 +3316,8 @@ msgid "" "\n" "Movement data records of type 2.%s are not supported." msgstr "" +"\n" +"Registros de dados de movimento do tipo 2.%s não são suportados." #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:510 @@ -3107,26 +3327,29 @@ msgid "" "CODA parsing error on information data record 3.2, seq nr %s.\n" "Please report this issue via your OpenERP support channel." msgstr "" +"\n" +"Erro de análise CODA em informações de dados de registro 3.2, seq nr% s. \n" +"favor relate este problema através de seu canal de suporte OpenERP." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_001 msgid "Interest received" -msgstr "" +msgstr "Juros recebidos" #. module: l10n_be_coda #: model:ir.ui.menu,name:l10n_be_coda.menu_account_coda_import msgid "Import CODA Files" -msgstr "" +msgstr "Importar arquivos CODA" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_105 msgid "original amount of the transaction" -msgstr "" +msgstr "valor original da transação" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_09 msgid "Your semi-standing order" -msgstr "" +msgstr "Seu pedido semi-standing" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:406 @@ -3140,32 +3363,38 @@ msgid "" "otherwise change the corresponding entry manually in the generated Bank " "Statement." msgstr "" +"\n" +" Extrato bancário '% s' linha '% s':\n" +" Nenhum registro parceiro atribuído: Existem vários parceiros com o " +"mesmo Número de Conta Bancária '% s'.\n" +" Por favor, corrija a configuração e realizar a importação novamente " +"ou alterar a entrada correspondente manualmente no extrato bancário gerado." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_09 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_70 msgid "Settlement of securities" -msgstr "" +msgstr "Liquidação de títulos" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_01 msgid "Debit customer who is loading" -msgstr "" +msgstr "Débito cliente que está a carregar" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_047 msgid "Charges extension bill" -msgstr "" +msgstr "Encargos projeto de extensão" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_18 msgid "Trade information" -msgstr "" +msgstr "Informação comercial" #. module: l10n_be_coda #: field:account.coda.trans.code,comment:0 msgid "Comment" -msgstr "" +msgstr "Comentar" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_203 @@ -3173,31 +3402,34 @@ msgid "" "Confirmation fee | Additional confirmation fee | Commitment fee | Flat fee | " "Confirmation reservation commission | Additional reservation commission" msgstr "" +"Taxa de confirmação | Taxa de confirmação adicionais | Taxa de Compromisso | " +"Tarifa plana | comissão de reserva de confirmação | comissão adicional de " +"reserva" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_027 msgid "Charges for unpaid bills" -msgstr "" +msgstr "Encargos de contas a pagar" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_204 msgid "Amendment fee" -msgstr "" +msgstr "Taxa de alteração" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_11 msgid "Your semi-standing order – payment to employees" -msgstr "" +msgstr "Seu pedido semi-standing - O pagamento aos empregados" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_66 msgid "For professionals such as insurances and stockbrokers" -msgstr "" +msgstr "Para os profissionais, tais como seguros e corretores" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_11 msgid "Your repayment mortgage loan" -msgstr "" +msgstr "Seu reembolso do empréstimo hipotecário" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_37 @@ -3210,17 +3442,17 @@ msgstr "" #: model:account.coda.trans.code,description:l10n_be_coda.actcc_35_37 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_35 msgid "Costs" -msgstr "" +msgstr "Custos" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_050 msgid "Capital term investment" -msgstr "" +msgstr "Investimento de longo prazo Capital" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_03_05 msgid "Payment of holiday pay, etc." -msgstr "" +msgstr "Pagamento de subsídio de férias, etc" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_25 @@ -3228,12 +3460,14 @@ msgid "" "Commission for the renting of boxes put at the disposal for the " "correspondence" msgstr "" +"Comissão para a locação de caixas colocados à disposição para a " +"correspondência" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_008 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_29 msgid "Information charges" -msgstr "" +msgstr "Encargos de informação" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_03 @@ -3241,6 +3475,8 @@ msgid "" "Credit transfer for which the order has been given once and which is carried " "out again at regular intervals without any change." msgstr "" +"Transferência de crédito para o qual tem sido dada a ordem de uma vez e que " +"é levada a cabo de novo a intervalos regulares, sem qualquer alteração." #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_0 @@ -3248,74 +3484,77 @@ msgid "" "Simple amount without detailed data; e.g. : an individual credit transfer " "(free of charges)." msgstr "" +"Montante simples, sem dados detalhados, por exemplo: uma transferência de " +"crédito individual (livre de taxas)." #. module: l10n_be_coda #: help:coda.bank.account,find_partner:0 msgid "Partner lookup via Bank Account Number." -msgstr "" +msgstr "Parceiro de pesquisa via Número de Conta Bancária." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_403 msgid "Minimum discount rate" -msgstr "" +msgstr "Taxa de desconto mínima" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_56 msgid "Remittance of guaranteed foreign supplier's bill" -msgstr "" +msgstr "Remessa de conta garantida do fornecedor estrangeiro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_02 msgid "Tenders" -msgstr "" +msgstr "As propostas" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_07 msgid "Unpaid foreign cheque" -msgstr "" +msgstr "Unpaid estrangeiro cheque" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_03 msgid "" "Bonds, shares, tap issues of CDs, with or without payment of interest, etc." msgstr "" +"Títulos, ações, emissão contínua de CDs, com ou sem pagamento de juros, etc" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_66 msgid "Repurchase of petrol coupons" -msgstr "" +msgstr "Recompra de cupons de gasolina" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_058 msgid "Capital premium" -msgstr "" +msgstr "Capital prémio" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_15 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_62 msgid "Interim interest on subscription" -msgstr "" +msgstr "Juros sobre assinatura" #. module: l10n_be_coda #: field:coda.bank.statement.line,counterparty_currency:0 msgid "Counterparty Currency" -msgstr "" +msgstr "Moeda contraparte" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_202 msgid "Advising commission | Additional advising commission" -msgstr "" +msgstr "Assessoria comissão | comissão aconselhando Adicionais" #. module: l10n_be_coda #: field:coda.bank.account,find_partner:0 msgid "Lookup Partner" -msgstr "" +msgstr "Pesquisa Sócio" #. module: l10n_be_coda #: view:coda.bank.statement:0 #: view:coda.bank.statement.line:0 msgid "Glob. Id" -msgstr "" +msgstr "Glob. Id" #. module: l10n_be_coda #: view:coda.bank.statement:0 @@ -3323,12 +3562,12 @@ msgstr "" #: model:ir.actions.act_window,name:l10n_be_coda.action_coda_bank_statement_line #: model:ir.ui.menu,name:l10n_be_coda.coda_bank_statement_line msgid "CODA Statement Lines" -msgstr "" +msgstr "CODA Declaração Lines" #. module: l10n_be_coda #: field:coda.bank.statement.line,globalisation_amount:0 msgid "Globalisation Amount" -msgstr "" +msgstr "Globalização Valor" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_13 @@ -3336,6 +3575,8 @@ msgid "" "Transfer from one account to another account of the same customer at the " "bank's or the customer's initiative (intracompany)." msgstr "" +"Transferir de uma conta para outra conta do mesmo cliente no banco ou " +"iniciativa do cliente (intracompany)." #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:891 @@ -3344,6 +3585,8 @@ msgid "" "\n" "Error ! " msgstr "" +"\n" +"Erro! " #. module: l10n_be_coda #: view:account.coda:0 @@ -3354,40 +3597,40 @@ msgstr "Usuário" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_account_coda_trans_code msgid "CODA transaction code" -msgstr "" +msgstr "Código de transação CODA" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_52 msgid "Credit under usual reserve" -msgstr "" +msgstr "Crédito com reserva de costume" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_50 msgid "Except Proton" -msgstr "" +msgstr "Exceto Proton" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_011 msgid "Information pertaining to coupons" -msgstr "" +msgstr "Informações referentes a cupons" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_122 msgid "Bills - calculation of interest" -msgstr "" +msgstr "Bills - cálculo dos juros" #. module: l10n_be_coda #: view:account.coda.trans.code:0 #: model:ir.actions.act_window,name:l10n_be_coda.action_account_coda_trans_code_form #: model:ir.ui.menu,name:l10n_be_coda.menu_action_account_coda_trans_code_form msgid "CODA Transaction Codes" -msgstr "" +msgstr "CODA Transação Códigos" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_053 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_43 msgid "Printing of forms" -msgstr "" +msgstr "Impressão dos formulários" #. module: l10n_be_coda #: help:coda.bank.account,state:0 @@ -3395,16 +3638,18 @@ msgid "" "No Bank Statements will be generated for CODA Bank Statements from Bank " "Accounts of type 'Info'." msgstr "" +"Não há extratos bancários serão gerados para CODA extratos bancários de " +"contas bancárias do tipo 'Info'." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_49_03 msgid "ATM withdrawal" -msgstr "" +msgstr "Saque em caixa eletrônico" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_012 msgid "Exchange commission" -msgstr "" +msgstr "Exchange Commission" #. module: l10n_be_coda #: view:coda.bank.account:0 @@ -3412,12 +3657,12 @@ msgstr "" #: model:ir.model,name:l10n_be_coda.model_coda_bank_account #: model:ir.ui.menu,name:l10n_be_coda.menu_action_coda_bank_account_form msgid "CODA Bank Account Configuration" -msgstr "" +msgstr "CODA Configuração de Conta Bancária" #. module: l10n_be_coda #: field:account.bank.statement.line.global,coda_statement_line_ids:0 msgid "CODA Bank Statement Lines" -msgstr "" +msgstr "CODA extrato bancário Lines" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:725 @@ -3432,56 +3677,65 @@ msgid "" "Structured Communication Type: %s - %s\n" "Communication: %s" msgstr "" +"Nome do parceiro:% s \n" +"Parceiro Número de Conta:% s \n" +"tipo de transação:% s -% s \n" +"Família da transação:% s -% s \n" +"código de transação:% s -% s \n" +"categoria de transação:% s -% s \n" +"Structured Tipo de comunicação:% s -% s \n" +"Comunicação:% s" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_04 msgid "Cash withdrawal from an ATM" -msgstr "" +msgstr "Retirada de dinheiro de um caixa eletrônico" #. module: l10n_be_coda #: field:coda.bank.statement,balance_end:0 msgid "Balance" -msgstr "" +msgstr "Saldo" #. module: l10n_be_coda #: field:account.bank.statement,coda_statement_id:0 msgid "Associated CODA Bank Statement" -msgstr "" +msgstr "Associated CODA extrato bancário" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_37 msgid "Credit-related costs" -msgstr "" +msgstr "Custos relacionados com o crédito" #. module: l10n_be_coda #: model:ir.ui.menu,name:l10n_be_coda.menu_manage_coda msgid "CODA Configuration" -msgstr "" +msgstr "CODA Configuração" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_39 msgid "Debit of the drawer after credit under usual reserve or discount" msgstr "" +"Débito da gaveta depois de crédito sob reserva ou desconto de costume" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_66 msgid "Financial centralisation (credit)" -msgstr "" +msgstr "Centralização financeira (crédito)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_08 msgid "Payment in advance" -msgstr "" +msgstr "Pagamento adiantado" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_37 msgid "Cheque-related costs" -msgstr "" +msgstr "Cheque os custos relacionados" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_19 msgid "Special charge for safe custody" -msgstr "" +msgstr "Encargo especial para custódia" #. module: l10n_be_coda #: sql_constraint:coda.bank.account:0 @@ -3489,16 +3743,18 @@ msgid "" "The combination of Bank Account, Account Description and Currency must be " "unique !" msgstr "" +"A combinação de Conta Bancária, Descrição da Conta e moeda deve ser único!" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_01 msgid "Payment of your cheque" -msgstr "" +msgstr "O pagamento do cheque" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_43_07 msgid "Foreign cheque remitted for collection that returns unpaid" msgstr "" +"Verificação externa remetidos para a coleta que retorna não remunerado" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_07 @@ -3506,6 +3762,8 @@ msgid "" "- insurance costs of account holders against fatal accidents - passing-on of " "several insurance costs" msgstr "" +"- Os custos de seguros de correntistas contra acidentes fatais - passando-on " +"de vários custos de seguros" #. module: l10n_be_coda #: help:coda.bank.account,awaiting_account:0 @@ -3513,38 +3771,42 @@ msgid "" "Set here the default account that will be used if the partner cannot be " "unambiguously identified." msgstr "" +"Defina aqui a conta padrão que será utilizada se o parceiro não pode ser " +"inequivocamente identificados." #. module: l10n_be_coda #: code:addons/l10n_be_coda/l10n_be_coda.py:284 #, python-format msgid "No CODA Bank Statement found for this Bank Statement!" -msgstr "" +msgstr "No CODA extrato bancário encontrado para este extrato bancário!" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_07 msgid "Definitely unpaid cheque" -msgstr "" +msgstr "Verificação definitivamente não remunerado" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_08 msgid "Payment by means of a payment card outside the Eurozone" -msgstr "" +msgstr "O pagamento por meio de cartão de pagamento fora da zona euro" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_106 msgid "" "Method of calculation (VAT, withholding tax on income, commission, etc.)" msgstr "" +"Método de cálculo (IVA, imposto retido na fonte sobre os rendimentos, " +"comissões, etc)" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_account_coda_comm_type msgid "CODA structured communication type" -msgstr "" +msgstr "CODA tipo de comunicação estruturado" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_64 msgid "Reversal of settlement of credit card" -msgstr "" +msgstr "Reversão de liquidação de cartão de crédito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_58 @@ -3552,6 +3814,8 @@ msgid "" "Repayable securities from a deposit or delivered at the counter - credit " "under usual reserve" msgstr "" +"Títulos reembolsáveis ​​provenientes de um depósito ou entregues no balcão - " +"crédito sob reserva habitual" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_5 @@ -3560,6 +3824,9 @@ msgid "" "ask for detailed data to be included into his file after the overall record " "(type 1)." msgstr "" +"Detalhe da 1. O procedimento padrão é nenhum detalhamento. No entanto, o " +"cliente pode pedir dados detalhados a serem incluídos em seu arquivo após o " +"registro geral (tipo 1)." #. module: l10n_be_coda #: field:account.coda.comm.type,description:0 @@ -3567,63 +3834,65 @@ msgstr "" #: field:account.coda.trans.code,description:0 #: field:account.coda.trans.type,description:0 msgid "Description" -msgstr "" +msgstr "Descrição" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_01 msgid "Payment commercial paper" -msgstr "" +msgstr "Papel comercial de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_425 msgid "Foreign broker's commission" -msgstr "" +msgstr "Comissão do corretor estrangeiro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_37 msgid "Costs relating to outgoing foreign transfers and non-SEPA transfers" msgstr "" +"Os custos relativos a transferências externas de saída e transferências não-" +"SEPA" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_17 msgid "Your certified cheque" -msgstr "" +msgstr "Seu cheque" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_400 msgid "Acceptance fee" -msgstr "" +msgstr "Taxa de aceitação" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_52 msgid "Payment by a third person" -msgstr "" +msgstr "Pagamento por uma terceira pessoa" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_68 msgid "Compensation for missing coupon" -msgstr "" +msgstr "Compensação por falta de cupão" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Debit Transactions." -msgstr "" +msgstr "As transações de débito." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_33 msgid "Miscellaneous fees and commissions" -msgstr "" +msgstr "Diversos taxas e comissões" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_03 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_03 msgid "Standing order" -msgstr "" +msgstr "Ordem permanente" #. module: l10n_be_coda #: selection:coda.bank.statement.line,type:0 msgid "Customer" -msgstr "" +msgstr "Cliente" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:422 @@ -3636,6 +3905,11 @@ msgid "" "otherwise change the corresponding entry manually in the generated Bank " "Statement." msgstr "" +"\n" +" Extrato bancário '% s' linha '% s':\n" +" A conta bancária '% s' não está definido para o parceiro de '% s'.\n" +" Por favor, corrija a configuração e realizar a importação novamente " +"ou alterar a entrada correspondente manualmente no extrato bancário gerado." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_49 @@ -3667,7 +3941,7 @@ msgstr "" #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_49 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_99 msgid "Cancellation or correction" -msgstr "" +msgstr "Cancelamento ou correção" #. module: l10n_be_coda #: view:coda.bank.account:0 @@ -3676,54 +3950,54 @@ msgstr "" #: view:coda.bank.statement.line:0 #: field:coda.bank.statement.line,coda_bank_account_id:0 msgid "Bank Account" -msgstr "" +msgstr "Conta bancária" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_13_56 msgid "Interest or capital subsidy" -msgstr "" +msgstr "Interesse ou subsídio de capital" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Fin.Account" -msgstr "" +msgstr "Fin.Account" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_62 msgid "Unpaid postal order" -msgstr "" +msgstr "Vale postal não remunerado" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_428 msgid "Interest accrued" -msgstr "" +msgstr "Juros acumulados" #. module: l10n_be_coda #: field:account.coda.comm.type,code:0 msgid "Structured Communication Type" -msgstr "" +msgstr "Estruturado Tipo Comunicação" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_401 msgid "Visa charges" -msgstr "" +msgstr "Encargos Visa" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_210 msgid "Commitment fee" -msgstr "" +msgstr "Taxa de compromisso" #. module: l10n_be_coda #: view:account.coda.trans.category:0 #: model:ir.actions.act_window,name:l10n_be_coda.action_account_coda_trans_category_form #: model:ir.ui.menu,name:l10n_be_coda.menu_action_account_coda_trans_category_form msgid "CODA Transaction Categories" -msgstr "" +msgstr "CODA transação Categorias" #. module: l10n_be_coda #: field:coda.bank.statement.line,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Seqüência" #. module: l10n_be_coda #: view:account.coda.import:0 @@ -3734,24 +4008,24 @@ msgstr "Resultados:" #: field:coda.bank.statement,coda_id:0 #: model:ir.actions.act_window,name:l10n_be_coda.act_coda_bank_statement_goto_account_coda msgid "CODA Data File" -msgstr "" +msgstr "CODA Arquivo de Dados" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "CODA Statement Line" -msgstr "" +msgstr "CODA Linha Declaração" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_073 msgid "Costs of ATM abroad" -msgstr "" +msgstr "Custos da ATM no exterior" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_430 msgid "Recovery of foreign tax" -msgstr "" +msgstr "Recuperação de imposto estrangeiro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_01 msgid "Guarantee card charges" -msgstr "" +msgstr "Garantir taxas de cartão" diff --git a/addons/l10n_be_coda/i18n/ro.po b/addons/l10n_be_coda/i18n/ro.po index 4d876dbf0cc..69d1124cd7c 100644 --- a/addons/l10n_be_coda/i18n/ro.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:09+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/ru.po b/addons/l10n_be_coda/i18n/ru.po index fea46e82718..e1662026386 100644 --- a/addons/l10n_be_coda/i18n/ru.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:09+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sl.po b/addons/l10n_be_coda/i18n/sl.po index 487deda97c8..975e9563462 100644 --- a/addons/l10n_be_coda/i18n/sl.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:09+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sq.po b/addons/l10n_be_coda/i18n/sq.po index 8c5549080f7..be1431aea1d 100644 --- a/addons/l10n_be_coda/i18n/sq.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sr.po b/addons/l10n_be_coda/i18n/sr.po index 04e62e1738d..ccacc921390 100644 --- a/addons/l10n_be_coda/i18n/sr.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:09+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sr@latin.po b/addons/l10n_be_coda/i18n/sr@latin.po index 18fb2b4dd1c..17db0055ed9 100644 --- a/addons/l10n_be_coda/i18n/sr@latin.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:11+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sv.po b/addons/l10n_be_coda/i18n/sv.po index 27185a0a0ac..ddab671842e 100644 --- a/addons/l10n_be_coda/i18n/sv.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:09+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/tr.po b/addons/l10n_be_coda/i18n/tr.po index 9bb8f06fbe9..2b30f03e46a 100644 --- a/addons/l10n_be_coda/i18n/tr.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:10+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/vi.po b/addons/l10n_be_coda/i18n/vi.po index d7d83d91216..7bd55b35dc2 100644 --- a/addons/l10n_be_coda/i18n/vi.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:10+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/zh_CN.po b/addons/l10n_be_coda/i18n/zh_CN.po index 753c899a53e..09b2349a63a 100644 --- a/addons/l10n_be_coda/i18n/zh_CN.po +++ b/addons/l10n_be_coda/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: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:10+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/zh_TW.po b/addons/l10n_be_coda/i18n/zh_TW.po index 2860ed4fb94..18b47d6c99c 100644 --- a/addons/l10n_be_coda/i18n/zh_TW.po +++ b/addons/l10n_be_coda/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:10+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/wizard/account_coda_import.py b/addons/l10n_be_coda/wizard/account_coda_import.py index aed99345fba..aa9bf49b5a1 100644 --- a/addons/l10n_be_coda/wizard/account_coda_import.py +++ b/addons/l10n_be_coda/wizard/account_coda_import.py @@ -241,11 +241,11 @@ class account_coda_import(osv.osv_memory): if statement['debit'] == '1': # 1=Debit statement['balance_end_real'] = - statement['balance_end_real'] if statement['balance_end_realDate']: - period_id = self.pool.get('account.period').search(cr, uid, [('date_start', '<=', statement['balance_end_realDate']), ('date_stop', '>=', statement['balance_end_realDate'])]) + period_id = self.pool.get('account.period').search(cr, uid, [('company_id', '=', statement['journal_id'].company_id.id), ('date_start', '<=', statement['balance_end_realDate']), ('date_stop', '>=', statement['balance_end_realDate'])]) else: - period_id = self.pool.get('account.period').search(cr, uid, [('date_start', '<=', statement['date']), ('date_stop', '>=', statement['date'])]) + period_id = self.pool.get('account.period').search(cr, uid, [('company_id', '=', statement['journal_id'].company_id.id), ('date_start', '<=', statement['date']), ('date_stop', '>=', statement['date'])]) if not period_id and len(period_id) == 0: - raise osv.except_osv(_('Error') + 'R0002', _("The CODA Statement New Balance date doesn't fall within a defined Accounting Period! Please create the Accounting Period for date %s.") % statement['balance_end_realDate']) + raise osv.except_osv(_('Error') + 'R0002', _("The CODA Statement New Balance date doesn't fall within a defined Accounting Period! Please create the Accounting Period for date %s for the company %s.") % (statement['balance_end_realDate'], statement['journal_id'].company_id.name)) statement['period_id'] = period_id[0] elif line[0] == '9': statement['balanceMin'] = float(rmspaces(line[22:37])) / 1000 diff --git a/addons/l10n_be_hr_payroll/i18n/de.po b/addons/l10n_be_hr_payroll/i18n/de.po index f00e6100639..a064bb5ce00 100644 --- a/addons/l10n_be_hr_payroll/i18n/de.po +++ b/addons/l10n_be_hr_payroll/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: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/es.po b/addons/l10n_be_hr_payroll/i18n/es.po index c98bbcff392..137db898bd1 100644 --- a/addons/l10n_be_hr_payroll/i18n/es.po +++ b/addons/l10n_be_hr_payroll/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: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 @@ -148,3 +148,17 @@ msgstr "¡Error! No puede crear una jerarquia recursiva de empleado(s)." #: field:hr.contract,meal_voucher_employee_deduction:0 msgid "Check Value Meal - by worker " msgstr "Cheque de comida - por trabajador " + +#~ msgid "by Worker" +#~ msgstr "por trabajador" + +#~ msgid "Miscellaneous" +#~ msgstr "Miscelánea" + +#~ msgid "Error ! You cannot create recursive Hierarchy of Employees." +#~ msgstr "¡Error! No puede crear una jerarquía recursiva de empleados." + +#~ msgid "Error! contract start-date must be lower then contract end-date." +#~ msgstr "" +#~ "¡Error! La fecha de inicio del contrato debe ser anterior a la fecha de " +#~ "finalización." diff --git a/addons/l10n_be_hr_payroll/i18n/es_CR.po b/addons/l10n_be_hr_payroll/i18n/es_CR.po index 0f80ae9c582..6d50dd00bf1 100644 --- a/addons/l10n_be_hr_payroll/i18n/es_CR.po +++ b/addons/l10n_be_hr_payroll/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: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/pt.po b/addons/l10n_be_hr_payroll/i18n/pt.po index b4dbcf5d29f..cc967791e7a 100644 --- a/addons/l10n_be_hr_payroll/i18n/pt.po +++ b/addons/l10n_be_hr_payroll/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: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/pt_BR.po b/addons/l10n_be_hr_payroll/i18n/pt_BR.po index 9dd807d2bc0..4c10d5488ac 100644 --- a/addons/l10n_be_hr_payroll/i18n/pt_BR.po +++ b/addons/l10n_be_hr_payroll/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: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/sl.po b/addons/l10n_be_hr_payroll/i18n/sl.po index 5128ab4ed72..0b89373e90e 100644 --- a/addons/l10n_be_hr_payroll/i18n/sl.po +++ b/addons/l10n_be_hr_payroll/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: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/sr@latin.po b/addons/l10n_be_hr_payroll/i18n/sr@latin.po index 2b39f33f0b3..e410f4a4752 100644 --- a/addons/l10n_be_hr_payroll/i18n/sr@latin.po +++ b/addons/l10n_be_hr_payroll/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: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/tr.po b/addons/l10n_be_hr_payroll/i18n/tr.po index c50e3ee54c4..c5ac75c8805 100644 --- a/addons/l10n_be_hr_payroll/i18n/tr.po +++ b/addons/l10n_be_hr_payroll/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: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/zh_CN.po b/addons/l10n_be_hr_payroll/i18n/zh_CN.po index e753e1e1bb2..f543a364732 100644 --- a/addons/l10n_be_hr_payroll/i18n/zh_CN.po +++ b/addons/l10n_be_hr_payroll/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: 2013-06-24 04:43+0000\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll_account/__openerp__.py b/addons/l10n_be_hr_payroll_account/__openerp__.py index 7ba7caaa3e0..f9e078a0e49 100644 --- a/addons/l10n_be_hr_payroll_account/__openerp__.py +++ b/addons/l10n_be_hr_payroll_account/__openerp__.py @@ -32,6 +32,7 @@ Accounting Data for Belgian Payroll Rules. 'auto_install': True, 'demo': [], 'data':[ + 'l10n_be_wizard.yml', 'l10n_be_hr_payroll_account_data.xml', 'data/hr.salary.rule.csv', ], diff --git a/addons/l10n_be/l10n_be_wizard.yml b/addons/l10n_be_hr_payroll_account/l10n_be_wizard.yml similarity index 100% rename from addons/l10n_be/l10n_be_wizard.yml rename to addons/l10n_be_hr_payroll_account/l10n_be_wizard.yml diff --git a/addons/l10n_be_invoice_bba/i18n/ar.po b/addons/l10n_be_invoice_bba/i18n/ar.po index 2b1e5ae297b..7939e88fe38 100644 --- a/addons/l10n_be_invoice_bba/i18n/ar.po +++ b/addons/l10n_be_invoice_bba/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/es.po b/addons/l10n_be_invoice_bba/i18n/es.po index 3ffb5600311..09fa2eb1b54 100644 --- a/addons/l10n_be_invoice_bba/i18n/es.po +++ b/addons/l10n_be_invoice_bba/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/es_CR.po b/addons/l10n_be_invoice_bba/i18n/es_CR.po index 82126dcc1e9..1bbe6ddbc0b 100644 --- a/addons/l10n_be_invoice_bba/i18n/es_CR.po +++ b/addons/l10n_be_invoice_bba/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/fr.po b/addons/l10n_be_invoice_bba/i18n/fr.po index d094628251d..1e24449c5f2 100644 --- a/addons/l10n_be_invoice_bba/i18n/fr.po +++ b/addons/l10n_be_invoice_bba/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/nb.po b/addons/l10n_be_invoice_bba/i18n/nb.po index 9e0d8feaf1c..482c28107ec 100644 --- a/addons/l10n_be_invoice_bba/i18n/nb.po +++ b/addons/l10n_be_invoice_bba/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/nl.po b/addons/l10n_be_invoice_bba/i18n/nl.po index 4ae8df1fbcd..8c331a82531 100644 --- a/addons/l10n_be_invoice_bba/i18n/nl.po +++ b/addons/l10n_be_invoice_bba/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/nl_BE.po b/addons/l10n_be_invoice_bba/i18n/nl_BE.po index cbbfcbd11b4..10098cd277f 100644 --- a/addons/l10n_be_invoice_bba/i18n/nl_BE.po +++ b/addons/l10n_be_invoice_bba/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/pt.po b/addons/l10n_be_invoice_bba/i18n/pt.po index e6c90bebc03..aa0aa80a2f6 100644 --- a/addons/l10n_be_invoice_bba/i18n/pt.po +++ b/addons/l10n_be_invoice_bba/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/pt_BR.po b/addons/l10n_be_invoice_bba/i18n/pt_BR.po index 96c32db05af..105cc7a31f2 100644 --- a/addons/l10n_be_invoice_bba/i18n/pt_BR.po +++ b/addons/l10n_be_invoice_bba/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 @@ -53,6 +53,7 @@ msgid "" "Select Algorithm to generate the Structured Communication on Outgoing " "Invoices." msgstr "" +"Selecione algoritmo para gerar a comunicação estruturada em faturas enviadas." #. module: l10n_be_invoice_bba #: code:addons/l10n_be_invoice_bba/invoice.py:109 @@ -63,6 +64,9 @@ msgid "" "Structured Communications has been exceeded!\n" "Please create manually a unique BBA Structured Communication." msgstr "" +"O máximo diário de facturas de saída com um gerado automaticamente BBA " +"Structured Communications foi ultrapassado! \n" +"Por favor, crie manualmente uma BBA comunicação estruturada único." #. module: l10n_be_invoice_bba #: code:addons/l10n_be_invoice_bba/invoice.py:150 @@ -78,6 +82,9 @@ msgid "" "BBA Structured Communications!\n" "Please correct the Partner record." msgstr "" +"O parceiro deve ter um dígito 3-7 Número de referência para a geração de BBA " +"estruturados Communications! \n" +"Por favor, corrija o registro de parceiros." #. module: l10n_be_invoice_bba #: constraint:res.partner:0 @@ -113,6 +120,8 @@ msgid "" "The BBA Structured Communication has already been used!\n" "Please create manually a unique BBA Structured Communication." msgstr "" +"O BBA Structured Comunicação já foi usado! \n" +"Por favor, crie manualmente uma BBA comunicação estruturada único." #. module: l10n_be_invoice_bba #: selection:res.partner,out_inv_comm_algorithm:0 @@ -131,6 +140,8 @@ msgid "" "Unsupported Structured Communication Type Algorithm '%s' !\n" "Please contact your OpenERP support channel." msgstr "" +"Suportado Structured Comunicação Tipo Algorithm '% s'! \n" +"Entre em contato com o seu canal de suporte OpenERP." #. module: l10n_be_invoice_bba #: field:res.partner,out_inv_comm_algorithm:0 @@ -144,3 +155,5 @@ msgid "" "Empty BBA Structured Communication!\n" "Please fill in a unique BBA Structured Communication." msgstr "" +"Vazio BBA comunicação estruturada! \n" +"Por favor, preencha a BBA comunicação estruturada único." diff --git a/addons/l10n_be_invoice_bba/i18n/sl.po b/addons/l10n_be_invoice_bba/i18n/sl.po index e41f5bae778..c65a4140db0 100644 --- a/addons/l10n_be_invoice_bba/i18n/sl.po +++ b/addons/l10n_be_invoice_bba/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/sr@latin.po b/addons/l10n_be_invoice_bba/i18n/sr@latin.po index 513790b570e..5033e70a0d3 100644 --- a/addons/l10n_be_invoice_bba/i18n/sr@latin.po +++ b/addons/l10n_be_invoice_bba/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/tr.po b/addons/l10n_be_invoice_bba/i18n/tr.po index e50565b6c01..9ac0c507319 100644 --- a/addons/l10n_be_invoice_bba/i18n/tr.po +++ b/addons/l10n_be_invoice_bba/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/invoice.py b/addons/l10n_be_invoice_bba/invoice.py index fca743928bf..854593a87cc 100644 --- a/addons/l10n_be_invoice_bba/invoice.py +++ b/addons/l10n_be_invoice_bba/invoice.py @@ -207,6 +207,19 @@ class account_invoice(osv.osv): '\nPlease create manually a unique BBA Structured Communication.')) return super(account_invoice, self).write(cr, uid, ids, vals, context) + def copy(self, cr, uid, id, default=None, context=None): + default = default or {} + invoice = self.browse(cr, uid, id, context=context) + if invoice.type in ['out_invoice']: + reference_type = invoice.reference_type or 'none' + default['reference_type'] = reference_type + if reference_type == 'bba': + partner = invoice.partner_id + default['reference'] = self.generate_bbacomm(cr, uid, id, + invoice.type, reference_type, + partner.id, '', context=context)['value']['reference'] + return super(account_invoice, self).copy(cr, uid, id, default, context=context) + _columns = { 'reference': fields.char('Communication', size=64, help="The partner reference of this invoice."), 'reference_type': fields.selection(_get_reference_type, 'Communication Type', diff --git a/addons/l10n_bo/i18n/en_GB.po b/addons/l10n_bo/i18n/en_GB.po new file mode 100644 index 00000000000..355bc1182be --- /dev/null +++ b/addons/l10n_bo/i18n/en_GB.po @@ -0,0 +1,53 @@ +# English (United Kingdom) translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-01-11 11:15+0000\n" +"PO-Revision-Date: 2013-08-23 16:45+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: English (United Kingdom) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: l10n_ar +#: model:ir.module.module,description:l10n_ar.module_meta_information +msgid "" +"\n" +" Argentinian Accounting : chart of Account\n" +" " +msgstr "" +"\n" +" Argentinian Accounting : chart of Account\n" +" " + +#. module: l10n_ar +#: model:ir.module.module,shortdesc:l10n_ar.module_meta_information +msgid "Argentinian Chart of Account" +msgstr "Argentinian Chart of Account" + +#. module: l10n_ar +#: model:ir.actions.todo,note:l10n_ar.config_call_account_template_in_minimal +msgid "" +"Generate Chart of Accounts from a Chart Template. You will be asked to pass " +"the name of the company, the chart template to follow, the no. of digits to " +"generate the code for your accounts and Bank account, currency to create " +"Journals. Thus,the pure copy of chart Template is generated.\n" +"\tThis is the same wizard that runs from Financial " +"Management/Configuration/Financial Accounting/Financial Accounts/Generate " +"Chart of Accounts from a Chart Template." +msgstr "" +"Generate Chart of Accounts from a Chart Template. You will be asked to pass " +"the name of the company, the chart template to follow, the no. of digits to " +"generate the code for your accounts and Bank account, currency to create " +"Journals. Thus,the pure copy of chart Template is generated.\n" +"\tThis is the same wizard that runs from Financial " +"Management/Configuration/Financial Accounting/Financial Accounts/Generate " +"Chart of Accounts from a Chart Template." diff --git a/addons/l10n_bo/i18n/es.po b/addons/l10n_bo/i18n/es.po index 3fcffeca057..ef9697d7e51 100644 --- a/addons/l10n_bo/i18n/es.po +++ b/addons/l10n_bo/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/it.po b/addons/l10n_bo/i18n/it.po index ea325d87872..40e54990b1a 100644 --- a/addons/l10n_bo/i18n/it.po +++ b/addons/l10n_bo/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/pt.po b/addons/l10n_bo/i18n/pt.po index f3947dae3cb..805a4f5f5cf 100644 --- a/addons/l10n_bo/i18n/pt.po +++ b/addons/l10n_bo/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/pt_BR.po b/addons/l10n_bo/i18n/pt_BR.po index 3104a7fd6f0..70eb1374655 100644 --- a/addons/l10n_bo/i18n/pt_BR.po +++ b/addons/l10n_bo/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/sl.po b/addons/l10n_bo/i18n/sl.po index 9d24d15ced2..6b8d9c8cde9 100644 --- a/addons/l10n_bo/i18n/sl.po +++ b/addons/l10n_bo/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/tr.po b/addons/l10n_bo/i18n/tr.po index 99bd4d8f801..5302b1de82f 100644 --- a/addons/l10n_bo/i18n/tr.po +++ b/addons/l10n_bo/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/l10n_bo_chart.xml b/addons/l10n_bo/l10n_bo_chart.xml index dc9e9598909..3d7e5cc1935 100644 --- a/addons/l10n_bo/l10n_bo_chart.xml +++ b/addons/l10n_bo/l10n_bo_chart.xml @@ -249,6 +249,7 @@ + diff --git a/addons/l10n_br/data/account_chart_template.xml b/addons/l10n_br/data/account_chart_template.xml index c99bbd03d2f..598c3191cba 100644 --- a/addons/l10n_br/data/account_chart_template.xml +++ b/addons/l10n_br/data/account_chart_template.xml @@ -11,6 +11,7 @@ + diff --git a/addons/l10n_ca/__openerp__.py b/addons/l10n_ca/__openerp__.py index 945327a06bc..6ba9907b088 100644 --- a/addons/l10n_ca/__openerp__.py +++ b/addons/l10n_ca/__openerp__.py @@ -20,7 +20,7 @@ ############################################################################## { 'name': 'Canada - Accounting', - 'version': '1.1', + 'version': '1.2', 'author': 'Savoir-faire Linux', 'website': 'http://www.savoirfairelinux.com', 'category': 'Localization/Account Charts', @@ -29,6 +29,28 @@ This is the module to manage the English and French - Canadian accounting chart =========================================================================================== Canadian accounting charts and localizations. + +Fiscal positions +---------------- + +When considering taxes to be applied, it is the province where the delivery occurs that matters. +Therefore we decided to implement the most common case in the fiscal positions: delivery is the +responsibility of the supplier and done at the customer location. + +Some examples: + +1) You have a customer from another province and you deliver to his location. +On the customer, set the fiscal position to his province. + +2) You have a customer from another province. However this customer comes to your location +with their truck to pick up products. On the customer, do not set any fiscal position. + +3) An international supplier doesn't charge you any tax. Taxes are charged at customs +by the customs broker. On the supplier, set the fiscal position to International. + +4) An international supplier charge you your provincial tax. They are registered with your +provincial government and remit taxes themselves. On the supplier, do not set any fiscal +position. """, 'depends': [ 'base', diff --git a/addons/l10n_ca/account_chart_en.xml b/addons/l10n_ca/account_chart_en.xml index 0a596bcd4f6..a929e213842 100644 --- a/addons/l10n_ca/account_chart_en.xml +++ b/addons/l10n_ca/account_chart_en.xml @@ -131,7 +131,7 @@ other - + GST receivable @@ -140,17 +140,43 @@ other - + PST/QST receivable 1183 + view + + HST receivable + + + + 11831 + other - - HST receivable + + HST receivable - 13% + + + + 11832 + + other + + + HST receivable - 14% + + + + 11833 + + other + + + HST receivable - 15% @@ -257,7 +283,7 @@ other - + GST to pay @@ -266,17 +292,43 @@ other - + PST/QST to pay 2133 + view + + HST to pay + + + + 21331 + other - - HST to pay + + HST to pay - 13% + + + + 21332 + + other + + + HST to pay - 14% + + + + 21333 + + other + + + HST to pay - 15% diff --git a/addons/l10n_ca/account_chart_fr.xml b/addons/l10n_ca/account_chart_fr.xml index c168833b733..57e6c84aa71 100644 --- a/addons/l10n_ca/account_chart_fr.xml +++ b/addons/l10n_ca/account_chart_fr.xml @@ -130,7 +130,7 @@ other - + TPS à recevoir @@ -139,17 +139,43 @@ other - + TVP/TVQ à recevoir 1183 + view + + TVH à recevoir + + + + 11831 + other - - TVH à recevoir + + TVH à recevoir - 13% + + + + 11832 + + other + + + TVH à recevoir - 14% + + + + 11833 + + other + + + TVH à recevoir - 15% @@ -256,7 +282,7 @@ other - + TPS à payer @@ -265,17 +291,43 @@ other - + TVP/TVQ à payer 2133 + view + + TVH à payer + + + + 21331 + other - - TVH à payer + + TVH à payer - 13% + + + + 21332 + + other + + + TVH à payer - 14% + + + + 21333 + + other + + + TVH à payer - 15% @@ -672,7 +724,7 @@ 5112 other - + Achats dans des provinces harmonisées @@ -680,7 +732,7 @@ 5113 other - + Achats dans des provinces non-harmonisées @@ -688,7 +740,7 @@ 5114 other - + Achats à l'étranger diff --git a/addons/l10n_ca/account_chart_template_en.xml b/addons/l10n_ca/account_chart_template_en.xml index 24505dac8e6..640811b7c1d 100644 --- a/addons/l10n_ca/account_chart_template_en.xml +++ b/addons/l10n_ca/account_chart_template_en.xml @@ -13,6 +13,7 @@ + diff --git a/addons/l10n_ca/account_chart_template_fr.xml b/addons/l10n_ca/account_chart_template_fr.xml index 169f6c45f1e..4ca745601ca 100644 --- a/addons/l10n_ca/account_chart_template_fr.xml +++ b/addons/l10n_ca/account_chart_template_fr.xml @@ -12,6 +12,7 @@ + diff --git a/addons/l10n_ca/account_tax_code_en.xml b/addons/l10n_ca/account_tax_code_en.xml index d446f431c96..77698ae14de 100644 --- a/addons/l10n_ca/account_tax_code_en.xml +++ b/addons/l10n_ca/account_tax_code_en.xml @@ -31,6 +31,21 @@ + + HST paid - 13% + + + + + HST paid - 14% + + + + + HST paid - 15% + + + Taxes received @@ -51,6 +66,21 @@ + + HST received - 13% + + + + + HST received - 14% + + + + + HST received - 15% + + + Taxes Base @@ -76,6 +106,21 @@ + + Base of HST for Sales - 13% + + + + + Base of HST for Sales - 14% + + + + + Base of HST for Sales - 15% + + + Base of Purchases Tax @@ -96,5 +141,20 @@ + + Base of HST for Purchases - 13% + + + + + Base of HST for Purchases - 14% + + + + + Base of HST for Purchases - 15% + + + diff --git a/addons/l10n_ca/account_tax_code_fr.xml b/addons/l10n_ca/account_tax_code_fr.xml index 2b6acd2b992..ac4414922e2 100644 --- a/addons/l10n_ca/account_tax_code_fr.xml +++ b/addons/l10n_ca/account_tax_code_fr.xml @@ -16,41 +16,71 @@ - + TPS payée - + TVP/TVQ payée - + TVH payée + + TVH payée - 13% + + + + + TVH payée - 14% + + + + + TVH payée - 15% + + + Taxes reçues - + TPS reçue - + TVP/TVQ reçue - + TVH reçue + + TVH reçue - 13% + + + + + TVH reçue - 14% + + + + + TVH reçue - 15% + + + Base de taxes @@ -61,40 +91,70 @@ - + Base de la TPS pour les ventes - + Base de la TVP/TVQ pour les ventes - + Base de la TVH pour les ventes + + Base de la TVH pour les ventes - 13% + + + + + Base de la TVH pour les ventes - 14% + + + + + Base de la TVH pour les ventes - 15% + + + Base des taxes d'achats - + Base de la TPS pour les achats - + Base de la TVP/TVQ pour les achats - + Base de la TVH pour les achats + + Base de la TVH pour les achats - 13% + + + + + Base de la TVH pour les achats - 14% + + + + + Base de la TVH pour les achats - 15% + + + diff --git a/addons/l10n_ca/account_tax_en.xml b/addons/l10n_ca/account_tax_en.xml index f0d2670d077..4c15ebb68ed 100644 --- a/addons/l10n_ca/account_tax_en.xml +++ b/addons/l10n_ca/account_tax_en.xml @@ -4,6 +4,53 @@ + + + + + GST + PST for sales (BC) + GSTPST_BC_SALE + sale + 1 + percent + 1 + + + + + GST for sales - 5% (BC) + GST + sale + 0.050000 + percent + 1 + + + + + + + + + + + + + PST for sales - 7% (BC) + PST + sale + 0.070000 + percent + 2 + + + + + + + + + @@ -13,6 +60,7 @@ sale 1 percent + @@ -35,10 +83,10 @@ - PST for sales - 7% + PST for sales - 8% (MB) PST sale - 0.070000 + 0.080000 percent 2 @@ -50,65 +98,19 @@ - - - - - GST + PST for sales (PE) - GSTPST_PE_SALE - sale - 1 - 1 - percent - - - - - GST for sales - 5% (PE) - GST - sale - 0.050000 - percent - 1 - - - - - - - - - - - - - PST for sale - 10% - PST - sale - 0.100000 - percent - 2 - - - - - - - - - - + GST + QST for sales GSTQST_SALE sale 1 percent + - + GST for sales - 5% (QC) GST @@ -122,10 +124,10 @@ - + - + QST for sales - 9.975% QST @@ -139,7 +141,7 @@ - + @@ -151,6 +153,7 @@ sale 1 percent + @@ -190,21 +193,6 @@ - - - HST for sales - 12% - HST12_SALE - sale - 0.120000 - percent - - - - - - - - HST for sales - 13% @@ -212,27 +200,27 @@ sale 0.130000 percent - - - - - - + + + + + + - + - HST for sales - 13.5% - HST135_SALE + HST for sales - 14% + HST14_SALE sale - 0.135000 + 0.14000 percent - - - - - - + + + + + + @@ -242,12 +230,12 @@ sale 0.150000 percent - - - - - - + + + + + + @@ -267,9 +255,55 @@ - + + + + + GST + PST for purchases (BC) + GSTPST_BC_PURC + purchase + 1 + percent + 1 + + + + + GST for purchases - 5% (BC) + GST + purchase + 0.050000 + percent + 1 + + + + + + + + + + + + + PST for purchases - 7% (BC) + PST + purchase + 0.070000 + percent + 2 + + + + + + + + + @@ -279,6 +313,7 @@ purchase 1 percent + @@ -301,10 +336,10 @@ - PST for purchases - 7% + PST for purchases - 8% (MB) PST purchase - 0.070000 + 0.080000 percent 2 @@ -316,65 +351,19 @@ - - - - - GST + PST for purchases (PE) - GSTPST_PE_PURC - purchase - 1 - 1 - percent - - - - - GST for purchases - 5% (PE) - GST - purchase - 0.050000 - percent - 1 - - - - - - - - - - - - - PST for purchases - 10% - PST - purchase - 0.100000 - percent - 2 - - - - - - - - - - + GST + QST for purchases GSTQST_PURC purchase 1 percent + - + GST for purchases - 5% (QC) GST @@ -388,10 +377,10 @@ - + - + QST for purchases - 9.975% QST @@ -405,7 +394,7 @@ - + @@ -417,6 +406,7 @@ purchase 1 percent + @@ -456,21 +446,6 @@ - - - HST for purchases - 12% - HST12_PURC - purchase - 0.120000 - percent - - - - - - - - HST for purchases - 13% @@ -478,27 +453,27 @@ purchase 0.130000 percent - - - - - - + + + + + + - + - HST for purchases - 13.5% - HST135_PURC + HST for purchases - 14% + HST14_PURC purchase - 0.135000 + 0.140000 percent - - - - - - + + + + + + @@ -508,12 +483,12 @@ purchase 0.150000 percent - - - - - - + + + + + + diff --git a/addons/l10n_ca/account_tax_fr.xml b/addons/l10n_ca/account_tax_fr.xml index c34f329be3a..6c37befa139 100644 --- a/addons/l10n_ca/account_tax_fr.xml +++ b/addons/l10n_ca/account_tax_fr.xml @@ -4,18 +4,66 @@ + + + + + TPS + TVP sur les ventes (BC) + TPSTVP_BC_SALE + sale + 1 + 1 + percent + + + + + TPS sur les ventes - 5% (BC) + TPS + sale + 0.050000 + percent + 1 + + + + + + + + + + + + + TVP sur les ventes - 7% (BC) + TVP + sale + 0.070000 + percent + 2 + + + + + + + + + - + TPS + TVP sur les ventes (MB) TPSTVP_MB_SALE sale 1 percent + - + TPS sur les ventes - 5% (MB) TPS @@ -26,89 +74,43 @@ - - - - - + + + + + - + - TVP sur les ventes - 7% + TVP sur les ventes - 8% (MB) TVP sale - 0.070000 + 0.080000 percent 2 - - - - - - - - - - - - TPS + TVP sur les ventes (PE) - TPSTVP_PE_SALE - sale - 1 - 1 - percent - - - - - TPS sur les ventes - 5% (PE) - TPS - sale - 0.050000 - percent - 1 - - - - - - - - - - - - - TVP for sale - 10% - TVP - sale - 0.100000 - percent - 2 - - - - - - - + + + + + - + TPS + TVQ sur les ventes TPSTVQ_SALE sale 1 percent + - + TPS sur les ventes - 5% (QC) TPS @@ -118,11 +120,11 @@ 1 - - - - - + + + + + @@ -135,25 +137,26 @@ 2 - - - - - + + + + + - + TPS + TVP sur les ventes (SK) TPSTVP_SK_SALE sale 1 percent + - + TPS sur les ventes - 5% (SK) TPS @@ -164,14 +167,14 @@ - - - - - + + + + + - + TVP sur les ventes - 5% (SK) TVP @@ -181,78 +184,63 @@ 2 - - - - - + + + + + - - - TVH sur les ventes - 12% - TVH12_SALE - sale - 0.120000 - percent - - - - - - - - - + TVH sur les ventes - 13% TVH13_SALE sale 0.130000 percent - - - - - - + + + + + + - + - TVH sur les ventes - 13.5% - TVH135_SALE + TVH sur les ventes - 14% + TVH14_SALE sale - 0.135000 + 0.140000 percent - - - - - - + + + + + + - + TVH sur les ventes - 15% TVH15_SALE sale 0.150000 percent - - - - - - + + + + + + - + TPS sur les ventes - 5% TPS_SALE @@ -261,27 +249,75 @@ percent - - - - + + + + + + + + + TPS + TVP sur les achats (BC) + TPSTVP_BC_PURC + purchase + 1 + percent + 1 + + + + + TPS sur les achats - 5% (BC) + TPS + purchase + 0.050000 + percent + 1 + + + + + + + + + + + + + TVP sur les achats - 7% (BC) + TVP + purchase + 0.070000 + percent + 2 + + + + + + + + + - + TPS + TVP sur les achats (MB) TPSTVP_MB_PURC purchase 1 percent + - + TPS sur les achats - 5% (MB) TPS @@ -292,89 +328,43 @@ - - - - - + + + + + - + - TVP sur les achats - 7% + TVP sur les achats - 8% (MB) TVP purchase - 0.070000 + 0.080000 percent 2 - - - - - - - - - - - - TPS + TVP sur les achats (PE) - TPSTVP_PE_PURC - purchase - 1 - 1 - percent - - - - - TPS sur les achats - 5% (PE) - TPS - purchase - 0.050000 - percent - 1 - - - - - - - - - - - - - TVP sur les achats - 10% - TVP - purchase - 0.100000 - percent - 2 - - - - - - - + + + + + - + TPS + TVQ sur les achats TPSTVQ_PURC purchase 1 percent + - + TPS sur les achats - 5% (QC) TPS @@ -384,11 +374,11 @@ 1 - - - - - + + + + + @@ -401,25 +391,26 @@ 2 - - - - - + + + + + - + TPS + TVP sur les achats (SK) TPSTVP_SK_PURC purchase 1 percent + - + TPS sur les achats - 5% (SK) TPS @@ -430,14 +421,14 @@ - - - - - + + + + + - + TVP sur les achats - 5% (SK) TVP @@ -447,78 +438,63 @@ 2 - - - - - + + + + + - - - TVH sur les achats - 12% - TVH12_PURC - purchase - 0.120000 - percent - - - - - - - - - + TVH sur les achats - 13% TVH13_PURC purchase 0.130000 percent - - - - - - + + + + + + - + - TVH sur les achats - 13.5% - TVH135_PURC + TVH sur les achats - 14% + TVH14_PURC purchase - 0.135000 + 0.140000 percent - - - - - - + + + + + + - + TVH sur les achats - 15% TVH15_PURC purchase 0.150000 percent - - - - - - + + + + + + - + TPS sur les achats - 5% TPS_PURC @@ -527,10 +503,10 @@ percent - - - - + + + + diff --git a/addons/l10n_ca/doc/Taxes.csv b/addons/l10n_ca/doc/Taxes.csv new file mode 100644 index 00000000000..368b06d1c1a --- /dev/null +++ b/addons/l10n_ca/doc/Taxes.csv @@ -0,0 +1,23 @@ +;Product/Service is delivered in;;;;;;;;;;;;; +Supplier is in ;Alberta;British Columbia;Manitoba;New Brunswick;"Newfoundland +And Labrador";Nova Scotia;"Northwest +Territories";Nunavut;Ontario;"Prince Edward +Islands";Quebec;Saskatchewan;Yukon;International +Alberta;GST – 5%;GST – 5%;GST – 5%;HST – 13%;HST – 13%;HST – 15%;GST – 5%;GST – 5%;HST – 13%;HST – 14%;GST – 5%;GST – 5%;GST – 5%; +British Columbia;GST – 5%;"GST – 5% +PST – 7%";GST – 5%;HST – 13%;HST – 13%;HST – 15%;GST – 5%;GST – 5%;HST – 13%;HST – 14%;GST – 5%;GST – 5%;GST – 5%; +Manitoba;GST – 5%;GST – 5%;"GST – 5% +PST – 8%";HST – 13%;HST – 13%;HST – 15%;GST – 5%;GST – 5%;HST – 13%;HST – 14%;GST – 5%;GST – 5%;GST – 5%; +New Brunswick;GST – 5%;GST – 5%;GST – 5%;HST – 13%;HST – 13%;HST – 15%;GST – 5%;GST – 5%;HST – 13%;HST – 14%;GST – 5%;GST – 5%;GST – 5%; +Newfoundland and Labrador;GST – 5%;GST – 5%;GST – 5%;HST – 13%;HST – 13%;HST – 15%;GST – 5%;GST – 5%;HST – 13%;HST – 14%;GST – 5%;GST – 5%;GST – 5%; +Nova Scotia;GST – 5%;GST – 5%;GST – 5%;HST – 13%;HST – 13%;HST – 15%;GST – 5%;GST – 5%;HST – 13%;HST – 14%;GST – 5%;GST – 5%;GST – 5%; +Northwest Territories;GST – 5%;GST – 5%;GST – 5%;HST – 13%;HST – 13%;HST – 15%;GST – 5%;GST – 5%;HST – 13%;HST – 14%;GST – 5%;GST – 5%;GST – 5%; +Nunavut;GST – 5%;GST – 5%;GST – 5%;HST – 13%;HST – 13%;HST – 15%;GST – 5%;GST – 5%;HST – 13%;HST – 14%;GST – 5%;GST – 5%;GST – 5%; +Ontario;GST – 5%;GST – 5%;GST – 5%;HST – 13%;HST – 13%;HST – 15%;GST – 5%;GST – 5%;HST – 13%;HST – 14%;GST – 5%;GST – 5%;GST – 5%; +Prince Edward Islands;GST – 5%;GST – 5%;GST – 5%;HST – 13%;HST – 13%;HST – 15%;GST – 5%;GST – 5%;HST – 13%;HST – 14%;GST – 5%;GST – 5%;GST – 5%; +Quebec;GST – 5%;GST – 5%;GST – 5%;HST – 13%;HST – 13%;HST – 15%;GST – 5%;GST – 5%;HST – 13%;HST – 14%;"GST – 5% +QST – 9,975%";GST – 5%;GST – 5%; +Saskatchewan;GST – 5%;GST – 5%;GST – 5%;HST – 13%;HST – 13%;HST – 15%;GST – 5%;GST – 5%;HST – 13%;HST – 14%;GST – 5%;"GST – 5% +PST – 5%";GST – 5%; +Yukon;GST – 5%;GST – 5%;GST – 5%;HST – 13%;HST – 13%;HST – 15%;GST – 5%;GST – 5%;HST – 13%;HST – 14%;GST – 5%;GST – 5%;GST – 5%; +International;;;;;;;;;;;;;; diff --git a/addons/l10n_ca/fiscal_templates_en.xml b/addons/l10n_ca/fiscal_templates_en.xml index a3bab5b89dd..5bdd72b0c1d 100644 --- a/addons/l10n_ca/fiscal_templates_en.xml +++ b/addons/l10n_ca/fiscal_templates_en.xml @@ -4,653 +4,1543 @@ - - Provincial Regime (PROV) + + Alberta (AB) - - Harmonized Provinces Regime (12%) (BC) + + British Columbia (BC) - - Harmonized Provinces Regime (13%) (ON, NB, NL) + + Manitoba (MB) - - Harmonized Provinces Regime (13.5%) + + New Brunswick (NB) - - Harmonized Provinces Regime (15%) (NS) + + Newfoundland and Labrador (NL) - - Non-Harmonized Provinces Regime (AB, MB, SK, PE, NT, NU, YT) + + Nova Scotia (NS) - - International Regime (INTL) + + Northwest Territories (NT) - + + Nunavut (NU) + + + + + Ontario (ON) + + + + + Prince Edward Islands (PE) + + + + + Quebec (QC) + + + + + Saskatchewan (SK) + + + + + Yukon (YT) + + + + + International (INTL) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + - - - - + + + + + - - - - + + + + Already created by nb2mb_sale + + + + + - - - - + Already creted by nb2ns_sale + + + + - - - - + Already creted by nb2nt_sale + + + + - - - - + Already created nb2nu_sale + + + + - - - - + Already created by nb2pe_sale + + + + - - - - + Already created by nb2qc_sale + + + + - - - + Already created by nb2sk_sale + + + + - + Already created by nb2yt_sale + + + + + - - - - + Already created by nb2intl_sale + + + + --> + + - - - - + + + - - - - + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + - - - - + + + + + - - - - + + + + Already created by ab2ns_sale + + + + + - - - - + Already created by ab2on_sale + + + + - - - - + Already created by ab2pe_sale + + + + - - - - + Already created by ab2intl_sale + + + + --> - - - - + + + + + - - - + + Already created by ab2nl_sale + + + + + - - - - + Already created by ab2ns_sale + + + + - - - - + Already created by ab2on_sale + + + + - - - - + Already created by ab2pe_sale + + + + - - - - + Already created by ab2intl_sale + + + + --> + + - - - - + - - - + + + + Already created by nb2mb_sale + + + + + + Already created by nb2ns_sale + + + + + - + Already created by nb2nt_sale + + + + + + + Already created nb2nu_sale + + + + + - - - - + Already created by nb2pe_sale + + + + - - - - + Already created by nb2qc_sale + + + + - - - - + Already created by nb2sk_sale + + + + - - - - + Already created by nb2yt_sale + + + + - - - + Already created by nb2intl_sale + + + + --> - + - - - - + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + - - - - + + + + + - - - - + + + + + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + - - - - + + + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + - - - - + + + + + + + + - - - - + + + + - - - + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + diff --git a/addons/l10n_ca/fiscal_templates_fr.xml b/addons/l10n_ca/fiscal_templates_fr.xml index b01ab0985ea..465f53a1229 100644 --- a/addons/l10n_ca/fiscal_templates_fr.xml +++ b/addons/l10n_ca/fiscal_templates_fr.xml @@ -4,653 +4,1543 @@ - - Régime Provincial (PROV) + + Alberta (AB) - - Régime Provinces Harmonisées à 12% (BC) + + British Columbia (BC) - - Régime Provinces Harmonisées à 13% (NB, ON, NL) + + Manitoba (MB) - - Régime Provinces Harmonisées à 13.5% () + + New Brunswick (NB) - - Régime Provinces Harmonisées à 15% (NS) + + Newfoundland and Labrador (NL) - - Régime Provinces Non-Harmonisées (AB, MB, SK, PE, NT, NU, YT) + + Nova Scotia (NS) - - Régime International (INTL) + + Northwest Territories (NT) - + + Nunavut (NU) + + + + + Ontario (ON) + + + + + Prince Edward Islands (PE) + + + + + Quebec (QC) + + + + + Saskatchewan (SK) + + + + + Yukon (YT) + + + + + International (INTL) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + - - - - + + + + + - - - - + + + + Already created by nb2mb_sale + + + + + - - - - + Already creted by nb2ns_sale + + + + - - - - + Already creted by nb2nt_sale + + + + - - - - + Already created nb2nu_sale + + + + - - - - + Already created by nb2pe_sale + + + + - - - - + Already created by nb2qc_sale + + + + - - - + Already created by nb2sk_sale + + + + - + Already created by nb2yt_sale + + + + + - - - - + Already created by nb2intl_sale + + + + --> + + - - - - + + + - - - - + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + - - - - + + + + + - - - - + + + + Already created by ab2ns_sale + + + + + - - - - + Already created by ab2on_sale + + + + - - - - + Already created by ab2pe_sale + + + + - - - - + Already created by ab2intl_sale + + + + --> - - - - + + + + + - - - + + Already created by ab2nl_sale + + + + + - - - - + Already created by ab2ns_sale + + + + - - - - + Already created by ab2on_sale + + + + - - - - + Already created by ab2pe_sale + + + + - - - - + Already created by ab2intl_sale + + + + --> + + - - - - + - - - + + + + Already created by nb2mb_sale + + + + + + Already created by nb2ns_sale + + + + + - + Already created by nb2nt_sale + + + + + + + Already created nb2nu_sale + + + + + - - - - + Already created by nb2pe_sale + + + + - - - - + Already created by nb2qc_sale + + + + - - - - + Already created by nb2sk_sale + + + + - - - - + Already created by nb2yt_sale + + + + - - - + Already created by nb2intl_sale + + + + --> - + - - - - + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + - - - - + + + + + - - - - + + + + + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + - - - - + + + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - + + + + - + + + + + - - - - + + + + - - - - + + + + - - - - + + + - - - - + + + + + + + + - - - - + + + + - - - + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + diff --git a/addons/l10n_ch/sterchi_chart/account.xml b/addons/l10n_ch/sterchi_chart/account.xml index ddad62946ae..acee99cad4a 100644 --- a/addons/l10n_ch/sterchi_chart/account.xml +++ b/addons/l10n_ch/sterchi_chart/account.xml @@ -11812,6 +11812,7 @@ + diff --git a/addons/l10n_cl/l10n_cl_chart.xml b/addons/l10n_cl/l10n_cl_chart.xml index 8bc4272c2eb..2e2339f212e 100644 --- a/addons/l10n_cl/l10n_cl_chart.xml +++ b/addons/l10n_cl/l10n_cl_chart.xml @@ -248,6 +248,7 @@ + diff --git a/addons/l10n_cn/account_chart.xml b/addons/l10n_cn/account_chart.xml index afcb3e04b0c..fe4690e306c 100644 --- a/addons/l10n_cn/account_chart.xml +++ b/addons/l10n_cn/account_chart.xml @@ -957,6 +957,7 @@ + diff --git a/addons/l10n_co/data/account_chart.xml b/addons/l10n_co/data/account_chart.xml index 2fe4ac9a1b9..06d6d471e1e 100644 --- a/addons/l10n_co/data/account_chart.xml +++ b/addons/l10n_co/data/account_chart.xml @@ -103348,6 +103348,7 @@ participacion, de conformidad con las disposiciones legales vigentes. + diff --git a/addons/l10n_cr/data/account_chart_template.xml b/addons/l10n_cr/data/account_chart_template.xml index e84ea73fbed..a8a08647c00 100644 --- a/addons/l10n_cr/data/account_chart_template.xml +++ b/addons/l10n_cr/data/account_chart_template.xml @@ -16,6 +16,7 @@ + Costa Rica - Company 1 @@ -28,6 +29,7 @@ + diff --git a/addons/l10n_de/account_chart_template_skr03.xml b/addons/l10n_de/account_chart_template_skr03.xml index 058424188f6..ea3c0cff3d7 100644 --- a/addons/l10n_de/account_chart_template_skr03.xml +++ b/addons/l10n_de/account_chart_template_skr03.xml @@ -12,6 +12,7 @@ + diff --git a/addons/l10n_de/account_chart_template_skr04.xml b/addons/l10n_de/account_chart_template_skr04.xml index c33c0d415eb..fee680af379 100644 --- a/addons/l10n_de/account_chart_template_skr04.xml +++ b/addons/l10n_de/account_chart_template_skr04.xml @@ -12,6 +12,7 @@ + diff --git a/addons/l10n_ec/account_chart.xml b/addons/l10n_ec/account_chart.xml index 17f1b71d047..afa847ea5a9 100644 --- a/addons/l10n_ec/account_chart.xml +++ b/addons/l10n_ec/account_chart.xml @@ -4202,7 +4202,8 @@ - + + diff --git a/addons/l10n_es/account_chart.xml b/addons/l10n_es/account_chart.xml index 1bc63f6419f..8260a76dca1 100644 --- a/addons/l10n_es/account_chart.xml +++ b/addons/l10n_es/account_chart.xml @@ -13333,6 +13333,7 @@ + diff --git a/addons/l10n_es/account_chart_assoc.xml b/addons/l10n_es/account_chart_assoc.xml index 670eed53c9b..105be447ca8 100644 --- a/addons/l10n_es/account_chart_assoc.xml +++ b/addons/l10n_es/account_chart_assoc.xml @@ -12420,6 +12420,7 @@ + diff --git a/addons/l10n_es/account_chart_pymes.xml b/addons/l10n_es/account_chart_pymes.xml index 223d80e3193..1986a532a66 100644 --- a/addons/l10n_es/account_chart_pymes.xml +++ b/addons/l10n_es/account_chart_pymes.xml @@ -11464,6 +11464,7 @@ + diff --git a/addons/l10n_et/__openerp__.py b/addons/l10n_et/__openerp__.py index f788e9c52d5..fa093b0b855 100644 --- a/addons/l10n_et/__openerp__.py +++ b/addons/l10n_et/__openerp__.py @@ -47,13 +47,13 @@ This is the latest Ethiopian OpenERP localization and consists of: 'data/account.tax.template.csv', 'data/res.country.state.csv', ], - 'update_xml': [ + 'data': [ 'l10n_et_wizard.xml', ], 'test': [ ], - 'demo_xml': [ + 'demo': [ ], 'installable': True, 'active': False, -} \ No newline at end of file +} diff --git a/addons/l10n_fr/fr_pcg_taxes.xml b/addons/l10n_fr/fr_pcg_taxes.xml index 78b34f2d696..2279b077383 100644 --- a/addons/l10n_fr/fr_pcg_taxes.xml +++ b/addons/l10n_fr/fr_pcg_taxes.xml @@ -441,6 +441,7 @@ + diff --git a/addons/l10n_fr/i18n/ar.po b/addons/l10n_fr/i18n/ar.po index 21079cd69f2..d08a1ab4d7f 100644 --- a/addons/l10n_fr/i18n/ar.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/bg.po b/addons/l10n_fr/i18n/bg.po index 06b713526e8..0231554aa02 100644 --- a/addons/l10n_fr/i18n/bg.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/bs.po b/addons/l10n_fr/i18n/bs.po index 2b11d5caeb0..3d8b17ae78c 100644 --- a/addons/l10n_fr/i18n/bs.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/ca.po b/addons/l10n_fr/i18n/ca.po index 77e60d1f75b..1a7f3d172de 100644 --- a/addons/l10n_fr/i18n/ca.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/cs.po b/addons/l10n_fr/i18n/cs.po index 2b11d5caeb0..3d8b17ae78c 100644 --- a/addons/l10n_fr/i18n/cs.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/da.po b/addons/l10n_fr/i18n/da.po index aa13c0f4bce..a42dc0bdfe5 100644 --- a/addons/l10n_fr/i18n/da.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/de.po b/addons/l10n_fr/i18n/de.po index a5e809bf113..208117e110b 100644 --- a/addons/l10n_fr/i18n/de.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/es.po b/addons/l10n_fr/i18n/es.po index 5c19017adc4..16450fde81c 100644 --- a/addons/l10n_fr/i18n/es.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/es_AR.po b/addons/l10n_fr/i18n/es_AR.po index 0cfa177ad18..f3723b5fc28 100644 --- a/addons/l10n_fr/i18n/es_AR.po +++ b/addons/l10n_fr/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: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/es_CR.po b/addons/l10n_fr/i18n/es_CR.po index 15bf714de35..05552fe422a 100644 --- a/addons/l10n_fr/i18n/es_CR.po +++ b/addons/l10n_fr/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: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/es_PY.po b/addons/l10n_fr/i18n/es_PY.po index ab424814fd6..2ea1047fb50 100644 --- a/addons/l10n_fr/i18n/es_PY.po +++ b/addons/l10n_fr/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: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/et.po b/addons/l10n_fr/i18n/et.po index 1fd7ac7bfea..757ddea7aa8 100644 --- a/addons/l10n_fr/i18n/et.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/fr.po b/addons/l10n_fr/i18n/fr.po index a2c645ca115..45de30819eb 100644 --- a/addons/l10n_fr/i18n/fr.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/gl.po b/addons/l10n_fr/i18n/gl.po index 2242eb73a62..5067fd9d718 100644 --- a/addons/l10n_fr/i18n/gl.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/hr.po b/addons/l10n_fr/i18n/hr.po index 2b11d5caeb0..3d8b17ae78c 100644 --- a/addons/l10n_fr/i18n/hr.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/hu.po b/addons/l10n_fr/i18n/hu.po index 2b11d5caeb0..3d8b17ae78c 100644 --- a/addons/l10n_fr/i18n/hu.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/id.po b/addons/l10n_fr/i18n/id.po index f5bee04f8f6..105a37182a6 100644 --- a/addons/l10n_fr/i18n/id.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/it.po b/addons/l10n_fr/i18n/it.po index b2a999c3d0d..00fd37e3c59 100644 --- a/addons/l10n_fr/i18n/it.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/ko.po b/addons/l10n_fr/i18n/ko.po index 207c04be70b..7abf7a57882 100644 --- a/addons/l10n_fr/i18n/ko.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/lt.po b/addons/l10n_fr/i18n/lt.po index 4f655acbd2d..82637ab48cc 100644 --- a/addons/l10n_fr/i18n/lt.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/nl.po b/addons/l10n_fr/i18n/nl.po index 8137215e383..7253a057ac0 100644 --- a/addons/l10n_fr/i18n/nl.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/nl_BE.po b/addons/l10n_fr/i18n/nl_BE.po index cdca90765a6..098f8afb1c3 100644 --- a/addons/l10n_fr/i18n/nl_BE.po +++ b/addons/l10n_fr/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: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/oc.po b/addons/l10n_fr/i18n/oc.po index f72d564ff73..8092dec2b46 100644 --- a/addons/l10n_fr/i18n/oc.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/pl.po b/addons/l10n_fr/i18n/pl.po index 3419f8f5cd3..dbd799a4c57 100644 --- a/addons/l10n_fr/i18n/pl.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/pt.po b/addons/l10n_fr/i18n/pt.po index 2df9ffa7af7..241445fe1b1 100644 --- a/addons/l10n_fr/i18n/pt.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/pt_BR.po b/addons/l10n_fr/i18n/pt_BR.po index b220f229ffe..43f73d97ffd 100644 --- a/addons/l10n_fr/i18n/pt_BR.po +++ b/addons/l10n_fr/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: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 @@ -45,7 +45,7 @@ msgstr "Account CDR Report" #. module: l10n_fr #: model:account.fiscal.position.template,note:l10n_fr.fiscal_position_template_import_export msgid "French VAT exemption according to articles 262 I of \"CGI\"" -msgstr "" +msgstr "Isenção de IVA francês De acordo com os artigos 262 I \"CGI\"" #. module: l10n_fr #: field:l10n.fr.line,report_id:0 @@ -55,7 +55,7 @@ msgstr "Report" #. module: l10n_fr #: view:account.cdr.report:0 msgid "Compte de resultat" -msgstr "" +msgstr "Demonstração de resultados" #. module: l10n_fr #: model:ir.model,name:l10n_fr.model_l10n_fr_line @@ -89,6 +89,8 @@ msgid "" "French VAT exemption according to articles 262 ter I (for products) and/or " "283-2 (for services) of \"CGI\"" msgstr "" +"Isenção de IVA francês De acordo com os artigos 262 ter I (para produtos) e " +"/ ou 283-2 (para serviços) de \"CGI\"" #. module: l10n_fr #: model:ir.model,name:l10n_fr.model_res_company @@ -114,7 +116,7 @@ msgstr "Report for l10n_fr" #. module: l10n_fr #: field:res.company,siret:0 msgid "SIRET" -msgstr "" +msgstr "SIRET" #. module: l10n_fr #: sql_constraint:l10n.fr.line:0 @@ -152,7 +154,7 @@ msgstr "ou" #. module: l10n_fr #: field:res.company,ape:0 msgid "APE" -msgstr "" +msgstr "EPA" #~ msgid "Asset" #~ msgstr "Ativo" @@ -189,3 +191,39 @@ msgstr "" #~ "This is the module to manage the accounting chart for France in OpenERP.\n" #~ "\n" #~ "Credits: Sistheo Zeekom CrysaLEAD\n" + +#~ msgid "Comptes spéciaux" +#~ msgstr "Contas Especiais" + +#~ msgid "Engagements" +#~ msgstr "Compromissos" + +#~ msgid "Stocks" +#~ msgstr "Estoques" + +#~ msgid "Actif circulant" +#~ msgstr "Ativos" + +#~ msgid "Receivable" +#~ msgstr "Receivable" + +#~ msgid "Cash" +#~ msgstr "Cash" + +#~ msgid "Immobilisations" +#~ msgstr "Imobilizações" + +#~ msgid "Payable" +#~ msgstr "A Pagar" + +#~ msgid "Dettes long terme" +#~ msgstr "Dívida de longo prazo" + +#~ msgid "Provisions" +#~ msgstr "Provisões" + +#~ msgid "Tax" +#~ msgstr "Imposto" + +#~ msgid "Cloture" +#~ msgstr "Encerramento" diff --git a/addons/l10n_fr/i18n/ro.po b/addons/l10n_fr/i18n/ro.po index 2b11d5caeb0..3d8b17ae78c 100644 --- a/addons/l10n_fr/i18n/ro.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/ru.po b/addons/l10n_fr/i18n/ru.po index 6ed616395b5..74ec699f9d9 100644 --- a/addons/l10n_fr/i18n/ru.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sl.po b/addons/l10n_fr/i18n/sl.po index c63d8d18e8c..62d44f5199c 100644 --- a/addons/l10n_fr/i18n/sl.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sq.po b/addons/l10n_fr/i18n/sq.po index 27c5630b81d..8583a72054f 100644 --- a/addons/l10n_fr/i18n/sq.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sr@latin.po b/addons/l10n_fr/i18n/sr@latin.po index 80f1a667e17..8b86a306c0e 100644 --- a/addons/l10n_fr/i18n/sr@latin.po +++ b/addons/l10n_fr/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: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sv.po b/addons/l10n_fr/i18n/sv.po index 7dfa3d7270f..f7edc2b711a 100644 --- a/addons/l10n_fr/i18n/sv.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/tlh.po b/addons/l10n_fr/i18n/tlh.po index 52454355d33..eeac1559625 100644 --- a/addons/l10n_fr/i18n/tlh.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/tr.po b/addons/l10n_fr/i18n/tr.po index 5e48ddd5de3..132ec6989e7 100644 --- a/addons/l10n_fr/i18n/tr.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/uk.po b/addons/l10n_fr/i18n/uk.po index 12dc5c87003..bc756baf4b0 100644 --- a/addons/l10n_fr/i18n/uk.po +++ b/addons/l10n_fr/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: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/vi.po b/addons/l10n_fr/i18n/vi.po index d28c2a1b249..5183a15128e 100644 --- a/addons/l10n_fr/i18n/vi.po +++ b/addons/l10n_fr/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: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/zh_CN.po b/addons/l10n_fr/i18n/zh_CN.po index ffdac24058b..c5b916f583f 100644 --- a/addons/l10n_fr/i18n/zh_CN.po +++ b/addons/l10n_fr/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: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/zh_TW.po b/addons/l10n_fr/i18n/zh_TW.po index f17932e4768..39c0ef2cc83 100644 --- a/addons/l10n_fr/i18n/zh_TW.po +++ b/addons/l10n_fr/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: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr_rib/i18n/ar.po b/addons/l10n_fr_rib/i18n/ar.po index 2bb5f7eae86..d1e88364d28 100644 --- a/addons/l10n_fr_rib/i18n/ar.po +++ b/addons/l10n_fr_rib/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/es.po b/addons/l10n_fr_rib/i18n/es.po index e9ebcecf26f..a6cf96cfb14 100644 --- a/addons/l10n_fr_rib/i18n/es.po +++ b/addons/l10n_fr_rib/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/es_CR.po b/addons/l10n_fr_rib/i18n/es_CR.po index 9a390365055..680a34401be 100644 --- a/addons/l10n_fr_rib/i18n/es_CR.po +++ b/addons/l10n_fr_rib/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/fr.po b/addons/l10n_fr_rib/i18n/fr.po index 9f186be4006..5c331b2c0d1 100644 --- a/addons/l10n_fr_rib/i18n/fr.po +++ b/addons/l10n_fr_rib/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/pt.po b/addons/l10n_fr_rib/i18n/pt.po index 596661368a4..f43258cac87 100644 --- a/addons/l10n_fr_rib/i18n/pt.po +++ b/addons/l10n_fr_rib/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/pt_BR.po b/addons/l10n_fr_rib/i18n/pt_BR.po index 3e16155b73f..ca3f12a34bf 100644 --- a/addons/l10n_fr_rib/i18n/pt_BR.po +++ b/addons/l10n_fr_rib/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 @@ -133,3 +133,7 @@ msgstr "Banco" #: model:res.partner.bank.type.field,name:l10n_fr_rib.rib_acc_number_field msgid "acc_number" msgstr "acc_number" + +#, python-format +#~ msgid "Error" +#~ msgstr "Error" diff --git a/addons/l10n_fr_rib/i18n/sl.po b/addons/l10n_fr_rib/i18n/sl.po index 97991186d52..56bc0f714e4 100644 --- a/addons/l10n_fr_rib/i18n/sl.po +++ b/addons/l10n_fr_rib/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/tr.po b/addons/l10n_fr_rib/i18n/tr.po index 8fd7be01f9e..e3479650e64 100644 --- a/addons/l10n_fr_rib/i18n/tr.po +++ b/addons/l10n_fr_rib/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_gr/account_tax.xml b/addons/l10n_gr/account_tax.xml index c3de033869b..36148f49a9b 100644 --- a/addons/l10n_gr/account_tax.xml +++ b/addons/l10n_gr/account_tax.xml @@ -21,6 +21,7 @@ + diff --git a/addons/l10n_gt/l10n_gt_base.xml b/addons/l10n_gt/l10n_gt_base.xml index 8caf6ebe48c..bfc91ddb83e 100644 --- a/addons/l10n_gt/l10n_gt_base.xml +++ b/addons/l10n_gt/l10n_gt_base.xml @@ -31,6 +31,7 @@ + diff --git a/addons/l10n_hn/l10n_hn_base.xml b/addons/l10n_hn/l10n_hn_base.xml index b8b85c3f2a7..8b9acf5c50a 100644 --- a/addons/l10n_hn/l10n_hn_base.xml +++ b/addons/l10n_hn/l10n_hn_base.xml @@ -17,6 +17,7 @@ + diff --git a/addons/l10n_hr/l10n_hr_chart_template.xml b/addons/l10n_hr/l10n_hr_chart_template.xml index d9a7db5710c..1cd998115c6 100644 --- a/addons/l10n_hr/l10n_hr_chart_template.xml +++ b/addons/l10n_hr/l10n_hr_chart_template.xml @@ -15,6 +15,7 @@ + diff --git a/addons/l10n_in/l10n_in_private_chart.xml b/addons/l10n_in/l10n_in_private_chart.xml index 4b8e4be55bf..efaa9844416 100644 --- a/addons/l10n_in/l10n_in_private_chart.xml +++ b/addons/l10n_in/l10n_in_private_chart.xml @@ -550,6 +550,7 @@ + diff --git a/addons/l10n_in/l10n_in_public_chart.xml b/addons/l10n_in/l10n_in_public_chart.xml index 91d285408d5..18633af054f 100644 --- a/addons/l10n_in/l10n_in_public_chart.xml +++ b/addons/l10n_in/l10n_in_public_chart.xml @@ -988,6 +988,7 @@ + diff --git a/addons/l10n_in_hr_payroll/__openerp__.py b/addons/l10n_in_hr_payroll/__openerp__.py index 6d891c7a08e..2522d543548 100644 --- a/addons/l10n_in_hr_payroll/__openerp__.py +++ b/addons/l10n_in_hr_payroll/__openerp__.py @@ -21,7 +21,6 @@ { 'name': 'Indian Payroll', 'category': 'Localization', - 'init_xml': [], 'author': 'OpenERP SA', 'website':'http://www.openerp.com', 'depends': ['hr_payroll'], @@ -43,7 +42,7 @@ Indian Payroll Salary Rules. - Yearly Salary by Head and Yearly Salary by Employee Report """, 'active': False, - 'update_xml': [ + 'data': [ 'l10n_in_hr_payroll_view.xml', 'data/l10n_in_hr_payroll_data.xml', 'data/hr.salary.rule.csv', @@ -61,7 +60,7 @@ Indian Payroll Salary Rules. 'test/payment_advice_batch.yml' ], - 'demo_xml': ['l10n_in_hr_payroll_demo.xml'], + 'demo': ['l10n_in_hr_payroll_demo.xml'], 'installable': True } diff --git a/addons/l10n_in_hr_payroll/i18n/bn.po b/addons/l10n_in_hr_payroll/i18n/bn.po index 6ac6da83fe0..2ba014ef5b5 100644 --- a/addons/l10n_in_hr_payroll/i18n/bn.po +++ b/addons/l10n_in_hr_payroll/i18n/bn.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/es.po b/addons/l10n_in_hr_payroll/i18n/es.po index 677b03c9e42..92d6588d5df 100644 --- a/addons/l10n_in_hr_payroll/i18n/es.po +++ b/addons/l10n_in_hr_payroll/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: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/gu.po b/addons/l10n_in_hr_payroll/i18n/gu.po index febb1ffc20e..4f8e113dc05 100644 --- a/addons/l10n_in_hr_payroll/i18n/gu.po +++ b/addons/l10n_in_hr_payroll/i18n/gu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/hi.po b/addons/l10n_in_hr_payroll/i18n/hi.po index e64529ecf71..a33e50bbfdb 100644 --- a/addons/l10n_in_hr_payroll/i18n/hi.po +++ b/addons/l10n_in_hr_payroll/i18n/hi.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/pl.po b/addons/l10n_in_hr_payroll/i18n/pl.po index 20718ca72f3..b4e1cc4765b 100644 --- a/addons/l10n_in_hr_payroll/i18n/pl.po +++ b/addons/l10n_in_hr_payroll/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: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/pt.po b/addons/l10n_in_hr_payroll/i18n/pt.po index 023ffa8db08..13b8fd21e00 100644 --- a/addons/l10n_in_hr_payroll/i18n/pt.po +++ b/addons/l10n_in_hr_payroll/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: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/pt_BR.po b/addons/l10n_in_hr_payroll/i18n/pt_BR.po index 54c982a1558..a08755fd95f 100644 --- a/addons/l10n_in_hr_payroll/i18n/pt_BR.po +++ b/addons/l10n_in_hr_payroll/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: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 @@ -25,12 +25,12 @@ msgstr "Endereço de E-mail" #. module: l10n_in_hr_payroll #: field:payment.advice.report,employee_bank_no:0 msgid "Employee Bank Account" -msgstr "" +msgstr "Empregado Conta Bancária" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Payment Advices which are in draft state" -msgstr "" +msgstr "Conselhos de pagamento que estão em estado de rascunho" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 @@ -40,17 +40,17 @@ msgstr "Tratamento" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "Payment Advice from" -msgstr "" +msgstr "Aviso de Pagamento de" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_yearly_salary_detail msgid "Hr Salary Employee By Category Report" -msgstr "" +msgstr "Hr salário do empregado por categoria de relatório" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Payslips which are paid" -msgstr "" +msgstr "Holerites que são pagos" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -62,12 +62,12 @@ msgstr "Agrupar por..." #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 msgid "Allowances with Basic:" -msgstr "" +msgstr "Subsídios com base:" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Payslips which are in done state" -msgstr "" +msgstr "Holerites que estão em estado feito" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 @@ -82,19 +82,19 @@ msgstr "Deduções:" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "A/C no." -msgstr "" +msgstr "A / C não." #. module: l10n_in_hr_payroll #: field:hr.contract,driver_salay:0 msgid "Driver Salary" -msgstr "" +msgstr "Salário motorista" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_yearly_salary_detail #: model:ir.actions.report.xml,name:l10n_in_hr_payroll.yearly_salary #: model:ir.ui.menu,name:l10n_in_hr_payroll.menu_yearly_salary_detail msgid "Yearly Salary by Employee" -msgstr "" +msgstr "Salário anual por funcionário" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.act_hr_emp_payslip_list @@ -126,7 +126,7 @@ msgstr "O Gerente" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Letter Details" -msgstr "" +msgstr "Detalhes carta" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -146,22 +146,22 @@ msgstr "Total:" #. module: l10n_in_hr_payroll #: field:hr.payslip.run,available_advice:0 msgid "Made Payment Advice?" -msgstr "" +msgstr "Feito Aviso de Pagamento?" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Advices which are paid using NEFT transfer" -msgstr "" +msgstr "Conselhos que são pagos com transferência NEFT" #. module: l10n_in_hr_payroll #: field:payslip.report,nbr:0 msgid "# Payslip lines" -msgstr "" +msgstr "# Payslip linhas" #. module: l10n_in_hr_payroll #: help:hr.contract,tds:0 msgid "Amount for Tax Deduction at Source" -msgstr "" +msgstr "Valor para dedução do imposto na fonte" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_hr_payslip @@ -179,154 +179,154 @@ msgstr "Dia" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Month of Payment Advices" -msgstr "" +msgstr "Mês de Conselhos de pagamento" #. module: l10n_in_hr_payroll #: constraint:hr.payslip:0 msgid "Payslip 'Date From' must be before 'Date To'." -msgstr "" +msgstr "Recibo de Pagamento 'Date From' deve ser antes 'Date To'." #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,batch_id:0 msgid "Batch" -msgstr "" +msgstr "Fornada" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Code" -msgstr "" +msgstr "Código" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Other Information" -msgstr "" +msgstr "Outras Informações" #. module: l10n_in_hr_payroll #: selection:hr.payroll.advice,state:0 #: selection:payment.advice.report,state:0 msgid "Cancelled" -msgstr "" +msgstr "Cancelado" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,help:l10n_in_hr_payroll.action_payslip_report_all msgid "This report performs analysis on Payslip" -msgstr "" +msgstr "Este relatório faz análise sobre Payslip" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "For" -msgstr "" +msgstr "Para" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Details by Salary Rule Category:" -msgstr "" +msgstr "Detalhes por Salário Categoria regra:" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,number:0 #: report:paylip.details.in:0 msgid "Reference" -msgstr "" +msgstr "Referência" #. module: l10n_in_hr_payroll #: field:hr.contract,medical_insurance:0 msgid "Medical Insurance" -msgstr "" +msgstr "Seguro Médico" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Identification No" -msgstr "" +msgstr "No de identificação" #. module: l10n_in_hr_payroll #: view:payslip.report:0 #: field:payslip.report,struct_id:0 msgid "Structure" -msgstr "" +msgstr "Estrutura" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "form period" -msgstr "" +msgstr "período de forma" #. module: l10n_in_hr_payroll #: selection:hr.payroll.advice,state:0 #: selection:payment.advice.report,state:0 msgid "Confirmed" -msgstr "" +msgstr "Confirmado" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 #: report:salary.employee.bymonth:0 msgid "From" -msgstr "" +msgstr "De" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,bysal:0 #: field:payment.advice.report,bysal:0 #: report:payroll.advice:0 msgid "By Salary" -msgstr "" +msgstr "Pelo salário" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 #: view:payment.advice.report:0 msgid "Confirm" -msgstr "" +msgstr "Confirmar" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,chaque_nos:0 #: field:payment.advice.report,cheque_nos:0 msgid "Cheque Numbers" -msgstr "" +msgstr "Números Cheque" #. module: l10n_in_hr_payroll #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "" +msgstr "Erro! Você não pode criar empresas recursivas." #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_salary_employee_month #: model:ir.actions.report.xml,name:l10n_in_hr_payroll.hr_salary_employee_bymonth #: model:ir.ui.menu,name:l10n_in_hr_payroll.menu_salary_employee_month msgid "Yearly Salary by Head" -msgstr "" +msgstr "Salário anualmente pelo Chefe" #. module: l10n_in_hr_payroll #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:134 #, python-format msgid "You can not confirm Payment advice without advice lines." -msgstr "" +msgstr "Você não pode confirmar o aviso de pagamento sem linhas conselhos." #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "Yours Sincerely" -msgstr "" +msgstr "Sinceramente seu" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "# Payslip Lines" -msgstr "" +msgstr "# Payslip Lines" #. module: l10n_in_hr_payroll #: help:hr.contract,medical_insurance:0 msgid "Deduction towards company provided medical insurance" -msgstr "" +msgstr "Dedução para a empresa forneceu seguro médico" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_hr_payroll_advice_line msgid "Bank Advice Lines" -msgstr "" +msgstr "Banco de Opiniões" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Day of Payslip" -msgstr "" +msgstr "Dia do Recibo de Pagamento" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Email" -msgstr "" +msgstr "Email" #. module: l10n_in_hr_payroll #: help:hr.payslip.run,available_advice:0 @@ -334,6 +334,8 @@ msgid "" "If this box is checked which means that Payment Advice exists for current " "batch" msgstr "" +"Se esta caixa estiver marcada, o que significa que o Aviso de Pagamento " +"existe para lote atual" #. module: l10n_in_hr_payroll #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:108 @@ -342,83 +344,83 @@ msgstr "" #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:207 #, python-format msgid "Error !" -msgstr "" +msgstr "Erro!" #. module: l10n_in_hr_payroll #: field:payslip.report,paid:0 msgid "Made Payment Order ? " -msgstr "" +msgstr "Feito Ordem de Pagamento? " #. module: l10n_in_hr_payroll #: view:hr.salary.employee.month:0 #: view:yearly.salary.detail:0 msgid "Print" -msgstr "" +msgstr "Imprimir" #. module: l10n_in_hr_payroll #: selection:payslip.report,state:0 msgid "Rejected" -msgstr "" +msgstr "Rejeitado" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Year of Payslip" -msgstr "" +msgstr "Ano de Recibo de Pagamento" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_hr_payslip_run msgid "Payslip Batches" -msgstr "" +msgstr "Lotes holerite" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,debit_credit:0 #: report:payroll.advice:0 msgid "C/D" -msgstr "" +msgstr "C / D" #. module: l10n_in_hr_payroll #: report:salary.employee.bymonth:0 msgid "Yearly Salary Details" -msgstr "" +msgstr "Anualmente Detalhes Salário" #. module: l10n_in_hr_payroll #: model:ir.actions.report.xml,name:l10n_in_hr_payroll.payroll_advice msgid "Print Advice" -msgstr "" +msgstr "Imprimir Advice" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,line_ids:0 msgid "Employee Salary" -msgstr "" +msgstr "Salário empregado" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "July" -msgstr "" +msgstr "Julho" #. module: l10n_in_hr_payroll #: view:res.company:0 msgid "Configuration" -msgstr "" +msgstr "Configuração" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Payslip Line" -msgstr "" +msgstr "Payslip Linha" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_view_hr_bank_advice_tree #: model:ir.ui.menu,name:l10n_in_hr_payroll.hr_menu_payment_advice msgid "Payment Advices" -msgstr "" +msgstr "Conselhos de pagamento" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_payment_advice_report_all #: model:ir.ui.menu,name:l10n_in_hr_payroll.menu_reporting_payment_advice #: view:payment.advice.report:0 msgid "Advices Analysis" -msgstr "" +msgstr "Conselhos Análise" #. module: l10n_in_hr_payroll #: view:hr.salary.employee.month:0 @@ -426,69 +428,72 @@ msgid "" "This wizard will print report which displays employees break-up of Net Head " "for a specified dates." msgstr "" +"Este assistente irá imprimir o relatório que exibe os funcionários break-up " +"de Cabeça líquida por datas especificadas." #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,ifsc:0 msgid "IFSC" -msgstr "" +msgstr "IFSC" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 #: field:payslip.report,date_to:0 msgid "Date To" -msgstr "" +msgstr "Dados do Pará" #. module: l10n_in_hr_payroll #: field:hr.contract,tds:0 msgid "TDS" -msgstr "" +msgstr "TDS" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Confirm Advices" -msgstr "" +msgstr "Confirme Conselhos" #. module: l10n_in_hr_payroll #: constraint:hr.contract:0 msgid "Error! Contract start-date must be less than contract end-date." msgstr "" +"Erro! Contrato data de início deve ser inferior a contrato data final." #. module: l10n_in_hr_payroll #: field:res.company,dearness_allowance:0 msgid "Dearness Allowance" -msgstr "" +msgstr "Provisão Dearness" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "August" -msgstr "" +msgstr "Agosto" #. module: l10n_in_hr_payroll #: view:hr.contract:0 msgid "Deduction" -msgstr "" +msgstr "Dedução" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "SI. No." -msgstr "" +msgstr "Nao." #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Payment Advices which are in confirm state" -msgstr "" +msgstr "Conselhos de Pagamento Que estao los Estado de Confirmação" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "December" -msgstr "" +msgstr "DEZEMBRO" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Confirm Sheet" -msgstr "" +msgstr "Confirme Folha" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 @@ -496,30 +501,30 @@ msgstr "" #: view:payslip.report:0 #: field:payslip.report,month:0 msgid "Month" -msgstr "" +msgstr "Mês" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 msgid "Employee Code" -msgstr "" +msgstr "Código Empregado" #. module: l10n_in_hr_payroll #: view:hr.salary.employee.month:0 #: view:yearly.salary.detail:0 msgid "or" -msgstr "" +msgstr "UO" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_hr_salary_employee_month msgid "Hr Salary Employee By Month Report" -msgstr "" +msgstr "Hr Salário fazer Empregado POR Mês de Relatório" #. module: l10n_in_hr_payroll #: field:hr.salary.employee.month,category_id:0 #: view:payslip.report:0 #: field:payslip.report,category_id:0 msgid "Category" -msgstr "" +msgstr "Categoria" #. module: l10n_in_hr_payroll #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:190 @@ -527,21 +532,23 @@ msgstr "" msgid "" "Payment advice already exists for %s, 'Set to Draft' to create a new advice." msgstr "" +"Aviso de pagamento já existe para% s, 'Configure para Projecto' para criar " +"um novo conselho." #. module: l10n_in_hr_payroll #: view:hr.payslip.run:0 msgid "To Advice" -msgstr "" +msgstr "Pará Advice" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Note" -msgstr "" +msgstr "Nota" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Salary Rule Category" -msgstr "" +msgstr "Salário Categoria Rule" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -551,23 +558,23 @@ msgstr "" #: view:payslip.report:0 #: selection:payslip.report,state:0 msgid "Draft" -msgstr "" +msgstr "Rascunho" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 #: field:payslip.report,date_from:0 msgid "Date From" -msgstr "" +msgstr "Data a partir da" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 msgid "Employee Name" -msgstr "" +msgstr "Nome do Funcionário" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_payment_advice_report msgid "Payment Advice Analysis" -msgstr "" +msgstr "Pagamento Análise Advice" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -577,30 +584,31 @@ msgstr "" #: view:payslip.report:0 #: field:payslip.report,state:0 msgid "Status" -msgstr "" +msgstr "Situação" #. module: l10n_in_hr_payroll #: help:res.company,dearness_allowance:0 msgid "Check this box if your company provide Dearness Allowance to employee" msgstr "" +"Marque esta caixa se sua empresa oferece subsídio para Dearness empregado" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,ifsc_code:0 #: field:payment.advice.report,ifsc_code:0 #: report:payroll.advice:0 msgid "IFSC Code" -msgstr "" +msgstr "IFSC Código" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "June" -msgstr "" +msgstr "Junho" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Paid" -msgstr "" +msgstr "Pago" #. module: l10n_in_hr_payroll #: help:hr.contract,voluntary_provident_fund:0 @@ -609,114 +617,116 @@ msgid "" "12% that has been mandated by the government and VPF computed as " "percentage(%)" msgstr "" +"VPF é uma opção segura onde você pode contribuir mais do que o teto PF de " +"12% que foi mandatado pelo governo e VPF calculado em percentagem (%)" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 #: field:payment.advice.report,nbr:0 msgid "# Payment Lines" -msgstr "" +msgstr "# Linhas de Pagamento" #. module: l10n_in_hr_payroll #: model:ir.actions.report.xml,name:l10n_in_hr_payroll.payslip_details_report msgid "PaySlip Details" -msgstr "" +msgstr "Detalhes holerite" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Payment Lines" -msgstr "" +msgstr "Linhas de pagamento" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,date:0 #: field:payment.advice.report,date:0 msgid "Date" -msgstr "" +msgstr "Data" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "November" -msgstr "" +msgstr "Novembro" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 #: view:payslip.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Filtros estendidas ..." #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,help:l10n_in_hr_payroll.action_payment_advice_report_all msgid "This report performs analysis on Payment Advices" -msgstr "" +msgstr "Este relatório faz análise sobre Conselhos de pagamento" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "October" -msgstr "" +msgstr "Outubro" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 #: report:salary.detail.byyear:0 msgid "Designation" -msgstr "" +msgstr "Designação" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Month of Payslip" -msgstr "" +msgstr "Mês de Recibo de Pagamento" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "January" -msgstr "" +msgstr "Janeiro" #. module: l10n_in_hr_payroll #: view:yearly.salary.detail:0 msgid "Pay Head Employee Breakup" -msgstr "" +msgstr "Preste Cabeça Breakup Employee" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_res_company msgid "Companies" -msgstr "" +msgstr "Empresas" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 #: report:payroll.advice:0 msgid "Authorized Signature" -msgstr "" +msgstr "Assinatura Autorizada" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_hr_contract msgid "Contract" -msgstr "" +msgstr "Contrato" #. module: l10n_in_hr_payroll #: field:hr.contract,supplementary_allowance:0 msgid "Supplementary Allowance" -msgstr "" +msgstr "Provisão Complementar" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice.line:0 msgid "Advice Lines" -msgstr "" +msgstr "Linhas de conselhos" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "To," -msgstr "" +msgstr "Para," #. module: l10n_in_hr_payroll #: help:hr.contract,driver_salay:0 msgid "Check this box if you provide allowance for driver" -msgstr "" +msgstr "Marque esta caixa se você fornecer subsídio para o motorista" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Payslips which are in draft state" -msgstr "" +msgstr "Holerites que estão em estado de rascunho" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -724,57 +734,59 @@ msgstr "" #: field:hr.payslip,advice_id:0 #: model:ir.model,name:l10n_in_hr_payroll.model_hr_payroll_advice msgid "Bank Advice" -msgstr "" +msgstr "Banco Advice" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 msgid "Other No." -msgstr "" +msgstr "Outros Não." #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Draft Advices" -msgstr "" +msgstr "Projecto Conselhos" #. module: l10n_in_hr_payroll #: help:hr.payroll.advice,neft:0 msgid "Check this box if your company use online transfer for salary" msgstr "" +"Marque esta caixa se a sua empresa utilizar a transferência on-line para o " +"salário" #. module: l10n_in_hr_payroll #: field:payment.advice.report,number:0 #: field:payslip.report,number:0 msgid "Number" -msgstr "" +msgstr "Número" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "September" -msgstr "" +msgstr "Setembro" #. module: l10n_in_hr_payroll #: view:payslip.report:0 #: selection:payslip.report,state:0 msgid "Done" -msgstr "" +msgstr "Feito" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 #: view:hr.salary.employee.month:0 #: view:yearly.salary.detail:0 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Day of Payment Advices" -msgstr "" +msgstr "Dia dos Conselhos de pagamento" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Search Payment advice" -msgstr "" +msgstr "Pesquisa aviso de Pagamento" #. module: l10n_in_hr_payroll #: view:yearly.salary.detail:0 @@ -782,16 +794,18 @@ msgid "" "This wizard will print report which display a pay head employee breakup for " "a specified dates." msgstr "" +"Este assistente irá imprimir o relatório que exibem um salário cabeça " +"empregado separação por datas especificadas." #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Pay Slip Details" -msgstr "" +msgstr "DETALHES Pagar deslizamento" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Total Salary" -msgstr "" +msgstr "Total de Salário" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,employee_id:0 @@ -800,44 +814,44 @@ msgstr "" #: view:payslip.report:0 #: field:payslip.report,employee_id:0 msgid "Employee" -msgstr "" +msgstr "Empregado" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Compute Advice" -msgstr "" +msgstr "Calcule Advice" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "Dear Sir/Madam," -msgstr "" +msgstr "Dear Sir / Madam," #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,note:0 msgid "Description" -msgstr "" +msgstr "Descrição" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "May" -msgstr "" +msgstr "Maio" #. module: l10n_in_hr_payroll #: view:res.company:0 msgid "Payroll" -msgstr "" +msgstr "Folha de pagamentos" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "NEFT" -msgstr "" +msgstr "NEFT" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 #: report:salary.detail.byyear:0 msgid "Address" -msgstr "" +msgstr "Endereço" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -847,24 +861,24 @@ msgstr "" #: report:payroll.advice:0 #: report:salary.detail.byyear:0 msgid "Bank" -msgstr "" +msgstr "Banco" #. module: l10n_in_hr_payroll #: field:hr.salary.employee.month,end_date:0 #: field:yearly.salary.detail,date_to:0 msgid "End Date" -msgstr "" +msgstr "Data final" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "February" -msgstr "" +msgstr "Fevereiro" #. module: l10n_in_hr_payroll #: sql_constraint:res.company:0 msgid "The company name must be unique !" -msgstr "" +msgstr "O nome da empresa deve ser exclusivo!" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -874,7 +888,7 @@ msgstr "" #: field:payslip.report,name:0 #: report:salary.employee.bymonth:0 msgid "Name" -msgstr "" +msgstr "Nome" #. module: l10n_in_hr_payroll #: view:hr.salary.employee.month:0 @@ -882,12 +896,12 @@ msgstr "" #: view:yearly.salary.detail:0 #: field:yearly.salary.detail,employee_ids:0 msgid "Employees" -msgstr "" +msgstr "Funcionários" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Bank Account" -msgstr "" +msgstr "Conta bancária" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_payslip_report_all @@ -895,87 +909,87 @@ msgstr "" #: model:ir.ui.menu,name:l10n_in_hr_payroll.menu_reporting_payslip #: view:payslip.report:0 msgid "Payslip Analysis" -msgstr "" +msgstr "Recibo de Pagamento Análise" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "April" -msgstr "" +msgstr "Abril" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "Name of the Employe" -msgstr "" +msgstr "Nome do" #. module: l10n_in_hr_payroll #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:108 #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:207 #, python-format msgid "Please define bank account for the %s employee" -msgstr "" +msgstr "Por favor, defina conta bancária para o empregado% s" #. module: l10n_in_hr_payroll #: field:hr.salary.employee.month,start_date:0 #: field:yearly.salary.detail,date_from:0 msgid "Start Date" -msgstr "" +msgstr "Data de Início" #. module: l10n_in_hr_payroll #: view:hr.contract:0 msgid "Allowance" -msgstr "" +msgstr "Abono" #. module: l10n_in_hr_payroll #: field:hr.contract,voluntary_provident_fund:0 msgid "Voluntary Provident Fund (%)" -msgstr "" +msgstr "Fundo Voluntário Provident (%)" #. module: l10n_in_hr_payroll #: field:hr.contract,house_rent_allowance_metro_nonmetro:0 msgid "House Rent Allowance (%)" -msgstr "" +msgstr "Casa Rent Provisão (%)" #. module: l10n_in_hr_payroll #: help:hr.payroll.advice,bank_id:0 msgid "Select the Bank from which the salary is going to be paid" -msgstr "" +msgstr "Selecione o Banco de que o salário vai ser pago" #. module: l10n_in_hr_payroll #: view:hr.salary.employee.month:0 msgid "Employee Pay Head Breakup" -msgstr "" +msgstr "Empregado de Pagamento Cabeça Breakup" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 msgid "Phone No." -msgstr "" +msgstr "Telefone No." #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Credit" -msgstr "" +msgstr "Crédito" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,name:0 #: report:payroll.advice:0 msgid "Bank Account No." -msgstr "" +msgstr "Conta Bancária n º" #. module: l10n_in_hr_payroll #: help:hr.payroll.advice,date:0 msgid "Advice Date is used to search Payslips" -msgstr "" +msgstr "Advice Data é usado para procurar Payslips" #. module: l10n_in_hr_payroll #: view:hr.payslip.run:0 msgid "Payslip Batches ready to be Adviced" -msgstr "" +msgstr "Lotes holerite pronto para ser Adviced" #. module: l10n_in_hr_payroll #: view:hr.payslip.run:0 msgid "Create Advice" -msgstr "" +msgstr "Criar Advice" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 @@ -983,13 +997,13 @@ msgstr "" #: view:payslip.report:0 #: field:payslip.report,year:0 msgid "Year" -msgstr "" +msgstr "Ano" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,neft:0 #: field:payment.advice.report,neft:0 msgid "NEFT Transaction" -msgstr "" +msgstr "NEFT Transação" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 @@ -997,7 +1011,7 @@ msgstr "" #: report:salary.detail.byyear:0 #: report:salary.employee.bymonth:0 msgid "Total" -msgstr "" +msgstr "Total" #. module: l10n_in_hr_payroll #: help:hr.contract,house_rent_allowance_metro_nonmetro:0 @@ -1006,8 +1020,11 @@ msgid "" "his rental or accommodation expenses for metro city it is 50 % and for non " "metro 40%.HRA computed as percentage(%)" msgstr "" +"HRA é um benefício concedido pelo empregador ao empregado para cuidar de seu " +"aluguel ou despesas de alojamento para a cidade de metro é de 50% e para 40% " +"não metro. HRA calculado em percentagem (%)" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Year of Payment Advices" -msgstr "" +msgstr "Ano de Conselhos de pagamento" diff --git a/addons/l10n_in_hr_payroll/i18n/sl.po b/addons/l10n_in_hr_payroll/i18n/sl.po index 386080f7f8f..8d86c7c71a1 100644 --- a/addons/l10n_in_hr_payroll/i18n/sl.po +++ b/addons/l10n_in_hr_payroll/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: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/ta.po b/addons/l10n_in_hr_payroll/i18n/ta.po index 5f51e7a35b0..1ab24ac822e 100644 --- a/addons/l10n_in_hr_payroll/i18n/ta.po +++ b/addons/l10n_in_hr_payroll/i18n/ta.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/te.po b/addons/l10n_in_hr_payroll/i18n/te.po index a4d1401b7ba..a3e0215ed71 100644 --- a/addons/l10n_in_hr_payroll/i18n/te.po +++ b/addons/l10n_in_hr_payroll/i18n/te.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/tr.po b/addons/l10n_in_hr_payroll/i18n/tr.po index 2ed1a97f6e7..c45ebba8e9a 100644 --- a/addons/l10n_in_hr_payroll/i18n/tr.po +++ b/addons/l10n_in_hr_payroll/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: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/zh_CN.po b/addons/l10n_in_hr_payroll/i18n/zh_CN.po index 8ee2c7f2028..1bc79603764 100644 --- a/addons/l10n_in_hr_payroll/i18n/zh_CN.po +++ b/addons/l10n_in_hr_payroll/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: 2013-06-25 05:14+0000\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:36+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py b/addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py index fc715ece5b8..f0751684dba 100644 --- a/addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py +++ b/addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py @@ -44,7 +44,7 @@ class hr_contract(osv.osv): 'driver_salay': fields.boolean('Driver Salary', help="Check this box if you provide allowance for driver"), 'medical_insurance': fields.float('Medical Insurance', digits_compute=dp.get_precision('Payroll'), help="Deduction towards company provided medical insurance"), 'voluntary_provident_fund': fields.float('Voluntary Provident Fund (%)', digits_compute=dp.get_precision('Payroll'), help="VPF is a safe option wherein you can contribute more than the PF ceiling of 12% that has been mandated by the government and VPF computed as percentage(%)"), - 'house_rent_allowance_metro_nonmetro': fields.float('House Rent Allowance (%)', digits_compute=dp.get_precision('Payroll'), help="HRA is an allowance given by the employer to the employee for taking care of his rental or accommodation expenses for metro city it is 50 % and for non metro 40%.HRA computed as percentage(%)"), + 'house_rent_allowance_metro_nonmetro': fields.float('House Rent Allowance (%)', digits_compute=dp.get_precision('Payroll'), help="HRA is an allowance given by the employer to the employee for taking care of his rental or accommodation expenses for metro city it is 50% and for non metro 40%. \nHRA computed as percentage(%)"), 'supplementary_allowance': fields.float('Supplementary Allowance', digits_compute=dp.get_precision('Payroll')), } diff --git a/addons/l10n_in_hr_payroll/l10n_in_hr_payroll_view.xml b/addons/l10n_in_hr_payroll/l10n_in_hr_payroll_view.xml index 51c63c730ff..d65f02a332b 100644 --- a/addons/l10n_in_hr_payroll/l10n_in_hr_payroll_view.xml +++ b/addons/l10n_in_hr_payroll/l10n_in_hr_payroll_view.xml @@ -92,7 +92,7 @@ diff --git a/addons/l10n_lu/account_chart_template.xml b/addons/l10n_lu/account_chart_template.xml index f0986277343..254feaa932e 100644 --- a/addons/l10n_lu/account_chart_template.xml +++ b/addons/l10n_lu/account_chart_template.xml @@ -13,6 +13,7 @@ + diff --git a/addons/l10n_ma/l10n_ma_tax.xml b/addons/l10n_ma/l10n_ma_tax.xml index 070d2d4fc9b..5bc59035861 100644 --- a/addons/l10n_ma/l10n_ma_tax.xml +++ b/addons/l10n_ma/l10n_ma_tax.xml @@ -742,7 +742,9 @@ - + + + diff --git a/addons/l10n_multilang/i18n/ar.po b/addons/l10n_multilang/i18n/ar.po index 4fe7aa47728..59268a1089d 100644 --- a/addons/l10n_multilang/i18n/ar.po +++ b/addons/l10n_multilang/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/de.po b/addons/l10n_multilang/i18n/de.po index b477fbfc7ca..b426d455604 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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/es.po b/addons/l10n_multilang/i18n/es.po index 8d5778aa611..686eb2ec448 100644 --- a/addons/l10n_multilang/i18n/es.po +++ b/addons/l10n_multilang/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\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 703a53b40db..dfe8b927fab 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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\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 ae062992f0e..3558a726858 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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/hr.po b/addons/l10n_multilang/i18n/hr.po index 8953d1a63ff..9bac3062251 100644 --- a/addons/l10n_multilang/i18n/hr.po +++ b/addons/l10n_multilang/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/hu.po b/addons/l10n_multilang/i18n/hu.po index c52d77567f3..ae1829851ec 100644 --- a/addons/l10n_multilang/i18n/hu.po +++ b/addons/l10n_multilang/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template @@ -66,7 +66,7 @@ msgstr "A leírás egyedi kell legyen minden vállalathoz!" #. module: l10n_multilang #: constraint:account.tax.code.template:0 msgid "Error ! You can not create recursive Tax Codes." -msgstr "Hiba! Nem hozhat létre rekurzív adógyűjtőket." +msgstr "Hiba! Nem hozhat létre rekurzív adókódokat." #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_tax_template @@ -149,7 +149,7 @@ msgstr "A napló kódjának egyedinek kell lennie mindegyik vállalathoz!" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position msgid "Fiscal Position" -msgstr "Költségvetési pozíció" +msgstr "ÁFA pozíció" #. module: l10n_multilang #: constraint:account.account:0 diff --git a/addons/l10n_multilang/i18n/mn.po b/addons/l10n_multilang/i18n/mn.po index c6e7ffe0948..a15dcbf6869 100644 --- a/addons/l10n_multilang/i18n/mn.po +++ b/addons/l10n_multilang/i18n/mn.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template msgid "Template for Fiscal Position" -msgstr "Санхүүгийн харгалзуулалтын үлгэр" +msgstr "Санхүүгийн харгалзааны үлгэр" #. module: l10n_multilang #: sql_constraint:account.account:0 diff --git a/addons/l10n_multilang/i18n/nl.po b/addons/l10n_multilang/i18n/nl.po index 4589b05bb5e..60f1afd12c9 100644 --- a/addons/l10n_multilang/i18n/nl.po +++ b/addons/l10n_multilang/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/pl.po b/addons/l10n_multilang/i18n/pl.po index 2bbfd9c6a9b..0782275a2e5 100644 --- a/addons/l10n_multilang/i18n/pl.po +++ b/addons/l10n_multilang/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\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 39ae005dede..e59c3b32639 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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/pt_BR.po b/addons/l10n_multilang/i18n/pt_BR.po index 4c99cfa5fa3..5dc62a5e3b1 100644 --- a/addons/l10n_multilang/i18n/pt_BR.po +++ b/addons/l10n_multilang/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\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 a9eba2b7491..d57288f771b 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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/sl.po b/addons/l10n_multilang/i18n/sl.po index 89f029f4d9c..1e207b361eb 100644 --- a/addons/l10n_multilang/i18n/sl.po +++ b/addons/l10n_multilang/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\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 index 46d8cb94f86..be25ab161e4 100644 --- a/addons/l10n_multilang/i18n/tr.po +++ b/addons/l10n_multilang/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: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/zh_CN.po b/addons/l10n_multilang/i18n/zh_CN.po index bb1f5830977..40b9b024813 100644 --- a/addons/l10n_multilang/i18n/zh_CN.po +++ b/addons/l10n_multilang/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: 2013-07-25 05:13+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_mx/data/account_chart.xml b/addons/l10n_mx/data/account_chart.xml index 491942e4b72..daa564fd10e 100644 --- a/addons/l10n_mx/data/account_chart.xml +++ b/addons/l10n_mx/data/account_chart.xml @@ -3695,6 +3695,7 @@ Cuentas del plan + diff --git a/addons/l10n_nl/account_chart_netherlands.xml b/addons/l10n_nl/account_chart_netherlands.xml index c7eefb42cde..03d9879a100 100644 --- a/addons/l10n_nl/account_chart_netherlands.xml +++ b/addons/l10n_nl/account_chart_netherlands.xml @@ -4102,6 +4102,7 @@ + - Polska - Plan kont - - - - + Polska - Plan kont + + + + + - + \ No newline at end of file diff --git a/addons/l10n_pl/account_tax.xml b/addons/l10n_pl/account_tax.xml index d3ba9b221bf..de4123708d9 100644 --- a/addons/l10n_pl/account_tax.xml +++ b/addons/l10n_pl/account_tax.xml @@ -1,10 +1,10 @@ - + - VAT-22%(22.0%) - 0.220000 + VAT-23%(23.0%) + 0.230000 percent sale @@ -16,10 +16,10 @@ - + - VAT-7%(7.0%) - 0.070000 + VAT-8%(8.0%) + 0.080000 percent sale @@ -31,7 +31,22 @@ - + + + VAT-5%(5.0%) + 0.050000 + percent + sale + + + + + + + + + + VAT-0%(0.0%) 0.000000 @@ -46,10 +61,11 @@ - + + - VAT naliczony-22%(22.0%) - 0.220000 + VAT naliczony-23%(23.0%) + 0.230000 percent purchase @@ -61,10 +77,10 @@ - + - VAT naliczony-7%(7.0%) - 0.070000 + VAT naliczony-8%(8.0%) + 0.080000 percent purchase @@ -76,7 +92,22 @@ - + + + VAT naliczony-5%(5.0%) + 0.050000 + percent + purchase + + + + + + + + + + VAT naliczony-0%(0.0%) 0.000000 @@ -92,4 +123,4 @@ - + \ No newline at end of file diff --git a/addons/l10n_pt/__openerp__.py b/addons/l10n_pt/__openerp__.py index 03e3b0e9baa..978c3efc91e 100644 --- a/addons/l10n_pt/__openerp__.py +++ b/addons/l10n_pt/__openerp__.py @@ -33,8 +33,8 @@ 'account', 'account_chart', ], - 'init_xml': [], - 'update_xml': ['account_types.xml', + 'data': [ + 'account_types.xml', 'account_chart.xml', 'account_tax_code_template.xml', 'account_chart_template.xml', @@ -42,7 +42,7 @@ 'account_taxes.xml', 'l10n_chart_pt_wizard.xml', ], - 'demo_xml': [], + 'demo': [], 'installable': True, } diff --git a/addons/l10n_pt/account_chart_template.xml b/addons/l10n_pt/account_chart_template.xml index 25ddc500def..49adfa393ef 100644 --- a/addons/l10n_pt/account_chart_template.xml +++ b/addons/l10n_pt/account_chart_template.xml @@ -16,6 +16,7 @@ + diff --git a/addons/l10n_ro/account_chart.xml b/addons/l10n_ro/account_chart.xml index 1e0a9b749f7..169e4bfa206 100644 --- a/addons/l10n_ro/account_chart.xml +++ b/addons/l10n_ro/account_chart.xml @@ -4587,7 +4587,7 @@ - + diff --git a/addons/l10n_syscohada/l10n_syscohada_data.xml b/addons/l10n_syscohada/l10n_syscohada_data.xml index d90988e00e3..d4be067bfa2 100644 --- a/addons/l10n_syscohada/l10n_syscohada_data.xml +++ b/addons/l10n_syscohada/l10n_syscohada_data.xml @@ -1850,6 +1850,7 @@ + diff --git a/addons/l10n_th/account_data.xml b/addons/l10n_th/account_data.xml index 9ae3d9e3364..a6de0ced477 100644 --- a/addons/l10n_th/account_data.xml +++ b/addons/l10n_th/account_data.xml @@ -477,6 +477,7 @@ + diff --git a/addons/l10n_tr/account_chart_template.xml b/addons/l10n_tr/account_chart_template.xml index 3e10353298e..a15af467932 100644 --- a/addons/l10n_tr/account_chart_template.xml +++ b/addons/l10n_tr/account_chart_template.xml @@ -12,6 +12,7 @@ + diff --git a/addons/l10n_us/account_chart_template.xml b/addons/l10n_us/account_chart_template.xml index 0863680981f..704afbad152 100644 --- a/addons/l10n_us/account_chart_template.xml +++ b/addons/l10n_us/account_chart_template.xml @@ -6,6 +6,7 @@ Basic Chart of Account + @@ -13,45 +14,53 @@ + Advertising + Agriculture + Construction Trades (Plumber, Electrician, HVAC, etc.) + Financial Services other than Accounting or Bookkeeping + General Service-Based Business + Legal Services + General Product-Based Business + diff --git a/addons/l10n_us/account_chart_template_after.xml b/addons/l10n_us/account_chart_template_after.xml index 5ca3a169aba..4cd1472773d 100644 --- a/addons/l10n_us/account_chart_template_after.xml +++ b/addons/l10n_us/account_chart_template_after.xml @@ -6,33 +6,43 @@ + + + + + + + + + + diff --git a/addons/l10n_us/l10n_us_wizard.xml b/addons/l10n_us/l10n_us_wizard.xml index 52aaa88fdab..19d27fb47c7 100644 --- a/addons/l10n_us/l10n_us_wizard.xml +++ b/addons/l10n_us/l10n_us_wizard.xml @@ -1,5 +1,6 @@ + open diff --git a/addons/l10n_uy/account_chart_template.xml b/addons/l10n_uy/account_chart_template.xml index 4ce35184967..2e800e4c5cb 100644 --- a/addons/l10n_uy/account_chart_template.xml +++ b/addons/l10n_uy/account_chart_template.xml @@ -1895,6 +1895,7 @@ + diff --git a/addons/l10n_ve/data/account_chart.xml b/addons/l10n_ve/data/account_chart.xml index 05645805a84..2dba15f1b18 100644 --- a/addons/l10n_ve/data/account_chart.xml +++ b/addons/l10n_ve/data/account_chart.xml @@ -3315,6 +3315,7 @@ + diff --git a/addons/l10n_ve/data/account_tax.xml b/addons/l10n_ve/data/account_tax.xml index d28b0d1d8f3..7acbda3e2af 100644 --- a/addons/l10n_ve/data/account_tax.xml +++ b/addons/l10n_ve/data/account_tax.xml @@ -1,12 +1,12 @@ - + Exento 0.00000 percent - sale + all @@ -54,19 +54,6 @@ - - - Exento - 0.00000 - percent - purchase - - - - - - - IVA (12.0%) compras diff --git a/addons/l10n_vn/account_chart.xml b/addons/l10n_vn/account_chart.xml index c7d3f6a9ee3..4f7a5d90a49 100755 --- a/addons/l10n_vn/account_chart.xml +++ b/addons/l10n_vn/account_chart.xml @@ -2015,7 +2015,7 @@ - + diff --git a/addons/lunch/i18n/ar.po b/addons/lunch/i18n/ar.po index 48ba22f1aab..9ecb8f5ae3f 100644 --- a/addons/lunch/i18n/ar.po +++ b/addons/lunch/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: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "ملاحظة" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "إضافة" diff --git a/addons/lunch/i18n/bg.po b/addons/lunch/i18n/bg.po index f178f8ab983..fc06b3ed16b 100644 --- a/addons/lunch/i18n/bg.po +++ b/addons/lunch/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: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/ca.po b/addons/lunch/i18n/ca.po index 47180e106e4..e1f4be28c59 100644 --- a/addons/lunch/i18n/ca.po +++ b/addons/lunch/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: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/cs.po b/addons/lunch/i18n/cs.po index 1847a6e423a..23c23fff868 100644 --- a/addons/lunch/i18n/cs.po +++ b/addons/lunch/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: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Language: Czech\n" #. module: lunch @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/da.po b/addons/lunch/i18n/da.po index b9dc0692c3f..f1f0621a922 100644 --- a/addons/lunch/i18n/da.po +++ b/addons/lunch/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: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/de.po b/addons/lunch/i18n/de.po index a2ff8c9eb25..5ea700b53ea 100644 --- a/addons/lunch/i18n/de.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -205,7 +205,7 @@ msgstr "Mitarbeiter Mahlzeiten Bezahlung" #. module: lunch #: view:lunch.alert:0 msgid "alert tree" -msgstr "" +msgstr "Alarm Liste" #. module: lunch #: model:ir.model,name:lunch.model_report_lunch_order_line @@ -289,7 +289,7 @@ msgstr "Gesamtpreis" #. module: lunch #: model:ir.model,name:lunch.model_lunch_validation msgid "lunch validation for order" -msgstr "" +msgstr "Bestätigung des Mittagessen" #. module: lunch #: report:lunch.order.line:0 @@ -504,7 +504,7 @@ msgid "Note" msgstr "Notiz" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Hinzufügen" @@ -976,7 +976,7 @@ msgstr "Abbrechen Auftragszeilen" #. module: lunch #: model:ir.model,name:lunch.model_lunch_product_category msgid "lunch product category" -msgstr "" +msgstr "Mittagessen Produktkategorie" #. module: lunch #: field:lunch.alert,saturday:0 @@ -1011,7 +1011,7 @@ msgstr "Produkt Suche" #: field:lunch.order,total:0 #: view:lunch.order.line:0 msgid "Total" -msgstr "" +msgstr "Bruttobetrag" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_order_tree diff --git a/addons/lunch/i18n/es.po b/addons/lunch/i18n/es.po index 207f71eb580..001d2f25683 100644 --- a/addons/lunch/i18n/es.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -498,7 +498,7 @@ msgid "Note" msgstr "Nota" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Añadir" diff --git a/addons/lunch/i18n/es_CR.po b/addons/lunch/i18n/es_CR.po index 79ebba1905e..da90daa0e1e 100644 --- a/addons/lunch/i18n/es_CR.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: es\n" #. module: lunch @@ -448,7 +448,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/es_PY.po b/addons/lunch/i18n/es_PY.po index f29914419c5..d5a06e44807 100644 --- a/addons/lunch/i18n/es_PY.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/fi.po b/addons/lunch/i18n/fi.po index 04dff0ff1a5..2143a6e9451 100644 --- a/addons/lunch/i18n/fi.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/fr.po b/addons/lunch/i18n/fr.po index 7ae624693a4..99cdd02de73 100644 --- a/addons/lunch/i18n/fr.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -26,17 +26,17 @@ msgstr "Catégorie" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_order_by_supplier_form msgid "Today's Orders by Supplier" -msgstr "" +msgstr "Les commandes d'aujourd'hui par fournisseur" #. module: lunch #: view:lunch.order:0 msgid "My Orders" -msgstr "" +msgstr "Mes commandes" #. module: lunch #: selection:lunch.order,state:0 msgid "Partially Confirmed" -msgstr "" +msgstr "Partiellement confirmée" #. module: lunch #: view:lunch.cashmove:0 @@ -78,7 +78,7 @@ msgstr "" #. module: lunch #: view:lunch.validation:0 msgid "validate order lines" -msgstr "" +msgstr "valider les lignes de commande" #. module: lunch #: view:lunch.order.line:0 @@ -100,7 +100,7 @@ msgstr "" #. module: lunch #: view:lunch.order.line:0 msgid "By Supplier" -msgstr "" +msgstr "Par fournisseur" #. module: lunch #: model:ir.actions.act_window,help:lunch.action_lunch_order_tree @@ -117,22 +117,34 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour créer une commande de repas.\n" +"

\n" +"

\n" +" Une commande de repas est définie par son utilisateur, sa " +"date et les lignes de commande.\n" +" Chaque ligne de commande correspond à un produit, une note " +"supplémentaire et un prix.\n" +" Avant de sélectionner vos lignes de commandes, n'oubliez pas " +"de lire les avertissements indiqués dans la zone rouge.\n" +"

\n" +" " #. module: lunch #: view:lunch.order.line:0 msgid "Not Received" -msgstr "" +msgstr "Non reçue" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_order_by_supplier_form #: model:ir.ui.menu,name:lunch.menu_lunch_control_suppliers msgid "Orders by Supplier" -msgstr "" +msgstr "Commandes par fournisseur" #. module: lunch #: view:lunch.validation:0 msgid "Receive Meals" -msgstr "" +msgstr "Recevoir les repas" #. module: lunch #: view:lunch.cashmove:0 @@ -194,13 +206,14 @@ msgstr "Statistiques des commandes de repas" #. module: lunch #: model:ir.model,name:lunch.model_lunch_alert msgid "Lunch Alert" -msgstr "" +msgstr "Alerte de repas" #. module: lunch #: code:addons/lunch/lunch.py:183 #, python-format msgid "Select a product and put your order comments on the note." msgstr "" +"Sélectionnez un produit et mettez vos commentaires de commande sur la note." #. module: lunch #: selection:lunch.alert,alter_type:0 @@ -220,7 +233,7 @@ msgstr "Confirmée" #. module: lunch #: view:lunch.order:0 msgid "lunch orders" -msgstr "" +msgstr "commandes de repas" #. module: lunch #: view:lunch.order.line:0 @@ -230,12 +243,12 @@ msgstr "Confirmer" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_cashmove_form msgid "Your Account" -msgstr "" +msgstr "Votre compte" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_cashmove_form msgid "Your Lunch Account" -msgstr "" +msgstr "Votre compte de repas" #. module: lunch #: field:lunch.alert,active_from:0 @@ -245,7 +258,7 @@ msgstr "" #. module: lunch #: model:ir.model,name:lunch.model_lunch_order_order msgid "Wizard to order a meal" -msgstr "" +msgstr "Assistant de commande de repas" #. module: lunch #: selection:lunch.order,state:0 @@ -257,7 +270,7 @@ msgstr "Nouveau" #: code:addons/lunch/lunch.py:180 #, python-format msgid "This is the first time you order a meal" -msgstr "" +msgstr "C'est la première fois que vous commandez un repas" #. module: lunch #: field:report.lunch.order.line,price_total:0 @@ -267,7 +280,7 @@ msgstr "Prix total" #. module: lunch #: model:ir.model,name:lunch.model_lunch_validation msgid "lunch validation for order" -msgstr "" +msgstr "validation de repas pour la commande" #. module: lunch #: report:lunch.order.line:0 @@ -301,12 +314,14 @@ msgid "" "Order a meal doesn't mean that we have to pay it.\n" " A meal should be paid when it is received." msgstr "" +"Commander un repas ne signifie pas qu'il faut le payer.\n" +" Un repas devrait être payé une fois qu'il est reçu." #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_control_accounts #: model:ir.ui.menu,name:lunch.menu_lunch_control_accounts msgid "Control Accounts" -msgstr "" +msgstr "Comptes de contrôle" #. module: lunch #: selection:lunch.alert,alter_type:0 @@ -321,12 +336,12 @@ msgstr "Déplacement de trésorerie" #. module: lunch #: model:ir.actions.act_window,name:lunch.order_order_lines msgid "Order meals" -msgstr "" +msgstr "Commandez des repas" #. module: lunch #: view:lunch.alert:0 msgid "Schedule Hour" -msgstr "" +msgstr "Planifiez une heure" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -362,7 +377,7 @@ msgstr "" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_order_tree msgid "Your Orders" -msgstr "" +msgstr "Vos commandes" #. module: lunch #: field:report.lunch.order.line,month:0 @@ -381,6 +396,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour créer un article pour le repas.\n" +"

\n" +"

\n" +" Un article est défini par son nom, sa catégorie, son prix et " +"son fournisseur.\n" +"

\n" +" " #. module: lunch #: view:lunch.alert:0 @@ -391,7 +414,7 @@ msgstr "" #. module: lunch #: view:lunch.order.order:0 msgid "Order Meals" -msgstr "" +msgstr "Commandez des repas" #. module: lunch #: view:lunch.cancel:0 @@ -415,7 +438,7 @@ msgstr "" #. module: lunch #: view:lunch.order.order:0 msgid "Order meal" -msgstr "" +msgstr "Commandez un repas" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_product_categories @@ -447,7 +470,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" @@ -461,7 +484,7 @@ msgstr "" #. module: lunch #: model:ir.actions.act_window,name:lunch.cancel_order_lines msgid "Cancel meals" -msgstr "" +msgstr "Annuler les repas" #. module: lunch #: model:ir.model,name:lunch.model_lunch_cashmove @@ -472,7 +495,7 @@ msgstr "" #. module: lunch #: view:lunch.cancel:0 msgid "Are you sure you want to cancel these meals?" -msgstr "" +msgstr "Êtes-vous certain de vouloir annuler ces repas?" #. module: lunch #: view:lunch.cashmove:0 @@ -497,7 +520,7 @@ msgstr "" #. module: lunch #: model:ir.actions.act_window,name:lunch.validate_order_lines msgid "Receive meals" -msgstr "" +msgstr "Recevoir les repas" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -521,7 +544,7 @@ msgstr "Déjeuner" #. module: lunch #: model:ir.model,name:lunch.model_lunch_order_line msgid "lunch order line" -msgstr "" +msgstr "ligne de commande de repas" #. module: lunch #: model:ir.model,name:lunch.model_lunch_product @@ -605,7 +628,7 @@ msgstr "" #. module: lunch #: view:lunch.product.category:0 msgid "Product Category: " -msgstr "" +msgstr "Catégorie d'article: " #. module: lunch #: field:lunch.alert,active_to:0 @@ -625,7 +648,7 @@ msgstr "Date de commande" #. module: lunch #: view:lunch.cancel:0 msgid "Cancel Orders" -msgstr "" +msgstr "Annuler les commandes" #. module: lunch #: model:ir.actions.act_window,help:lunch.action_lunch_alert @@ -652,7 +675,7 @@ msgstr "" #. module: lunch #: view:lunch.cancel:0 msgid "A cancelled meal should not be paid by employees." -msgstr "" +msgstr "Un repas annulé ne devrait pas être payé par les employés." #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_cash @@ -662,7 +685,7 @@ msgstr "" #. module: lunch #: model:ir.model,name:lunch.model_lunch_cancel msgid "cancel lunch order" -msgstr "" +msgstr "Annuler la commande de repas" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -695,6 +718,7 @@ msgstr "" #, python-format msgid "Your favorite meals will be created based on your last orders." msgstr "" +"Vos repas favoris seront créés sur la base de vos dernières commandes." #. module: lunch #: model:ir.module.category,description:lunch.module_lunch_category @@ -728,7 +752,7 @@ msgstr "" #: code:addons/lunch/lunch.py:189 #, python-format msgid "Don't forget the alerts displayed in the reddish area" -msgstr "" +msgstr "N'oubliez pas les alertes affichées dans la zone rouge" #. module: lunch #: field:lunch.alert,thursday:0 @@ -767,7 +791,7 @@ msgstr "Prix" #. module: lunch #: field:lunch.cashmove,state:0 msgid "Is an order or a Payment" -msgstr "" +msgstr "Est une commande ou un paiement" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_order_form @@ -784,11 +808,12 @@ msgstr "" #: view:lunch.cancel:0 msgid "Cancel a meal means that we didn't receive it from the supplier." msgstr "" +"Annuler un repas signifie que nous ne l'avons pas reçu du fournisseur" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_cashmove msgid "Employee Payments" -msgstr "" +msgstr "Paiements des employés" #. module: lunch #: view:lunch.cashmove:0 @@ -814,7 +839,7 @@ msgstr "" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_admin msgid "Administrate Orders" -msgstr "" +msgstr "Gérer les commandes" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -824,7 +849,7 @@ msgstr "avril" #. module: lunch #: view:lunch.order:0 msgid "Select your order" -msgstr "" +msgstr "Sélectionnez votre commande" #. module: lunch #: field:lunch.cashmove,order_id:0 @@ -845,12 +870,12 @@ msgstr "Commande de repas" #. module: lunch #: view:lunch.order.order:0 msgid "Are you sure you want to order these meals?" -msgstr "" +msgstr "Êtes-vous certain de vouloir commander ces repas?" #. module: lunch #: view:lunch.cancel:0 msgid "cancel order lines" -msgstr "" +msgstr "annuler les lignes de commande" #. module: lunch #: model:ir.model,name:lunch.model_lunch_product_category @@ -870,7 +895,7 @@ msgstr "Responsable" #. module: lunch #: view:lunch.validation:0 msgid "Did your received these meals?" -msgstr "" +msgstr "Avez-vous reçu ces repas?" #. module: lunch #: view:lunch.validation:0 @@ -893,7 +918,7 @@ msgstr "" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_order_tree msgid "Previous Orders" -msgstr "" +msgstr "Commandes précédentes" #~ msgid "Are you sure you want to cancel this order ?" #~ msgstr "Confirmez-vous l'annulation de cette commande ?" diff --git a/addons/lunch/i18n/gl.po b/addons/lunch/i18n/gl.po index dec86e557ac..6bc5379798b 100644 --- a/addons/lunch/i18n/gl.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/hr.po b/addons/lunch/i18n/hr.po index bff4e928933..bc6dd3e7c96 100644 --- a/addons/lunch/i18n/hr.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/hu.po b/addons/lunch/i18n/hu.po index bc774629cec..c9edf4ce9f6 100644 --- a/addons/lunch/i18n/hu.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -446,7 +446,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/it.po b/addons/lunch/i18n/it.po index ce79d481a4b..7bf86c01265 100644 --- a/addons/lunch/i18n/it.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "Note" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Aggiungi" diff --git a/addons/lunch/i18n/ja.po b/addons/lunch/i18n/ja.po index d1aee5feeae..683b629dae7 100644 --- a/addons/lunch/i18n/ja.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/ko.po b/addons/lunch/i18n/ko.po index e76966ad73b..3f269d48e6b 100644 --- a/addons/lunch/i18n/ko.po +++ b/addons/lunch/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: 2013-05-12 05:28+0000\n" -"X-Generator: Launchpad (build 16598)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -31,7 +31,7 @@ msgstr "" #. module: lunch #: view:lunch.order:0 msgid "My Orders" -msgstr "" +msgstr "나의 주문" #. module: lunch #: selection:lunch.order,state:0 @@ -189,7 +189,7 @@ msgstr "" #. module: lunch #: model:ir.model,name:lunch.model_report_lunch_order_line msgid "Lunch Orders Statistics" -msgstr "" +msgstr "점심 주문 상태" #. module: lunch #: model:ir.model,name:lunch.model_lunch_alert @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/mk.po b/addons/lunch/i18n/mk.po index ef3bc77a1c1..166610d65be 100644 --- a/addons/lunch/i18n/mk.po +++ b/addons/lunch/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "Белешка" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Додади" diff --git a/addons/lunch/i18n/mn.po b/addons/lunch/i18n/mn.po index 58f89d4bad9..1fb7603f992 100644 --- a/addons/lunch/i18n/mn.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -449,7 +449,7 @@ msgid "Note" msgstr "Тэмдэглэл" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Нэмэх" diff --git a/addons/lunch/i18n/nl.po b/addons/lunch/i18n/nl.po index 9d8e1188633..ab8d659b16e 100644 --- a/addons/lunch/i18n/nl.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:28+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/pt.po b/addons/lunch/i18n/pt.po index 514c229a54a..8ae6200c386 100644 --- a/addons/lunch/i18n/pt.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -83,7 +83,7 @@ msgstr "" #. module: lunch #: view:lunch.order.line:0 msgid "Order lines Tree" -msgstr "" +msgstr "Árvore das linhas dos Pedidos" #. module: lunch #: field:lunch.alert,specific_day:0 @@ -174,7 +174,7 @@ msgstr "Por data" #: view:lunch.order.line:0 #: selection:lunch.order.line,state:0 msgid "Cancelled" -msgstr "" +msgstr "Cancelado" #. module: lunch #: view:lunch.cashmove:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "Nota" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Adicionar" diff --git a/addons/lunch/i18n/pt_BR.po b/addons/lunch/i18n/pt_BR.po index 218f0b1d515..5cb3830bf89 100644 --- a/addons/lunch/i18n/pt_BR.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -501,7 +501,7 @@ msgid "Note" msgstr "Observação" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Adicionar" diff --git a/addons/lunch/i18n/ro.po b/addons/lunch/i18n/ro.po index fba2c0f74d6..32d2ac2d1f7 100644 --- a/addons/lunch/i18n/ro.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -499,7 +499,7 @@ msgid "Note" msgstr "Nota" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Adauga" diff --git a/addons/lunch/i18n/ru.po b/addons/lunch/i18n/ru.po index 237cafc838a..ec7c6fc5570 100644 --- a/addons/lunch/i18n/ru.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" @@ -625,7 +625,7 @@ msgstr "Дата заказа" #. module: lunch #: view:lunch.cancel:0 msgid "Cancel Orders" -msgstr "" +msgstr "Отмена заказов" #. module: lunch #: model:ir.actions.act_window,help:lunch.action_lunch_alert @@ -850,7 +850,7 @@ msgstr "" #. module: lunch #: view:lunch.cancel:0 msgid "cancel order lines" -msgstr "" +msgstr "Отмена позиций заказа" #. module: lunch #: model:ir.model,name:lunch.model_lunch_product_category diff --git a/addons/lunch/i18n/sl.po b/addons/lunch/i18n/sl.po index 5f6c8c9c67f..3943c21e20c 100644 --- a/addons/lunch/i18n/sl.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "Zapisek" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Dodaj" diff --git a/addons/lunch/i18n/sr@latin.po b/addons/lunch/i18n/sr@latin.po index 1d1f28f339b..b8cfd3eb528 100644 --- a/addons/lunch/i18n/sr@latin.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/sv.po b/addons/lunch/i18n/sv.po index 6980664dd54..e85a5aa767f 100644 --- a/addons/lunch/i18n/sv.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/tr.po b/addons/lunch/i18n/tr.po index 20b801627ef..b23ca9aed25 100644 --- a/addons/lunch/i18n/tr.po +++ b/addons/lunch/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -495,7 +495,7 @@ msgid "Note" msgstr "Not" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Ekle" diff --git a/addons/lunch/i18n/zh_CN.po b/addons/lunch/i18n/zh_CN.po index b702cb44dc2..3a62cca4273 100644 --- a/addons/lunch/i18n/zh_CN.po +++ b/addons/lunch/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 11:04+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -137,7 +137,7 @@ msgstr "接收食品" #. module: lunch #: view:lunch.cashmove:0 msgid "cashmove form" -msgstr "" +msgstr "现金凭证表单" #. module: lunch #: model:ir.actions.act_window,help:lunch.action_lunch_cashmove_form @@ -179,7 +179,7 @@ msgstr "已取消" #. module: lunch #: view:lunch.cashmove:0 msgid "lunch employee payment" -msgstr "" +msgstr "午餐员工付款" #. module: lunch #: view:lunch.alert:0 @@ -200,7 +200,7 @@ msgstr "午餐提醒" #: code:addons/lunch/lunch.py:183 #, python-format msgid "Select a product and put your order comments on the note." -msgstr "" +msgstr "选择一个产品并且把订单注释写在备注中" #. module: lunch #: selection:lunch.alert,alter_type:0 @@ -220,7 +220,7 @@ msgstr "已确认" #. module: lunch #: view:lunch.order:0 msgid "lunch orders" -msgstr "" +msgstr "午餐订单" #. module: lunch #: view:lunch.order.line:0 @@ -235,7 +235,7 @@ msgstr "您的帐号" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_cashmove_form msgid "Your Lunch Account" -msgstr "" +msgstr "你的午餐账户" #. module: lunch #: field:lunch.alert,active_from:0 @@ -308,7 +308,7 @@ msgstr "" #: model:ir.actions.act_window,name:lunch.action_lunch_control_accounts #: model:ir.ui.menu,name:lunch.menu_lunch_control_accounts msgid "Control Accounts" -msgstr "" +msgstr "控制账户" #. module: lunch #: selection:lunch.alert,alter_type:0 @@ -383,6 +383,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 单击以创建一个午餐产品。\n" +"

\n" +"

\n" +" 一个产品定义了它的 名称、类别、价格、和供应商。\n" +"

\n" +" " #. module: lunch #: view:lunch.alert:0 @@ -393,7 +400,7 @@ msgstr "消息" #. module: lunch #: view:lunch.order.order:0 msgid "Order Meals" -msgstr "" +msgstr "订购食品" #. module: lunch #: view:lunch.cancel:0 @@ -428,7 +435,7 @@ msgstr "品种分类" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_control_suppliers msgid "Control Suppliers" -msgstr "" +msgstr "控制供应商" #. module: lunch #: view:lunch.alert:0 @@ -449,7 +456,7 @@ msgid "Note" msgstr "说明" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "新增" @@ -469,7 +476,7 @@ msgstr "取消食品" #: model:ir.model,name:lunch.model_lunch_cashmove #: view:lunch.cashmove:0 msgid "lunch cashmove" -msgstr "" +msgstr "午餐现金凭证" #. module: lunch #: view:lunch.cancel:0 @@ -780,7 +787,7 @@ msgstr "新的订单" #. module: lunch #: view:lunch.cashmove:0 msgid "cashmove tree" -msgstr "" +msgstr "现金凭证树" #. module: lunch #: view:lunch.cancel:0 @@ -790,7 +797,7 @@ msgstr "取消我们不能从供应商出接收的食物。" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_cashmove msgid "Employee Payments" -msgstr "" +msgstr "员工付款" #. module: lunch #: view:lunch.cashmove:0 diff --git a/addons/lunch/i18n/zh_TW.po b/addons/lunch/i18n/zh_TW.po index 2d5bbf7b197..3cfec7fe975 100644 --- a/addons/lunch/i18n/zh_TW.po +++ b/addons/lunch/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/lunch.py b/addons/lunch/lunch.py index efad6fd6944..fbd193709ac 100644 --- a/addons/lunch/lunch.py +++ b/addons/lunch/lunch.py @@ -35,6 +35,16 @@ class lunch_order(osv.Model): _description = 'Lunch Order' _order = 'date desc' + def name_get(self, cr, uid, ids, context=None): + if not ids: + return [] + res = [] + for elmt in self.browse(cr, uid, ids, context=context): + name = _("Lunch Order") + name = name + ' ' + str(elmt.id) + res.append((elmt.id, name)) + return res + def _price_get(self, cr, uid, ids, name, arg, context=None): """ get and sum the order lines' price diff --git a/addons/lunch/lunch_view.xml b/addons/lunch/lunch_view.xml index 2f3af2f461d..c5fa52afe29 100644 --- a/addons/lunch/lunch_view.xml +++ b/addons/lunch/lunch_view.xml @@ -7,7 +7,7 @@ - + Search @@ -23,7 +23,7 @@ - + @@ -85,6 +85,40 @@
+ + + cashmove tree + lunch.cashmove + + + + + + + + + + + + cashmove form + lunch.cashmove + +
+ + + + + + + + +
+
+ + New Order @@ -111,6 +145,19 @@
+ + + cashmove tree + lunch.cashmove + + + + + + + + + @@ -119,6 +166,7 @@ tree {"search_default_is_mine_group":1} +

Here you can see your cash moves.
A cash moves can be either an expense or a payment. @@ -175,6 +223,7 @@ tree,form {"search_default_group_by_user":1} +

Click to create a new payment. @@ -196,6 +245,7 @@ tree,form {"search_default_is_payment":1} +

Click to create a payment. @@ -325,7 +375,7 @@ + context="{'default_groups_ref': ['base.group_user', 'base.group_partner_manager', 'lunch.group_lunch_user']}"/> @@ -389,39 +439,6 @@ - - - cashmove tree - lunch.cashmove - - - - - - - - - - - - cashmove form - lunch.cashmove - -
- - - - - - - - -
-
- alert tree diff --git a/addons/mail/__openerp__.py b/addons/mail/__openerp__.py index 8f072dd9082..1b9111d3040 100644 --- a/addons/mail/__openerp__.py +++ b/addons/mail/__openerp__.py @@ -83,7 +83,6 @@ Main Features 'static/src/css/mail_group.css', ], 'js': [ - 'static/lib/jquery.expander/jquery.expander.js', 'static/src/js/mail.js', 'static/src/js/mail_followers.js', 'static/src/js/many2many_tags_email.js', diff --git a/addons/mail/controllers/main.py b/addons/mail/controllers/main.py index ef3a60987d6..959877ad098 100644 --- a/addons/mail/controllers/main.py +++ b/addons/mail/controllers/main.py @@ -1,17 +1,16 @@ import base64 +import psycopg2 import openerp from openerp import SUPERUSER_ID -import openerp.addons.web.http as oeweb +import openerp.addons.web.http as http from openerp.addons.web.controllers.main import content_disposition -#---------------------------------------------------------- -# Controller -#---------------------------------------------------------- -class MailController(oeweb.Controller): + +class MailController(http.Controller): _cp_path = '/mail' - @oeweb.httprequest + @http.httprequest def download_attachment(self, req, model, id, method, attachment_id, **kw): Model = req.session.model(model) res = getattr(Model, method)(int(id), int(attachment_id)) @@ -24,7 +23,7 @@ class MailController(oeweb.Controller): ('Content-Disposition', content_disposition(filename, req))]) return req.not_found() - @oeweb.jsonrequest + @http.jsonrequest def receive(self, req): """ End-point to receive mail from an external SMTP server. """ dbs = req.jsonrequest.get('databases') diff --git a/addons/mail/data/mail_data.xml b/addons/mail/data/mail_data.xml index 4e935e4aa88..e1ca797670b 100644 --- a/addons/mail/data/mail_data.xml +++ b/addons/mail/data/mail_data.xml @@ -40,6 +40,11 @@ () + + + none + + mail.catchall.alias diff --git a/addons/mail/doc/changelog.rst b/addons/mail/doc/changelog.rst index a7a2cfcf2b5..5eee5f136a6 100644 --- a/addons/mail/doc/changelog.rst +++ b/addons/mail/doc/changelog.rst @@ -6,6 +6,15 @@ Changelog `trunk (saas-2)` ---------------- + - ``mass_mailing_campaign`` update + + - ``mail_mail`: moved ``reply_to`` computation from ``mail_mail`` to ``mail_message`` + where it belongs, as the field is located onto the ``mail_message`` model. + - ``mail_compose_message``: template rendering is now done in batch. Each template + is rendered for all res_ids, instead of all templates one id at a time. + - ``mail_thread``: to ease inheritance, processing of routes is now done in + message_route_process, called in message_route + - added support of ``active_domain`` form context, coming from the list view. When checking the header hook, the mass mailing will be done on all records matching the ``active_domain``. diff --git a/addons/mail/i18n/ar.po b/addons/mail/i18n/ar.po index ec2e1704a29..3d52dfdabde 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "شريك" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "oh]l الرسائل المرسلة" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "الرسائل" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/bg.po b/addons/mail/i18n/bg.po index 7cf6c62f616..3b1bbbe0a8d 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Контрагент" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "Съобщения" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/bs.po b/addons/mail/i18n/bs.po new file mode 100644 index 00000000000..0887e9a2eaa --- /dev/null +++ b/addons/mail/i18n/bs.po @@ -0,0 +1,1687 @@ +# Bosnian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"PO-Revision-Date: 2013-08-06 10:21+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Bosnian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: mail +#: view:mail.followers:0 +msgid "Followers Form" +msgstr "" + +#. module: mail +#: model:ir.model,name:mail.model_publisher_warranty_contract +msgid "publisher_warranty.contract" +msgstr "" + +#. module: mail +#: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 +#: field:mail.message,author_id:0 +msgid "Author" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +msgid "Message Details" +msgstr "" + +#. module: mail +#: help:mail.mail,email_to:0 +msgid "Message recipients" +msgstr "" + +#. module: mail +#: help:mail.message.subtype,default:0 +msgid "Activated by default when subscribing." +msgstr "" + +#. module: mail +#: view:mail.message:0 +msgid "Comments" +msgstr "" + +#. module: mail +#: view:mail.alias:0 +#: view:mail.mail:0 +msgid "Group By..." +msgstr "" + +#. module: mail +#: help:mail.compose.message,body:0 +#: help:mail.message,body:0 +msgid "Automatically sanitized HTML contents" +msgstr "" + +#. module: mail +#: help:mail.alias,alias_name:0 +msgid "" +"The name of the email alias, e.g. 'jobs' if you want to catch emails for " +"" +msgstr "" + +#. module: mail +#: model:ir.actions.act_window,name:mail.action_email_compose_message_wizard +#: view:mail.compose.message:0 +msgid "Compose Email" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:132 +#, python-format +msgid "Add them into recipients and followers" +msgstr "" + +#. module: mail +#: view:mail.group:0 +msgid "Group Name" +msgstr "" + +#. module: mail +#: selection:mail.group,public:0 +msgid "Public" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +msgid "Body" +msgstr "" + +#. module: mail +#: view:mail.message:0 +msgid "Show messages to read" +msgstr "" + +#. module: mail +#: help:mail.compose.message,email_from:0 +#: help:mail.message,email_from:0 +msgid "" +"Email address of the sender. This field is set when no matching partner is " +"found for incoming emails." +msgstr "" + +#. module: mail +#: model:ir.model,name:mail.model_mail_compose_message +msgid "Email composition wizard" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail_followers.xml:23 +#, python-format +msgid "Add others" +msgstr "" + +#. module: mail +#: field:mail.message.subtype,parent_id:0 +msgid "Parent" +msgstr "" + +#. module: mail +#: field:mail.group,message_unread:0 +#: field:mail.thread,message_unread:0 +#: field:res.partner,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:313 +#, python-format +msgid "show" +msgstr "" + +#. module: mail +#: help:mail.group,group_ids:0 +msgid "" +"Members of those groups will automatically added as followers. Note that " +"they will be able to manage their subscription manually if necessary." +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/js/mail.js:1029 +#, python-format +msgid "Do you really want to delete this message?" +msgstr "" + +#. module: mail +#: view:mail.message:0 +#: field:mail.notification,read:0 +msgid "Read" +msgstr "" + +#. module: mail +#: view:mail.group:0 +msgid "Search Groups" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/js/mail_followers.js:157 +#, python-format +msgid "followers" +msgstr "" + +#. module: mail +#: code:addons/mail/mail_message.py:737 +#, python-format +msgid "Access Denied" +msgstr "" + +#. module: mail +#: help:mail.group,image_medium:0 +msgid "" +"Medium-sized photo of the group. It is automatically resized as a 128x128px " +"image, with aspect ratio preserved. Use this field in form views or some " +"kanban views." +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:212 +#, python-format +msgid "Uploading error" +msgstr "" + +#. module: mail +#: model:mail.group,name:mail.group_support +msgid "Support" +msgstr "" + +#. module: mail +#: code:addons/mail/mail_message.py:738 +#, python-format +msgid "" +"The requested operation cannot be completed due to security restrictions. " +"Please contact your system administrator.\n" +"\n" +"(Document type: %s, Operation: %s)" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +#: selection:mail.mail,state:0 +msgid "Received" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +msgid "Thread" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:29 +#, python-format +msgid "Open the full mail composer" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:29 +#, python-format +msgid "ò" +msgstr "" + +#. module: mail +#: field:base.config.settings,alias_domain:0 +msgid "Alias Domain" +msgstr "" + +#. module: mail +#: field:mail.group,group_ids:0 +msgid "Auto Subscription" +msgstr "" + +#. module: mail +#: field:mail.mail,references:0 +msgid "References" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:206 +#, python-format +msgid "No messages." +msgstr "" + +#. module: mail +#: model:ir.model,name:mail.model_mail_group +msgid "Discussion group" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 +#, python-format +msgid "uploading" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail_followers.xml:52 +#, python-format +msgid "more." +msgstr "" + +#. module: mail +#: help:mail.compose.message,type:0 +#: help:mail.message,type:0 +msgid "" +"Message type: email for email message, notification for system message, " +"comment for other messages such as user replies" +msgstr "" + +#. module: mail +#: help:mail.message.subtype,relation_field:0 +msgid "" +"Field used to link the related model to the subtype model when using " +"automatic subscription on a related document. The field is used to compute " +"getattr(related_document.relation_field)." +msgstr "" + +#. module: mail +#: selection:mail.mail,state:0 +msgid "Cancelled" +msgstr "" + +#. module: mail +#: field:mail.mail,reply_to:0 +msgid "Reply-To" +msgstr "" + +#. module: mail +#: code:addons/mail/wizard/invite.py:37 +#, python-format +msgid "

You have been invited to follow %s.
" +msgstr "" + +#. module: mail +#: help:mail.group,message_unread:0 +#: help:mail.thread,message_unread:0 +#: help:res.partner,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: mail +#: field:mail.group,image_medium:0 +msgid "Medium-sized photo" +msgstr "" + +#. module: mail +#: model:ir.actions.client,name:mail.action_mail_to_me_feeds +#: model:ir.ui.menu,name:mail.mail_tomefeeds +msgid "To: me" +msgstr "" + +#. module: mail +#: field:mail.message.subtype,name:0 +msgid "Message Type" +msgstr "" + +#. module: mail +#: field:mail.mail,auto_delete:0 +msgid "Auto Delete" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail_followers.xml:12 +#: view:mail.group:0 +#, python-format +msgid "Unfollow" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:312 +#, python-format +msgid "show one more message" +msgstr "" + +#. module: mail +#: code:addons/mail/mail_mail.py:75 +#: code:addons/mail/res_users.py:69 +#, python-format +msgid "Invalid Action!" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:25 +#, python-format +msgid "User img" +msgstr "" + +#. module: mail +#: model:ir.actions.act_window,name:mail.action_view_mail_mail +#: model:ir.ui.menu,name:mail.menu_mail_mail +#: view:mail.mail:0 +#: view:mail.message:0 +msgid "Emails" +msgstr "" + +#. module: mail +#: field:mail.followers,partner_id:0 +msgid "Related Partner" +msgstr "" + +#. module: mail +#: help:mail.group,message_summary:0 +#: help:mail.thread,message_summary:0 +#: help:res.partner,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: mail +#: help:mail.alias,alias_model_id:0 +msgid "" +"The model (OpenERP Document Kind) to which this alias corresponds. Any " +"incoming email that does not reply to an existing record will cause the " +"creation of a new record of this model (e.g. a Project Task)" +msgstr "" + +#. module: mail +#: field:mail.message.subtype,relation_field:0 +msgid "Relation field" +msgstr "" + +#. module: mail +#: selection:mail.compose.message,type:0 +#: selection:mail.message,type:0 +msgid "System notification" +msgstr "" + +#. module: mail +#: model:ir.model,name:mail.model_res_partner +msgid "Partner" +msgstr "" + +#. module: mail +#: model:ir.ui.menu,name:mail.mail_my_stuff +msgid "Organizer" +msgstr "" + +#. module: mail +#: field:mail.compose.message,subject:0 +#: field:mail.message,subject:0 +msgid "Subject" +msgstr "" + +#. module: mail +#: field:mail.wizard.invite,partner_ids:0 +msgid "Partners" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +msgid "Retry" +msgstr "" + +#. module: mail +#: field:mail.compose.message,email_from:0 +#: field:mail.mail,email_from:0 +#: field:mail.message,email_from:0 +msgid "From" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +#: view:mail.message.subtype:0 +msgid "Email message" +msgstr "" + +#. module: mail +#: model:ir.model,name:mail.model_base_config_settings +msgid "base.config.settings" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:36 +#: view:mail.compose.message:0 +#, python-format +msgid "Send" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/js/mail_followers.js:153 +#, python-format +msgid "No followers" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +msgid "Failed" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail_followers.xml:22 +#: model:ir.actions.act_window,name:mail.action_view_followers +#: model:ir.ui.menu,name:mail.menu_email_followers +#: view:mail.followers:0 +#: field:mail.group,message_follower_ids:0 +#: field:mail.thread,message_follower_ids:0 +#: field:res.partner,message_follower_ids:0 +#, python-format +msgid "Followers" +msgstr "" + +#. module: mail +#: model:ir.actions.client,name:mail.action_mail_archives_feeds +#: model:ir.ui.menu,name:mail.mail_archivesfeeds +msgid "Archives" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 +#, python-format +msgid "Delete this attachment" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:245 +#: view:mail.mail:0 +#, python-format +msgid "Reply" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/js/mail_followers.js:155 +#, python-format +msgid "One follower" +msgstr "" + +#. module: mail +#: field:mail.compose.message,type:0 +#: field:mail.message,type:0 +msgid "Type" +msgstr "" + +#. module: mail +#: selection:mail.compose.message,type:0 +#: view:mail.mail:0 +#: selection:mail.message,type:0 +msgid "Email" +msgstr "" + +#. module: mail +#: field:ir.ui.menu,mail_group_id:0 +msgid "Mail Group" +msgstr "" + +#. module: mail +#: selection:res.partner,notification_email_send:0 +msgid "Comments and Emails" +msgstr "" + +#. module: mail +#: field:mail.alias,alias_defaults:0 +msgid "Default Values" +msgstr "" + +#. module: mail +#: code:addons/mail/res_users.py:89 +#, python-format +msgid "%s has joined the %s network." +msgstr "" + +#. module: mail +#: help:mail.group,image_small:0 +msgid "" +"Small-sized photo of the group. It is automatically resized as a 64x64px " +"image, with aspect ratio preserved. Use this field anywhere a small image is " +"required." +msgstr "" + +#. module: mail +#: view:mail.compose.message:0 +#: field:mail.message,partner_ids:0 +msgid "Recipients" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:140 +#, python-format +msgid "<<<" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:43 +#, python-format +msgid "Write to the followers of this document..." +msgstr "" + +#. module: mail +#: field:mail.group,group_public_id:0 +msgid "Authorized Group" +msgstr "" + +#. module: mail +#: view:mail.group:0 +msgid "Join Group" +msgstr "" + +#. module: mail +#: help:mail.mail,email_from:0 +msgid "Message sender, taken from user preferences." +msgstr "" + +#. module: mail +#: code:addons/mail/wizard/invite.py:40 +#, python-format +msgid "
You have been invited to follow a new document.
" +msgstr "" + +#. module: mail +#: field:mail.compose.message,parent_id:0 +#: field:mail.message,parent_id:0 +msgid "Parent Message" +msgstr "" + +#. module: mail +#: field:mail.compose.message,res_id:0 +#: field:mail.followers,res_id:0 +#: field:mail.message,res_id:0 +#: field:mail.wizard.invite,res_id:0 +msgid "Related Document ID" +msgstr "" + +#. module: mail +#: model:ir.actions.client,help:mail.action_mail_to_me_feeds +msgid "" +"

\n" +" No private message.\n" +"

\n" +" This list contains messages sent to you.\n" +"

\n" +" " +msgstr "" + +#. module: mail +#: model:mail.group,name:mail.group_rd +msgid "R&D" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:61 +#, python-format +msgid "/web/binary/upload_attachment" +msgstr "" + +#. module: mail +#: model:ir.model,name:mail.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +msgid "Advanced" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:244 +#, python-format +msgid "Move to Inbox" +msgstr "" + +#. module: mail +#: code:addons/mail/wizard/mail_compose_message.py:193 +#, python-format +msgid "Re:" +msgstr "" + +#. module: mail +#: field:mail.compose.message,to_read:0 +#: field:mail.message,to_read:0 +msgid "To read" +msgstr "" + +#. module: mail +#: code:addons/mail/res_users.py:69 +#, python-format +msgid "" +"You may not create a user. To create new users, you should use the " +"\"Settings > Users\" menu." +msgstr "" + +#. module: mail +#: help:mail.followers,res_model:0 +#: help:mail.wizard.invite,res_model:0 +msgid "Model of the followed resource" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:337 +#, python-format +msgid "like" +msgstr "" + +#. module: mail +#: view:mail.compose.message:0 +#: view:mail.wizard.invite:0 +msgid "Cancel" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:47 +#, python-format +msgid "Share with my followers..." +msgstr "" + +#. module: mail +#: field:mail.notification,partner_id:0 +msgid "Contact" +msgstr "" + +#. module: mail +#: view:mail.group:0 +msgid "" +"Only the invited followers can read the\n" +" discussions on this group." +msgstr "" + +#. module: mail +#: model:ir.model,name:mail.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" + +#. module: mail +#: view:mail.message:0 +msgid "Has attachments" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +msgid "on" +msgstr "" + +#. module: mail +#: code:addons/mail/mail_message.py:926 +#, python-format +msgid "" +"The following partners chosen as recipients for the email have no email " +"address linked :" +msgstr "" + +#. module: mail +#: help:mail.alias,alias_defaults:0 +msgid "" +"A Python dictionary that will be evaluated to provide default values when " +"creating new records for this alias." +msgstr "" + +#. module: mail +#: model:ir.model,name:mail.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail +#: help:mail.compose.message,notified_partner_ids:0 +#: help:mail.message,notified_partner_ids:0 +msgid "" +"Partners that have a notification pushing this message in their mailboxes" +msgstr "" + +#. module: mail +#: selection:mail.compose.message,type:0 +#: view:mail.mail:0 +#: selection:mail.message,type:0 +msgid "Comment" +msgstr "" + +#. module: mail +#: model:ir.actions.client,help:mail.action_mail_inbox_feeds +msgid "" +"

\n" +" Good Job! Your inbox is empty.\n" +"

\n" +" Your inbox contains private messages or emails sent to " +"you\n" +" as well as information related to documents or people " +"you\n" +" follow.\n" +"

\n" +" " +msgstr "" + +#. module: mail +#: field:mail.mail,notification:0 +msgid "Is Notification" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:188 +#, python-format +msgid "Compose a new message" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +msgid "Send Now" +msgstr "" + +#. module: mail +#: code:addons/mail/mail_mail.py:75 +#, python-format +msgid "" +"Unable to send email, please configure the sender's email address or alias." +msgstr "" + +#. module: mail +#: help:res.users,alias_id:0 +msgid "" +"Email address internally associated with this user. Incoming emails will " +"appear in the user's notifications." +msgstr "" + +#. module: mail +#: field:mail.group,image:0 +msgid "Photo" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:54 +#: code:addons/mail/static/src/xml/mail.xml:191 +#: view:mail.compose.message:0 +#: view:mail.wizard.invite:0 +#, python-format +msgid "or" +msgstr "" + +#. module: mail +#: help:mail.compose.message,vote_user_ids:0 +#: help:mail.message,vote_user_ids:0 +msgid "Users that voted for this message" +msgstr "" + +#. module: mail +#: help:mail.group,alias_id:0 +msgid "" +"The email address associated with this group. New emails received will " +"automatically create new topics." +msgstr "" + +#. module: mail +#: view:mail.mail:0 +msgid "Month" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +msgid "Email Search" +msgstr "" + +#. module: mail +#: field:mail.compose.message,child_ids:0 +#: field:mail.message,child_ids:0 +msgid "Child Messages" +msgstr "" + +#. module: mail +#: field:mail.alias,alias_user_id:0 +msgid "Owner" +msgstr "" + +#. module: mail +#: model:ir.model,name:mail.model_res_users +msgid "Users" +msgstr "" + +#. module: mail +#: model:ir.model,name:mail.model_mail_message +#: field:mail.mail,mail_message_id:0 +#: view:mail.message:0 +#: field:mail.notification,message_id:0 +#: field:mail.wizard.invite,message:0 +msgid "Message" +msgstr "" + +#. module: mail +#: help:mail.followers,res_id:0 +#: help:mail.wizard.invite,res_id:0 +msgid "Id of the followed resource" +msgstr "" + +#. module: mail +#: field:mail.compose.message,body:0 +#: field:mail.message,body:0 +msgid "Contents" +msgstr "" + +#. module: mail +#: model:ir.actions.act_window,name:mail.action_view_mail_alias +#: model:ir.ui.menu,name:mail.mail_alias_menu +msgid "Aliases" +msgstr "" + +#. module: mail +#: help:mail.message.subtype,description:0 +msgid "" +"Description that will be added in the message posted for this subtype. If " +"void, the name will be added instead." +msgstr "" + +#. module: mail +#: field:mail.compose.message,vote_user_ids:0 +#: field:mail.message,vote_user_ids:0 +msgid "Votes" +msgstr "" + +#. module: mail +#: view:mail.group:0 +msgid "Group" +msgstr "" + +#. module: mail +#: help:mail.compose.message,starred:0 +#: help:mail.message,starred:0 +msgid "Current user has a starred notification linked to this message" +msgstr "" + +#. module: mail +#: field:mail.group,public:0 +msgid "Privacy" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +msgid "Notification" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/js/mail.js:654 +#, python-format +msgid "Please complete partner's informations" +msgstr "" + +#. module: mail +#: view:mail.wizard.invite:0 +msgid "Add Followers" +msgstr "" + +#. module: mail +#: view:mail.compose.message:0 +msgid "Followers of selected items and" +msgstr "" + +#. module: mail +#: field:mail.alias,alias_force_thread_id:0 +msgid "Record Thread ID" +msgstr "" + +#. module: mail +#: model:ir.ui.menu,name:mail.mail_group_root +msgid "My Groups" +msgstr "" + +#. module: mail +#: model:ir.actions.client,help:mail.action_mail_archives_feeds +msgid "" +"

\n" +" No message found and no message sent yet.\n" +"

\n" +" Click on the top-right icon to compose a message. This\n" +" message will be sent by email if it's an internal " +"contact.\n" +"

\n" +" " +msgstr "" + +#. module: mail +#: view:mail.mail:0 +#: field:mail.mail,state:0 +msgid "Status" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +#: selection:mail.mail,state:0 +msgid "Outgoing" +msgstr "" + +#. module: mail +#: selection:res.partner,notification_email_send:0 +msgid "All feeds" +msgstr "" + +#. module: mail +#: help:mail.compose.message,record_name:0 +#: help:mail.message,record_name:0 +msgid "Name get of the related document." +msgstr "" + +#. module: mail +#: model:ir.actions.act_window,name:mail.action_view_notifications +#: model:ir.model,name:mail.model_mail_notification +#: model:ir.ui.menu,name:mail.menu_email_notifications +#: field:mail.compose.message,notification_ids:0 +#: view:mail.message:0 +#: field:mail.message,notification_ids:0 +#: view:mail.notification:0 +msgid "Notifications" +msgstr "" + +#. module: mail +#: view:mail.alias:0 +msgid "Search Alias" +msgstr "" + +#. module: mail +#: help:mail.alias,alias_force_thread_id:0 +msgid "" +"Optional ID of a thread (record) to which all incoming messages will be " +"attached, even if they did not reply to it. If set, this will disable the " +"creation of new records completely." +msgstr "" + +#. module: mail +#: help:mail.message.subtype,name:0 +msgid "" +"Message subtype gives a more precise type on the message, especially for " +"system notifications. For example, it can be a notification related to a new " +"record (New), or to a stage change in a process (Stage change). Message " +"subtypes allow to precisely tune the notifications the user want to receive " +"on its wall." +msgstr "" + +#. module: mail +#: view:mail.mail:0 +msgid "by" +msgstr "" + +#. module: mail +#: model:mail.group,name:mail.group_best_sales_practices +msgid "Best Sales Practices" +msgstr "" + +#. module: mail +#: selection:mail.group,public:0 +msgid "Selected Group Only" +msgstr "" + +#. module: mail +#: field:mail.group,message_is_follower:0 +#: field:mail.thread,message_is_follower:0 +#: field:res.partner,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: mail +#: view:mail.alias:0 +#: view:mail.mail:0 +msgid "User" +msgstr "" + +#. module: mail +#: view:mail.group:0 +msgid "Groups" +msgstr "" + +#. module: mail +#: view:mail.message:0 +msgid "Messages Search" +msgstr "" + +#. module: mail +#: field:mail.compose.message,date:0 +#: field:mail.message,date:0 +msgid "Date" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:34 +#, python-format +msgid "Post" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +msgid "Extended Filters..." +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:120 +#, python-format +msgid "To:" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:193 +#, python-format +msgid "Write to my followers" +msgstr "" + +#. module: mail +#: model:ir.model,name:mail.model_res_groups +msgid "Access Groups" +msgstr "" + +#. module: mail +#: field:mail.message.subtype,default:0 +msgid "Default" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:311 +#, python-format +msgid "show more message" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:246 +#, python-format +msgid "Mark as Todo" +msgstr "" + +#. module: mail +#: help:mail.message.subtype,parent_id:0 +msgid "Parent subtype, used for automatic subscription." +msgstr "" + +#. module: mail +#: model:ir.model,name:mail.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" + +#. module: mail +#: field:mail.group,message_summary:0 +#: field:mail.thread,message_summary:0 +#: field:res.partner,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: mail +#: help:mail.message.subtype,res_model:0 +msgid "" +"Model the subtype applies to. If False, this subtype applies to all models." +msgstr "" + +#. module: mail +#: field:mail.compose.message,subtype_id:0 +#: field:mail.followers,subtype_ids:0 +#: field:mail.message,subtype_id:0 +#: view:mail.message.subtype:0 +msgid "Subtype" +msgstr "" + +#. module: mail +#: view:mail.group:0 +msgid "Group Form" +msgstr "" + +#. module: mail +#: field:mail.compose.message,starred:0 +#: field:mail.message,starred:0 +#: field:mail.notification,starred:0 +msgid "Starred" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:313 +#, python-format +msgid "more messages" +msgstr "" + +#. module: mail +#: code:addons/mail/update.py:93 +#, python-format +msgid "Error" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail_followers.xml:13 +#, python-format +msgid "Following" +msgstr "" + +#. module: mail +#: sql_constraint:mail.alias:0 +msgid "" +"Unfortunately this email alias is already used, please choose a unique one" +msgstr "" + +#. module: mail +#: help:mail.alias,alias_user_id:0 +msgid "" +"The owner of records created upon receiving emails on this alias. If this " +"field is not set the system will attempt to find the right owner based on " +"the sender (From) address, or will use the Administrator account if no " +"system user is found for that address." +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail_followers.xml:52 +#, python-format +msgid "And" +msgstr "" + +#. module: mail +#: field:mail.compose.message,message_id:0 +#: field:mail.message,message_id:0 +msgid "Message-Id" +msgstr "" + +#. module: mail +#: help:mail.group,image:0 +msgid "" +"This field holds the image used as photo for the group, limited to " +"1024x1024px." +msgstr "" + +#. module: mail +#: field:mail.compose.message,attachment_ids:0 +#: view:mail.mail:0 +#: field:mail.message,attachment_ids:0 +msgid "Attachments" +msgstr "" + +#. module: mail +#: field:mail.compose.message,record_name:0 +#: field:mail.message,record_name:0 +msgid "Message Record Name" +msgstr "" + +#. module: mail +#: field:mail.mail,email_cc:0 +msgid "Cc" +msgstr "" + +#. module: mail +#: help:mail.notification,starred:0 +msgid "Starred message that goes into the todo mailbox" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:123 +#: view:mail.compose.message:0 +#, python-format +msgid "Followers of" +msgstr "" + +#. module: mail +#: help:mail.mail,auto_delete:0 +msgid "Permanently delete this email after sending it, to save space" +msgstr "" + +#. module: mail +#: model:ir.actions.client,name:mail.action_mail_group_feeds +msgid "Discussion Group" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:242 +#, python-format +msgid "Done" +msgstr "" + +#. module: mail +#: model:mail.message.subtype,name:mail.mt_comment +msgid "Discussions" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail_followers.xml:11 +#, python-format +msgid "Follow" +msgstr "" + +#. module: mail +#: field:mail.group,name:0 +msgid "Name" +msgstr "" + +#. module: mail +#: model:mail.group,name:mail.group_all_employees +msgid "Whole Company" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 +#: view:mail.compose.message:0 +#, python-format +msgid "and" +msgstr "" + +#. module: mail +#: help:mail.mail,body_html:0 +msgid "Rich-text/HTML message" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +msgid "Creation Month" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:323 +#, python-format +msgid "Compose new Message" +msgstr "" + +#. module: mail +#: field:mail.group,menu_id:0 +msgid "Related Menu" +msgstr "" + +#. module: mail +#: view:mail.message:0 +msgid "Content" +msgstr "" + +#. module: mail +#: field:mail.mail,email_to:0 +msgid "To" +msgstr "" + +#. module: mail +#: field:mail.compose.message,notified_partner_ids:0 +#: field:mail.message,notified_partner_ids:0 +msgid "Notified partners" +msgstr "" + +#. module: mail +#: help:mail.group,public:0 +msgid "" +"This group is visible by non members. Invisible groups can add " +"members through the invite button." +msgstr "" + +#. module: mail +#: model:mail.group,name:mail.group_board +msgid "Board meetings" +msgstr "" + +#. module: mail +#: constraint:mail.alias:0 +msgid "" +"Invalid expression, it must be a literal python dictionary definition e.g. " +"\"{'field': 'value'}\"" +msgstr "" + +#. module: mail +#: field:mail.alias,alias_model_id:0 +msgid "Aliased Model" +msgstr "" + +#. module: mail +#: help:mail.compose.message,message_id:0 +#: help:mail.message,message_id:0 +msgid "Message unique identifier" +msgstr "" + +#. module: mail +#: field:mail.group,description:0 +#: field:mail.message.subtype,description:0 +msgid "Description" +msgstr "" + +#. module: mail +#: model:ir.model,name:mail.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail_followers.xml:35 +#, python-format +msgid "Remove this follower" +msgstr "" + +#. module: mail +#: selection:res.partner,notification_email_send:0 +msgid "Never" +msgstr "" + +#. module: mail +#: field:mail.mail,mail_server_id:0 +msgid "Outgoing mail server" +msgstr "" + +#. module: mail +#: code:addons/mail/mail_message.py:930 +#, python-format +msgid "Partners email addresses not found" +msgstr "" + +#. module: mail +#: view:mail.mail:0 +#: selection:mail.mail,state:0 +msgid "Sent" +msgstr "" + +#. module: mail +#: field:mail.mail,body_html:0 +msgid "Rich-text Contents" +msgstr "" + +#. module: mail +#: help:mail.compose.message,to_read:0 +#: help:mail.message,to_read:0 +msgid "Current user has an unread notification linked to this message" +msgstr "" + +#. module: mail +#: help:res.partner,notification_email_send:0 +msgid "" +"Choose in which case you want to receive an email when you receive new feeds." +msgstr "" + +#. module: mail +#: model:ir.actions.act_window,name:mail.action_view_groups +#: model:ir.ui.menu,name:mail.mail_allgroups +msgid "Join a group" +msgstr "" + +#. module: mail +#: model:ir.actions.client,help:mail.action_mail_group_feeds +msgid "" +"

\n" +" No message in this group.\n" +"

\n" +" " +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:213 +#, python-format +msgid "Please, wait while the file is uploading." +msgstr "" + +#. module: mail +#: view:mail.group:0 +msgid "" +"This group is visible by everyone,\n" +" including your customers if you " +"installed\n" +" the portal module." +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:243 +#, python-format +msgid "Set back to Todo" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:126 +#, python-format +msgid "this document" +msgstr "" + +#. module: mail +#: field:mail.compose.message,filter_id:0 +msgid "Filters" +msgstr "" + +#. module: mail +#: field:res.partner,notification_email_send:0 +msgid "Receive Feeds by Email" +msgstr "" + +#. module: mail +#: help:base.config.settings,alias_domain:0 +msgid "" +"If you have setup a catch-all email domain redirected to the OpenERP server, " +"enter the domain name here." +msgstr "" + +#. module: mail +#: model:ir.actions.act_window,name:mail.action_view_mail_message +#: model:ir.ui.menu,name:mail.menu_mail_message +#: field:mail.group,message_ids:0 +#: view:mail.message:0 +#: field:mail.thread,message_ids:0 +#: field:res.partner,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:139 +#, python-format +msgid "others..." +msgstr "" + +#. module: mail +#: model:ir.actions.client,name:mail.action_mail_star_feeds +#: model:ir.ui.menu,name:mail.mail_starfeeds +msgid "To-do" +msgstr "" + +#. module: mail +#: view:mail.alias:0 +#: field:mail.alias,alias_name:0 +#: field:mail.group,alias_id:0 +#: field:res.users,alias_id:0 +msgid "Alias" +msgstr "" + +#. module: mail +#: model:ir.model,name:mail.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: mail +#: help:mail.compose.message,notification_ids:0 +#: help:mail.message,notification_ids:0 +msgid "" +"Technical field holding the message notifications. Use notified_partner_ids " +"to access notified partners." +msgstr "" + +#. module: mail +#: model:ir.ui.menu,name:mail.mail_feeds +#: model:ir.ui.menu,name:mail.mail_feeds_main +msgid "Messaging" +msgstr "" + +#. module: mail +#: view:mail.alias:0 +#: field:mail.message.subtype,res_model:0 +msgid "Model" +msgstr "" + +#. module: mail +#: view:mail.message:0 +msgid "Unread" +msgstr "" + +#. module: mail +#: help:mail.followers,subtype_ids:0 +msgid "" +"Message subtypes followed, meaning subtypes that will be pushed onto the " +"user's Wall." +msgstr "" + +#. module: mail +#: help:mail.group,message_ids:0 +#: help:mail.thread,message_ids:0 +#: help:res.partner,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: mail +#: help:mail.mail,references:0 +msgid "Message references, such as identifiers of previous messages" +msgstr "" + +#. module: mail +#: field:mail.compose.message,composition_mode:0 +msgid "Composition mode" +msgstr "" + +#. module: mail +#: field:mail.compose.message,model:0 +#: field:mail.followers,res_model:0 +#: field:mail.message,model:0 +#: field:mail.wizard.invite,res_model:0 +msgid "Related Document Model" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:338 +#, python-format +msgid "unlike" +msgstr "" + +#. module: mail +#: help:mail.compose.message,author_id:0 +#: help:mail.message,author_id:0 +msgid "" +"Author of the message. If not set, email_from may hold an email address that " +"did not match any partner." +msgstr "" + +#. module: mail +#: help:mail.mail,email_cc:0 +msgid "Carbon copy message recipients" +msgstr "" + +#. module: mail +#: field:mail.alias,alias_domain:0 +msgid "Alias domain" +msgstr "" + +#. module: mail +#: code:addons/mail/update.py:93 +#, python-format +msgid "Error during communication with the publisher warranty server." +msgstr "" + +#. module: mail +#: selection:mail.group,public:0 +msgid "Private" +msgstr "" + +#. module: mail +#: model:ir.actions.client,help:mail.action_mail_star_feeds +msgid "" +"

\n" +" No todo.\n" +"

\n" +" When you process messages in your inbox, you can mark " +"some\n" +" as todo. From this menu, you can process all your " +"todo.\n" +"

\n" +" " +msgstr "" + +#. module: mail +#: selection:mail.mail,state:0 +msgid "Delivery Failed" +msgstr "" + +#. module: mail +#: field:mail.compose.message,partner_ids:0 +msgid "Additional contacts" +msgstr "" + +#. module: mail +#: help:mail.compose.message,parent_id:0 +#: help:mail.message,parent_id:0 +msgid "Initial thread message." +msgstr "" + +#. module: mail +#: model:mail.group,name:mail.group_hr_policies +msgid "HR Policies" +msgstr "" + +#. module: mail +#: selection:res.partner,notification_email_send:0 +msgid "Emails only" +msgstr "" + +#. module: mail +#: model:ir.actions.client,name:mail.action_mail_inbox_feeds +#: model:ir.ui.menu,name:mail.mail_inboxfeeds +msgid "Inbox" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/xml/mail.xml:58 +#, python-format +msgid "File" +msgstr "" + +#. module: mail +#. openerp-web +#: code:addons/mail/static/src/js/many2many_tags_email.js:63 +#, python-format +msgid "Please complete partner's informations and Email" +msgstr "" + +#. module: mail +#: model:ir.actions.act_window,name:mail.action_view_message_subtype +#: model:ir.ui.menu,name:mail.menu_message_subtype +msgid "Subtypes" +msgstr "" + +#. module: mail +#: model:ir.model,name:mail.model_mail_alias +msgid "Email Aliases" +msgstr "" + +#. module: mail +#: field:mail.group,image_small:0 +msgid "Small-sized photo" +msgstr "" + +#. module: mail +#: help:mail.mail,reply_to:0 +msgid "Preferred response address for the message" +msgstr "" diff --git a/addons/mail/i18n/ca.po b/addons/mail/i18n/ca.po index 8452f97ba37..659d9cba8e9 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Empresa" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "Missatges" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/cs.po b/addons/mail/i18n/cs.po index e12668ab3ee..cd9ddb85a64 100644 --- a/addons/mail/i18n/cs.po +++ b/addons/mail/i18n/cs.po @@ -14,56 +14,57 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-26 04:44+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 msgid "Followers Form" -msgstr "" +msgstr "Formulář odběratele" #. module: mail #: model:ir.model,name:mail.model_publisher_warranty_contract msgid "publisher_warranty.contract" -msgstr "" +msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" -msgstr "" +msgstr "Odesílatel" #. module: mail #: view:mail.mail:0 msgid "Message Details" -msgstr "" +msgstr "Detaily zprávy" #. module: mail #: help:mail.mail,email_to:0 msgid "Message recipients" -msgstr "" +msgstr "Příjemci zpráv" #. module: mail #: help:mail.message.subtype,default:0 msgid "Activated by default when subscribing." -msgstr "" +msgstr "Bude nastaveno jako výchozí při při přihlášení k odběru." #. module: mail #: view:mail.message:0 msgid "Comments" -msgstr "" +msgstr "Komentáře" #. module: mail #: view:mail.alias:0 #: view:mail.mail:0 msgid "Group By..." -msgstr "" +msgstr "Seskupit podle…" #. module: mail #: help:mail.compose.message,body:0 #: help:mail.message,body:0 msgid "Automatically sanitized HTML contents" -msgstr "" +msgstr "Automaticky ošetřený HTML obsah" #. module: mail #: help:mail.alias,alias_name:0 @@ -71,12 +72,14 @@ msgid "" "The name of the email alias, e.g. 'jobs' if you want to catch emails for " "" msgstr "" +"Název aliasu e-mailů, např. 'zamestnani', chcete-li zachytávat e-maily od " +"" #. module: mail #: model:ir.actions.act_window,name:mail.action_email_compose_message_wizard #: view:mail.compose.message:0 msgid "Compose Email" -msgstr "" +msgstr "Napsat e-mail" #. module: mail #. openerp-web @@ -88,22 +91,22 @@ msgstr "" #. module: mail #: view:mail.group:0 msgid "Group Name" -msgstr "" +msgstr "Název" #. module: mail #: selection:mail.group,public:0 msgid "Public" -msgstr "" +msgstr "Veřejné" #. module: mail #: view:mail.mail:0 msgid "Body" -msgstr "" +msgstr "Obsah" #. module: mail #: view:mail.message:0 msgid "Show messages to read" -msgstr "" +msgstr "Ukázat zprávy ke čtení" #. module: mail #: help:mail.compose.message,email_from:0 @@ -112,37 +115,39 @@ msgid "" "Email address of the sender. This field is set when no matching partner is " "found for incoming emails." msgstr "" +"E-mailová adresa odesílatele. Pole je nastaveno, nepodaří-li se pro příchozí " +"e-maily nalézt odpovídající kontakt." #. module: mail #: model:ir.model,name:mail.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Průvodce vytvořením emailu" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:23 #, python-format msgid "Add others" -msgstr "" +msgstr "Přidat další" #. module: mail #: field:mail.message.subtype,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Nadřazený" #. module: mail #: field:mail.group,message_unread:0 #: field:mail.thread,message_unread:0 #: field:res.partner,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepřečtené zprávy" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" -msgstr "" +msgstr "ukázat" #. module: mail #: help:mail.group,group_ids:0 @@ -150,37 +155,39 @@ msgid "" "Members of those groups will automatically added as followers. Note that " "they will be able to manage their subscription manually if necessary." msgstr "" +"Členové těchto skupin budou automaticky přidáni jako odběratelé zpráv. Ti si " +"pak budou moci sami spravovat své přihlášení k odběrům v případě potřeby." #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" -msgstr "" +msgstr "Chcete opravdu smazat tuto zprávu?" #. module: mail #: view:mail.message:0 #: field:mail.notification,read:0 msgid "Read" -msgstr "" +msgstr "Přečtené" #. module: mail #: view:mail.group:0 msgid "Search Groups" -msgstr "" +msgstr "Hledat skupiny" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" -msgstr "" +msgstr "Odběratelé" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" -msgstr "" +msgstr "Přístup odepřen" #. module: mail #: help:mail.group,image_medium:0 @@ -189,21 +196,24 @@ msgid "" "image, with aspect ratio preserved. Use this field in form views or some " "kanban views." msgstr "" +"Střední obrázek tohoto kontaktu. Je automaticky přepočítán na 128x128 bodů " +"se zachováním poměru stran. Použijte toto pole v zobrazeních 'formulář' nebo " +"'kanban'." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:212 #, python-format msgid "Uploading error" -msgstr "" +msgstr "Chyba uploadu" #. module: mail #: model:mail.group,name:mail.group_support msgid "Support" -msgstr "" +msgstr "Podpora" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -211,73 +221,77 @@ msgid "" "\n" "(Document type: %s, Operation: %s)" msgstr "" +"Požadovanou operaci nelze dokončit z důvodu bezpečnostnímu omezení. Obraťte " +"se prosím na správce systému. \n" +"\n" +"(Typ dokumentu:% s, Operace:% s)" #. module: mail #: view:mail.mail:0 #: selection:mail.mail,state:0 msgid "Received" -msgstr "" +msgstr "Přijaté" #. module: mail #: view:mail.mail:0 msgid "Thread" -msgstr "" +msgstr "Vlákno" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:29 #, python-format msgid "Open the full mail composer" -msgstr "" +msgstr "Otevřít plnohodnotné okno pro psaní zprávy" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:29 #, python-format msgid "ò" -msgstr "" +msgstr "ò" #. module: mail #: field:base.config.settings,alias_domain:0 msgid "Alias Domain" -msgstr "" +msgstr "Alias domény" #. module: mail #: field:mail.group,group_ids:0 msgid "Auto Subscription" -msgstr "" +msgstr "Automatický odběr" #. module: mail #: field:mail.mail,references:0 msgid "References" -msgstr "" +msgstr "Odkazy" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:206 #, python-format msgid "No messages." -msgstr "" +msgstr "Žádné zprávy." #. module: mail #: model:ir.model,name:mail.model_mail_group msgid "Discussion group" -msgstr "" +msgstr "Diskuzní skupina" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" -msgstr "" +msgstr "upload" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "more." -msgstr "" +msgstr "více." #. module: mail #: help:mail.compose.message,type:0 @@ -286,6 +300,8 @@ msgid "" "Message type: email for email message, notification for system message, " "comment for other messages such as user replies" msgstr "" +"Druh zprávy: 'E-mail' pro e-mailové zprávy, 'Upozornění' pro zprávy systému, " +"'Komentář' pro ostatní zprávy, jako odpovědi uživatelů." #. module: mail #: help:mail.message.subtype,relation_field:0 @@ -294,50 +310,53 @@ msgid "" "automatic subscription on a related document. The field is used to compute " "getattr(related_document.relation_field)." msgstr "" +"Pole slouží k propojení souvisejícího modelu s modelem poddruhu, pokud se " +"použije automatické přihlášení k odběru u souvisejícího dokumentu. Pole se " +"používá pro výpočet getattr(related_document.relation_field)." #. module: mail #: selection:mail.mail,state:0 msgid "Cancelled" -msgstr "" +msgstr "Zrušeno" #. module: mail #: field:mail.mail,reply_to:0 msgid "Reply-To" -msgstr "" +msgstr "Odpověď pro" #. module: mail #: code:addons/mail/wizard/invite.py:37 #, python-format msgid "
You have been invited to follow %s.
" -msgstr "" +msgstr "
Byli jste pozváni k odběru %s.
" #. module: mail #: help:mail.group,message_unread:0 #: help:mail.thread,message_unread:0 #: help:res.partner,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Bude-li zaškrtnuto, nové zprávy budou vyžadovat vaši pozornost." #. module: mail #: field:mail.group,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "Střední obrázek" #. module: mail #: model:ir.actions.client,name:mail.action_mail_to_me_feeds #: model:ir.ui.menu,name:mail.mail_tomefeeds msgid "To: me" -msgstr "" +msgstr "Pro mne" #. module: mail #: field:mail.message.subtype,name:0 msgid "Message Type" -msgstr "" +msgstr "Druh zprávy" #. module: mail #: field:mail.mail,auto_delete:0 msgid "Auto Delete" -msgstr "" +msgstr "Automatické vymazání" #. module: mail #. openerp-web @@ -345,28 +364,28 @@ msgstr "" #: view:mail.group:0 #, python-format msgid "Unfollow" -msgstr "" +msgstr "Neodebírat" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" -msgstr "" +msgstr "ukázat ještě jednu zprávu" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Neplatná akce!" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:25 #, python-format msgid "User img" -msgstr "" +msgstr "Obrázek uživatele" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_mail @@ -374,12 +393,12 @@ msgstr "" #: view:mail.mail:0 #: view:mail.message:0 msgid "Emails" -msgstr "" +msgstr "E-maily" #. module: mail #: field:mail.followers,partner_id:0 msgid "Related Partner" -msgstr "" +msgstr "Související kontakt" #. module: mail #: help:mail.group,message_summary:0 @@ -389,6 +408,8 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Udržuje přehled komunikace (počet zpráv, …). Tento přehled je přímo ve " +"formátu HTML, aby se dal vložit do zobrazení 'kanban'." #. module: mail #: help:mail.alias,alias_model_id:0 @@ -397,62 +418,64 @@ msgid "" "incoming email that does not reply to an existing record will cause the " "creation of a new record of this model (e.g. a Project Task)" msgstr "" +"Model (druh OpenERP dokumentu), kterému tento alias odpovídá. Příchozí e-" +"mail, který neodpoví existujícímu záznamu, způsobí vytvoření nového záznamu " +"tohoto modelu (například projektový úkol)." #. module: mail #: field:mail.message.subtype,relation_field:0 msgid "Relation field" -msgstr "" +msgstr "Pole vztahu" #. module: mail #: selection:mail.compose.message,type:0 #: selection:mail.message,type:0 msgid "System notification" -msgstr "" +msgstr "Upozornění systému" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" -msgstr "" +msgstr "Kontakt" #. module: mail #: model:ir.ui.menu,name:mail.mail_my_stuff msgid "Organizer" -msgstr "" +msgstr "Organizátor" #. module: mail #: field:mail.compose.message,subject:0 #: field:mail.message,subject:0 msgid "Subject" -msgstr "" +msgstr "Předmět" #. module: mail #: field:mail.wizard.invite,partner_ids:0 msgid "Partners" -msgstr "" +msgstr "Kontakty" #. module: mail #: view:mail.mail:0 msgid "Retry" -msgstr "" +msgstr "Opakovat" #. module: mail #: field:mail.compose.message,email_from:0 #: field:mail.mail,email_from:0 #: field:mail.message,email_from:0 msgid "From" -msgstr "" +msgstr "Od" #. module: mail #: view:mail.mail:0 #: view:mail.message.subtype:0 msgid "Email message" -msgstr "" +msgstr "E-mailová zpráva" #. module: mail #: model:ir.model,name:mail.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: mail #. openerp-web @@ -460,19 +483,19 @@ msgstr "" #: view:mail.compose.message:0 #, python-format msgid "Send" -msgstr "" +msgstr "Odeslat" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" -msgstr "" +msgstr "Žádní odběratelé" #. module: mail #: view:mail.mail:0 msgid "Failed" -msgstr "" +msgstr "Neúspěšné" #. module: mail #. openerp-web @@ -485,21 +508,21 @@ msgstr "" #: field:res.partner,message_follower_ids:0 #, python-format msgid "Followers" -msgstr "" +msgstr "Odběratelé" #. module: mail #: model:ir.actions.client,name:mail.action_mail_archives_feeds #: model:ir.ui.menu,name:mail.mail_archivesfeeds msgid "Archives" -msgstr "" +msgstr "Archivy" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" -msgstr "" +msgstr "Smazat přílohu" #. module: mail #. openerp-web @@ -507,48 +530,48 @@ msgstr "" #: view:mail.mail:0 #, python-format msgid "Reply" -msgstr "" +msgstr "Odpovědět" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" -msgstr "" +msgstr "Jeden odběratel" #. module: mail #: field:mail.compose.message,type:0 #: field:mail.message,type:0 msgid "Type" -msgstr "" +msgstr "Druh" #. module: mail #: selection:mail.compose.message,type:0 #: view:mail.mail:0 #: selection:mail.message,type:0 msgid "Email" -msgstr "" +msgstr "E-mail" #. module: mail #: field:ir.ui.menu,mail_group_id:0 msgid "Mail Group" -msgstr "" +msgstr "Skupina e-mailů" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Comments and Emails" -msgstr "" +msgstr "Komentáře a e-maily" #. module: mail #: field:mail.alias,alias_defaults:0 msgid "Default Values" -msgstr "" +msgstr "Výchozí hodnoty" #. module: mail #: code:addons/mail/res_users.py:89 #, python-format msgid "%s has joined the %s network." -msgstr "" +msgstr "%s se připojil k %s síti." #. module: mail #: help:mail.group,image_small:0 @@ -557,19 +580,22 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Malý obrázek tohoto kontaktu. Je automaticky zmenšen na rozměr 64x64 bodů se " +"zachováním poměru stran. Použijte toto pole kdekoli je požadován malý " +"obrázek." #. module: mail #: view:mail.compose.message:0 #: field:mail.message,partner_ids:0 msgid "Recipients" -msgstr "" +msgstr "Příjemci" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" -msgstr "" +msgstr "<<<" #. module: mail #. openerp-web @@ -581,29 +607,29 @@ msgstr "" #. module: mail #: field:mail.group,group_public_id:0 msgid "Authorized Group" -msgstr "" +msgstr "Zplnomocněná skupina" #. module: mail #: view:mail.group:0 msgid "Join Group" -msgstr "" +msgstr "Odebírat skupinu" #. module: mail #: help:mail.mail,email_from:0 msgid "Message sender, taken from user preferences." -msgstr "" +msgstr "Odesílatel zprávy, převzatý z uživatelských předvoleb." #. module: mail #: code:addons/mail/wizard/invite.py:40 #, python-format msgid "
You have been invited to follow a new document.
" -msgstr "" +msgstr "
Byli jste pozváni k odběru nového dokumentu.
" #. module: mail #: field:mail.compose.message,parent_id:0 #: field:mail.message,parent_id:0 msgid "Parent Message" -msgstr "" +msgstr "Nadřazená zpráva" #. module: mail #: field:mail.compose.message,res_id:0 @@ -611,7 +637,7 @@ msgstr "" #: field:mail.message,res_id:0 #: field:mail.wizard.invite,res_id:0 msgid "Related Document ID" -msgstr "" +msgstr "Související ID dokumentu" #. module: mail #: model:ir.actions.client,help:mail.action_mail_to_me_feeds @@ -623,11 +649,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Žádné osobní zprávy.\n" +"

\n" +" Seznam obsahuje zprávy adresované přímo vám.\n" +"

\n" +" " #. module: mail #: model:mail.group,name:mail.group_rd msgid "R&D" -msgstr "" +msgstr "Oddělení inovací" #. module: mail #. openerp-web @@ -639,31 +671,31 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_mail_thread msgid "Email Thread" -msgstr "" +msgstr "Vlákno e-mailu" #. module: mail #: view:mail.mail:0 msgid "Advanced" -msgstr "" +msgstr "Rošířené" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:244 #, python-format msgid "Move to Inbox" -msgstr "" +msgstr "Přesunout do příchozích zpráv" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" -msgstr "" +msgstr "Re:" #. module: mail #: field:mail.compose.message,to_read:0 #: field:mail.message,to_read:0 msgid "To read" -msgstr "" +msgstr "K přečtení" #. module: mail #: code:addons/mail/res_users.py:69 @@ -672,37 +704,39 @@ msgid "" "You may not create a user. To create new users, you should use the " "\"Settings > Users\" menu." msgstr "" +"Uživatele nemůžete vytvořit. Pro vytvoření nového uživatele byste měli " +"použít menu \"Nastavení > Uživatelé\"." #. module: mail #: help:mail.followers,res_model:0 #: help:mail.wizard.invite,res_model:0 msgid "Model of the followed resource" -msgstr "" +msgstr "Model odebíraných zdrojů" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" -msgstr "" +msgstr "líbí se mi" #. module: mail #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 msgid "Cancel" -msgstr "" +msgstr "Zrušit" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:47 #, python-format msgid "Share with my followers..." -msgstr "" +msgstr "Sdílet s odběrateli…" #. module: mail #: field:mail.notification,partner_id:0 msgid "Contact" -msgstr "" +msgstr "Kontakt" #. module: mail #: view:mail.group:0 @@ -710,29 +744,33 @@ msgid "" "Only the invited followers can read the\n" " discussions on this group." msgstr "" +"Příspěvky v této skupině mohou číst pouze\n" +" pozvaní odběratelé." #. module: mail #: model:ir.model,name:mail.model_ir_ui_menu msgid "ir.ui.menu" -msgstr "" +msgstr "ir.ui.menu" #. module: mail #: view:mail.message:0 msgid "Has attachments" -msgstr "" +msgstr "S přílohami" #. module: mail #: view:mail.mail:0 msgid "on" -msgstr "" +msgstr "na" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " "address linked :" msgstr "" +"Následující kontakty, vybrané jako příjemci e-mailu, nemají zádnou e-" +"mailovou adresu:" #. module: mail #: help:mail.alias,alias_defaults:0 @@ -740,11 +778,13 @@ msgid "" "A Python dictionary that will be evaluated to provide default values when " "creating new records for this alias." msgstr "" +"Slovník Pythonu, který bude brán jako zdroj výchozích hodnot při vytváření " +"nového záznamu pro tento alias." #. module: mail #: model:ir.model,name:mail.model_mail_message_subtype msgid "Message subtypes" -msgstr "" +msgstr "Poddruhy zpráv" #. module: mail #: help:mail.compose.message,notified_partner_ids:0 @@ -752,13 +792,15 @@ msgstr "" msgid "" "Partners that have a notification pushing this message in their mailboxes" msgstr "" +"Kontakty, které mají potlačeno oznámenío zprávvě ve svých poštovních " +"schránkách" #. module: mail #: selection:mail.compose.message,type:0 #: view:mail.mail:0 #: selection:mail.message,type:0 msgid "Comment" -msgstr "" +msgstr "Komentář" #. module: mail #: model:ir.actions.client,help:mail.action_mail_inbox_feeds @@ -774,30 +816,43 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Výborně! Nemáte žádnou nezpracovanou zprávu v " +"příchozí schránce.\n" +"

\n" +" Vaše příchozí schránka obsahuje Vám adresované zprávy a " +"e-maily\n" +" a také informace týkající se dokumentů, které " +"odebíráte,\n" +" nebo osob, jejichž zprávy odebíráte.\n" +"

\n" +" " #. module: mail #: field:mail.mail,notification:0 msgid "Is Notification" -msgstr "" +msgstr "Je upozornění" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:188 #, python-format msgid "Compose a new message" -msgstr "" +msgstr "Napsat zprávu" #. module: mail #: view:mail.mail:0 msgid "Send Now" -msgstr "" +msgstr "Odeslat nyní" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." msgstr "" +"E-mail není možno odeslat. Nastavte prosím e-mailovou adresu nebo alias " +"příjemce." #. module: mail #: help:res.users,alias_id:0 @@ -805,27 +860,29 @@ msgid "" "Email address internally associated with this user. Incoming emails will " "appear in the user's notifications." msgstr "" +"E-mailová adresa je interně přiřazena tomuto uživateli. Příchozí e-maily " +"bude vidět ve svých upozorněních." #. module: mail #: field:mail.group,image:0 msgid "Photo" -msgstr "" +msgstr "Foto" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 #, python-format msgid "or" -msgstr "" +msgstr "nebo" #. module: mail #: help:mail.compose.message,vote_user_ids:0 #: help:mail.message,vote_user_ids:0 msgid "Users that voted for this message" -msgstr "" +msgstr "Uživatelé, kteří hodnotili tuto zprávu" #. module: mail #: help:mail.group,alias_id:0 @@ -833,32 +890,34 @@ msgid "" "The email address associated with this group. New emails received will " "automatically create new topics." msgstr "" +"E-mailová adresa přiřazená této skupině. Nové příchozí e-maily automaticky " +"vytvoří nové téma." #. module: mail #: view:mail.mail:0 msgid "Month" -msgstr "" +msgstr "Měsíc" #. module: mail #: view:mail.mail:0 msgid "Email Search" -msgstr "" +msgstr "Hledání e-mailu" #. module: mail #: field:mail.compose.message,child_ids:0 #: field:mail.message,child_ids:0 msgid "Child Messages" -msgstr "" +msgstr "Podřízené zprávy" #. module: mail #: field:mail.alias,alias_user_id:0 msgid "Owner" -msgstr "" +msgstr "Vlastník" #. module: mail #: model:ir.model,name:mail.model_res_users msgid "Users" -msgstr "" +msgstr "Uživatelé" #. module: mail #: model:ir.model,name:mail.model_mail_message @@ -867,25 +926,25 @@ msgstr "" #: field:mail.notification,message_id:0 #: field:mail.wizard.invite,message:0 msgid "Message" -msgstr "" +msgstr "Zpráva" #. module: mail #: help:mail.followers,res_id:0 #: help:mail.wizard.invite,res_id:0 msgid "Id of the followed resource" -msgstr "" +msgstr "ID odebíraného zdroje" #. module: mail #: field:mail.compose.message,body:0 #: field:mail.message,body:0 msgid "Contents" -msgstr "" +msgstr "Obsahy" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_alias #: model:ir.ui.menu,name:mail.mail_alias_menu msgid "Aliases" -msgstr "" +msgstr "Aliasy" #. module: mail #: help:mail.message.subtype,description:0 @@ -893,60 +952,64 @@ msgid "" "Description that will be added in the message posted for this subtype. If " "void, the name will be added instead." msgstr "" +"Popis, který bude přidánke zprávě tohoto poddruhu. Je-li prázdné, bude " +"přidáno jméno." #. module: mail #: field:mail.compose.message,vote_user_ids:0 #: field:mail.message,vote_user_ids:0 msgid "Votes" -msgstr "" +msgstr "Ohodnocení" #. module: mail #: view:mail.group:0 msgid "Group" -msgstr "" +msgstr "Skupina" #. module: mail #: help:mail.compose.message,starred:0 #: help:mail.message,starred:0 msgid "Current user has a starred notification linked to this message" msgstr "" +"Aktuální uživatel má v úkolech (označeno hvězdičkou) oznámení související s " +"touto zprávou" #. module: mail #: field:mail.group,public:0 msgid "Privacy" -msgstr "" +msgstr "Podmínky" #. module: mail #: view:mail.mail:0 msgid "Notification" -msgstr "" +msgstr "Upozornění" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" -msgstr "" +msgstr "Doplňte prosím informace o kontaktu" #. module: mail #: view:mail.wizard.invite:0 msgid "Add Followers" -msgstr "" +msgstr "Přidat odběratele" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "" +msgstr "Odběratelé vybraných položek a" #. module: mail #: field:mail.alias,alias_force_thread_id:0 msgid "Record Thread ID" -msgstr "" +msgstr "ID vlákna záznamu" #. module: mail #: model:ir.ui.menu,name:mail.mail_group_root msgid "My Groups" -msgstr "" +msgstr "Skupiny" #. module: mail #: model:ir.actions.client,help:mail.action_mail_archives_feeds @@ -960,29 +1023,39 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Žádné zprávy nebyly dosud ani přijaty ani odeslány.\n" +"

\n" +" Klepnutím na ikonu s obálkou v pravém horním rohu " +"obrazovky\n" +" můžete vytvořit novou zprávu. Půjde-li o interní " +"kontakt,\n" +" zpráva bude odeslána e-mailem.\n" +"

\n" +" " #. module: mail #: view:mail.mail:0 #: field:mail.mail,state:0 msgid "Status" -msgstr "" +msgstr "Stav" #. module: mail #: view:mail.mail:0 #: selection:mail.mail,state:0 msgid "Outgoing" -msgstr "" +msgstr "Odchozí" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "All feeds" -msgstr "" +msgstr "Všechny zprávy" #. module: mail #: help:mail.compose.message,record_name:0 #: help:mail.message,record_name:0 msgid "Name get of the related document." -msgstr "" +msgstr "Jméno získané ze souvisejícího dokumentu." #. module: mail #: model:ir.actions.act_window,name:mail.action_view_notifications @@ -993,12 +1066,12 @@ msgstr "" #: field:mail.message,notification_ids:0 #: view:mail.notification:0 msgid "Notifications" -msgstr "" +msgstr "Upozornění" #. module: mail #: view:mail.alias:0 msgid "Search Alias" -msgstr "" +msgstr "Hledat alias" #. module: mail #: help:mail.alias,alias_force_thread_id:0 @@ -1007,6 +1080,9 @@ msgid "" "attached, even if they did not reply to it. If set, this will disable the " "creation of new records completely." msgstr "" +"Volitelné ID vlákna (záznam), ke kterému budou všechny příchozí zprávy " +"připojeny, i když na ně nebylo zodpovězeno. Je-li nastaveno, zcela zakáže " +"vytváření nových záznamů." #. module: mail #: help:mail.message.subtype,name:0 @@ -1017,50 +1093,54 @@ msgid "" "subtypes allow to precisely tune the notifications the user want to receive " "on its wall." msgstr "" +"Poddruh zpráv ještě více upřesňuje druh zpráv, zejména pro systémová " +"oznámení. Může to být třeba oznámení při vytvoření nového záznamu (New) nebo " +"při změně fáze určitého procesu (Stage change). Poddruh zpráv umožňuje " +"přesně doladit oznámení, která si přeje uživatel zobrazovat na své zdi." #. module: mail #: view:mail.mail:0 msgid "by" -msgstr "" +msgstr "od" #. module: mail #: model:mail.group,name:mail.group_best_sales_practices msgid "Best Sales Practices" -msgstr "" +msgstr "Nejlepší obchodní postupy" #. module: mail #: selection:mail.group,public:0 msgid "Selected Group Only" -msgstr "" +msgstr "Pouze vybraná skupina" #. module: mail #: field:mail.group,message_is_follower:0 #: field:mail.thread,message_is_follower:0 #: field:res.partner,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Je odběratel" #. module: mail #: view:mail.alias:0 #: view:mail.mail:0 msgid "User" -msgstr "" +msgstr "Uživatel" #. module: mail #: view:mail.group:0 msgid "Groups" -msgstr "" +msgstr "Skupiny odběrů" #. module: mail #: view:mail.message:0 msgid "Messages Search" -msgstr "" +msgstr "Hledání zpráv" #. module: mail #: field:mail.compose.message,date:0 #: field:mail.message,date:0 msgid "Date" -msgstr "" +msgstr "Datum" #. module: mail #. openerp-web @@ -1072,68 +1152,70 @@ msgstr "" #. module: mail #: view:mail.mail:0 msgid "Extended Filters..." -msgstr "" +msgstr "Rozšířené filtry…" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" -msgstr "" +msgstr "Pro:" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:193 #, python-format msgid "Write to my followers" -msgstr "" +msgstr "Napsat odběratelům" #. module: mail #: model:ir.model,name:mail.model_res_groups msgid "Access Groups" -msgstr "" +msgstr "Skupiny přístupů" #. module: mail #: field:mail.message.subtype,default:0 msgid "Default" -msgstr "" +msgstr "Výchozí" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" -msgstr "" +msgstr "ukázat více zpráv" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:246 #, python-format msgid "Mark as Todo" -msgstr "" +msgstr "Označit jako 'úkol'" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "" +msgstr "Nadřazený poddruh používaný pro automatické přihlašování k odběru." #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite msgid "Invite wizard" -msgstr "" +msgstr "Průvodce pozváním" #. module: mail #: field:mail.group,message_summary:0 #: field:mail.thread,message_summary:0 #: field:res.partner,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Shrnutí" #. module: mail #: help:mail.message.subtype,res_model:0 msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" +"Model, pro který se poddruh používá. Je-li chybný, poddruh se použije pro " +"všechny modely." #. module: mail #: field:mail.compose.message,subtype_id:0 @@ -1141,45 +1223,46 @@ msgstr "" #: field:mail.message,subtype_id:0 #: view:mail.message.subtype:0 msgid "Subtype" -msgstr "" +msgstr "Poddruh" #. module: mail #: view:mail.group:0 msgid "Group Form" -msgstr "" +msgstr "Formulář" #. module: mail #: field:mail.compose.message,starred:0 #: field:mail.message,starred:0 #: field:mail.notification,starred:0 msgid "Starred" -msgstr "" +msgstr "Označeno hvězdičkou" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" -msgstr "" +msgstr "více zpráv" #. module: mail #: code:addons/mail/update.py:93 #, python-format msgid "Error" -msgstr "" +msgstr "Chyba" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:13 #, python-format msgid "Following" -msgstr "" +msgstr "Odběr zpráv" #. module: mail #: sql_constraint:mail.alias:0 msgid "" "Unfortunately this email alias is already used, please choose a unique one" msgstr "" +"Tento alias e-mailu je již použit, zvolte prosím jiný jedinečný alias" #. module: mail #: help:mail.alias,alias_user_id:0 @@ -1189,19 +1272,23 @@ msgid "" "the sender (From) address, or will use the Administrator account if no " "system user is found for that address." msgstr "" +"Vlastník záznamů vytvářených z příchozích e-mailů tohoto aliasu. Není-li " +"toto pole nastaveno, pokusí se systém nalézt správného vlastníka na základě " +"adresy odesílateke (From) nebo použije účet správce (nenalezne-li žádného " +"uživatele s touto adresou)." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "And" -msgstr "" +msgstr "a" #. module: mail #: field:mail.compose.message,message_id:0 #: field:mail.message,message_id:0 msgid "Message-Id" -msgstr "" +msgstr "ID zprávy" #. module: mail #: help:mail.group,image:0 @@ -1209,123 +1296,125 @@ msgid "" "This field holds the image used as photo for the group, limited to " "1024x1024px." msgstr "" +"Pole obsahuje obrázek používaný jako fotografie skupiny, maximálně 1024x1024 " +"bodů." #. module: mail #: field:mail.compose.message,attachment_ids:0 #: view:mail.mail:0 #: field:mail.message,attachment_ids:0 msgid "Attachments" -msgstr "" +msgstr "Přílohy" #. module: mail #: field:mail.compose.message,record_name:0 #: field:mail.message,record_name:0 msgid "Message Record Name" -msgstr "" +msgstr "Název záznamu zprávy" #. module: mail #: field:mail.mail,email_cc:0 msgid "Cc" -msgstr "" +msgstr "Kopie" #. module: mail #: help:mail.notification,starred:0 msgid "Starred message that goes into the todo mailbox" -msgstr "" +msgstr "Zprávy označené hvězdičkou se přesunou do schránky 'Úkoly'." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" -msgstr "" +msgstr "Odběratelé" #. module: mail #: help:mail.mail,auto_delete:0 msgid "Permanently delete this email after sending it, to save space" -msgstr "" +msgstr "Pro úsporu místa trvale odstraní e-mail po jeho odeslání." #. module: mail #: model:ir.actions.client,name:mail.action_mail_group_feeds msgid "Discussion Group" -msgstr "" +msgstr "Diskuzní skupina" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:242 #, python-format msgid "Done" -msgstr "" +msgstr "Hotovo" #. module: mail #: model:mail.message.subtype,name:mail.mt_comment msgid "Discussions" -msgstr "" +msgstr "Diskuze" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:11 #, python-format msgid "Follow" -msgstr "" +msgstr "Odebírat" #. module: mail #: field:mail.group,name:0 msgid "Name" -msgstr "" +msgstr "Jméno" #. module: mail #: model:mail.group,name:mail.group_all_employees msgid "Whole Company" -msgstr "" +msgstr "Celá firma" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" -msgstr "" +msgstr "a" #. module: mail #: help:mail.mail,body_html:0 msgid "Rich-text/HTML message" -msgstr "" +msgstr "Rich-text/HTML zpráva" #. module: mail #: view:mail.mail:0 msgid "Creation Month" -msgstr "" +msgstr "Měsíc vytvoření" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" -msgstr "" +msgstr "Napsat zprávu" #. module: mail #: field:mail.group,menu_id:0 msgid "Related Menu" -msgstr "" +msgstr "Související menu" #. module: mail #: view:mail.message:0 msgid "Content" -msgstr "" +msgstr "Obsah" #. module: mail #: field:mail.mail,email_to:0 msgid "To" -msgstr "" +msgstr "Pro" #. module: mail #: field:mail.compose.message,notified_partner_ids:0 #: field:mail.message,notified_partner_ids:0 msgid "Notified partners" -msgstr "" +msgstr "Upozorněné kontakty" #. module: mail #: help:mail.group,public:0 @@ -1333,11 +1422,13 @@ msgid "" "This group is visible by non members. Invisible groups can add " "members through the invite button." msgstr "" +"Skupina je přístupná pro ty, co nejsou členy. Do neviditelných " +"skupin mohou být členové přidáni pomocí zvacího tlačítka." #. module: mail #: model:mail.group,name:mail.group_board msgid "Board meetings" -msgstr "" +msgstr "Schůze vedení" #. module: mail #: constraint:mail.alias:0 @@ -1345,80 +1436,83 @@ msgid "" "Invalid expression, it must be a literal python dictionary definition e.g. " "\"{'field': 'value'}\"" msgstr "" +"Neplatný výraz - musí se jednat o definici ze slovníku Pythonu, např. " +"\"{'field': 'value'}\"" #. module: mail #: field:mail.alias,alias_model_id:0 msgid "Aliased Model" -msgstr "" +msgstr "Model s aliasem" #. module: mail #: help:mail.compose.message,message_id:0 #: help:mail.message,message_id:0 msgid "Message unique identifier" -msgstr "" +msgstr "Jedinečný identifikátor zprávy" #. module: mail #: field:mail.group,description:0 #: field:mail.message.subtype,description:0 msgid "Description" -msgstr "" +msgstr "Popis" #. module: mail #: model:ir.model,name:mail.model_mail_followers msgid "Document Followers" -msgstr "" +msgstr "Odběratelé dokumentu" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "" +msgstr "Odstranit odběratele" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Never" -msgstr "" +msgstr "Nikdy" #. module: mail #: field:mail.mail,mail_server_id:0 msgid "Outgoing mail server" -msgstr "" +msgstr "Server odchozí pošty" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" -msgstr "" +msgstr "E-mailová adresa kontaktu nebyla nalezena" #. module: mail #: view:mail.mail:0 #: selection:mail.mail,state:0 msgid "Sent" -msgstr "" +msgstr "Odeslané" #. module: mail #: field:mail.mail,body_html:0 msgid "Rich-text Contents" -msgstr "" +msgstr "Rich-text obsah" #. module: mail #: help:mail.compose.message,to_read:0 #: help:mail.message,to_read:0 msgid "Current user has an unread notification linked to this message" -msgstr "" +msgstr "Aktuální uživatel má nepřečtené oznámení související s touto zprávou" #. module: mail #: help:res.partner,notification_email_send:0 msgid "" "Choose in which case you want to receive an email when you receive new feeds." msgstr "" +"Zvolte si, kdy budete chtít dostávat e-maily při obdržení nových zpráv." #. module: mail #: model:ir.actions.act_window,name:mail.action_view_groups #: model:ir.ui.menu,name:mail.mail_allgroups msgid "Join a group" -msgstr "" +msgstr "Připojení ke skupinám" #. module: mail #: model:ir.actions.client,help:mail.action_mail_group_feeds @@ -1428,13 +1522,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Žádné zprávy nyní nejsou v této skupině.\n" +"

\n" +" " #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:213 #, python-format msgid "Please, wait while the file is uploading." -msgstr "" +msgstr "Čekejte prosím, až se soubor nahraje." #. module: mail #: view:mail.group:0 @@ -1444,30 +1542,33 @@ msgid "" "installed\n" " the portal module." msgstr "" +"Skupina je přístupná pro všechny,\n" +" včetně zákazníků, je-li nainstalován\n" +" modul Portál." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:243 #, python-format msgid "Set back to Todo" -msgstr "" +msgstr "Dát zpět do úkolů" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" -msgstr "" +msgstr "tento dokument" #. module: mail #: field:mail.compose.message,filter_id:0 msgid "Filters" -msgstr "" +msgstr "Filtry" #. module: mail #: field:res.partner,notification_email_send:0 msgid "Receive Feeds by Email" -msgstr "" +msgstr "Dostávat zprávy e-mailem" #. module: mail #: help:base.config.settings,alias_domain:0 @@ -1475,6 +1576,8 @@ msgid "" "If you have setup a catch-all email domain redirected to the OpenERP server, " "enter the domain name here." msgstr "" +"Zadejte název domény, chcete-li nastavit zachytávání celé e-mailové domény " +"přesměrované na OpenERP server." #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_message @@ -1484,20 +1587,20 @@ msgstr "" #: field:mail.thread,message_ids:0 #: field:res.partner,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Zprávy" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." -msgstr "" +msgstr "jiné…" #. module: mail #: model:ir.actions.client,name:mail.action_mail_star_feeds #: model:ir.ui.menu,name:mail.mail_starfeeds msgid "To-do" -msgstr "" +msgstr "Úkoly" #. module: mail #: view:mail.alias:0 @@ -1505,12 +1608,12 @@ msgstr "" #: field:mail.group,alias_id:0 #: field:res.users,alias_id:0 msgid "Alias" -msgstr "" +msgstr "Alias" #. module: mail #: model:ir.model,name:mail.model_mail_mail msgid "Outgoing Mails" -msgstr "" +msgstr "Odchozí e-maily" #. module: mail #: help:mail.compose.message,notification_ids:0 @@ -1519,23 +1622,25 @@ msgid "" "Technical field holding the message notifications. Use notified_partner_ids " "to access notified partners." msgstr "" +"Technické pole obsahující upozornění na zprávu. Pro přístup upozorněných " +"kontaktů používá notified_partner_ids." #. module: mail #: model:ir.ui.menu,name:mail.mail_feeds #: model:ir.ui.menu,name:mail.mail_feeds_main msgid "Messaging" -msgstr "" +msgstr "Zprávy" #. module: mail #: view:mail.alias:0 #: field:mail.message.subtype,res_model:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: mail #: view:mail.message:0 msgid "Unread" -msgstr "" +msgstr "Nepřečtené" #. module: mail #: help:mail.followers,subtype_ids:0 @@ -1543,23 +1648,25 @@ msgid "" "Message subtypes followed, meaning subtypes that will be pushed onto the " "user's Wall." msgstr "" +"Odebírané poddruhy zpráv, tedy podtypy, které se budou zobrazovat uživatelům " +"na zdi." #. module: mail #: help:mail.group,message_ids:0 #: help:mail.thread,message_ids:0 #: help:res.partner,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Historie zpráv a komunikace" #. module: mail #: help:mail.mail,references:0 msgid "Message references, such as identifiers of previous messages" -msgstr "" +msgstr "Odkazy zpráv, jako identifikátory předchozích zpráv" #. module: mail #: field:mail.compose.message,composition_mode:0 msgid "Composition mode" -msgstr "" +msgstr "Režim psaní" #. module: mail #: field:mail.compose.message,model:0 @@ -1567,14 +1674,14 @@ msgstr "" #: field:mail.message,model:0 #: field:mail.wizard.invite,res_model:0 msgid "Related Document Model" -msgstr "" +msgstr "Související model dokumentu" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" -msgstr "" +msgstr "už se mi nelíbí" #. module: mail #: help:mail.compose.message,author_id:0 @@ -1583,27 +1690,29 @@ msgid "" "Author of the message. If not set, email_from may hold an email address that " "did not match any partner." msgstr "" +"Autor zprávy. Není-li nastaven, email_from může obsahovat e-mailovou adresu, " +"která neodpovídá žádnému kontaktu." #. module: mail #: help:mail.mail,email_cc:0 msgid "Carbon copy message recipients" -msgstr "" +msgstr "Příjemci kopie zprávy" #. module: mail #: field:mail.alias,alias_domain:0 msgid "Alias domain" -msgstr "" +msgstr "Alias domény" #. module: mail #: code:addons/mail/update.py:93 #, python-format msgid "Error during communication with the publisher warranty server." -msgstr "" +msgstr "Chyba v púrůběhu komunikace s 'publisher waranty' serverem." #. module: mail #: selection:mail.group,public:0 msgid "Private" -msgstr "" +msgstr "Osobní" #. module: mail #: model:ir.actions.client,help:mail.action_mail_star_feeds @@ -1618,22 +1727,31 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Žádné úkoly.\n" +"

\n" +" Když procházíte příchozí poštu, můžete některé zprávy " +"označit\n" +" jako úkol. Z tohoto menu pak můžete zpracovávat " +"vaše úkoly.\n" +"

\n" +" " #. module: mail #: selection:mail.mail,state:0 msgid "Delivery Failed" -msgstr "" +msgstr "Doručení se nezdařilo" #. module: mail #: field:mail.compose.message,partner_ids:0 msgid "Additional contacts" -msgstr "" +msgstr "Další kontakty" #. module: mail #: help:mail.compose.message,parent_id:0 #: help:mail.message,parent_id:0 msgid "Initial thread message." -msgstr "" +msgstr "Počáteční zpráva vlákna." #. module: mail #: model:mail.group,name:mail.group_hr_policies @@ -1643,13 +1761,13 @@ msgstr "" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Emails only" -msgstr "" +msgstr "Pouze e-maily" #. module: mail #: model:ir.actions.client,name:mail.action_mail_inbox_feeds #: model:ir.ui.menu,name:mail.mail_inboxfeeds msgid "Inbox" -msgstr "" +msgstr "Příchozí zprávy" #. module: mail #. openerp-web @@ -1663,25 +1781,25 @@ msgstr "" #: code:addons/mail/static/src/js/many2many_tags_email.js:63 #, python-format msgid "Please complete partner's informations and Email" -msgstr "" +msgstr "Doplňte prosím informace o kontaktu a e-mail" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_message_subtype #: model:ir.ui.menu,name:mail.menu_message_subtype msgid "Subtypes" -msgstr "" +msgstr "Poddruhy" #. module: mail #: model:ir.model,name:mail.model_mail_alias msgid "Email Aliases" -msgstr "" +msgstr "Aliasy e-mailu" #. module: mail #: field:mail.group,image_small:0 msgid "Small-sized photo" -msgstr "" +msgstr "Malý obrázek" #. module: mail #: help:mail.mail,reply_to:0 msgid "Preferred response address for the message" -msgstr "" +msgstr "Upřednostňovaná zpětná adresa pro zprávy" diff --git a/addons/mail/i18n/da.po b/addons/mail/i18n/da.po index dcb518e5e17..880060a5958 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/de.po b/addons/mail/i18n/de.po index 3a17c1c7294..9b1f370d860 100644 --- a/addons/mail/i18n/de.po +++ b/addons/mail/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -30,6 +30,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Verfasser" @@ -47,7 +48,7 @@ msgstr "Empfänger der Nachricht" #. module: mail #: help:mail.message.subtype,default:0 msgid "Activated by default when subscribing." -msgstr "Standardmässig aktiviert, wenn Sie folgen." +msgstr "Standardmässig aktiviert, wenn Sie bestätigen." #. module: mail #: view:mail.message:0 @@ -144,7 +145,7 @@ msgstr "Ungelesene Nachrichten" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "Anzeigen" @@ -161,7 +162,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Wollen Sie diese Nachricht wirklich löschen?" @@ -179,13 +180,13 @@ msgstr "Gruppen suchen" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "Follower" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Zugriff verweigert" @@ -214,7 +215,7 @@ msgid "Support" msgstr "Unterstützung" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -281,8 +282,8 @@ msgstr "Diskussionsgruppe" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "hochladen" @@ -329,7 +330,7 @@ msgstr "Antwort an" #: code:addons/mail/wizard/invite.py:37 #, python-format msgid "
You have been invited to follow %s.
" -msgstr "
Sie wurden eingeladen %s. zu folgen
" +msgstr "
Sie wurden eingeladen, %s zu folgen.
" #. module: mail #: help:mail.group,message_unread:0 @@ -369,13 +370,13 @@ msgstr "Nicht mehr folgen" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "zeige weitere Nachricht" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -437,7 +438,6 @@ msgstr "System Benachrichtigung" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partner" @@ -490,7 +490,7 @@ msgstr "Senden" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Keine Followers" @@ -521,8 +521,8 @@ msgstr "Archive" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Diesen Anhang löschen" @@ -537,7 +537,7 @@ msgstr "Antworten" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Ein Follower" @@ -595,7 +595,7 @@ msgstr "Empfänger" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -691,7 +691,7 @@ msgid "Move to Inbox" msgstr "In den Eingang verschieben" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -720,7 +720,7 @@ msgstr "Modell der verfolgten Ressource" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "gefällt mir" @@ -768,7 +768,7 @@ msgid "on" msgstr "am" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -848,7 +848,7 @@ msgid "Send Now" msgstr "Sofort senden" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -872,7 +872,7 @@ msgstr "Bild" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -954,8 +954,8 @@ msgid "" "Description that will be added in the message posted for this subtype. If " "void, the name will be added instead." msgstr "" -"Beschreibung die zur versendeten Nachricht hinzugefügt wird. Im Falle If " -"void, wird anstatt dessen die Bezeichnung genommen." +"Beschreibung, die zur versendeten Nachricht hinzugefügt wird. Falls es hier " +"keinen Eintrag gibt, wird anstatt dessen die Bezeichnung genommen." #. module: mail #: field:mail.compose.message,vote_user_ids:0 @@ -986,7 +986,7 @@ msgstr "Benachrichtigung" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Bitte vervollständingen Sie den Partner Datensatz" @@ -1157,7 +1157,7 @@ msgstr "Erweiterte Filter..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "An:" @@ -1181,7 +1181,7 @@ msgstr "Standard" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "Mehr Nachrichten anzeigen" @@ -1240,7 +1240,7 @@ msgstr "Markiert" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "mehr Nachrichten" @@ -1325,7 +1325,7 @@ msgstr "Markierte Nachricht wird in To-Do Postfach geleitet" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1373,8 +1373,8 @@ msgstr "Gesamtes Unternehmen" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1392,7 +1392,7 @@ msgstr "Monat Erstellung" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Eine neue Nachricht verfassen" @@ -1481,7 +1481,7 @@ msgid "Outgoing mail server" msgstr "Ausgehender Mailserver" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Partner E-Mail Adressen wurden nicht gefunden" @@ -1558,7 +1558,7 @@ msgstr "Auf zu Erledigen setzen" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "diesem Dokument" @@ -1594,7 +1594,7 @@ msgstr "Nachrichten" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "andere ..." @@ -1681,7 +1681,7 @@ msgstr "zugehöriges Dokumenten-Modell" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "gefällt mir nicht" diff --git a/addons/mail/i18n/es.po b/addons/mail/i18n/es.po index 2eeefed300e..089230c1a2c 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "Contrato de garantía del publicador" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autor" @@ -143,7 +144,7 @@ msgstr "Mensajes sin leer" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "mostrar" @@ -160,7 +161,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "¿Realmente desea eliminar este mensaje?" @@ -178,13 +179,13 @@ msgstr "Grupos de busqueda" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "seguidores" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Acceso denegado" @@ -213,7 +214,7 @@ msgid "Support" msgstr "Soporte" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -280,8 +281,8 @@ msgstr "Grupo de discusión" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "subiendo" @@ -368,13 +369,13 @@ msgstr "Dejar de seguir" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "Mostrar un mensaje mas" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -435,7 +436,6 @@ msgstr "Notificación del sistema" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Empresa" @@ -488,7 +488,7 @@ msgstr "Enviar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "No seguidores" @@ -519,8 +519,8 @@ msgstr "Archivados" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Eliminar este adjunto" @@ -535,7 +535,7 @@ msgstr "Responder" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Un seguidor" @@ -593,7 +593,7 @@ msgstr "Destinatarios" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -688,7 +688,7 @@ msgid "Move to Inbox" msgstr "Mover a la bandeja de entrada" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -717,7 +717,7 @@ msgstr "Modelo del recurso seguido" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "Me gusta" @@ -763,7 +763,7 @@ msgid "on" msgstr "en" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -843,7 +843,7 @@ msgid "Send Now" msgstr "Enviar ahora" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -867,7 +867,7 @@ msgstr "Foto" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -982,7 +982,7 @@ msgstr "Notificación" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Complete por favor la información de la empresa" @@ -1152,7 +1152,7 @@ msgstr "Filtros extendidos..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Para:" @@ -1176,7 +1176,7 @@ msgstr "Por defecto" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "ver más mensajes" @@ -1235,7 +1235,7 @@ msgstr "Destacado" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "más mensajes" @@ -1321,7 +1321,7 @@ msgstr "Mensaje destacado que va al buzón 'Por realizar'" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1369,8 +1369,8 @@ msgstr "Toda la compañia" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1388,7 +1388,7 @@ msgstr "Mes de creación" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Redactar un nuevo mensaje" @@ -1477,7 +1477,7 @@ msgid "Outgoing mail server" msgstr "Servidor de correos salientes" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Dirección de correo de la empresa no encontrada" @@ -1553,7 +1553,7 @@ msgstr "Restablecer a 'Por realizar'" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "este documento" @@ -1589,7 +1589,7 @@ msgstr "Mensajes" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "otros..." @@ -1673,11 +1673,11 @@ msgstr "Modo de composición" #: field:mail.message,model:0 #: field:mail.wizard.invite,res_model:0 msgid "Related Document Model" -msgstr "Model de documento relacionado" +msgstr "Modelo de documento relacionado" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "Ya no me gusta" diff --git a/addons/mail/i18n/es_CR.po b/addons/mail/i18n/es_CR.po index d77a89d0ad9..9a7245541cd 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: es\n" #. module: mail @@ -30,6 +30,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -140,7 +141,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -154,7 +155,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -172,13 +173,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -204,7 +205,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -267,8 +268,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -350,13 +351,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -412,7 +413,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Empresa" @@ -465,7 +465,7 @@ msgstr "Enviar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -496,8 +496,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -512,7 +512,7 @@ msgstr "Responder" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -567,7 +567,7 @@ msgstr "Destinatarios" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -655,7 +655,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -682,7 +682,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -728,7 +728,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -794,7 +794,7 @@ msgid "Send Now" msgstr "Enviar ahora" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -814,7 +814,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -924,7 +924,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1077,7 +1077,7 @@ msgstr "Filtros extendidos..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1158,7 +1158,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1236,7 +1236,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1284,8 +1284,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1303,7 +1303,7 @@ msgstr "Mes de creación" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1388,7 +1388,7 @@ msgid "Outgoing mail server" msgstr "Servidor de correos salientes" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1456,7 +1456,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1490,7 +1490,7 @@ msgstr "Mensajes" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1575,7 +1575,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/es_MX.po b/addons/mail/i18n/es_MX.po index e02d9189a62..fcedc9e6129 100644 --- a/addons/mail/i18n/es_MX.po +++ b/addons/mail/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -965,7 +965,7 @@ msgstr "" #: view:mail.mail:0 #: field:mail.mail,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: mail #: view:mail.mail:0 @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1189,6 +1189,10 @@ msgid "" "the sender (From) address, or will use the Administrator account if no " "system user is found for that address." msgstr "" +"El propietario de los registros creados al recibir correos electrónicos en " +"este alias. Si el campo no está establecido, el sistema tratará de encontrar " +"el propietario adecuado basado en la dirección del emisor (De), o usará la " +"cuenta de administrador si no se encuentra un usuario para esa dirección." #. module: mail #. openerp-web @@ -1235,7 +1239,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1286,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1305,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1390,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1458,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1492,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1575,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/es_PY.po b/addons/mail/i18n/es_PY.po index b27ab59b721..342c5d220f0 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/et.po b/addons/mail/i18n/et.po index c2d984e6afc..8b37d06c10e 100644 --- a/addons/mail/i18n/et.po +++ b/addons/mail/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autor" @@ -139,7 +140,7 @@ msgstr "Lugemata sõnumid" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "näita" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Juurdepääs keelatud" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "Arutelu grupp" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "Lõpeta jälgimine" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "" @@ -464,7 +464,7 @@ msgstr "Saada" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "Arhiivid" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Üks jälgija" @@ -566,7 +566,7 @@ msgstr "Saajad" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -660,7 +660,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -687,7 +687,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -733,7 +733,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -808,7 +808,7 @@ msgid "Send Now" msgstr "Saada kohe" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -828,7 +828,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -938,7 +938,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1091,7 +1091,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1115,7 +1115,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1172,7 +1172,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1250,7 +1250,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1297,8 +1297,8 @@ msgstr "Terve Ettevõte" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1316,7 +1316,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Koosta uus sõnum" @@ -1401,7 +1401,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1469,7 +1469,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1503,7 +1503,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1586,7 +1586,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/fi.po b/addons/mail/i18n/fi.po index 062474237d8..f86c37b6634 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Yhteistyökumppani" @@ -464,7 +464,7 @@ msgstr "Lähetä" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "Vastaa" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "Vastaanottajat" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Viite:" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "Lähetä nyt" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "Laajennetut suodattimet..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1283,8 +1283,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1302,7 +1302,7 @@ msgstr "Luontikuukausi" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1387,7 +1387,7 @@ msgid "Outgoing mail server" msgstr "Lähtevän postin palvelin" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1455,7 +1455,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1489,7 +1489,7 @@ msgstr "Viestit" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1572,7 +1572,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/fr.po b/addons/mail/i18n/fr.po index cb2c0f461d0..34fb9d6d92e 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Auteur" @@ -143,7 +144,7 @@ msgstr "Messages non lus" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "montrer" @@ -159,7 +160,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Êtes-vous sûr de vouloir supprimer ce message ?" @@ -177,13 +178,13 @@ msgstr "Chercher dans les groupes" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "abonnés" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Accès refusé" @@ -212,7 +213,7 @@ msgid "Support" msgstr "Assistance" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -279,8 +280,8 @@ msgstr "Groupe de discussion" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "envoi" @@ -325,7 +326,7 @@ msgstr "Répondre à" #: code:addons/mail/wizard/invite.py:37 #, python-format msgid "
You have been invited to follow %s.
" -msgstr "
Vous avez été invités à suivre %s.<.div>" +msgstr "
Vous avez été invités à suivre %s.
" #. module: mail #: help:mail.group,message_unread:0 @@ -365,13 +366,13 @@ msgstr "Ne plus suivre" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "afficher un message de plus" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -429,7 +430,6 @@ msgstr "Notification Système" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partenaire" @@ -478,11 +478,11 @@ msgstr "base.config.settings" #: view:mail.compose.message:0 #, python-format msgid "Send" -msgstr "Envoyé" +msgstr "Envoyer" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Aucun abonné" @@ -513,8 +513,8 @@ msgstr "Archives" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Supprimer cette pièce jointe" @@ -529,7 +529,7 @@ msgstr "Répondre" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Un abonné" @@ -575,6 +575,9 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Photo petit format du groupe. Elle est automatiquement redimensionnée au " +"format 64x64px, en respectant le ratio d'aspect. Utilisez ce champ à tout " +"endroit où une petite image est requise." #. module: mail #: view:mail.compose.message:0 @@ -584,7 +587,7 @@ msgstr "Destinataires" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -679,7 +682,7 @@ msgid "Move to Inbox" msgstr "Déplacer dans la boîte de réception" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -708,7 +711,7 @@ msgstr "Modèle de la ressource suivie" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "j'aime" @@ -754,7 +757,7 @@ msgid "on" msgstr "le" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -838,7 +841,7 @@ msgid "Send Now" msgstr "Envoyer maintenant" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -862,7 +865,7 @@ msgstr "Photo" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -882,6 +885,8 @@ msgid "" "The email address associated with this group. New emails received will " "automatically create new topics." msgstr "" +"L'adresse de courriel associée à ce groupe. Les messages nouvellement reçus " +"vont automatiquement créer de nouveaux sujets." #. module: mail #: view:mail.mail:0 @@ -934,7 +939,7 @@ msgstr "Contenu" #: model:ir.actions.act_window,name:mail.action_view_mail_alias #: model:ir.ui.menu,name:mail.mail_alias_menu msgid "Aliases" -msgstr "" +msgstr "Alias" #. module: mail #: help:mail.message.subtype,description:0 @@ -974,7 +979,7 @@ msgstr "Notification" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Veuillez compléter les informations du partenaire" @@ -1011,6 +1016,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pas de messages trouvés et pas encore de messages " +"envoyés.\n" +"

\n" +" Cliquez sur l'icône en haut à droite pour écrire un " +"message.\n" +" Ce message sera envoyé par courriel si c'est un contact " +"interne.\n" +"

\n" +" " #. module: mail #: view:mail.mail:0 @@ -1049,7 +1064,7 @@ msgstr "Notifications" #. module: mail #: view:mail.alias:0 msgid "Search Alias" -msgstr "" +msgstr "Chercher l'alias" #. module: mail #: help:mail.alias,alias_force_thread_id:0 @@ -1082,7 +1097,7 @@ msgstr "" #. module: mail #: selection:mail.group,public:0 msgid "Selected Group Only" -msgstr "" +msgstr "Groupe sélectionné uniquement" #. module: mail #: field:mail.group,message_is_follower:0 @@ -1127,7 +1142,7 @@ msgstr "Filtres étendus..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "À :" @@ -1151,7 +1166,7 @@ msgstr "Par défaut" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "afficher plus de messages" @@ -1166,7 +1181,7 @@ msgstr "Marqué comme 'À faire'" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "" +msgstr "Sous-type parent, utilisé pour l'abonnement automatique." #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite @@ -1185,6 +1200,8 @@ msgstr "Résumé" msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" +"Modèle auquel le sous-type s'applique. Si False est spécifié, le sous-type " +"s'applique à tous les modèles." #. module: mail #: field:mail.compose.message,subtype_id:0 @@ -1197,7 +1214,7 @@ msgstr "Sous-type" #. module: mail #: view:mail.group:0 msgid "Group Form" -msgstr "" +msgstr "Formulaire de groupe" #. module: mail #: field:mail.compose.message,starred:0 @@ -1208,10 +1225,10 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" -msgstr "" +msgstr "plus de messages" #. module: mail #: code:addons/mail/update.py:93 @@ -1224,13 +1241,15 @@ msgstr "Erreur" #: code:addons/mail/static/src/xml/mail_followers.xml:13 #, python-format msgid "Following" -msgstr "" +msgstr "Abonné(e)" #. module: mail #: sql_constraint:mail.alias:0 msgid "" "Unfortunately this email alias is already used, please choose a unique one" msgstr "" +"Malheureusement, cet alias de courriel est déjà utilisé : veuillez utiliser " +"un alias unique" #. module: mail #: help:mail.alias,alias_user_id:0 @@ -1286,7 +1305,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1324,7 +1343,7 @@ msgstr "Suivre" #. module: mail #: field:mail.group,name:0 msgid "Name" -msgstr "" +msgstr "Nom" #. module: mail #: model:mail.group,name:mail.group_all_employees @@ -1333,8 +1352,8 @@ msgstr "Toute la société" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1352,7 +1371,7 @@ msgstr "Mois de création" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Rédiger un nouveau message" @@ -1384,11 +1403,13 @@ msgid "" "This group is visible by non members. Invisible groups can add " "members through the invite button." msgstr "" +"Ce groupe est visible pour les non-membres. Les groupes invisibles peuvent " +"ajouter des membres grâce au bouton d'invitation." #. module: mail #: model:mail.group,name:mail.group_board msgid "Board meetings" -msgstr "" +msgstr "Réunions" #. module: mail #: constraint:mail.alias:0 @@ -1431,7 +1452,7 @@ msgstr "Retirer cet abonné" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Never" -msgstr "" +msgstr "Jamais" #. module: mail #: field:mail.mail,mail_server_id:0 @@ -1439,10 +1460,10 @@ msgid "Outgoing mail server" msgstr "Serveur courriel sortant" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" -msgstr "" +msgstr "Adresses courriel des partenaires introuvables" #. module: mail #: view:mail.mail:0 @@ -1459,7 +1480,7 @@ msgstr "" #: help:mail.compose.message,to_read:0 #: help:mail.message,to_read:0 msgid "Current user has an unread notification linked to this message" -msgstr "" +msgstr "L'utilisateur actuel a une notification non-lue liée à ce message." #. module: mail #: help:res.partner,notification_email_send:0 @@ -1483,6 +1504,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Aucun message dans ce groupe.\n" +"

\n" +" " #. module: mail #. openerp-web @@ -1499,6 +1524,10 @@ msgid "" "installed\n" " the portal module." msgstr "" +"Ce groupe est visible par tout le monde,\n" +" y compris vos clients si vous avez " +"installé\n" +" le module \"Portail\"." #. module: mail #. openerp-web @@ -1509,7 +1538,7 @@ msgstr "Remettre dans 'À faire'" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "ce document" @@ -1543,7 +1572,7 @@ msgstr "Messages" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "autres..." @@ -1560,7 +1589,7 @@ msgstr "À faire" #: field:mail.group,alias_id:0 #: field:res.users,alias_id:0 msgid "Alias" -msgstr "" +msgstr "Alias" #. module: mail #: model:ir.model,name:mail.model_mail_mail @@ -1615,7 +1644,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,composition_mode:0 msgid "Composition mode" -msgstr "" +msgstr "Mode de composition" #. module: mail #: field:mail.compose.message,model:0 @@ -1627,7 +1656,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "je n'aime plus" @@ -1639,6 +1668,8 @@ msgid "" "Author of the message. If not set, email_from may hold an email address that " "did not match any partner." msgstr "" +"Auteur du message. S'il n'est pas indiqué, email_from peux contenir une " +"adresse électronique ne correspondant à aucun partenaire." #. module: mail #: help:mail.mail,email_cc:0 @@ -1648,7 +1679,7 @@ msgstr "Destinataires en copie carbone (Cc)" #. module: mail #: field:mail.alias,alias_domain:0 msgid "Alias domain" -msgstr "" +msgstr "Domaine d'alias" #. module: mail #: code:addons/mail/update.py:93 @@ -1675,6 +1706,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Rien à faire.\n" +"

\n" +" Quand vous traitez des messages dans votre boîte de " +"réception, vous pouvez en marquer certains\n" +" comme À faire. Depuis ce menu, vous pouvez " +"traitez tous vos messages \"À faire\".\n" +"

\n" +" " #. module: mail #: selection:mail.mail,state:0 @@ -1700,7 +1740,7 @@ msgstr "" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Emails only" -msgstr "" +msgstr "Courriels seulement" #. module: mail #: model:ir.actions.client,name:mail.action_mail_inbox_feeds @@ -1731,12 +1771,12 @@ msgstr "Sous-types" #. module: mail #: model:ir.model,name:mail.model_mail_alias msgid "Email Aliases" -msgstr "" +msgstr "Alias courriel" #. module: mail #: field:mail.group,image_small:0 msgid "Small-sized photo" -msgstr "" +msgstr "Photo petit format" #. module: mail #: help:mail.mail,reply_to:0 diff --git a/addons/mail/i18n/gl.po b/addons/mail/i18n/gl.po index ff0e8eb3d99..b26b4921e89 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Socio" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "Mensaxes" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/hr.po b/addons/mail/i18n/hr.po index c2afc8e8794..0953909cdfb 100644 --- a/addons/mail/i18n/hr.po +++ b/addons/mail/i18n/hr.po @@ -14,21 +14,22 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 msgid "Followers Form" -msgstr "" +msgstr "Obrazac pratitelja" #. module: mail #: model:ir.model,name:mail.model_publisher_warranty_contract msgid "publisher_warranty.contract" -msgstr "publisher_warranty.contract" +msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autor" @@ -46,7 +47,7 @@ msgstr "Primatelji poruke" #. module: mail #: help:mail.message.subtype,default:0 msgid "Activated by default when subscribing." -msgstr "" +msgstr "Standardno aktivirano kod pretplate" #. module: mail #: view:mail.message:0 @@ -63,7 +64,7 @@ msgstr "Grupiraj po..." #: help:mail.compose.message,body:0 #: help:mail.message,body:0 msgid "Automatically sanitized HTML contents" -msgstr "" +msgstr "Automatski počišćen HTML sadržaj" #. module: mail #: help:mail.alias,alias_name:0 @@ -71,6 +72,8 @@ msgid "" "The name of the email alias, e.g. 'jobs' if you want to catch emails for " "" msgstr "" +"Ime e-mail aliasa, npr. 'poslovi' ako žele uhvatiti e-poštu za " +"" #. module: mail #: model:ir.actions.act_window,name:mail.action_email_compose_message_wizard @@ -103,7 +106,7 @@ msgstr "Sadržaj" #. module: mail #: view:mail.message:0 msgid "Show messages to read" -msgstr "" +msgstr "Prikaži poruke za čitanje" #. module: mail #: help:mail.compose.message,email_from:0 @@ -112,6 +115,8 @@ msgid "" "Email address of the sender. This field is set when no matching partner is " "found for incoming emails." msgstr "" +"Email adresa pošiljatelja. Ovo se polje postavlja kada nije pronađen partner " +"za dolazni email." #. module: mail #: model:ir.model,name:mail.model_mail_compose_message @@ -123,12 +128,12 @@ msgstr "Čarobnjak za sastavljanje e-pošte" #: code:addons/mail/static/src/xml/mail_followers.xml:23 #, python-format msgid "Add others" -msgstr "" +msgstr "Dodaj ostale" #. module: mail #: field:mail.message.subtype,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Nadređeni" #. module: mail #: field:mail.group,message_unread:0 @@ -139,7 +144,7 @@ msgstr "Nepročitane poruke" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "prikaži" @@ -150,13 +155,15 @@ msgid "" "Members of those groups will automatically added as followers. Note that " "they will be able to manage their subscription manually if necessary." msgstr "" +"Članovi tih grupa će biti automatski dodani kao sljedbenici. Imajte na umu " +"da će oni prema potrebi moći ručno upravljati svojom pretplatom." #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" -msgstr "" +msgstr "Da li zaista želite obrisati ovu poruku?" #. module: mail #: view:mail.message:0 @@ -167,20 +174,20 @@ msgstr "Pročitano" #. module: mail #: view:mail.group:0 msgid "Search Groups" -msgstr "" +msgstr "Traži grupe" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" -msgstr "" +msgstr "Sljedbenici" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" -msgstr "" +msgstr "Pristup odbijen" #. module: mail #: help:mail.group,image_medium:0 @@ -189,21 +196,24 @@ msgid "" "image, with aspect ratio preserved. Use this field in form views or some " "kanban views." msgstr "" +"Slika od grupe srednje veličine. Automatski će se promijeniti veličina na " +"128x128 s očuvanim omjerom. Koristiti ove polje u pregledima obrasca i " +"nekim kanban pogledima." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:212 #, python-format msgid "Uploading error" -msgstr "" +msgstr "Greška pri preuzimanju" #. module: mail #: model:mail.group,name:mail.group_support msgid "Support" -msgstr "" +msgstr "Podrška" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -211,6 +221,10 @@ msgid "" "\n" "(Document type: %s, Operation: %s)" msgstr "" +"Pokrenuta operacija nemože biti završena iz sigurnosnig razloga. Molimo " +"kontaktirajte administratora.\n" +"\n" +"(Tip dokumenta: %s, operacija : %s)" #. module: mail #: view:mail.mail:0 @@ -228,7 +242,7 @@ msgstr "Nit" #: code:addons/mail/static/src/xml/mail.xml:29 #, python-format msgid "Open the full mail composer" -msgstr "" +msgstr "Otvori puni editor pošte" #. module: mail #. openerp-web @@ -240,12 +254,12 @@ msgstr "" #. module: mail #: field:base.config.settings,alias_domain:0 msgid "Alias Domain" -msgstr "" +msgstr "alias domena" #. module: mail #: field:mail.group,group_ids:0 msgid "Auto Subscription" -msgstr "" +msgstr "auto pretplata" #. module: mail #: field:mail.mail,references:0 @@ -262,22 +276,22 @@ msgstr "Nema poruka." #. module: mail #: model:ir.model,name:mail.model_mail_group msgid "Discussion group" -msgstr "" +msgstr "Grupe za raspravu" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" -msgstr "" +msgstr "učitavanje" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "more." -msgstr "" +msgstr "više." #. module: mail #: help:mail.compose.message,type:0 @@ -286,6 +300,8 @@ msgid "" "Message type: email for email message, notification for system message, " "comment for other messages such as user replies" msgstr "" +"Vrsta poruke: e-mail za e-mail poruke, priopćenja za sistemske poruke, " +"komentari za druge poruke poput korisničkih odgovora" #. module: mail #: help:mail.message.subtype,relation_field:0 @@ -309,14 +325,14 @@ msgstr "Odgovori na" #: code:addons/mail/wizard/invite.py:37 #, python-format msgid "
You have been invited to follow %s.
" -msgstr "" +msgstr "
Pozvani ste da pratite %s.
" #. module: mail #: help:mail.group,message_unread:0 #: help:mail.thread,message_unread:0 #: help:res.partner,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Ako je odabrano, nove poruke zahtijevaju Vašu pažnju." #. module: mail #: field:mail.group,image_medium:0 @@ -349,24 +365,24 @@ msgstr "Ne slijedi više" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" -msgstr "" +msgstr "prikaži još jednu poruku" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Neispravna akcija!" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:25 #, python-format msgid "User img" -msgstr "" +msgstr "Slika korisnika" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_mail @@ -379,7 +395,7 @@ msgstr "E-pošta" #. module: mail #: field:mail.followers,partner_id:0 msgid "Related Partner" -msgstr "" +msgstr "Povezani partner" #. module: mail #: help:mail.group,message_summary:0 @@ -389,6 +405,8 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Sadrži sažetak konverzacije (broj poruka..). Ovaj sažetak je u html formatu " +"da bi mogao biti ubačen u kanban pogled." #. module: mail #: help:mail.alias,alias_model_id:0 @@ -397,28 +415,30 @@ msgid "" "incoming email that does not reply to an existing record will cause the " "creation of a new record of this model (e.g. a Project Task)" msgstr "" +"Model (OpenERP vrsta dokumenta) na koje ovaj alias odgovara. Svaki dolazni e-" +"mail koji ne odgovara na postojeći zapis uzrokovati će stvaranje novog " +"zapisa ovog modela (npr. projektni zadatak)" #. module: mail #: field:mail.message.subtype,relation_field:0 msgid "Relation field" -msgstr "" +msgstr "Relacijsko polje" #. module: mail #: selection:mail.compose.message,type:0 #: selection:mail.message,type:0 msgid "System notification" -msgstr "" +msgstr "Sistemska obavijest" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partner" #. module: mail #: model:ir.ui.menu,name:mail.mail_my_stuff msgid "Organizer" -msgstr "" +msgstr "Organizator" #. module: mail #: field:mail.compose.message,subject:0 @@ -464,10 +484,10 @@ msgstr "Pošalji" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" -msgstr "" +msgstr "Nema sljedbenika" #. module: mail #: view:mail.mail:0 @@ -495,8 +515,8 @@ msgstr "Arhive" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Obriši privitak" @@ -507,11 +527,11 @@ msgstr "Obriši privitak" #: view:mail.mail:0 #, python-format msgid "Reply" -msgstr "Odgovor" +msgstr "Odgovori" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Jedan pratitelj" @@ -542,13 +562,13 @@ msgstr "Komentari i mailovi" #. module: mail #: field:mail.alias,alias_defaults:0 msgid "Default Values" -msgstr "" +msgstr "Zadane vrijednosti" #. module: mail #: code:addons/mail/res_users.py:89 #, python-format msgid "%s has joined the %s network." -msgstr "" +msgstr "%s se priključio %s mreži." #. module: mail #: help:mail.group,image_small:0 @@ -557,6 +577,8 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Slika grupe malog formata. Automatski će se promijeniti veličina na 64x64, s " +"očuvanim omjerom. Koristite ovo polje gdje je potrebna mala slika." #. module: mail #: view:mail.compose.message:0 @@ -566,10 +588,10 @@ msgstr "Primatelji" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" -msgstr "" +msgstr "<<<" #. module: mail #. openerp-web @@ -581,29 +603,29 @@ msgstr "" #. module: mail #: field:mail.group,group_public_id:0 msgid "Authorized Group" -msgstr "" +msgstr "Ovlaštena grupa" #. module: mail #: view:mail.group:0 msgid "Join Group" -msgstr "" +msgstr "Priključi se grupi" #. module: mail #: help:mail.mail,email_from:0 msgid "Message sender, taken from user preferences." -msgstr "" +msgstr "Pošiljatelj poruke, preuzet iz postavki korisnika" #. module: mail #: code:addons/mail/wizard/invite.py:40 #, python-format msgid "
You have been invited to follow a new document.
" -msgstr "" +msgstr "
Pozvani ste da pratite novi dokument.
" #. module: mail #: field:mail.compose.message,parent_id:0 #: field:mail.message,parent_id:0 msgid "Parent Message" -msgstr "" +msgstr "Nadređena poruka" #. module: mail #: field:mail.compose.message,res_id:0 @@ -627,7 +649,7 @@ msgstr "" #. module: mail #: model:mail.group,name:mail.group_rd msgid "R&D" -msgstr "" +msgstr "Istraživanje i razvoj" #. module: mail #. openerp-web @@ -651,10 +673,10 @@ msgstr "Napredno" #: code:addons/mail/static/src/xml/mail.xml:244 #, python-format msgid "Move to Inbox" -msgstr "" +msgstr "Premjesti u ulaznu poštu" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -663,7 +685,7 @@ msgstr "Re:" #: field:mail.compose.message,to_read:0 #: field:mail.message,to_read:0 msgid "To read" -msgstr "" +msgstr "Za čitanje" #. module: mail #: code:addons/mail/res_users.py:69 @@ -672,16 +694,18 @@ msgid "" "You may not create a user. To create new users, you should use the " "\"Settings > Users\" menu." msgstr "" +"Ne možete izraditi korisnika. Za stvaranje novih korisnika, trebali biste " +"koristiti \"Postavke> Korisnici\" izbornika." #. module: mail #: help:mail.followers,res_model:0 #: help:mail.wizard.invite,res_model:0 msgid "Model of the followed resource" -msgstr "" +msgstr "Model pratećeg resursa" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -690,19 +714,19 @@ msgstr "" #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 msgid "Cancel" -msgstr "" +msgstr "Poništi" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:47 #, python-format msgid "Share with my followers..." -msgstr "" +msgstr "Podijeli sa mojim sljedbenicima..." #. module: mail #: field:mail.notification,partner_id:0 msgid "Contact" -msgstr "" +msgstr "Kontakt" #. module: mail #: view:mail.group:0 @@ -710,6 +734,8 @@ msgid "" "Only the invited followers can read the\n" " discussions on this group." msgstr "" +"Samo pozvani sljedbenici mogu čitati \n" +" raspravu na ovoj grupi." #. module: mail #: model:ir.model,name:mail.model_ir_ui_menu @@ -719,20 +745,22 @@ msgstr "" #. module: mail #: view:mail.message:0 msgid "Has attachments" -msgstr "" +msgstr "Ima prilog" #. module: mail #: view:mail.mail:0 msgid "on" -msgstr "" +msgstr "na" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " "address linked :" msgstr "" +"Sljedeći partneri odabrani kao primatelji e-maila nemaju povezanu e-mail " +"adresu:" #. module: mail #: help:mail.alias,alias_defaults:0 @@ -740,11 +768,13 @@ msgid "" "A Python dictionary that will be evaluated to provide default values when " "creating new records for this alias." msgstr "" +"Python rječnik koji će se provjeravati za zadane postave kada se kreira novi " +"zapis za ovaj alias." #. module: mail #: model:ir.model,name:mail.model_mail_message_subtype msgid "Message subtypes" -msgstr "" +msgstr "Podtipovi poruka" #. module: mail #: help:mail.compose.message,notified_partner_ids:0 @@ -758,7 +788,7 @@ msgstr "" #: view:mail.mail:0 #: selection:mail.message,type:0 msgid "Comment" -msgstr "" +msgstr "Komentar" #. module: mail #: model:ir.actions.client,help:mail.action_mail_inbox_feeds @@ -778,14 +808,14 @@ msgstr "" #. module: mail #: field:mail.mail,notification:0 msgid "Is Notification" -msgstr "" +msgstr "Je obavijest" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:188 #, python-format msgid "Compose a new message" -msgstr "" +msgstr "Sastavi novu poruku" #. module: mail #: view:mail.mail:0 @@ -793,11 +823,13 @@ msgid "Send Now" msgstr "Pošalji odmah" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." msgstr "" +"Nije moguće postali e-mail, molimo podesite pošiljateljevu e-mail adresu ili " +"alias." #. module: mail #: help:res.users,alias_id:0 @@ -805,27 +837,29 @@ msgid "" "Email address internally associated with this user. Incoming emails will " "appear in the user's notifications." msgstr "" +"E-mail adresa interno povezana s ovim korisnikom. Dolazni e-mail će se " +"pojaviti u korisnikovim obavijestima." #. module: mail #: field:mail.group,image:0 msgid "Photo" -msgstr "" +msgstr "Fotografija" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 #, python-format msgid "or" -msgstr "" +msgstr "ili" #. module: mail #: help:mail.compose.message,vote_user_ids:0 #: help:mail.message,vote_user_ids:0 msgid "Users that voted for this message" -msgstr "" +msgstr "Korisnici koji su glasali za ovu poruku" #. module: mail #: help:mail.group,alias_id:0 @@ -833,6 +867,8 @@ msgid "" "The email address associated with this group. New emails received will " "automatically create new topics." msgstr "" +"Adresa e-pošte povezana s ovom skupinom. Novoprimljene poruke automatski će " +"stvoriti nove teme." #. module: mail #: view:mail.mail:0 @@ -848,17 +884,17 @@ msgstr "Pretraga e-pošte" #: field:mail.compose.message,child_ids:0 #: field:mail.message,child_ids:0 msgid "Child Messages" -msgstr "" +msgstr "Podređene poruke" #. module: mail #: field:mail.alias,alias_user_id:0 msgid "Owner" -msgstr "" +msgstr "Vlasnik" #. module: mail #: model:ir.model,name:mail.model_res_users msgid "Users" -msgstr "" +msgstr "Korisnici" #. module: mail #: model:ir.model,name:mail.model_mail_message @@ -867,25 +903,25 @@ msgstr "" #: field:mail.notification,message_id:0 #: field:mail.wizard.invite,message:0 msgid "Message" -msgstr "" +msgstr "Poruka" #. module: mail #: help:mail.followers,res_id:0 #: help:mail.wizard.invite,res_id:0 msgid "Id of the followed resource" -msgstr "" +msgstr "Id resursa koji se prati" #. module: mail #: field:mail.compose.message,body:0 #: field:mail.message,body:0 msgid "Contents" -msgstr "" +msgstr "Sadržaj" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_alias #: model:ir.ui.menu,name:mail.mail_alias_menu msgid "Aliases" -msgstr "" +msgstr "Aliasi" #. module: mail #: help:mail.message.subtype,description:0 @@ -893,60 +929,62 @@ msgid "" "Description that will be added in the message posted for this subtype. If " "void, the name will be added instead." msgstr "" +"Opis koji će biti dodan u objavljenoj poruci za ovaj podtip. Ako nedostaje, " +"biti će dodan naziv." #. module: mail #: field:mail.compose.message,vote_user_ids:0 #: field:mail.message,vote_user_ids:0 msgid "Votes" -msgstr "" +msgstr "Glasovi" #. module: mail #: view:mail.group:0 msgid "Group" -msgstr "" +msgstr "Grupa" #. module: mail #: help:mail.compose.message,starred:0 #: help:mail.message,starred:0 msgid "Current user has a starred notification linked to this message" -msgstr "" +msgstr "Trenutni korisnik ima označenu obavijest povezanu sa ovom porukom." #. module: mail #: field:mail.group,public:0 msgid "Privacy" -msgstr "" +msgstr "Privatnost" #. module: mail #: view:mail.mail:0 msgid "Notification" -msgstr "" +msgstr "Obavijest" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" -msgstr "" +msgstr "Molimo popunite informacije o partneru" #. module: mail #: view:mail.wizard.invite:0 msgid "Add Followers" -msgstr "" +msgstr "Dodaj sljedbenike" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "" +msgstr "Sljedbenici odabranih predmeta i" #. module: mail #: field:mail.alias,alias_force_thread_id:0 msgid "Record Thread ID" -msgstr "" +msgstr "ID niti zapisa" #. module: mail #: model:ir.ui.menu,name:mail.mail_group_root msgid "My Groups" -msgstr "" +msgstr "Moje grupe" #. module: mail #: model:ir.actions.client,help:mail.action_mail_archives_feeds @@ -965,7 +1003,7 @@ msgstr "" #: view:mail.mail:0 #: field:mail.mail,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: mail #: view:mail.mail:0 @@ -982,7 +1020,7 @@ msgstr "" #: help:mail.compose.message,record_name:0 #: help:mail.message,record_name:0 msgid "Name get of the related document." -msgstr "" +msgstr "Ime prezueto iz povezanog dokumenta" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_notifications @@ -993,12 +1031,12 @@ msgstr "" #: field:mail.message,notification_ids:0 #: view:mail.notification:0 msgid "Notifications" -msgstr "" +msgstr "Obavijesti" #. module: mail #: view:mail.alias:0 msgid "Search Alias" -msgstr "" +msgstr "Traži alias" #. module: mail #: help:mail.alias,alias_force_thread_id:0 @@ -1007,6 +1045,9 @@ msgid "" "attached, even if they did not reply to it. If set, this will disable the " "creation of new records completely." msgstr "" +"Opcionalni ID zapisa na kojeg će biti povezane sve dolazne poruke, čak i ako " +"oni nisu odgovorili na njega. Ako je postavljeno, to će onemogućiti " +"stvaranje novih zapisa u potpunosti." #. module: mail #: help:mail.message.subtype,name:0 @@ -1017,28 +1058,32 @@ msgid "" "subtypes allow to precisely tune the notifications the user want to receive " "on its wall." msgstr "" +"Podvrste poruka preciznije definiraju poruku, posebno za sistemske " +"obavijesti. Na primjer, to može biti obavijesti vezane uz novi zapis (nova), " +"ili na promjene faze u procesu (promjena faze). Podvrste poruka omogućuju " +"precizno podešavanje obavijesti koje korisnici žele primati na svoj zid." #. module: mail #: view:mail.mail:0 msgid "by" -msgstr "" +msgstr "od" #. module: mail #: model:mail.group,name:mail.group_best_sales_practices msgid "Best Sales Practices" -msgstr "" +msgstr "Najbolja praksa u prodaji" #. module: mail #: selection:mail.group,public:0 msgid "Selected Group Only" -msgstr "" +msgstr "Samo odabrane grupe" #. module: mail #: field:mail.group,message_is_follower:0 #: field:mail.thread,message_is_follower:0 #: field:res.partner,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Je sljedbenik" #. module: mail #: view:mail.alias:0 @@ -1049,12 +1094,12 @@ msgstr "Korisnik" #. module: mail #: view:mail.group:0 msgid "Groups" -msgstr "" +msgstr "Grupe" #. module: mail #: view:mail.message:0 msgid "Messages Search" -msgstr "" +msgstr "Pretraga poruka" #. module: mail #: field:mail.compose.message,date:0 @@ -1076,64 +1121,66 @@ msgstr "Prošireni filteri..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" -msgstr "" +msgstr "Za:" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:193 #, python-format msgid "Write to my followers" -msgstr "" +msgstr "Piši mojim sljedbenicima" #. module: mail #: model:ir.model,name:mail.model_res_groups msgid "Access Groups" -msgstr "" +msgstr "Pristupne grupe" #. module: mail #: field:mail.message.subtype,default:0 msgid "Default" -msgstr "" +msgstr "Zadano" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" -msgstr "" +msgstr "pokaži još poruka" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:246 #, python-format msgid "Mark as Todo" -msgstr "" +msgstr "Označi sa 'Za obaviti'" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "" +msgstr "Nadređeni podtip, koristi se za automatsku pretplatu." #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite msgid "Invite wizard" -msgstr "" +msgstr "Čarobnjak za pozivanje" #. module: mail #: field:mail.group,message_summary:0 #: field:mail.thread,message_summary:0 #: field:res.partner,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Sažetak" #. module: mail #: help:mail.message.subtype,res_model:0 msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" +"Model na koji se podtip odnosi. Ako nema, ovaj podtip odnosi se na sve " +"modele." #. module: mail #: field:mail.compose.message,subtype_id:0 @@ -1141,45 +1188,46 @@ msgstr "" #: field:mail.message,subtype_id:0 #: view:mail.message.subtype:0 msgid "Subtype" -msgstr "" +msgstr "Podvrsta" #. module: mail #: view:mail.group:0 msgid "Group Form" -msgstr "" +msgstr "Grupni obrazac" #. module: mail #: field:mail.compose.message,starred:0 #: field:mail.message,starred:0 #: field:mail.notification,starred:0 msgid "Starred" -msgstr "" +msgstr "Sa zvjezdicom" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" -msgstr "" +msgstr "više poruka" #. module: mail #: code:addons/mail/update.py:93 #, python-format msgid "Error" -msgstr "" +msgstr "Greška" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:13 #, python-format msgid "Following" -msgstr "" +msgstr "Slijedi" #. module: mail #: sql_constraint:mail.alias:0 msgid "" "Unfortunately this email alias is already used, please choose a unique one" msgstr "" +"Nažalost ovaj e-mail alias se već koristi, molimo odaberite jedinstveni" #. module: mail #: help:mail.alias,alias_user_id:0 @@ -1189,19 +1237,23 @@ msgid "" "the sender (From) address, or will use the Administrator account if no " "system user is found for that address." msgstr "" +"Vlasnik zapisa kreiranih nakon primitka e-mailova na taj alias. Ako ovo " +"polje nije postavljeno sustav će pokušati pronaći pravog vlasnika na temelju " +"adrese pošiljatelja (od), ili će koristiti administratorski račun ako ne " +"pronađe sistemskog korisnika za tu adresu." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "And" -msgstr "" +msgstr "i" #. module: mail #: field:mail.compose.message,message_id:0 #: field:mail.message,message_id:0 msgid "Message-Id" -msgstr "" +msgstr "Id-poruke" #. module: mail #: help:mail.group,image:0 @@ -1209,6 +1261,7 @@ msgid "" "This field holds the image used as photo for the group, limited to " "1024x1024px." msgstr "" +"Ovo polje sadrži sliku koja se koristi za grupu, ograničeno na 1014x1024 px." #. module: mail #: field:mail.compose.message,attachment_ids:0 @@ -1221,78 +1274,78 @@ msgstr "Privici" #: field:mail.compose.message,record_name:0 #: field:mail.message,record_name:0 msgid "Message Record Name" -msgstr "" +msgstr "Naziv zapisa poruke" #. module: mail #: field:mail.mail,email_cc:0 msgid "Cc" -msgstr "Cc" +msgstr "Cc (kopija)" #. module: mail #: help:mail.notification,starred:0 msgid "Starred message that goes into the todo mailbox" -msgstr "" +msgstr "Označena poruka koja ide u 'Za obaviti' sandučić" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" -msgstr "" +msgstr "Sljedbenici od" #. module: mail #: help:mail.mail,auto_delete:0 msgid "Permanently delete this email after sending it, to save space" -msgstr "" +msgstr "Trajno obriši ovaj e-mail nakon slanja, radi uštede prostora" #. module: mail #: model:ir.actions.client,name:mail.action_mail_group_feeds msgid "Discussion Group" -msgstr "" +msgstr "Grupa za raspravu" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:242 #, python-format msgid "Done" -msgstr "" +msgstr "Obavljeno" #. module: mail #: model:mail.message.subtype,name:mail.mt_comment msgid "Discussions" -msgstr "" +msgstr "Rasprave" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:11 #, python-format msgid "Follow" -msgstr "" +msgstr "Slijedi" #. module: mail #: field:mail.group,name:0 msgid "Name" -msgstr "" +msgstr "Naziv" #. module: mail #: model:mail.group,name:mail.group_all_employees msgid "Whole Company" -msgstr "" +msgstr "Cijela tvrtka" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" -msgstr "" +msgstr "i" #. module: mail #: help:mail.mail,body_html:0 msgid "Rich-text/HTML message" -msgstr "" +msgstr "RT/HTML poruka" #. module: mail #: view:mail.mail:0 @@ -1301,20 +1354,20 @@ msgstr "Mjesec kreiranja" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" -msgstr "" +msgstr "Sastavi novu poruku" #. module: mail #: field:mail.group,menu_id:0 msgid "Related Menu" -msgstr "" +msgstr "Vezani izbornik" #. module: mail #: view:mail.message:0 msgid "Content" -msgstr "" +msgstr "Sadržaj" #. module: mail #: field:mail.mail,email_to:0 @@ -1325,7 +1378,7 @@ msgstr "Za" #: field:mail.compose.message,notified_partner_ids:0 #: field:mail.message,notified_partner_ids:0 msgid "Notified partners" -msgstr "" +msgstr "Obaviješteni partneri" #. module: mail #: help:mail.group,public:0 @@ -1333,11 +1386,13 @@ msgid "" "This group is visible by non members. Invisible groups can add " "members through the invite button." msgstr "" +"Ova grupa je vidljiva svima. Za nevidljive grupe članovi se dodaju kroz gumb " +"pozivanja." #. module: mail #: model:mail.group,name:mail.group_board msgid "Board meetings" -msgstr "" +msgstr "Sastanci članova uprave" #. module: mail #: constraint:mail.alias:0 @@ -1345,40 +1400,42 @@ msgid "" "Invalid expression, it must be a literal python dictionary definition e.g. " "\"{'field': 'value'}\"" msgstr "" +"Nevažeći izraz, to mora biti doslovna python definicija npr. \"{'field': " +"'Vrijednost'}\"" #. module: mail #: field:mail.alias,alias_model_id:0 msgid "Aliased Model" -msgstr "" +msgstr "Zamjenski model" #. module: mail #: help:mail.compose.message,message_id:0 #: help:mail.message,message_id:0 msgid "Message unique identifier" -msgstr "Jedinstveni identifikator poruke" +msgstr "Jedinstveni indentifikator poruke" #. module: mail #: field:mail.group,description:0 #: field:mail.message.subtype,description:0 msgid "Description" -msgstr "" +msgstr "Opis" #. module: mail #: model:ir.model,name:mail.model_mail_followers msgid "Document Followers" -msgstr "" +msgstr "Sljedbenici dokumenta" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "" +msgstr "Ukloni sljedbenika" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Never" -msgstr "" +msgstr "Nikad" #. module: mail #: field:mail.mail,mail_server_id:0 @@ -1386,10 +1443,10 @@ msgid "Outgoing mail server" msgstr "Izlazni poslužitelj e-pošte" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" -msgstr "" +msgstr "Pertnerove e-mail adrese nisu pronađene" #. module: mail #: view:mail.mail:0 @@ -1407,6 +1464,7 @@ msgstr "Formatirani tekst" #: help:mail.message,to_read:0 msgid "Current user has an unread notification linked to this message" msgstr "" +"Trenutni korisnik nema nepročitane obavijesti povezano s ovom porukom" #. module: mail #: help:res.partner,notification_email_send:0 @@ -1418,7 +1476,7 @@ msgstr "" #: model:ir.actions.act_window,name:mail.action_view_groups #: model:ir.ui.menu,name:mail.mail_allgroups msgid "Join a group" -msgstr "" +msgstr "Priključi se grupi" #. module: mail #: model:ir.actions.client,help:mail.action_mail_group_feeds @@ -1434,7 +1492,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:213 #, python-format msgid "Please, wait while the file is uploading." -msgstr "" +msgstr "Molimo, pričekajte dok se datoteka ne učita" #. module: mail #: view:mail.group:0 @@ -1450,14 +1508,14 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:243 #, python-format msgid "Set back to Todo" -msgstr "" +msgstr "Vrati natrag na 'Za obaviti'" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" -msgstr "" +msgstr "ovaj dokument" #. module: mail #: field:mail.compose.message,filter_id:0 @@ -1488,16 +1546,16 @@ msgstr "Poruke" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." -msgstr "" +msgstr "ostali..." #. module: mail #: model:ir.actions.client,name:mail.action_mail_star_feeds #: model:ir.ui.menu,name:mail.mail_starfeeds msgid "To-do" -msgstr "" +msgstr "Za učiniti" #. module: mail #: view:mail.alias:0 @@ -1505,12 +1563,12 @@ msgstr "" #: field:mail.group,alias_id:0 #: field:res.users,alias_id:0 msgid "Alias" -msgstr "" +msgstr "Alias" #. module: mail #: model:ir.model,name:mail.model_mail_mail msgid "Outgoing Mails" -msgstr "" +msgstr "Odlazna e-pošta" #. module: mail #: help:mail.compose.message,notification_ids:0 @@ -1519,18 +1577,20 @@ msgid "" "Technical field holding the message notifications. Use notified_partner_ids " "to access notified partners." msgstr "" +"Tehničko polje koje sadrži obavijesti poruke. Koristite notified_partner_ids " +"za pristupanje obaviještenim partnerima." #. module: mail #: model:ir.ui.menu,name:mail.mail_feeds #: model:ir.ui.menu,name:mail.mail_feeds_main msgid "Messaging" -msgstr "" +msgstr "Slanje poruka" #. module: mail #: view:mail.alias:0 #: field:mail.message.subtype,res_model:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: mail #: view:mail.message:0 @@ -1543,13 +1603,15 @@ msgid "" "Message subtypes followed, meaning subtypes that will be pushed onto the " "user's Wall." msgstr "" +"Podtipovi poduka koji se prate, znači podtipovi koji će biti objavljeni na " +"zidu korisnika." #. module: mail #: help:mail.group,message_ids:0 #: help:mail.thread,message_ids:0 #: help:res.partner,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Poruke i povijest komunikacije" #. module: mail #: help:mail.mail,references:0 @@ -1559,7 +1621,7 @@ msgstr "Reference poruke, poput identifikatora prethodnih poruka" #. module: mail #: field:mail.compose.message,composition_mode:0 msgid "Composition mode" -msgstr "" +msgstr "Mod sastavljanja" #. module: mail #: field:mail.compose.message,model:0 @@ -1571,10 +1633,10 @@ msgstr "Povezani model dokumenta" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" -msgstr "" +msgstr "suprotno" #. module: mail #: help:mail.compose.message,author_id:0 @@ -1583,6 +1645,8 @@ msgid "" "Author of the message. If not set, email_from may hold an email address that " "did not match any partner." msgstr "" +"Autor poruke. Ako nije postavljen, email_from može sadržavati adresu e-pošte " +"koja nije odgovarala niti jednom partneru." #. module: mail #: help:mail.mail,email_cc:0 @@ -1592,18 +1656,18 @@ msgstr "Primatelji skrivene kopije" #. module: mail #: field:mail.alias,alias_domain:0 msgid "Alias domain" -msgstr "" +msgstr "Alias domena" #. module: mail #: code:addons/mail/update.py:93 #, python-format msgid "Error during communication with the publisher warranty server." -msgstr "" +msgstr "Greška tijekom komunikacije sa serverom nositelja održavanja." #. module: mail #: selection:mail.group,public:0 msgid "Private" -msgstr "" +msgstr "Privatno" #. module: mail #: model:ir.actions.client,help:mail.action_mail_star_feeds @@ -1627,18 +1691,18 @@ msgstr "Isporuka nije uspjela" #. module: mail #: field:mail.compose.message,partner_ids:0 msgid "Additional contacts" -msgstr "" +msgstr "Dodatni kontakti" #. module: mail #: help:mail.compose.message,parent_id:0 #: help:mail.message,parent_id:0 msgid "Initial thread message." -msgstr "" +msgstr "Inicijalna nit poruke" #. module: mail #: model:mail.group,name:mail.group_hr_policies msgid "HR Policies" -msgstr "" +msgstr "Politike ljudskih resursa" #. module: mail #: selection:res.partner,notification_email_send:0 @@ -1649,7 +1713,7 @@ msgstr "" #: model:ir.actions.client,name:mail.action_mail_inbox_feeds #: model:ir.ui.menu,name:mail.mail_inboxfeeds msgid "Inbox" -msgstr "" +msgstr "Moj pretinac" #. module: mail #. openerp-web @@ -1663,23 +1727,23 @@ msgstr "" #: code:addons/mail/static/src/js/many2many_tags_email.js:63 #, python-format msgid "Please complete partner's informations and Email" -msgstr "" +msgstr "Molimo završite unos informacija o partnerima i e-mail" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_message_subtype #: model:ir.ui.menu,name:mail.menu_message_subtype msgid "Subtypes" -msgstr "" +msgstr "Podtipovi" #. module: mail #: model:ir.model,name:mail.model_mail_alias msgid "Email Aliases" -msgstr "" +msgstr "Alias e-maila" #. module: mail #: field:mail.group,image_small:0 msgid "Small-sized photo" -msgstr "" +msgstr "Fotografija malog formata" #. module: mail #: help:mail.mail,reply_to:0 diff --git a/addons/mail/i18n/hu.po b/addons/mail/i18n/hu.po index 645803483bc..b03ef6d9b0d 100644 --- a/addons/mail/i18n/hu.po +++ b/addons/mail/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -28,6 +28,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Szerző" @@ -142,7 +143,7 @@ msgstr "Olvasatlan üzenetek" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "mutat" @@ -159,7 +160,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Valóban törölni kívánja ezt az üzenetet?" @@ -177,13 +178,13 @@ msgstr "Csoportok keresése" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "követők" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Hozzáférés megtagadva" @@ -212,7 +213,7 @@ msgid "Support" msgstr "Támogatás" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -279,8 +280,8 @@ msgstr "Tárgyalási csoport" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "feltöltés" @@ -366,13 +367,13 @@ msgstr "Követés leállítása" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "mutass még egy üzenetet" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -433,7 +434,6 @@ msgstr "Rendszerüzenet" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partner" @@ -486,7 +486,7 @@ msgstr "Küldés" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Nincs követő" @@ -517,8 +517,8 @@ msgstr "Archívum" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Törli ezt a mellékletet" @@ -533,7 +533,7 @@ msgstr "Válasz" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Egy követő" @@ -591,7 +591,7 @@ msgstr "Címzettek" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -685,7 +685,7 @@ msgid "Move to Inbox" msgstr "Bejövő üzenetekbe mozgatás" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Vissza:" @@ -714,7 +714,7 @@ msgstr "A követett forrás modellje" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "tetszik" @@ -762,7 +762,7 @@ msgid "on" msgstr "ezen:" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -844,7 +844,7 @@ msgid "Send Now" msgstr "Küldés most" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -867,7 +867,7 @@ msgstr "Fénykép" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -983,7 +983,7 @@ msgstr "Értesítés" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Kérem egészítse ki a partner információkat" @@ -1153,7 +1153,7 @@ msgstr "Kiterjesztett szűrők…" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Címzett:" @@ -1177,7 +1177,7 @@ msgstr "Alapértelmezett" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "mutassa a többi üzenetet" @@ -1236,7 +1236,7 @@ msgstr "Kedvenc" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "több üzenet" @@ -1321,7 +1321,7 @@ msgstr "Csillagos üzenet amely a teendők levélládába megy" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1369,8 +1369,8 @@ msgstr "Teljes vállalat" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1388,7 +1388,7 @@ msgstr "Létrehozás hónapja" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Új üzenet létrehozása" @@ -1477,7 +1477,7 @@ msgid "Outgoing mail server" msgstr "Kimenő levelező szerver" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "A partnerek e-mail címei nem találhatóak" @@ -1554,7 +1554,7 @@ msgstr "Visszahelyezés a feladatokhoz" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "ez a dokumentum" @@ -1590,7 +1590,7 @@ msgstr "Üzenetek" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "mások..." @@ -1677,7 +1677,7 @@ msgstr "Ide vonatkozó dokumentum modell" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "nem tetszik" diff --git a/addons/mail/i18n/it.po b/addons/mail/i18n/it.po index d8b563e4e47..d742589ac41 100644 --- a/addons/mail/i18n/it.po +++ b/addons/mail/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-15 13:57+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autore" @@ -143,7 +144,7 @@ msgstr "Messaggi Non Letti" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "mostra" @@ -160,7 +161,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Vuoi veramente cancellare questi messaggi?" @@ -178,13 +179,13 @@ msgstr "Cerca Gruppi" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "followers" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Accesso Negato" @@ -212,7 +213,7 @@ msgid "Support" msgstr "Supporto" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -279,8 +280,8 @@ msgstr "Gruppo discussioni" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "Caricamento" @@ -367,13 +368,13 @@ msgstr "Non seguire più" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "Mostra un nuovo messaggio" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -435,7 +436,6 @@ msgstr "Notifica di sistema" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partner" @@ -488,7 +488,7 @@ msgstr "Invia" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Nessun follower" @@ -519,8 +519,8 @@ msgstr "Archivi" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Elimina questo allegato" @@ -535,7 +535,7 @@ msgstr "Rispondi" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Un follower" @@ -593,7 +593,7 @@ msgstr "Destinatari" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -687,7 +687,7 @@ msgid "Move to Inbox" msgstr "Sposta nella Posta in Arrivo" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -716,7 +716,7 @@ msgstr "Model della risorsa seguita" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "like" @@ -763,7 +763,7 @@ msgid "on" msgstr "in data" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -844,7 +844,7 @@ msgid "Send Now" msgstr "Invia Adesso" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -868,7 +868,7 @@ msgstr "Foto" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -950,6 +950,8 @@ msgid "" "Description that will be added in the message posted for this subtype. If " "void, the name will be added instead." msgstr "" +"Descrizione che verrà aggiunta al messaggio inviato per questo sottotipo. Se " +"è vuota, sarà aggiunto il nome." #. module: mail #: field:mail.compose.message,vote_user_ids:0 @@ -980,7 +982,7 @@ msgstr "Notifica" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Prego completare le informazioni sul Patner" @@ -993,7 +995,7 @@ msgstr "Aggiungi Followers" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "" +msgstr "Followers degli element selezionati e" #. module: mail #: field:mail.alias,alias_force_thread_id:0 @@ -1151,7 +1153,7 @@ msgstr "Filtri Estesi..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "A:" @@ -1175,7 +1177,7 @@ msgstr "Predefinito" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "Mostra ulteriori messaggi" @@ -1190,7 +1192,7 @@ msgstr "Segna da fare" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "" +msgstr "Sottotipo principale, usato per iscrizioni automatiche" #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite @@ -1209,6 +1211,8 @@ msgstr "Riepilogo" msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" +"Modello a cui applicare il sottotipo. Se False, questo sottotipo è applicato " +"a tutti i modelli." #. module: mail #: field:mail.compose.message,subtype_id:0 @@ -1228,11 +1232,11 @@ msgstr "Form Gruppo" #: field:mail.message,starred:0 #: field:mail.notification,starred:0 msgid "Starred" -msgstr "" +msgstr "Votato" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "altri messaggi" @@ -1276,7 +1280,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "And" -msgstr "" +msgstr "E" #. module: mail #: field:mail.compose.message,message_id:0 @@ -1318,7 +1322,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1358,7 +1362,7 @@ msgstr "Segui" #. module: mail #: field:mail.group,name:0 msgid "Name" -msgstr "" +msgstr "Nome" #. module: mail #: model:mail.group,name:mail.group_all_employees @@ -1367,8 +1371,8 @@ msgstr "Tutta l'azienda" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1386,7 +1390,7 @@ msgstr "Mese di Creazione" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Componi nuovo Messaggio" @@ -1467,7 +1471,7 @@ msgstr "Rimuovi questo follower" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Never" -msgstr "Più recente" +msgstr "Mai" #. module: mail #: field:mail.mail,mail_server_id:0 @@ -1475,7 +1479,7 @@ msgid "Outgoing mail server" msgstr "Mail server in Uscita" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Indirizzi email Partner non trovati" @@ -1552,7 +1556,7 @@ msgstr "Ripristina a Da Fare" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "questo documento" @@ -1588,7 +1592,7 @@ msgstr "Messaggi" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "altri..." @@ -1675,7 +1679,7 @@ msgstr "Model documento relativo" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "unlike" diff --git a/addons/mail/i18n/ja.po b/addons/mail/i18n/ja.po index d135c31a420..9dde3980a0c 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -327,7 +328,7 @@ msgstr "" #: model:ir.actions.client,name:mail.action_mail_to_me_feeds #: model:ir.ui.menu,name:mail.mail_tomefeeds msgid "To: me" -msgstr "" +msgstr "自分宛" #. module: mail #: field:mail.message.subtype,name:0 @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "パートナ" @@ -464,7 +464,7 @@ msgstr "送信" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -491,12 +491,12 @@ msgstr "" #: model:ir.actions.client,name:mail.action_mail_archives_feeds #: model:ir.ui.menu,name:mail.mail_archivesfeeds msgid "Archives" -msgstr "" +msgstr "アーカイブ" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "返信" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "宛先" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "今すぐ送信" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: mail #: model:ir.ui.menu,name:mail.mail_group_root msgid "My Groups" -msgstr "" +msgstr "マイグループ" #. module: mail #: model:ir.actions.client,help:mail.action_mail_archives_feeds @@ -1076,7 +1076,7 @@ msgstr "拡張フィルタ…" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1278,12 +1278,12 @@ msgstr "" #. module: mail #: model:mail.group,name:mail.group_all_employees msgid "Whole Company" -msgstr "" +msgstr "全社" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "作成月" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "送信メールサーバ" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1418,7 +1418,7 @@ msgstr "" #: model:ir.actions.act_window,name:mail.action_view_groups #: model:ir.ui.menu,name:mail.mail_allgroups msgid "Join a group" -msgstr "" +msgstr "グループに参加" #. module: mail #: model:ir.actions.client,help:mail.action_mail_group_feeds @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "メッセージ" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "関連する文書モデル" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" @@ -1649,7 +1649,7 @@ msgstr "" #: model:ir.actions.client,name:mail.action_mail_inbox_feeds #: model:ir.ui.menu,name:mail.mail_inboxfeeds msgid "Inbox" -msgstr "" +msgstr "受信箱" #. module: mail #. openerp-web diff --git a/addons/mail/i18n/ko.po b/addons/mail/i18n/ko.po index 6315792f4fc..d6bed4d0d18 100644 --- a/addons/mail/i18n/ko.po +++ b/addons/mail/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: 2013-05-13 05:17+0000\n" -"X-Generator: Launchpad (build 16614)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "작성자" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/lt.po b/addons/mail/i18n/lt.po index e6607b28764..aa4aa948407 100644 --- a/addons/mail/i18n/lt.po +++ b/addons/mail/i18n/lt.po @@ -9,18 +9,18 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2011-01-16 11:31+0000\n" -"Last-Translator: Paulius Sladkevičius \n" +"Last-Translator: Paulius Sladkevičius @ hbee \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 msgid "Followers Form" -msgstr "" +msgstr "Sekėjų forma" #. module: mail #: model:ir.model,name:mail.model_publisher_warranty_contract @@ -29,9 +29,10 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" -msgstr "" +msgstr "Autorius" #. module: mail #: view:mail.mail:0 @@ -41,7 +42,7 @@ msgstr "Žinutės detalės" #. module: mail #: help:mail.mail,email_to:0 msgid "Message recipients" -msgstr "" +msgstr "Žinutės gavėjai" #. module: mail #: help:mail.message.subtype,default:0 @@ -51,7 +52,7 @@ msgstr "" #. module: mail #: view:mail.message:0 msgid "Comments" -msgstr "" +msgstr "Komentarai" #. module: mail #: view:mail.alias:0 @@ -63,7 +64,7 @@ msgstr "Grupuoti pagal..." #: help:mail.compose.message,body:0 #: help:mail.message,body:0 msgid "Automatically sanitized HTML contents" -msgstr "" +msgstr "Automatiškai apribojamas HTML turinys" #. module: mail #: help:mail.alias,alias_name:0 @@ -76,7 +77,7 @@ msgstr "" #: model:ir.actions.act_window,name:mail.action_email_compose_message_wizard #: view:mail.compose.message:0 msgid "Compose Email" -msgstr "" +msgstr "Rašyti el. laišką" #. module: mail #. openerp-web @@ -88,22 +89,22 @@ msgstr "" #. module: mail #: view:mail.group:0 msgid "Group Name" -msgstr "" +msgstr "Grupės pavadinimas" #. module: mail #: selection:mail.group,public:0 msgid "Public" -msgstr "" +msgstr "Viešas" #. module: mail #: view:mail.mail:0 msgid "Body" -msgstr "" +msgstr "Tekstas" #. module: mail #: view:mail.message:0 msgid "Show messages to read" -msgstr "" +msgstr "Žinučių rodymas" #. module: mail #: help:mail.compose.message,email_from:0 @@ -123,23 +124,23 @@ msgstr "" #: code:addons/mail/static/src/xml/mail_followers.xml:23 #, python-format msgid "Add others" -msgstr "" +msgstr "Pridėti kitus" #. module: mail #: field:mail.message.subtype,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Tėvinis" #. module: mail #: field:mail.group,message_unread:0 #: field:mail.thread,message_unread:0 #: field:res.partner,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Neperžiūrėtos žinutės" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -150,19 +151,21 @@ msgid "" "Members of those groups will automatically added as followers. Note that " "they will be able to manage their subscription manually if necessary." msgstr "" +"Šių grupių nariai automatiškai taps prenumeratoriais. Tačiau jie galės " +"valdyti savo prenumeratą savarankišai." #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" -msgstr "" +msgstr "Ar tikrai norite ištrinti šią žinutę?" #. module: mail #: view:mail.message:0 #: field:mail.notification,read:0 msgid "Read" -msgstr "" +msgstr "Skaityta" #. module: mail #: view:mail.group:0 @@ -171,13 +174,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" -msgstr "" +msgstr "prenumeratoriai" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -189,6 +192,9 @@ msgid "" "image, with aspect ratio preserved. Use this field in form views or some " "kanban views." msgstr "" +"Vidutinio dydžio grupės nuotrauka. Nuotraukos dydis automatiškai " +"sumažinamas, išlaikant kraštinių santykį, į 128x128px, kai nuotrauka viršija " +"minėtą dydį. Naudokite šį lauką paprastose arba Kanban formose." #. module: mail #. openerp-web @@ -203,7 +209,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -216,7 +222,7 @@ msgstr "" #: view:mail.mail:0 #: selection:mail.mail,state:0 msgid "Received" -msgstr "" +msgstr "Gauta" #. module: mail #: view:mail.mail:0 @@ -228,7 +234,7 @@ msgstr "Gija" #: code:addons/mail/static/src/xml/mail.xml:29 #, python-format msgid "Open the full mail composer" -msgstr "" +msgstr "Atverti žinučių redaktorių" #. module: mail #. openerp-web @@ -245,12 +251,12 @@ msgstr "" #. module: mail #: field:mail.group,group_ids:0 msgid "Auto Subscription" -msgstr "" +msgstr "Automatiškai užprenumeruoti" #. module: mail #: field:mail.mail,references:0 msgid "References" -msgstr "Nuorodos" +msgstr "Susiejimai" #. module: mail #. openerp-web @@ -262,12 +268,12 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_mail_group msgid "Discussion group" -msgstr "" +msgstr "Diskusijų grupė" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -298,36 +304,36 @@ msgstr "" #. module: mail #: selection:mail.mail,state:0 msgid "Cancelled" -msgstr "" +msgstr "Atšauktas" #. module: mail #: field:mail.mail,reply_to:0 msgid "Reply-To" -msgstr "" +msgstr "Atsakyti (kam)" #. module: mail #: code:addons/mail/wizard/invite.py:37 #, python-format msgid "
You have been invited to follow %s.
" -msgstr "" +msgstr "
Jūs buvote pakviesta užsiprenumeruoti %s.
" #. module: mail #: help:mail.group,message_unread:0 #: help:mail.thread,message_unread:0 #: help:res.partner,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jeigu pažymėta, naujos žinutės reikalaus jūsų dėmesio." #. module: mail #: field:mail.group,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "Vidutinio dydžio nuotrauka" #. module: mail #: model:ir.actions.client,name:mail.action_mail_to_me_feeds #: model:ir.ui.menu,name:mail.mail_tomefeeds msgid "To: me" -msgstr "" +msgstr "Skirti man" #. module: mail #: field:mail.message.subtype,name:0 @@ -345,21 +351,21 @@ msgstr "" #: view:mail.group:0 #, python-format msgid "Unfollow" -msgstr "" +msgstr "Atsisakyti" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Klaidingas veiksmas!" #. module: mail #. openerp-web @@ -389,6 +395,8 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Saugo pokalbių suvestinę (žinučių skaičius, ...). Ši apžvalga saugoma html " +"formatu, kad būtų galima įterpti į kanban rodinius." #. module: mail #: help:mail.alias,alias_model_id:0 @@ -411,14 +419,13 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partneris" #. module: mail #: model:ir.ui.menu,name:mail.mail_my_stuff msgid "Organizer" -msgstr "" +msgstr "Organizatorius" #. module: mail #: field:mail.compose.message,subject:0 @@ -429,12 +436,12 @@ msgstr "Tema" #. module: mail #: field:mail.wizard.invite,partner_ids:0 msgid "Partners" -msgstr "" +msgstr "Partneriai" #. module: mail #: view:mail.mail:0 msgid "Retry" -msgstr "" +msgstr "Kartoti" #. module: mail #: field:mail.compose.message,email_from:0 @@ -460,19 +467,19 @@ msgstr "" #: view:mail.compose.message:0 #, python-format msgid "Send" -msgstr "" +msgstr "Siųsti" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" -msgstr "" +msgstr "Nėra prenumeratorių" #. module: mail #: view:mail.mail:0 msgid "Failed" -msgstr "" +msgstr "Nepavyko" #. module: mail #. openerp-web @@ -485,21 +492,21 @@ msgstr "" #: field:res.partner,message_follower_ids:0 #, python-format msgid "Followers" -msgstr "" +msgstr "Prenumeratoriai" #. module: mail #: model:ir.actions.client,name:mail.action_mail_archives_feeds #: model:ir.ui.menu,name:mail.mail_archivesfeeds msgid "Archives" -msgstr "" +msgstr "Archyvas" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" -msgstr "" +msgstr "Pašalinti šį priedą" #. module: mail #. openerp-web @@ -507,27 +514,27 @@ msgstr "" #: view:mail.mail:0 #, python-format msgid "Reply" -msgstr "" +msgstr "Atsakyti" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" -msgstr "" +msgstr "Vienas prenumeratorius" #. module: mail #: field:mail.compose.message,type:0 #: field:mail.message,type:0 msgid "Type" -msgstr "" +msgstr "Tipas" #. module: mail #: selection:mail.compose.message,type:0 #: view:mail.mail:0 #: selection:mail.message,type:0 msgid "Email" -msgstr "" +msgstr "El. paštas" #. module: mail #: field:ir.ui.menu,mail_group_id:0 @@ -542,7 +549,7 @@ msgstr "" #. module: mail #: field:mail.alias,alias_defaults:0 msgid "Default Values" -msgstr "" +msgstr "Numatytosios reikšmės" #. module: mail #: code:addons/mail/res_users.py:89 @@ -562,11 +569,11 @@ msgstr "" #: view:mail.compose.message:0 #: field:mail.message,partner_ids:0 msgid "Recipients" -msgstr "" +msgstr "Gavėjai" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -581,12 +588,12 @@ msgstr "" #. module: mail #: field:mail.group,group_public_id:0 msgid "Authorized Group" -msgstr "" +msgstr "Leistina grupė" #. module: mail #: view:mail.group:0 msgid "Join Group" -msgstr "" +msgstr "Prenumeruoti" #. module: mail #: help:mail.mail,email_from:0 @@ -611,7 +618,7 @@ msgstr "" #: field:mail.message,res_id:0 #: field:mail.wizard.invite,res_id:0 msgid "Related Document ID" -msgstr "" +msgstr "Susijęs dokumento ID" #. module: mail #: model:ir.actions.client,help:mail.action_mail_to_me_feeds @@ -623,6 +630,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Neturite privačių žinučių.\n" +"

\n" +" Šiame sąraše rodomos žinutės siųstos jums.\n" +"

\n" +" " #. module: mail #: model:mail.group,name:mail.group_rd @@ -644,17 +657,17 @@ msgstr "" #. module: mail #: view:mail.mail:0 msgid "Advanced" -msgstr "" +msgstr "Išsamūs" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:244 #, python-format msgid "Move to Inbox" -msgstr "" +msgstr "Perkelti į gautus" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -663,7 +676,7 @@ msgstr "" #: field:mail.compose.message,to_read:0 #: field:mail.message,to_read:0 msgid "To read" -msgstr "" +msgstr "Neskaityta" #. module: mail #: code:addons/mail/res_users.py:69 @@ -681,28 +694,28 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" -msgstr "" +msgstr "patinka" #. module: mail #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 msgid "Cancel" -msgstr "" +msgstr "Atšaukti" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:47 #, python-format msgid "Share with my followers..." -msgstr "" +msgstr "Dalintis su savo prenumeratoriais..." #. module: mail #: field:mail.notification,partner_id:0 msgid "Contact" -msgstr "" +msgstr "Kontaktas" #. module: mail #: view:mail.group:0 @@ -710,6 +723,8 @@ msgid "" "Only the invited followers can read the\n" " discussions on this group." msgstr "" +"Tik prenumeratoriai gali skaityti\n" +" diskusijas šioje grupėje." #. module: mail #: model:ir.model,name:mail.model_ir_ui_menu @@ -719,7 +734,7 @@ msgstr "" #. module: mail #: view:mail.message:0 msgid "Has attachments" -msgstr "" +msgstr "Turi priedų" #. module: mail #: view:mail.mail:0 @@ -727,7 +742,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -758,7 +773,7 @@ msgstr "" #: view:mail.mail:0 #: selection:mail.message,type:0 msgid "Comment" -msgstr "" +msgstr "Komentaras" #. module: mail #: model:ir.actions.client,help:mail.action_mail_inbox_feeds @@ -774,6 +789,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Šauniai padirbėta! Jūs neturite gautų žinučių.\n" +"

\n" +" Šiame lange rodomos privačios žinutės, el. laiškai siųsti " +"jums bei informacija susijusi su prenumeruojamais dokumentais ar žmonėmis.\n" +"

\n" +" " #. module: mail #: field:mail.mail,notification:0 @@ -785,7 +807,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:188 #, python-format msgid "Compose a new message" -msgstr "" +msgstr "Rašyti žinutę" #. module: mail #: view:mail.mail:0 @@ -793,7 +815,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -809,17 +831,17 @@ msgstr "" #. module: mail #: field:mail.group,image:0 msgid "Photo" -msgstr "" +msgstr "Nuotrauka" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 #, python-format msgid "or" -msgstr "" +msgstr "arba" #. module: mail #: help:mail.compose.message,vote_user_ids:0 @@ -853,12 +875,12 @@ msgstr "" #. module: mail #: field:mail.alias,alias_user_id:0 msgid "Owner" -msgstr "" +msgstr "Savininkas" #. module: mail #: model:ir.model,name:mail.model_res_users msgid "Users" -msgstr "" +msgstr "Naudotojai" #. module: mail #: model:ir.model,name:mail.model_mail_message @@ -867,7 +889,7 @@ msgstr "" #: field:mail.notification,message_id:0 #: field:mail.wizard.invite,message:0 msgid "Message" -msgstr "" +msgstr "Pranešimas" #. module: mail #: help:mail.followers,res_id:0 @@ -879,7 +901,7 @@ msgstr "" #: field:mail.compose.message,body:0 #: field:mail.message,body:0 msgid "Contents" -msgstr "" +msgstr "Turinys" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_alias @@ -903,7 +925,7 @@ msgstr "" #. module: mail #: view:mail.group:0 msgid "Group" -msgstr "" +msgstr "Grupė" #. module: mail #: help:mail.compose.message,starred:0 @@ -914,7 +936,7 @@ msgstr "" #. module: mail #: field:mail.group,public:0 msgid "Privacy" -msgstr "" +msgstr "Slaptumas" #. module: mail #: view:mail.mail:0 @@ -923,20 +945,20 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" -msgstr "" +msgstr "Prašome užpildyti partnerio duomenis" #. module: mail #: view:mail.wizard.invite:0 msgid "Add Followers" -msgstr "" +msgstr "Pridėti prenumeratorius" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "" +msgstr "Pasirinktų objektų prenumeratoriams ir" #. module: mail #: field:mail.alias,alias_force_thread_id:0 @@ -946,7 +968,7 @@ msgstr "" #. module: mail #: model:ir.ui.menu,name:mail.mail_group_root msgid "My Groups" -msgstr "" +msgstr "Mano grupės" #. module: mail #: model:ir.actions.client,help:mail.action_mail_archives_feeds @@ -960,18 +982,26 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Dar nėra gauta nei išsiųsta nė viena žinutė.\n" +"

\n" +" Paspauskite ant piktogramos lango viršuje, kairėje " +"pusėje, kad parašytumėt žinutę. Žinutė bus išsiųsta el. paštu, jeigu tai " +"vidinis kontaktas.\n" +"

\n" +" " #. module: mail #: view:mail.mail:0 #: field:mail.mail,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: mail #: view:mail.mail:0 #: selection:mail.mail,state:0 msgid "Outgoing" -msgstr "" +msgstr "Išvykstančios prekės" #. module: mail #: selection:res.partner,notification_email_send:0 @@ -993,7 +1023,7 @@ msgstr "" #: field:mail.message,notification_ids:0 #: view:mail.notification:0 msgid "Notifications" -msgstr "" +msgstr "Pranešimai" #. module: mail #: view:mail.alias:0 @@ -1031,25 +1061,25 @@ msgstr "" #. module: mail #: selection:mail.group,public:0 msgid "Selected Group Only" -msgstr "" +msgstr "Tik nurodyta grupė" #. module: mail #: field:mail.group,message_is_follower:0 #: field:mail.thread,message_is_follower:0 #: field:res.partner,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ar prenumeratorius" #. module: mail #: view:mail.alias:0 #: view:mail.mail:0 msgid "User" -msgstr "" +msgstr "Naudotojas" #. module: mail #: view:mail.group:0 msgid "Groups" -msgstr "" +msgstr "Grupės" #. module: mail #: view:mail.message:0 @@ -1072,21 +1102,21 @@ msgstr "" #. module: mail #: view:mail.mail:0 msgid "Extended Filters..." -msgstr "" +msgstr "Išplėstiniai filtrai..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" -msgstr "" +msgstr "Kam:" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:193 #, python-format msgid "Write to my followers" -msgstr "" +msgstr "Rašyti savo prenumeratoriams" #. module: mail #: model:ir.model,name:mail.model_res_groups @@ -1096,11 +1126,11 @@ msgstr "" #. module: mail #: field:mail.message.subtype,default:0 msgid "Default" -msgstr "" +msgstr "Numatytasis" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1110,7 +1140,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:246 #, python-format msgid "Mark as Todo" -msgstr "" +msgstr "Žymėti kaip svarbią" #. module: mail #: help:mail.message.subtype,parent_id:0 @@ -1127,7 +1157,7 @@ msgstr "" #: field:mail.thread,message_summary:0 #: field:res.partner,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Santrauka" #. module: mail #: help:mail.message.subtype,res_model:0 @@ -1157,7 +1187,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1166,14 +1196,14 @@ msgstr "" #: code:addons/mail/update.py:93 #, python-format msgid "Error" -msgstr "" +msgstr "Klaida" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:13 #, python-format msgid "Following" -msgstr "" +msgstr "Užprenumeruota" #. module: mail #: sql_constraint:mail.alias:0 @@ -1209,6 +1239,8 @@ msgid "" "This field holds the image used as photo for the group, limited to " "1024x1024px." msgstr "" +"Šiame lauke saugomas grupės paveikslėlis. Maksimalus paveikslėlio dydis " +"1024x1024px." #. module: mail #: field:mail.compose.message,attachment_ids:0 @@ -1235,11 +1267,11 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" -msgstr "" +msgstr "Prenumeratoriai" #. module: mail #: help:mail.mail,auto_delete:0 @@ -1249,45 +1281,45 @@ msgstr "" #. module: mail #: model:ir.actions.client,name:mail.action_mail_group_feeds msgid "Discussion Group" -msgstr "" +msgstr "Diskusijų grupė" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:242 #, python-format msgid "Done" -msgstr "" +msgstr "Atlikta" #. module: mail #: model:mail.message.subtype,name:mail.mt_comment msgid "Discussions" -msgstr "" +msgstr "Diskusija" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:11 #, python-format msgid "Follow" -msgstr "" +msgstr "Prenumeruoti" #. module: mail #: field:mail.group,name:0 msgid "Name" -msgstr "" +msgstr "Pavadinimas" #. module: mail #: model:mail.group,name:mail.group_all_employees msgid "Whole Company" -msgstr "" +msgstr "Visa įmonė" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" -msgstr "" +msgstr "ir" #. module: mail #: help:mail.mail,body_html:0 @@ -1297,14 +1329,14 @@ msgstr "" #. module: mail #: view:mail.mail:0 msgid "Creation Month" -msgstr "" +msgstr "Sukūrimo mėnuo" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" -msgstr "" +msgstr "Rašyti žinutę" #. module: mail #: field:mail.group,menu_id:0 @@ -1314,12 +1346,12 @@ msgstr "" #. module: mail #: view:mail.message:0 msgid "Content" -msgstr "" +msgstr "Turinys" #. module: mail #: field:mail.mail,email_to:0 msgid "To" -msgstr "Kam" +msgstr "Iki" #. module: mail #: field:mail.compose.message,notified_partner_ids:0 @@ -1333,6 +1365,7 @@ msgid "" "This group is visible by non members. Invisible groups can add " "members through the invite button." msgstr "" +"Ši grupė yra matoma ne nariams. Į nematomas grupes galima pakviesti narius." #. module: mail #: model:mail.group,name:mail.group_board @@ -1361,24 +1394,24 @@ msgstr "" #: field:mail.group,description:0 #: field:mail.message.subtype,description:0 msgid "Description" -msgstr "" +msgstr "Aprašymas" #. module: mail #: model:ir.model,name:mail.model_mail_followers msgid "Document Followers" -msgstr "" +msgstr "Dokumento prenumeratoriai" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "" +msgstr "Ištrinti šį prenumeratorių" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Never" -msgstr "" +msgstr "Niekada" #. module: mail #: field:mail.mail,mail_server_id:0 @@ -1386,7 +1419,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1395,7 +1428,7 @@ msgstr "" #: view:mail.mail:0 #: selection:mail.mail,state:0 msgid "Sent" -msgstr "" +msgstr "Išsiųsta" #. module: mail #: field:mail.mail,body_html:0 @@ -1418,7 +1451,7 @@ msgstr "" #: model:ir.actions.act_window,name:mail.action_view_groups #: model:ir.ui.menu,name:mail.mail_allgroups msgid "Join a group" -msgstr "" +msgstr "Grupių prenumerata" #. module: mail #: model:ir.actions.client,help:mail.action_mail_group_feeds @@ -1428,6 +1461,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Nėra žinučių šioje grupėje.\n" +"

\n" +" " #. module: mail #. openerp-web @@ -1454,15 +1491,15 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" -msgstr "" +msgstr "šio dokumento" #. module: mail #: field:mail.compose.message,filter_id:0 msgid "Filters" -msgstr "" +msgstr "Filtrai" #. module: mail #: field:res.partner,notification_email_send:0 @@ -1484,11 +1521,11 @@ msgstr "" #: field:mail.thread,message_ids:0 #: field:res.partner,message_ids:0 msgid "Messages" -msgstr "Žinutė" +msgstr "Pranešimai" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1497,7 +1534,7 @@ msgstr "" #: model:ir.actions.client,name:mail.action_mail_star_feeds #: model:ir.ui.menu,name:mail.mail_starfeeds msgid "To-do" -msgstr "" +msgstr "Reikia atlikti" #. module: mail #: view:mail.alias:0 @@ -1524,13 +1561,13 @@ msgstr "" #: model:ir.ui.menu,name:mail.mail_feeds #: model:ir.ui.menu,name:mail.mail_feeds_main msgid "Messaging" -msgstr "" +msgstr "Žinutės" #. module: mail #: view:mail.alias:0 #: field:mail.message.subtype,res_model:0 msgid "Model" -msgstr "" +msgstr "Modelis" #. module: mail #: view:mail.message:0 @@ -1549,7 +1586,7 @@ msgstr "" #: help:mail.thread,message_ids:0 #: help:res.partner,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Žinučių ir pranešimų istorija" #. module: mail #: help:mail.mail,references:0 @@ -1571,10 +1608,10 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" -msgstr "" +msgstr "nepatinka" #. module: mail #: help:mail.compose.message,author_id:0 @@ -1603,7 +1640,7 @@ msgstr "" #. module: mail #: selection:mail.group,public:0 msgid "Private" -msgstr "" +msgstr "Privatus" #. module: mail #: model:ir.actions.client,help:mail.action_mail_star_feeds @@ -1618,6 +1655,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Neturite svarbių žinučių.\n" +"

\n" +" Gautas žinutes galima pažymėti kaip reikia " +"atlikti. Šiame lange galite peržvelgti šias žinutes.\n" +"

\n" +" " #. module: mail #: selection:mail.mail,state:0 @@ -1627,7 +1671,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,partner_ids:0 msgid "Additional contacts" -msgstr "" +msgstr "Papildomi kontaktai" #. module: mail #: help:mail.compose.message,parent_id:0 @@ -1649,7 +1693,7 @@ msgstr "" #: model:ir.actions.client,name:mail.action_mail_inbox_feeds #: model:ir.ui.menu,name:mail.mail_inboxfeeds msgid "Inbox" -msgstr "" +msgstr "Gauta" #. module: mail #. openerp-web @@ -1663,7 +1707,7 @@ msgstr "" #: code:addons/mail/static/src/js/many2many_tags_email.js:63 #, python-format msgid "Please complete partner's informations and Email" -msgstr "" +msgstr "Prašome užpildyti partnerio duomenis bei el. pašto adresą" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_message_subtype diff --git a/addons/mail/i18n/lv.po b/addons/mail/i18n/lv.po index b04c87111e6..d20beadc69a 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partneris" @@ -464,7 +464,7 @@ msgstr "Sūtīt" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "Atbildēt" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "Adresāti" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Atb.:" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "Sūtīt Tagad" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "Paplašinātie Filtri..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "Izejošais vēstuļu serveris" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "Ziņojumi" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/mk.po b/addons/mail/i18n/mk.po index 3aeeaa1392e..4541986e02c 100644 --- a/addons/mail/i18n/mk.po +++ b/addons/mail/i18n/mk.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 msgid "Followers Form" -msgstr "Форма за следбеници" +msgstr "Формулар за паратители" #. module: mail #: model:ir.model,name:mail.model_publisher_warranty_contract @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Автор" @@ -120,7 +121,7 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_mail_compose_message msgid "Email composition wizard" -msgstr "Волшебник за креирање на e-mail" +msgstr "Волшебник за креирање на е-пошта" #. module: mail #. openerp-web @@ -143,7 +144,7 @@ msgstr "Непрочитани Пораки" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "прикажи" @@ -154,13 +155,13 @@ msgid "" "Members of those groups will automatically added as followers. Note that " "they will be able to manage their subscription manually if necessary." msgstr "" -"Членовите на тие групи автоматски се додаваат како следбеници. Имајте во " +"Членовите на овие групи автоматски се додаваат како пратители. Имајте во " "предвид дека тие ќе можат сами да управуваат со претплатата рачно доколку е " "потребно." #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Навистина ли сакате да ја избришете пораката?" @@ -178,13 +179,13 @@ msgstr "Барај групи" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" -msgstr "следбеници" +msgstr "пратители" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Пристапот е одбиен" @@ -213,7 +214,7 @@ msgid "Support" msgstr "Поддршка" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -221,7 +222,7 @@ msgid "" "\n" "(Document type: %s, Operation: %s)" msgstr "" -"Бараната операција неможе да се изврши поради безбедносни причини. " +"Бараната операција не може да се изврши поради безбедносни причини. " "Контактирајте го администраторот.\n" "\n" "(Тип на документ: %s, Операција: %s)" @@ -280,8 +281,8 @@ msgstr "Група за дискусија" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "качување" @@ -346,7 +347,7 @@ msgstr "Слика со средна големина" #: model:ir.actions.client,name:mail.action_mail_to_me_feeds #: model:ir.ui.menu,name:mail.mail_tomefeeds msgid "To: me" -msgstr "До: me" +msgstr "До: мене" #. module: mail #: field:mail.message.subtype,name:0 @@ -368,13 +369,13 @@ msgstr "Прекини со следење" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "прикажи уште една порака" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -409,7 +410,7 @@ msgid "" "directly in html format in order to be inserted in kanban views." msgstr "" "Го содржи прегледот за комуникацијата (број на пораки и сл.). Овој преглед е " -"во html формат." +"во html формат со цел да биде вметнат во kanban приказ." #. module: mail #: help:mail.alias,alias_model_id:0 @@ -419,7 +420,7 @@ msgid "" "creation of a new record of this model (e.g. a Project Task)" msgstr "" "Моделот (OpenERP Document Kind) на кој алијасот одговара. Секој влезен e-" -"mailкој што не одговара на постоечки запис, ќе предизвика креирање на нов " +"mail кој што не одговара на постоечки запис, ќе предизвика креирање на нов " "запис на тој модел (пр. Проектна задача)" #. module: mail @@ -435,7 +436,6 @@ msgstr "Системско известување" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Партнер" @@ -488,10 +488,10 @@ msgstr "Испрати" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" -msgstr "Нема следбеници" +msgstr "Нема пратители" #. module: mail #: view:mail.mail:0 @@ -509,7 +509,7 @@ msgstr "Неуспешно" #: field:res.partner,message_follower_ids:0 #, python-format msgid "Followers" -msgstr "Следбеници" +msgstr "Пратители" #. module: mail #: model:ir.actions.client,name:mail.action_mail_archives_feeds @@ -519,8 +519,8 @@ msgstr "Архиви" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Избриши го оваа прикачување" @@ -535,10 +535,10 @@ msgstr "Одговори" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" -msgstr "Еден следбеник" +msgstr "Еден пратител" #. module: mail #: field:mail.compose.message,type:0 @@ -551,12 +551,12 @@ msgstr "Тип" #: view:mail.mail:0 #: selection:mail.message,type:0 msgid "Email" -msgstr "E-mail" +msgstr "Е-пошта" #. module: mail #: field:ir.ui.menu,mail_group_id:0 msgid "Mail Group" -msgstr "Група за e-mail" +msgstr "Група за пошта" #. module: mail #: selection:res.partner,notification_email_send:0 @@ -572,7 +572,7 @@ msgstr "Стандардна вредност" #: code:addons/mail/res_users.py:89 #, python-format msgid "%s has joined the %s network." -msgstr "%s се приклучи на мрежата %s." +msgstr "%s се приклучи на %s мрежата." #. module: mail #: help:mail.group,image_small:0 @@ -593,7 +593,7 @@ msgstr "Примачи" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -672,7 +672,7 @@ msgstr "/web/binary/upload_attachment" #. module: mail #: model:ir.model,name:mail.model_mail_thread msgid "Email Thread" -msgstr "Е-mail тема" +msgstr "Е-mail нишка" #. module: mail #: view:mail.mail:0 @@ -684,10 +684,10 @@ msgstr "Напредно" #: code:addons/mail/static/src/xml/mail.xml:244 #, python-format msgid "Move to Inbox" -msgstr "Премести во Дојдовни" +msgstr "Премести во Влезно сандаче" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Одговор:" @@ -705,18 +705,18 @@ msgid "" "You may not create a user. To create new users, you should use the " "\"Settings > Users\" menu." msgstr "" -"Неможете да креирате нов корисник. За креирање на корисници треба да го " +"Не можете да креирате нов корисник. За креирање на корисници треба да го " "користите \"Подесувања > Корисници\" менито." #. module: mail #: help:mail.followers,res_model:0 #: help:mail.wizard.invite,res_model:0 msgid "Model of the followed resource" -msgstr "Модел на проследениот ресурс" +msgstr "Модел на следениот ресурс" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "како" @@ -732,7 +732,7 @@ msgstr "Откажи" #: code:addons/mail/static/src/xml/mail.xml:47 #, python-format msgid "Share with my followers..." -msgstr "Сподели со моите следбеници..." +msgstr "Сподели со моите пратители..." #. module: mail #: field:mail.notification,partner_id:0 @@ -745,7 +745,7 @@ msgid "" "Only the invited followers can read the\n" " discussions on this group." msgstr "" -"Само поканети следбеници можат да ги читат\n" +"Само поканети пратители можат да ги читат\n" " дискусиите на оваа група." #. module: mail @@ -756,7 +756,7 @@ msgstr "ir.ui.menu" #. module: mail #: view:mail.message:0 msgid "Has attachments" -msgstr "Има прикачени додатоци" +msgstr "Има прикачувања" #. module: mail #: view:mail.mail:0 @@ -764,13 +764,14 @@ msgid "on" msgstr "на" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " "address linked :" msgstr "" -"Следните партнери избрани како примачи на пораката немаат e-mail адреса :" +"Следните партнери избрани како примачи на пораката немаат поврзно e-mail " +"адреса :" #. module: mail #: help:mail.alias,alias_defaults:0 @@ -845,12 +846,12 @@ msgid "Send Now" msgstr "Испрати сега" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." msgstr "" -"Пораката неможе да се испрати, ве молиме конфигурирајте ја e-mail адресата " +"Пораката не може да се испрати, ве молиме конфигурирајте ја e-mail адресата " "на испраќачот или алијас." #. module: mail @@ -869,7 +870,7 @@ msgstr "Фотографија" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -983,7 +984,7 @@ msgstr "Известување" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Ве молилме комплетирајте ги информациите за партнерите" @@ -991,17 +992,17 @@ msgstr "Ве молилме комплетирајте ги информации #. module: mail #: view:mail.wizard.invite:0 msgid "Add Followers" -msgstr "Додади следбеници" +msgstr "Додади пратители" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "Следбеници на избраните предмети и" +msgstr "Пратители на избраните предмети и" #. module: mail #: field:mail.alias,alias_force_thread_id:0 msgid "Record Thread ID" -msgstr "ID на тематски запис" +msgstr "ID на нишка на запис" #. module: mail #: model:ir.ui.menu,name:mail.mail_group_root @@ -1075,8 +1076,8 @@ msgid "" "attached, even if they did not reply to it. If set, this will disable the " "creation of new records completely." msgstr "" -"Изборен идентификатор на тема (запис) на која сите влезни пораки ќе бидат " -"прикачени, дури и ако не и одговорат. Доколку е сетирано, ова ќе оневозможи " +"Опционен идентификатор на нишка (запис) на која сите влезни пораки ќе бидат " +"прикачени, дури и ако не и одговорат. Доколку е подесено, ова ќе оневозможи " "креирање на нови записи." #. module: mail @@ -1114,7 +1115,7 @@ msgstr "Само за избраната група" #: field:mail.thread,message_is_follower:0 #: field:res.partner,message_is_follower:0 msgid "Is a Follower" -msgstr "Е следбеник" +msgstr "Е пратител" #. module: mail #: view:mail.alias:0 @@ -1152,7 +1153,7 @@ msgstr "Проширени филтри..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "До:" @@ -1162,7 +1163,7 @@ msgstr "До:" #: code:addons/mail/static/src/xml/mail.xml:193 #, python-format msgid "Write to my followers" -msgstr "Пиши им на моите следбеници" +msgstr "Пиши им на моите пратители" #. module: mail #: model:ir.model,name:mail.model_res_groups @@ -1176,7 +1177,7 @@ msgstr "Стандардно" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "прикажи уште пораки" @@ -1210,7 +1211,7 @@ msgstr "Резиме" msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" -"На кој модел препаѓа овој подтип. Доколку е неточно, тој подтип припаѓа на " +"Модел на кој припаѓа овој подтип. Доколку е неточно, тој подтип припаѓа на " "сите модели." #. module: mail @@ -1235,7 +1236,7 @@ msgstr "Набљудувани" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "уште пораки" @@ -1268,7 +1269,7 @@ msgid "" "the sender (From) address, or will use the Administrator account if no " "system user is found for that address." msgstr "" -"Сопственикот на записите креирани по примањето на пораките на овој алијас. " +"Сопственик на записите креирани по примањето на пораките на овој алијас. " "Доколку ова поле не е конфигурирано, системот ќе се обиде да го пронајде " "вистинскиот сопственик врз база на адресата на испраќачот или ќе ја користи " "администраторската сметка доколку не се пронајде системски корисник за таа " @@ -1321,17 +1322,17 @@ msgstr "Набљудувана порака што се префрлува во #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" -msgstr "Следбеници на" +msgstr "Пратители на" #. module: mail #: help:mail.mail,auto_delete:0 msgid "Permanently delete this email after sending it, to save space" msgstr "" -"Трајно избриши ја пораката откако ќе се испрати за заштедување на место" +"Трајно избриши ја пораката откако ќе се испрати, за да заштедите простор" #. module: mail #: model:ir.actions.client,name:mail.action_mail_group_feeds @@ -1369,8 +1370,8 @@ msgstr "Цела компанија" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1388,7 +1389,7 @@ msgstr "Месец на креирање" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Состави нова порака" @@ -1421,7 +1422,7 @@ msgid "" "members through the invite button." msgstr "" "Оваа група е видлива и за тие што не се членови. Невидливите групи можат да " -"додадат членови со Покани копчето." +"додадат членови со копчето Покани." #. module: mail #: model:mail.group,name:mail.group_board @@ -1457,14 +1458,14 @@ msgstr "Опис" #. module: mail #: model:ir.model,name:mail.model_mail_followers msgid "Document Followers" -msgstr "Следбеници на документ" +msgstr "Пратители на документ" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "Отстрани го овој следбеник" +msgstr "Отстрани го овој пратител" #. module: mail #: selection:res.partner,notification_email_send:0 @@ -1477,7 +1478,7 @@ msgid "Outgoing mail server" msgstr "Сервер за излезна пошта" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "E-mail адресите на партнерите не се пронајдени" @@ -1555,7 +1556,7 @@ msgstr "Врати на ДаСеНаправи" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "овој документ" @@ -1591,7 +1592,7 @@ msgstr "Пораки" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "останати..." @@ -1678,7 +1679,7 @@ msgstr "Поврзан модел на документ" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "за разлика од" @@ -1782,7 +1783,7 @@ msgstr "Датотека" #, python-format msgid "Please complete partner's informations and Email" msgstr "" -"Ве молилме комплетирајте ги информациите за партнерите и e-mail адресите" +"Ве молиме комплетирајте ги информациите за партнерите и e-mail адресите" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_message_subtype diff --git a/addons/mail/i18n/mn.po b/addons/mail/i18n/mn.po index 84ea4b5f700..4e304489cfa 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Зохиогч" @@ -143,7 +144,7 @@ msgstr "Уншаагүй зурвасууд" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "үзүүлэх" @@ -159,7 +160,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Эдгээр зурвасыг та үнэхээр устгамаар байна уу?" @@ -177,13 +178,13 @@ msgstr "Бүлгэмийг Хайх" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "дагагчид" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Хандалтыг татгалзав" @@ -212,7 +213,7 @@ msgid "Support" msgstr "Дэмжлэг" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -279,8 +280,8 @@ msgstr "Хөөрөлдөөний бүлгэм" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "хуулах" @@ -367,13 +368,13 @@ msgstr "Дагахаа болих" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "нэг юм уу хэд хэдэн зурвас харуулах" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -434,7 +435,6 @@ msgstr "Системийн мэдэгдэл" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Харилцагч" @@ -487,7 +487,7 @@ msgstr "Илгээх" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Дагагч байхгүй" @@ -518,8 +518,8 @@ msgstr "Архив" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Энэ хавсралтыг устгах" @@ -534,7 +534,7 @@ msgstr "Хариулах" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Нэг дагагч" @@ -591,7 +591,7 @@ msgstr "Хүлээн авагчид" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -685,7 +685,7 @@ msgid "Move to Inbox" msgstr "Inbox-руу зөөх" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Хариу:" @@ -714,7 +714,7 @@ msgstr "Дагасан нөөцийн модель" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "таалагдлаа" @@ -760,7 +760,7 @@ msgid "on" msgstr "дээр" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -838,7 +838,7 @@ msgid "Send Now" msgstr "Одоо илгээх" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -862,7 +862,7 @@ msgstr "Фото" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -978,7 +978,7 @@ msgstr "Мэдэгдэл" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Харилцагчийн мэдээллийг гүйцээнэ үү" @@ -1145,7 +1145,7 @@ msgstr "Өргөтгөсөн хайлт..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Хэнд:" @@ -1169,7 +1169,7 @@ msgstr "Өгөгдмөл" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "илүү олон зурвас харуулах" @@ -1228,7 +1228,7 @@ msgstr "Одоор тэмдэглэсэн" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "илүү зурвасууд" @@ -1314,7 +1314,7 @@ msgstr "Одоор тэмдэглэсэн зурвас нь хийх ажил р #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1362,8 +1362,8 @@ msgstr "Компани бүхэлдээ" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1381,7 +1381,7 @@ msgstr "Үүсгэсэн сар" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Шинэ зурвас үүсгэх" @@ -1470,7 +1470,7 @@ msgid "Outgoing mail server" msgstr "Мэйл серверийн гаралт" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Харилцагчийн имэйл хаяг олдсонгүй" @@ -1546,7 +1546,7 @@ msgstr "Буцааж хийхээр тохируулах" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "энэ баримт" @@ -1582,7 +1582,7 @@ msgstr "Зурвас" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "бусад..." @@ -1668,7 +1668,7 @@ msgstr "Холбогдох Баримтын Модель" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "таалагдсангүй" diff --git a/addons/mail/i18n/nl.po b/addons/mail/i18n/nl.po index 05c2574990f..0232206303d 100644 --- a/addons/mail/i18n/nl.po +++ b/addons/mail/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-11-29 14:34+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:29+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Auteur" @@ -143,7 +144,7 @@ msgstr "Ongelezen berichten" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "toon" @@ -159,7 +160,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Weet u zeker dat u dit bericht wilt verwijderen?" @@ -177,13 +178,13 @@ msgstr "Zoek groepen" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "volgers" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Toegang geweigerd" @@ -212,7 +213,7 @@ msgid "Support" msgstr "Ondersteuning" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -279,8 +280,8 @@ msgstr "Discussie groep" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "uploaden" @@ -364,13 +365,13 @@ msgstr "Niet volgen" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "geef meer berichten weer" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -429,14 +430,13 @@ msgstr "Systeem melding" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Relatie" #. module: mail #: model:ir.ui.menu,name:mail.mail_my_stuff msgid "Organizer" -msgstr "Organizer" +msgstr "Agenda" #. module: mail #: field:mail.compose.message,subject:0 @@ -482,7 +482,7 @@ msgstr "Verzend" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Geen volgers" @@ -513,8 +513,8 @@ msgstr "Archieven" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Verwijder deze bijlage" @@ -529,7 +529,7 @@ msgstr "Beantwoorden" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Één volger" @@ -587,7 +587,7 @@ msgstr "Ontvangers" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -682,7 +682,7 @@ msgid "Move to Inbox" msgstr "Verplaats naar postvak in" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Antw:" @@ -711,7 +711,7 @@ msgstr "Model van de gevolgde bron" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "like" @@ -759,7 +759,7 @@ msgid "on" msgstr "op" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -774,6 +774,8 @@ msgid "" "A Python dictionary that will be evaluated to provide default values when " "creating new records for this alias." msgstr "" +"Een Python bibliotheek dat zal worden gebruikt om standaardwaarden te bieden " +"bij het maken van nieuwe records voor deze alias." #. module: mail #: model:ir.model,name:mail.model_mail_message_subtype @@ -838,7 +840,7 @@ msgid "Send Now" msgstr "Nu verzenden" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -862,7 +864,7 @@ msgstr "Foto" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -977,7 +979,7 @@ msgstr "Melding" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Vul de volledige relatie informatie in" @@ -1071,6 +1073,9 @@ msgid "" "attached, even if they did not reply to it. If set, this will disable the " "creation of new records completely." msgstr "" +"Optionele ID van een thread (record) waaraan alle inkomende berichten worden " +"gekoppeld, zelfs als hierop niet geantwoord hebben. Indien ingesteld, zal " +"dit het aanmaken van nieuwe records uitzetten." #. module: mail #: help:mail.message.subtype,name:0 @@ -1140,7 +1145,7 @@ msgstr "Uitgebreide filters..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Naar:" @@ -1164,7 +1169,7 @@ msgstr "Standaard" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "geef meer berichten weer" @@ -1179,7 +1184,7 @@ msgstr "Markeer als taak" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "" +msgstr "Bovenliggende subtype, wordt gebruikt voor automatische aanmelding." #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite @@ -1223,7 +1228,7 @@ msgstr "Met ster" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "meer berichten" @@ -1303,7 +1308,7 @@ msgstr "Berichten met ster welke gaan naar het taken postvak" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1351,8 +1356,8 @@ msgstr "Gehele bedrijf" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1370,7 +1375,7 @@ msgstr "Aanmaak maand" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Maak een nieuw bericht" @@ -1459,7 +1464,7 @@ msgid "Outgoing mail server" msgstr "Uitgaande mailserver" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "E-mail adres van de relatie niet gevonden" @@ -1539,7 +1544,7 @@ msgstr "Zet terug naar taken" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "dit document" @@ -1575,7 +1580,7 @@ msgstr "Berichten" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "anderen..." @@ -1660,7 +1665,7 @@ msgstr "Gerelateerde document model" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "unlike" diff --git a/addons/mail/i18n/pl.po b/addons/mail/i18n/pl.po index 6d53aabca12..3d0d54d89b1 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autor" @@ -143,7 +144,7 @@ msgstr "Nieprzeczytane wiadomości" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "pokaż" @@ -159,7 +160,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Chcesz usunąć tę wiadomość?" @@ -177,13 +178,13 @@ msgstr "Szukaj grup" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "obserwatorzy" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Brak dostępu" @@ -212,7 +213,7 @@ msgid "Support" msgstr "Wsparcie" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -279,8 +280,8 @@ msgstr "Grupa dyskusyjna" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "wysyłanie" @@ -364,13 +365,13 @@ msgstr "Przestań obserwować" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "pokaż jeszcze jedną wiadomość" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -432,7 +433,6 @@ msgstr "Powiadomienie systemowe" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partner" @@ -485,7 +485,7 @@ msgstr "Wyślij" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Brak obserwatorów" @@ -516,8 +516,8 @@ msgstr "Archiwum" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Usuń ten załącznik" @@ -532,7 +532,7 @@ msgstr "Odpowiedz" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Jeden obserwator" @@ -590,7 +590,7 @@ msgstr "Odbiorcy" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -684,7 +684,7 @@ msgid "Move to Inbox" msgstr "Przejdź do przychodzącej" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Odp:" @@ -713,7 +713,7 @@ msgstr "Model następnego zasobu" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "lubię" @@ -761,7 +761,7 @@ msgid "on" msgstr "na" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -838,7 +838,7 @@ msgid "Send Now" msgstr "Wyślij teraz" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -860,7 +860,7 @@ msgstr "Zdjęcie" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -971,7 +971,7 @@ msgstr "Powiadomienie" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Uzupełnij informacje o partnerze" @@ -1138,7 +1138,7 @@ msgstr "Rozszerzone filtry..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Do:" @@ -1162,7 +1162,7 @@ msgstr "Domyślne" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "pokaż więcej wiadomości" @@ -1219,7 +1219,7 @@ msgstr "Oznaczone gwiazdką" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "więcej wiadomości" @@ -1301,7 +1301,7 @@ msgstr "Wiadomość oznaczona gwiazdką, która wejdzie do skrzynki Do zrobienia #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1348,8 +1348,8 @@ msgstr "Cała firma" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1367,7 +1367,7 @@ msgstr "Miesiąc tworzenia" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Utwórz nową wiadomość" @@ -1456,7 +1456,7 @@ msgid "Outgoing mail server" msgstr "Serwer poczty wychodzącej" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Nie znaleziono adresów partnerów" @@ -1532,7 +1532,7 @@ msgstr "Ustaw z powrotem na Do zrobienia" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "tego dokumentu" @@ -1568,7 +1568,7 @@ msgstr "Wiadomości" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "inni..." @@ -1654,7 +1654,7 @@ msgstr "Powiązany model dokumentu" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "nie lubię" diff --git a/addons/mail/i18n/pt.po b/addons/mail/i18n/pt.po index b36061318f0..27ecdc7f87b 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autor" @@ -128,7 +129,7 @@ msgstr "" #. module: mail #: field:mail.message.subtype,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Ascendente" #. module: mail #: field:mail.group,message_unread:0 @@ -139,7 +140,7 @@ msgstr "Mensagens por ler" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "mostrar" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Deseja mesmo apagar esta mensagem?" @@ -162,7 +163,7 @@ msgstr "Deseja mesmo apagar esta mensagem?" #: view:mail.message:0 #: field:mail.notification,read:0 msgid "Read" -msgstr "" +msgstr "Ler" #. module: mail #: view:mail.group:0 @@ -171,13 +172,13 @@ msgstr "Pesquisar grupos" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Acesso negado" @@ -203,7 +204,7 @@ msgid "Support" msgstr "Suporte" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "Grupo de discussão" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "a enviar" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "mostrar mais uma mensagem" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "Notificação do sistema" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Parceiro" @@ -429,7 +429,7 @@ msgstr "Assunto" #. module: mail #: field:mail.wizard.invite,partner_ids:0 msgid "Partners" -msgstr "" +msgstr "Parceiros" #. module: mail #: view:mail.mail:0 @@ -464,10 +464,10 @@ msgstr "Enviar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" -msgstr "" +msgstr "Sem seguidores" #. module: mail #: view:mail.mail:0 @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Apagar este anexo" @@ -511,7 +511,7 @@ msgstr "Responder" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Um seguidor" @@ -566,7 +566,7 @@ msgstr "Destinatários" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -586,7 +586,7 @@ msgstr "Grupo autorizado" #. module: mail #: view:mail.group:0 msgid "Join Group" -msgstr "" +msgstr "Juntar-se ao grupo" #. module: mail #: help:mail.mail,email_from:0 @@ -597,7 +597,7 @@ msgstr "" #: code:addons/mail/wizard/invite.py:40 #, python-format msgid "
You have been invited to follow a new document.
" -msgstr "" +msgstr "
Foi convidado para seguir um novo documento.
" #. module: mail #: field:mail.compose.message,parent_id:0 @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "Enviar Agora" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -853,7 +853,7 @@ msgstr "" #. module: mail #: field:mail.alias,alias_user_id:0 msgid "Owner" -msgstr "" +msgstr "Proprietário" #. module: mail #: model:ir.model,name:mail.model_res_users @@ -923,7 +923,7 @@ msgstr "Notificação" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "Filtros Avançados..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Para:" @@ -1100,7 +1100,7 @@ msgstr "Predefinido" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "mais mensagens" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1283,8 +1283,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1302,7 +1302,7 @@ msgstr "Mês de Criação" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1387,7 +1387,7 @@ msgid "Outgoing mail server" msgstr "Servidor de Outgoing mail" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1455,7 +1455,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "este documento" @@ -1489,7 +1489,7 @@ msgstr "Mensagens" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "outros..." @@ -1561,7 +1561,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,composition_mode:0 msgid "Composition mode" -msgstr "" +msgstr "Modo de composição" #. module: mail #: field:mail.compose.message,model:0 @@ -1573,7 +1573,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/pt_BR.po b/addons/mail/i18n/pt_BR.po index 5645d15e121..37db64b84b6 100644 --- a/addons/mail/i18n/pt_BR.po +++ b/addons/mail/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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -30,6 +30,7 @@ msgstr "Contrato de Serviço" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autor" @@ -144,7 +145,7 @@ msgstr "Mensagens não lidas" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "mostrar" @@ -160,7 +161,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Deseja realmente excluir esta mensagem?" @@ -178,13 +179,13 @@ msgstr "Procurar grupos" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "seguidores" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Acesso Negado" @@ -213,7 +214,7 @@ msgid "Support" msgstr "Suporte" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -280,8 +281,8 @@ msgstr "Grupo de discussão" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "enviando" @@ -369,13 +370,13 @@ msgstr "Não Participar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "mostrar mais uma mensagem" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -437,7 +438,6 @@ msgstr "Notificação do sistema" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Parceiro" @@ -490,7 +490,7 @@ msgstr "Enviar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Sem seguidores" @@ -521,8 +521,8 @@ msgstr "Arquivos" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Excluir este anexo" @@ -537,7 +537,7 @@ msgstr "Responder" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Um seguidor" @@ -595,7 +595,7 @@ msgstr "Destinatários" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -689,7 +689,7 @@ msgid "Move to Inbox" msgstr "Mover para Caixa de Entrada" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -718,7 +718,7 @@ msgstr "Modelo do recurso seguido" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "curtir" @@ -766,7 +766,7 @@ msgid "on" msgstr "em" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -846,7 +846,7 @@ msgid "Send Now" msgstr "Enviar Agora" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -870,7 +870,7 @@ msgstr "Foto" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -984,7 +984,7 @@ msgstr "Notificação" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Por favor complete as informações do parceiro" @@ -1154,7 +1154,7 @@ msgstr "Filtros Extendidos..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Para:" @@ -1178,7 +1178,7 @@ msgstr "Padrão" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "mostrar mais mensagens" @@ -1237,7 +1237,7 @@ msgstr "Favoritos" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "mais mensagens" @@ -1324,7 +1324,7 @@ msgstr "Mensagem marcada que irá para a caixa de A Fazer" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1372,8 +1372,8 @@ msgstr "Toda a Empresa" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1391,7 +1391,7 @@ msgstr "Mês de Criação" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Escrever nova Mensagem" @@ -1480,7 +1480,7 @@ msgid "Outgoing mail server" msgstr "Servidor de envio" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Endereço de e-mail do parceiro não encontrado" @@ -1557,7 +1557,7 @@ msgstr "Devolver a A Fazer" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "este documento" @@ -1593,7 +1593,7 @@ msgstr "Mensagens" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "outros..." @@ -1681,10 +1681,10 @@ msgstr "Modelo de Documento Relacionado" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" -msgstr "curtir (desfazer)" +msgstr "curtiu" #. module: mail #: help:mail.compose.message,author_id:0 diff --git a/addons/mail/i18n/ro.po b/addons/mail/i18n/ro.po index 6a9911a6efa..14e77512ac7 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract (contract. garantie_editor)" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autor" @@ -57,13 +58,13 @@ msgstr "Comentarii" #: view:mail.alias:0 #: view:mail.mail:0 msgid "Group By..." -msgstr "Grupeaza dupa..." +msgstr "Grupează după..." #. module: mail #: help:mail.compose.message,body:0 #: help:mail.message,body:0 msgid "Automatically sanitized HTML contents" -msgstr "Continuturi HTML cenzurate automat" +msgstr "Conținuturi HTML cenzurate automat" #. module: mail #: help:mail.alias,alias_name:0 @@ -71,7 +72,7 @@ msgid "" "The name of the email alias, e.g. 'jobs' if you want to catch emails for " "" msgstr "" -"Numele email-ului alias, de exemplu 'locuri de munca' daca doriti sa primiti " +"Numele email-ului alias, de exemplu 'locuri de muncă' dacă doriți să primiți " "email-uri pentru " #. module: mail @@ -100,12 +101,12 @@ msgstr "Public" #. module: mail #: view:mail.mail:0 msgid "Body" -msgstr "Corp" +msgstr "Conținut" #. module: mail #: view:mail.message:0 msgid "Show messages to read" -msgstr "Afiseaza mesajele de citit" +msgstr "Afișează mesajele de citit" #. module: mail #: help:mail.compose.message,email_from:0 @@ -114,8 +115,8 @@ msgid "" "Email address of the sender. This field is set when no matching partner is " "found for incoming emails." msgstr "" -"Adresa de email a expeditorului. Acest camp este setat atunci cand nu este " -"gasit nici un partener care sa se potriveasca email-urilor primite." +"Adresa de email a expeditorului. Acest câmp este setat atunci când nu este " +"găsit nici un partener care sa se potrivească email-urilor primite." #. module: mail #: model:ir.model,name:mail.model_mail_compose_message @@ -127,7 +128,7 @@ msgstr "Wizardul de compunere email-uri" #: code:addons/mail/static/src/xml/mail_followers.xml:23 #, python-format msgid "Add others" -msgstr "Adauga altele" +msgstr "Adaugă altele" #. module: mail #: field:mail.message.subtype,parent_id:0 @@ -139,14 +140,14 @@ msgstr "Principal" #: field:mail.thread,message_unread:0 #: field:res.partner,message_unread:0 msgid "Unread Messages" -msgstr "Mesaje Necitite" +msgstr "Mesaje necitite" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" -msgstr "afiseaza" +msgstr "afișează" #. module: mail #: help:mail.group,group_ids:0 @@ -154,16 +155,16 @@ msgid "" "Members of those groups will automatically added as followers. Note that " "they will be able to manage their subscription manually if necessary." msgstr "" -"Membrii acelor grupuri vor fi adaugati automat ca persoane interesate. " -"Observati ca ei vor putea sa isi gestioneze manual abonamentul daca este " +"Membrii acelor grupuri vor fi adaugați automat ca persoane interesate. " +"Observați că ei vor putea să își gestioneze manual abonamentul dacă este " "nevoie." #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" -msgstr "Doriti intr-adevar sa stergeti acest mesaj?" +msgstr "Doriți într-adevăr să ștergeți acest mesaj?" #. module: mail #: view:mail.message:0 @@ -174,20 +175,20 @@ msgstr "Citire" #. module: mail #: view:mail.group:0 msgid "Search Groups" -msgstr "Cauta Grupuri" +msgstr "Caută grupuri" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "persoane interesate" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" -msgstr "Acces Interzis" +msgstr "Acces interzis" #. module: mail #: help:mail.group,image_medium:0 @@ -196,24 +197,24 @@ msgid "" "image, with aspect ratio preserved. Use this field in form views or some " "kanban views." msgstr "" -"Fotografie de dimensiune medie a grupului. Este redimensionata automat ca o " -"imagine de 128x128px, cu formatul imaginii pastrat. Utilizati acest camp in " -"vizualizarile formularului sau in unele vizualizari kanban." +"Fotografie de dimensiune medie a grupului. Este redimensionată automat ca o " +"imagine de 128x128px, cu formatul imaginii păstrat. Utilizați acest câmp în " +"vizualizările formularului sau în unele vizualizări kanban." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:212 #, python-format msgid "Uploading error" -msgstr "Eroare incarcare" +msgstr "Eroare încărcare" #. module: mail #: model:mail.group,name:mail.group_support msgid "Support" -msgstr "Asistenta" +msgstr "Asistență" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -221,10 +222,10 @@ msgid "" "\n" "(Document type: %s, Operation: %s)" msgstr "" -"Operatiunea solicitata nu poate fi finalizata din cauza restrictiilor de " -"securitate. Va rugam sa contactati administratorul de sistem.\n" +"Operațiunea solicitată nu poate fi finalizată din cauza restricțiilor de " +"securitate. Vă rugăm să contactați administratorul de sistem.\n" "\n" -"(Tip de document: %s, Operatiune: %s)" +"(Tip de document: %s, Operațiune: %s)" #. module: mail #: view:mail.mail:0 @@ -259,12 +260,12 @@ msgstr "Domeniu Alias" #. module: mail #: field:mail.group,group_ids:0 msgid "Auto Subscription" -msgstr "Abonare Automata" +msgstr "Abonare automată" #. module: mail #: field:mail.mail,references:0 msgid "References" -msgstr "Referinte" +msgstr "Referințe" #. module: mail #. openerp-web @@ -276,15 +277,15 @@ msgstr "Nici un mesaj." #. module: mail #: model:ir.model,name:mail.model_mail_group msgid "Discussion group" -msgstr "Grup de discutii" +msgstr "Grup de discuții" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" -msgstr "se incarca" +msgstr "se încarcă" #. module: mail #. openerp-web @@ -301,7 +302,7 @@ msgid "" "comment for other messages such as user replies" msgstr "" "Tipul de mesaj: email pentru mesaj email, notificare pentru mesajul sistem, " -"comentariu pentru alte mesaje, cum ar fi raspunsurile utilizatorului" +"comentariu pentru alte mesaje, cum ar fi răspunsurile utilizatorului" #. module: mail #: help:mail.message.subtype,relation_field:0 @@ -310,32 +311,32 @@ msgid "" "automatic subscription on a related document. The field is used to compute " "getattr(related_document.relation_field)." msgstr "" -"Camp utilizat pentru a lega modelul asociat de modelul subtip atunci cand se " -"foloseste abonarea automata pe un document corelat. Acest camp este utilizat " -"pentru a calcula getattr (document_corelat.camp_relatie)." +"Câmp utilizat pentru a lega modelul asociat de modelul subtip atunci când se " +"folosește abonarea automată pe un document corelat. Acest câmp este utilizat " +"pentru a calcula getattr(related_document.relation_field)." #. module: mail #: selection:mail.mail,state:0 msgid "Cancelled" -msgstr "Anulat(a)" +msgstr "Anulat(ă)" #. module: mail #: field:mail.mail,reply_to:0 msgid "Reply-To" -msgstr "Raspunde" +msgstr "Răspunde" #. module: mail #: code:addons/mail/wizard/invite.py:37 #, python-format msgid "
You have been invited to follow %s.
" -msgstr "
Ati fost invitat sa urmati %s.
" +msgstr "
Ați fost invitat să urmăți %s.
" #. module: mail #: help:mail.group,message_unread:0 #: help:mail.thread,message_unread:0 #: help:res.partner,message_unread:0 msgid "If checked new messages require your attention." -msgstr "Daca este selectat, mesajele noi necesita atentia dumneavoastra." +msgstr "Dacă este selectat, mesajele noi necesită atenția dumneavoastră." #. module: mail #: field:mail.group,image_medium:0 @@ -346,17 +347,17 @@ msgstr "Fotografie de dimensiune medie" #: model:ir.actions.client,name:mail.action_mail_to_me_feeds #: model:ir.ui.menu,name:mail.mail_tomefeeds msgid "To: me" -msgstr "Pentru:mine" +msgstr "Pentru: mine" #. module: mail #: field:mail.message.subtype,name:0 msgid "Message Type" -msgstr "Tipul Mesajului" +msgstr "Tipul mesajului" #. module: mail #: field:mail.mail,auto_delete:0 msgid "Auto Delete" -msgstr "Sterge Automat" +msgstr "Șterge automat" #. module: mail #. openerp-web @@ -364,21 +365,21 @@ msgstr "Sterge Automat" #: view:mail.group:0 #, python-format msgid "Unfollow" -msgstr "Nu urmati" +msgstr "Nu urmați" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" -msgstr "afiseaza inca un mesaj" +msgstr "afișează încă un mesaj" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" -msgstr "Actiune Nevalida!" +msgstr "Acțiune nevalidă!" #. module: mail #. openerp-web @@ -398,7 +399,7 @@ msgstr "Email-uri" #. module: mail #: field:mail.followers,partner_id:0 msgid "Related Partner" -msgstr "Partener Asociat" +msgstr "Partener asociat" #. module: mail #: help:mail.group,message_summary:0 @@ -426,17 +427,16 @@ msgstr "" #. module: mail #: field:mail.message.subtype,relation_field:0 msgid "Relation field" -msgstr "Camp relatie" +msgstr "Câmp relație" #. module: mail #: selection:mail.compose.message,type:0 #: selection:mail.message,type:0 msgid "System notification" -msgstr "Sistem de instiintare" +msgstr "Sistem de înștiințare" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partener" @@ -459,7 +459,7 @@ msgstr "Parteneri" #. module: mail #: view:mail.mail:0 msgid "Retry" -msgstr "Incearca din nou" +msgstr "Reîncearcă" #. module: mail #: field:mail.compose.message,email_from:0 @@ -489,15 +489,15 @@ msgstr "Trimite" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" -msgstr "Nici o persoana interesata" +msgstr "Nici o persoană interesată" #. module: mail #: view:mail.mail:0 msgid "Failed" -msgstr "Esuat" +msgstr "Eșuat" #. module: mail #. openerp-web @@ -520,11 +520,11 @@ msgstr "Arhive" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" -msgstr "Sterge acest atasament" +msgstr "Șterge acest atașament" #. module: mail #. openerp-web @@ -532,14 +532,14 @@ msgstr "Sterge acest atasament" #: view:mail.mail:0 #, python-format msgid "Reply" -msgstr "Raspunde" +msgstr "Răspunde" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" -msgstr "O persoana interesata" +msgstr "O persoană interesată" #. module: mail #: field:mail.compose.message,type:0 @@ -573,7 +573,7 @@ msgstr "Valori Implicite" #: code:addons/mail/res_users.py:89 #, python-format msgid "%s has joined the %s network." -msgstr "%s s-a alaturat retelei %s." +msgstr "%s s-a alăturat rețelei %s." #. module: mail #: help:mail.group,image_small:0 @@ -594,7 +594,7 @@ msgstr "Destinatari" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -614,24 +614,24 @@ msgstr "Grup Autorizat" #. module: mail #: view:mail.group:0 msgid "Join Group" -msgstr "Alaturati-va Grupului" +msgstr "Alaturați-vă grupului" #. module: mail #: help:mail.mail,email_from:0 msgid "Message sender, taken from user preferences." -msgstr "Expeditorul mesajului, luat din preferintele utilizatorului." +msgstr "Expeditorul mesajului, luat din preferințele utilizatorului." #. module: mail #: code:addons/mail/wizard/invite.py:40 #, python-format msgid "
You have been invited to follow a new document.
" -msgstr "
Ati fost invitat sa urmariti un document nou.
" +msgstr "
Ați fost invitat să urmăriți un document nou.
" #. module: mail #: field:mail.compose.message,parent_id:0 #: field:mail.message,parent_id:0 msgid "Parent Message" -msgstr "Mesaj Principal" +msgstr "Mesaj principal" #. module: mail #: field:mail.compose.message,res_id:0 @@ -685,10 +685,10 @@ msgstr "Avansat" #: code:addons/mail/static/src/xml/mail.xml:244 #, python-format msgid "Move to Inbox" -msgstr "Muta in Inbox" +msgstr "Mută în Inbox" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -717,23 +717,23 @@ msgstr "Modelul resursei urmate" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" -msgstr "ca si" +msgstr "ca și" #. module: mail #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 msgid "Cancel" -msgstr "Anuleaza" +msgstr "Anulează" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:47 #, python-format msgid "Share with my followers..." -msgstr "Imparte cu persoanele interesate..." +msgstr "Împarte cu persoanele interesate..." #. module: mail #: field:mail.notification,partner_id:0 @@ -747,7 +747,7 @@ msgid "" " discussions on this group." msgstr "" "Numai persoanele invitate pot citi\n" -" discutiile din acest grup." +" discuțiile din acest grup." #. module: mail #: model:ir.model,name:mail.model_ir_ui_menu @@ -757,7 +757,7 @@ msgstr "ir.ui.meniu" #. module: mail #: view:mail.message:0 msgid "Has attachments" -msgstr "Are atasamente" +msgstr "Are atașamente" #. module: mail #: view:mail.mail:0 @@ -765,14 +765,14 @@ msgid "on" msgstr "activat" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " "address linked :" msgstr "" -"Urmatorii parteneri alesi ca destinatari ai email-ului nu au nici o adresa " -"de email asociata :" +"Următorii parteneri aleși ca destinatari ai email-ului nu au nici o adresă " +"de email asociată :" #. module: mail #: help:mail.alias,alias_defaults:0 @@ -817,28 +817,27 @@ msgid "" " " msgstr "" "

\n" -" Treaba buna! Casuta dumneavoastra postala este " -"goala.\n" +" Bună Treabă! Căsuța dumneavoastră postala este " +"goală.\n" "

\n" -" Casuta dumneavoastra postala contine mesaje sau email-" -"uri personale care v-au fost trimise dumneavoastra,\n" -" precum si informatii legate de documentele sau " -"persoanele pe care\n" -" le urmariti.\n" +" Căsuța dumneavoastră poștala conține mesaje sau email-" +"uri personale care v-au fost trimise dumneavoastră,\n" +" precum și informații legate de documentele sau " +"persoanele pe care le urmăriți.\n" "

\n" " " #. module: mail #: field:mail.mail,notification:0 msgid "Is Notification" -msgstr "Este o Instiintare" +msgstr "Este o înștiințare" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:188 #, python-format msgid "Compose a new message" -msgstr "Compuneti un mesaj nou" +msgstr "Compuneți un mesaj nou" #. module: mail #: view:mail.mail:0 @@ -846,12 +845,12 @@ msgid "Send Now" msgstr "Trimite acum" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." msgstr "" -"Email-ul nu a putut fi trimis, configurati adresa de email a expeditorului " +"Email-ul nu a putut fi trimis, configurați adresa de email a expeditorului " "sau alias." #. module: mail @@ -860,8 +859,8 @@ msgid "" "Email address internally associated with this user. Incoming emails will " "appear in the user's notifications." msgstr "" -"Adresa de email asociata intern cu acest utilizator. Email-urile primite vor " -"apare in instiintarile utilizatorului." +"Adresa de email asociată intern cu acest utilizator. Email-urile primite vor " +"apare în înștiințările utilizatorului." #. module: mail #: field:mail.group,image:0 @@ -870,7 +869,7 @@ msgstr "Fotografie" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -890,7 +889,7 @@ msgid "" "The email address associated with this group. New emails received will " "automatically create new topics." msgstr "" -"Adresa de email asociata cu acest grup. Email-urile noi primite vor crea " +"Adresa de email asociată cu acest grup. Email-urile noi primite vor crea " "automat subiecte noi." #. module: mail @@ -901,7 +900,7 @@ msgstr "Luna" #. module: mail #: view:mail.mail:0 msgid "Email Search" -msgstr "Cautare e-mail" +msgstr "Căutare e-mail" #. module: mail #: field:mail.compose.message,child_ids:0 @@ -932,7 +931,7 @@ msgstr "Mesaj" #: help:mail.followers,res_id:0 #: help:mail.wizard.invite,res_id:0 msgid "Id of the followed resource" -msgstr "Id-ul resursei urmarite" +msgstr "Id-ul resursei urmărite" #. module: mail #: field:mail.compose.message,body:0 @@ -952,8 +951,8 @@ msgid "" "Description that will be added in the message posted for this subtype. If " "void, the name will be added instead." msgstr "" -"Descriere care va fi adaugata in mesajul postat pentru acest subtip. Daca " -"este necompletat, va fi adaugat numele." +"Descriere care va fi adăugată în mesajul postat pentru acest subtip. Dacă " +"este necompletat, va fi adăugat numele." #. module: mail #: field:mail.compose.message,vote_user_ids:0 @@ -971,7 +970,7 @@ msgstr "Grup" #: help:mail.message,starred:0 msgid "Current user has a starred notification linked to this message" msgstr "" -"Utilizatorul actual are o notificare marcata cu asterisc atasata acestui " +"Utilizatorul actual are o notificare marcată cu asterisc atașată acestui " "mesaj" #. module: mail @@ -986,25 +985,25 @@ msgstr "Notificare" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" -msgstr "Va rugam sa completati informatiile partenerului" +msgstr "Vă rugăm să completați informațiile partenerului" #. module: mail #: view:mail.wizard.invite:0 msgid "Add Followers" -msgstr "Adauga Urmariri" +msgstr "Adaugă urmăriri" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "Urmariri ale elementelor selectate si" +msgstr "Urmăriri ale elementelor selectate și" #. module: mail #: field:mail.alias,alias_force_thread_id:0 msgid "Record Thread ID" -msgstr "ID Inregistrare Fir" +msgstr "ID Înregistrare Fir" #. module: mail #: model:ir.ui.menu,name:mail.mail_group_root @@ -1024,11 +1023,11 @@ msgid "" " " msgstr "" "

\n" -" Nici un mesaj gasit si nici un mesaj trimis inca.\n" +" Nici un mesaj găsit și nici un mesaj trimis încă.\n" "

\n" " Clic pe pictograma din partea dreapta sus pentru a " "compune un mesaj. Acest\n" -" mesaj va fi trimis prin email daca este un contact " +" mesaj va fi trimis prin email dacă este un contact " "intern.\n" "

\n" " " @@ -1043,18 +1042,18 @@ msgstr "Status" #: view:mail.mail:0 #: selection:mail.mail,state:0 msgid "Outgoing" -msgstr "Iesire" +msgstr "Ieșire" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "All feeds" -msgstr "Toate stirile" +msgstr "Toate știrile" #. module: mail #: help:mail.compose.message,record_name:0 #: help:mail.message,record_name:0 msgid "Name get of the related document." -msgstr "Obtine numele documentului asociat" +msgstr "Obține numele documentului asociat" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_notifications @@ -1065,12 +1064,12 @@ msgstr "Obtine numele documentului asociat" #: field:mail.message,notification_ids:0 #: view:mail.notification:0 msgid "Notifications" -msgstr "Notificari" +msgstr "Notificări" #. module: mail #: view:mail.alias:0 msgid "Search Alias" -msgstr "Cauta Alias" +msgstr "Caută Alias" #. module: mail #: help:mail.alias,alias_force_thread_id:0 @@ -1079,9 +1078,9 @@ msgid "" "attached, even if they did not reply to it. If set, this will disable the " "creation of new records completely." msgstr "" -"Id-ul optional al unei inregistrari la care vor fi atasate toate mesajele " -"primite, chiar daca nu i-au raspuns. Daca este setat, acesta va dezactiva " -"complet crearea de inregistrari noi." +"Id-ul optional al unei înregistrări la care vor fi atașate toate mesajele " +"primite, chiar dacă nu i-au răspuns. Dacă este setat, acesta va dezactiva " +"complet crearea de înregistrări noi." #. module: mail #: help:mail.message.subtype,name:0 @@ -1092,21 +1091,21 @@ msgid "" "subtypes allow to precisely tune the notifications the user want to receive " "on its wall." msgstr "" -"Subtipul de mesaj ofera un tip mai exact al mesajului, mai ales pentru " -"instiintarile de sistem. De exemplu, poate fi o instiintare asociata unei " -"inregistrari noi (Nou), sau unei modificari a etapelor intr-un proces " -"(Modificare Etapa). Subtipurile de mesaje permit reglarea instiintarilor pe " -"care utilizatorul doreste sa le primeasca." +"Subtipul de mesaj oferă un tip mai exact al mesajului, mai ales pentru " +"înștiințările de sistem. De exemplu, poate fi o înștiințare asociată unei " +"înregistrări noi (Nou), sau unei modificări a etapelor într-un proces " +"(Modificare Etapă). Subtipurile de mesaje permit reglarea înștiințărilor pe " +"care utilizatorul dorește să le primească." #. module: mail #: view:mail.mail:0 msgid "by" -msgstr "de catre" +msgstr "de câtre" #. module: mail #: model:mail.group,name:mail.group_best_sales_practices msgid "Best Sales Practices" -msgstr "Cele mai Bune Practici de Vanzari" +msgstr "Cele mai Bune Practici de Vânzări" #. module: mail #: selection:mail.group,public:0 @@ -1118,7 +1117,7 @@ msgstr "Numai Grupul Selectat" #: field:mail.thread,message_is_follower:0 #: field:res.partner,message_is_follower:0 msgid "Is a Follower" -msgstr "Este o persoana interesata" +msgstr "Este o persoană interesată" #. module: mail #: view:mail.alias:0 @@ -1134,7 +1133,7 @@ msgstr "Grupuri" #. module: mail #: view:mail.message:0 msgid "Messages Search" -msgstr "Cautare Mesaje" +msgstr "Căutare Mesaje" #. module: mail #: field:mail.compose.message,date:0 @@ -1156,10 +1155,10 @@ msgstr "Filtre Extinse..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" -msgstr "Catre:" +msgstr "Către:" #. module: mail #. openerp-web @@ -1180,42 +1179,42 @@ msgstr "Implicit" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" -msgstr "arata mai multe mesaje" +msgstr "arată mai multe mesaje" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:246 #, python-format msgid "Mark as Todo" -msgstr "Marcheaza De efectuat" +msgstr "Marchează De efectuat" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "Subtip principal, utilizat pentru abonarea automata." +msgstr "Subtip principal, utilizat pentru abonarea automată." #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite msgid "Invite wizard" -msgstr "Wizard Invitatie" +msgstr "Wizard invitație" #. module: mail #: field:mail.group,message_summary:0 #: field:mail.thread,message_summary:0 #: field:res.partner,message_summary:0 msgid "Summary" -msgstr "Continut" +msgstr "Rezumat" #. module: mail #: help:mail.message.subtype,res_model:0 msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" -"Modelul caruia i se aplica subtipul. Daca este setat pe Fals, acest subtip " -"se aplica tuturor modelelor." +"Modelul căruia i se aplică subtipul. Dacă este setat pe Fals, acest subtip " +"se aplică tuturor modelelor." #. module: mail #: field:mail.compose.message,subtype_id:0 @@ -1239,7 +1238,7 @@ msgstr "Marcat cu asterisc" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "mai multe mesaje" @@ -1255,14 +1254,14 @@ msgstr "Eroare" #: code:addons/mail/static/src/xml/mail_followers.xml:13 #, python-format msgid "Following" -msgstr "urmarind" +msgstr "Urmărind" #. module: mail #: sql_constraint:mail.alias:0 msgid "" "Unfortunately this email alias is already used, please choose a unique one" msgstr "" -"Din nefericire, acest alias de email este deja folosit, alegeti unul unic" +"Din nefericire, acest alias de email este deja folosit, alegeți unul unic" #. module: mail #: help:mail.alias,alias_user_id:0 @@ -1272,18 +1271,18 @@ msgid "" "the sender (From) address, or will use the Administrator account if no " "system user is found for that address." msgstr "" -"Detinatorul inregistrarilor create la primirea de email-uri in acest alias. " -"Daca acest camp nu este setat, sistemul va incerca sa gaseasca proprietarul " +"Deținătorul înregistrărilor create la primirea de email-uri în acest alias. " +"Dacă acest câmp nu este setat, sistemul va încerca să găsească proprietarul " "potrivit pe baza adresei expeditorului (De la), sau va folosi Contul " -"Administrator daca nu este gasit un utilizator al sistemului pentru acea " -"adresa." +"Administrator dacă nu este găsit un utilizator al sistemului pentru acea " +"adresă." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "And" -msgstr "Si" +msgstr "Și" #. module: mail #: field:mail.compose.message,message_id:0 @@ -1297,7 +1296,7 @@ msgid "" "This field holds the image used as photo for the group, limited to " "1024x1024px." msgstr "" -"Acest camp contine imaginea utilizata ca fotografie a grupului, limitata la " +"Acest câmp conține imaginea utilizată ca fotografie a grupului, limitata la " "1024x1024 pixeli." #. module: mail @@ -1305,13 +1304,13 @@ msgstr "" #: view:mail.mail:0 #: field:mail.message,attachment_ids:0 msgid "Attachments" -msgstr "Atasamente" +msgstr "Atașamente" #. module: mail #: field:mail.compose.message,record_name:0 #: field:mail.message,record_name:0 msgid "Message Record Name" -msgstr "Numele Inregistrarii Mesajului" +msgstr "Numele Înregistrării Mesajului" #. module: mail #: field:mail.mail,email_cc:0 @@ -1321,26 +1320,26 @@ msgstr "Cc (copie carbon)" #. module: mail #: help:mail.notification,starred:0 msgid "Starred message that goes into the todo mailbox" -msgstr "Mesaj marcat cu asterisc care ajunge in cutia postala de efectuat" +msgstr "Mesaj marcat cu asterisc care ajunge în cutia poștala de efectuat" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" -msgstr "Adepti ai" +msgstr "Adepți ai" #. module: mail #: help:mail.mail,auto_delete:0 msgid "Permanently delete this email after sending it, to save space" msgstr "" -"Sterge definitiv acest mesaj dupa ce il trimite, pentru a economisi spatiu" +"Șterge definitiv acest mesaj după ce il trimite, pentru a economisi spațiu" #. module: mail #: model:ir.actions.client,name:mail.action_mail_group_feeds msgid "Discussion Group" -msgstr "Grup de Discutii" +msgstr "Grup de Discuții" #. module: mail #. openerp-web @@ -1352,14 +1351,14 @@ msgstr "Efectuat" #. module: mail #: model:mail.message.subtype,name:mail.mt_comment msgid "Discussions" -msgstr "Discutii" +msgstr "Discuții" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:11 #, python-format msgid "Follow" -msgstr "Urmarire" +msgstr "Urmărire" #. module: mail #: field:mail.group,name:0 @@ -1369,16 +1368,16 @@ msgstr "Nume" #. module: mail #: model:mail.group,name:mail.group_all_employees msgid "Whole Company" -msgstr "Intreaga Companie" +msgstr "Întreaga Companie" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" -msgstr "si" +msgstr "și" #. module: mail #: help:mail.mail,body_html:0 @@ -1392,7 +1391,7 @@ msgstr "Creare Luna" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Compune un Mesaj nou" @@ -1405,18 +1404,18 @@ msgstr "Meniu Asociat" #. module: mail #: view:mail.message:0 msgid "Content" -msgstr "Cuprins" +msgstr "Conținut" #. module: mail #: field:mail.mail,email_to:0 msgid "To" -msgstr "Catre" +msgstr "Către" #. module: mail #: field:mail.compose.message,notified_partner_ids:0 #: field:mail.message,notified_partner_ids:0 msgid "Notified partners" -msgstr "Parteneri instiintati" +msgstr "Parteneri înștiințați" #. module: mail #: help:mail.group,public:0 @@ -1424,13 +1423,13 @@ msgid "" "This group is visible by non members. Invisible groups can add " "members through the invite button." msgstr "" -"Acest grup este vizibil pentru non membri. Grupurile invizibile pot adauga " +"Acest grup este vizibil pentru non membri. Grupurile invizibile pot adăuga " "membri prin butonul de invitare." #. module: mail #: model:mail.group,name:mail.group_board msgid "Board meetings" -msgstr "Sedintele consiliului" +msgstr "Sedințele consiliului" #. module: mail #: constraint:mail.alias:0 @@ -1438,8 +1437,8 @@ msgid "" "Invalid expression, it must be a literal python dictionary definition e.g. " "\"{'field': 'value'}\"" msgstr "" -"Expresie nevalida, trebuie sa fie o definitie literala din dictionarul " -"python, de exemplu \"{'field': 'value'}\" ( \"{'camp': 'valoare'}\"" +"Expresie nevalidă, trebuie să fie o definiție literală din dicționarul " +"python, de exemplu \"{'camp': 'valoare'}\"" #. module: mail #: field:mail.alias,alias_model_id:0 @@ -1461,19 +1460,19 @@ msgstr "Descriere" #. module: mail #: model:ir.model,name:mail.model_mail_followers msgid "Document Followers" -msgstr "Urmariri Document" +msgstr "Urmăriri Document" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "Sterge aceasta urmarire" +msgstr "Șterge această urmărire" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Never" -msgstr "Niciodata" +msgstr "Niciodată" #. module: mail #: field:mail.mail,mail_server_id:0 @@ -1481,10 +1480,10 @@ msgid "Outgoing mail server" msgstr "Server trimitere e-mail-uri" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" -msgstr "Nu au fost gasite adresele de emai ale partenerilor" +msgstr "Nu au fost găsite adresele de email ale partenerilor" #. module: mail #: view:mail.mail:0 @@ -1495,7 +1494,7 @@ msgstr "Trimis" #. module: mail #: field:mail.mail,body_html:0 msgid "Rich-text Contents" -msgstr "Cuprins Rich-text" +msgstr "Conținut Rich-text" #. module: mail #: help:mail.compose.message,to_read:0 @@ -1515,7 +1514,7 @@ msgstr "" #: model:ir.actions.act_window,name:mail.action_view_groups #: model:ir.ui.menu,name:mail.mail_allgroups msgid "Join a group" -msgstr "Alaturati-va unui grup" +msgstr "Alaturați-vă unui grup" #. module: mail #: model:ir.actions.client,help:mail.action_mail_group_feeds @@ -1555,11 +1554,11 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:243 #, python-format msgid "Set back to Todo" -msgstr "Setati inapoi pe De efectuat" +msgstr "Setați înapoi pe De efectuat" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "documentul acesta" @@ -1572,7 +1571,7 @@ msgstr "Filtre" #. module: mail #: field:res.partner,notification_email_send:0 msgid "Receive Feeds by Email" -msgstr "Primiti Stiri prin Email" +msgstr "Primiți Știri prin Email" #. module: mail #: help:base.config.settings,alias_domain:0 @@ -1595,7 +1594,7 @@ msgstr "Mesaje" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "altele..." @@ -1604,7 +1603,7 @@ msgstr "altele..." #: model:ir.actions.client,name:mail.action_mail_star_feeds #: model:ir.ui.menu,name:mail.mail_starfeeds msgid "To-do" -msgstr "De facut" +msgstr "De făcut" #. module: mail #: view:mail.alias:0 @@ -1612,7 +1611,7 @@ msgstr "De facut" #: field:mail.group,alias_id:0 #: field:res.users,alias_id:0 msgid "Alias" -msgstr "Alias" +msgstr "" #. module: mail #: model:ir.model,name:mail.model_mail_mail @@ -1652,7 +1651,7 @@ msgid "" "Message subtypes followed, meaning subtypes that will be pushed onto the " "user's Wall." msgstr "" -"Au urmat subtipurile de mesaje, ceea ce inseamna subtipuri trimise " +"Au urmat subtipurile de mesaje, ceea ce înseamnă subtipuri trimise " "utilizatorului." #. module: mail @@ -1660,12 +1659,12 @@ msgstr "" #: help:mail.thread,message_ids:0 #: help:res.partner,message_ids:0 msgid "Messages and communication history" -msgstr "Istoric mesaje si conversatii" +msgstr "Istoric mesaje și conversații" #. module: mail #: help:mail.mail,references:0 msgid "Message references, such as identifiers of previous messages" -msgstr "Referinte mesaj, cum ar fi identificatorii mesajelor precedente" +msgstr "Referințe mesaj, cum ar fi identificatorii mesajelor precedente" #. module: mail #: field:mail.compose.message,composition_mode:0 @@ -1682,7 +1681,7 @@ msgstr "Modelul Documentului Asociat" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "spre deosebire de" @@ -1694,8 +1693,8 @@ msgid "" "Author of the message. If not set, email_from may hold an email address that " "did not match any partner." msgstr "" -"Autorul mesajului. Daca nu este selectat, email_from (expeditor_email) poate " -"sa contina o adresa de email care nu s-a potrivit cu nici un partener." +"Autorul mesajului. Dacă nu este selectat, email_from (expeditor_email) poate " +"să conțină o adresa de email care nu s-a potrivit cu nici un partener." #. module: mail #: help:mail.mail,email_cc:0 @@ -1711,7 +1710,7 @@ msgstr "Doemniu alias" #: code:addons/mail/update.py:93 #, python-format msgid "Error during communication with the publisher warranty server." -msgstr "Eroare in timpul comunicarii cu serverul garantiei editorului." +msgstr "Eroare în timpul comunicării cu serverul garanției editorului." #. module: mail #: selection:mail.group,public:0 @@ -1734,9 +1733,9 @@ msgstr "" "

\n" " Nimic de efectuat.\n" "

\n" -" Atunci cand preocesati mesajele din inbox, puteti marca " +" Atunci când procesați mesajele intrate, puteți marca " "unele\n" -" drept de efectuat. Din acest meniu, puteti " +" drept de efectuat. Din acest meniu, puteți " "procesa toate lucrurile de efectuat.\n" "

\n" " " @@ -1744,7 +1743,7 @@ msgstr "" #. module: mail #: selection:mail.mail,state:0 msgid "Delivery Failed" -msgstr "Livrarea a esuat" +msgstr "Livrarea a eșuat" #. module: mail #: field:mail.compose.message,partner_ids:0 @@ -1755,7 +1754,7 @@ msgstr "Contacte suplimentare" #: help:mail.compose.message,parent_id:0 #: help:mail.message,parent_id:0 msgid "Initial thread message." -msgstr "Continutul mesajului initial." +msgstr "Conținutul mesajului inițial." #. module: mail #: model:mail.group,name:mail.group_hr_policies @@ -1771,7 +1770,7 @@ msgstr "Doar email-uri" #: model:ir.actions.client,name:mail.action_mail_inbox_feeds #: model:ir.ui.menu,name:mail.mail_inboxfeeds msgid "Inbox" -msgstr "Casuta postala" +msgstr "Casuța poștală" #. module: mail #. openerp-web @@ -1785,7 +1784,7 @@ msgstr "Fisier" #: code:addons/mail/static/src/js/many2many_tags_email.js:63 #, python-format msgid "Please complete partner's informations and Email" -msgstr "Va rugam sa completati informatiile despre partener si Email-ul sau" +msgstr "Vă rugăm să completați informațiile despre partener și Email-ul sau" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_message_subtype @@ -1806,7 +1805,7 @@ msgstr "Fotografie de dimensiuni mici" #. module: mail #: help:mail.mail,reply_to:0 msgid "Preferred response address for the message" -msgstr "Adresa de raspuns preferata pentru mesaj" +msgstr "Adresa de răspuns preferată pentru mesaj" #~ msgid "Details" #~ msgstr "Detalii" diff --git a/addons/mail/i18n/ru.po b/addons/mail/i18n/ru.po index c0ae186a5bd..2da83368bd1 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Автор" @@ -127,7 +128,7 @@ msgstr "Мастер составления эл. почты" #: code:addons/mail/static/src/xml/mail_followers.xml:23 #, python-format msgid "Add others" -msgstr "Добавить других" +msgstr "Пригласить" #. module: mail #: field:mail.message.subtype,parent_id:0 @@ -143,7 +144,7 @@ msgstr "Непрочитанные сообщения" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "показать" @@ -160,7 +161,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Вы действительно хотите удалить это сообщение?" @@ -178,13 +179,13 @@ msgstr "Поиск групп" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" -msgstr "подписчики" +msgstr "подписано" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Доступ запрещен" @@ -213,7 +214,7 @@ msgid "Support" msgstr "Поддержка" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -280,8 +281,8 @@ msgstr "Дискуссионная группа" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "отправка данных" @@ -311,6 +312,9 @@ msgid "" "automatic subscription on a related document. The field is used to compute " "getattr(related_document.relation_field)." msgstr "" +"Поле, используемое для привязки модели к подтипу модели, когда используется " +"автоматическая подписка на документ. Поле используется для вычисления " +"getattr(related_document.relation_field)." #. module: mail #: selection:mail.mail,state:0 @@ -326,7 +330,7 @@ msgstr "Адрес ответа" #: code:addons/mail/wizard/invite.py:37 #, python-format msgid "
You have been invited to follow %s.
" -msgstr "
Вам было предложено отслеживать %s.
" +msgstr "
Вы были подписаны на %s.
" #. module: mail #: help:mail.group,message_unread:0 @@ -366,13 +370,13 @@ msgstr "Отписаться" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "показать еще одно сообщение" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -416,6 +420,9 @@ msgid "" "incoming email that does not reply to an existing record will cause the " "creation of a new record of this model (e.g. a Project Task)" msgstr "" +"Модель (вид документа), которой соответствует псевдоним. Любое входящее " +"письмо, не соответствующее имеющимся записям, приведет к созданию новой " +"записи в этой модели." #. module: mail #: field:mail.message.subtype,relation_field:0 @@ -430,7 +437,6 @@ msgstr "Системное уведомление" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Партнёр" @@ -483,7 +489,7 @@ msgstr "Отправить" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Нет подписчиков" @@ -514,8 +520,8 @@ msgstr "Архивы" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Удалить вложение" @@ -530,10 +536,10 @@ msgstr "Ответить" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" -msgstr "Один подписчик" +msgstr "1 подписчик" #. module: mail #: field:mail.compose.message,type:0 @@ -588,7 +594,7 @@ msgstr "Получатели" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -619,7 +625,7 @@ msgstr "Отправитель сообщения, взятый из настр #: code:addons/mail/wizard/invite.py:40 #, python-format msgid "
You have been invited to follow a new document.
" -msgstr "
Вы были приглашены для слежения за новым документом.
" +msgstr "
Вы были подписаны на новый документ.
" #. module: mail #: field:mail.compose.message,parent_id:0 @@ -682,7 +688,7 @@ msgid "Move to Inbox" msgstr "Переместить во входящие" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Ответ:" @@ -711,7 +717,7 @@ msgstr "Модель обсуждаемого ресурса" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "нравится" @@ -759,7 +765,7 @@ msgid "on" msgstr "на" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -774,6 +780,8 @@ msgid "" "A Python dictionary that will be evaluated to provide default values when " "creating new records for this alias." msgstr "" +"Словарь Python, который будет вычислен для получения значений по умолчанию " +"при создании записей для этого псевдонима." #. module: mail #: model:ir.model,name:mail.model_mail_message_subtype @@ -836,7 +844,7 @@ msgid "Send Now" msgstr "Отправить сейчас" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -860,7 +868,7 @@ msgstr "Фото" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -942,6 +950,8 @@ msgid "" "Description that will be added in the message posted for this subtype. If " "void, the name will be added instead." msgstr "" +"Описание, которое будет добавлено в сообщение для этого подтипа. Если не " +"заполнено, вместо него будет использоваться название." #. module: mail #: field:mail.compose.message,vote_user_ids:0 @@ -974,7 +984,7 @@ msgstr "Уведомление" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Пожалуйста дополните информацию о партнере" @@ -992,7 +1002,7 @@ msgstr "Подписчики выбранных пунктов и" #. module: mail #: field:mail.alias,alias_force_thread_id:0 msgid "Record Thread ID" -msgstr "" +msgstr "ID цепочки записей" #. module: mail #: model:ir.ui.menu,name:mail.mail_group_root @@ -1145,7 +1155,7 @@ msgstr "Расширенные фильтры..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Кому:" @@ -1169,7 +1179,7 @@ msgstr "По умолчанию" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "показать больше сообщений" @@ -1184,7 +1194,7 @@ msgstr "Добавить в список задач" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "" +msgstr "Вышестоящий подтип, используемый для автоподписки" #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite @@ -1203,6 +1213,8 @@ msgstr "Описание" msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" +"Модель, к которой применяется подтип. Если не выбрано, то применяется ко " +"всем моделям." #. module: mail #: field:mail.compose.message,subtype_id:0 @@ -1226,7 +1238,7 @@ msgstr "Отмеченные" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "больше сообщений" @@ -1260,6 +1272,9 @@ msgid "" "the sender (From) address, or will use the Administrator account if no " "system user is found for that address." msgstr "" +"Владелец записей, созданных по письмам с этим псевдонимом. Если это поле не " +"задано, система попытается найти подходящего владельца на основе отправителя " +"или сделает владельцем администратора." #. module: mail #. openerp-web @@ -1294,7 +1309,7 @@ msgstr "Вложения" #: field:mail.compose.message,record_name:0 #: field:mail.message,record_name:0 msgid "Message Record Name" -msgstr "" +msgstr "Название записи сообщения" #. module: mail #: field:mail.mail,email_cc:0 @@ -1308,7 +1323,7 @@ msgstr "Отмеченное сообщение, которое попадает #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1355,8 +1370,8 @@ msgstr "Вся компания" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1374,7 +1389,7 @@ msgstr "Месяц создания" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Написать новое сообщение" @@ -1406,11 +1421,13 @@ msgid "" "This group is visible by non members. Invisible groups can add " "members through the invite button." msgstr "" +"Эта группа видна для всех. Скрытые группы могут добавлятьчленов через кнопку " +"приглашения." #. module: mail #: model:mail.group,name:mail.group_board msgid "Board meetings" -msgstr "" +msgstr "Совещания" #. module: mail #: constraint:mail.alias:0 @@ -1461,7 +1478,7 @@ msgid "Outgoing mail server" msgstr "Сервер исходящей почты" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Эл. почта партнера не найдена" @@ -1489,7 +1506,7 @@ msgstr "" #: help:res.partner,notification_email_send:0 msgid "" "Choose in which case you want to receive an email when you receive new feeds." -msgstr "" +msgstr "Выберите в каких случаях Вы хотите получать письма по подписке." #. module: mail #: model:ir.actions.act_window,name:mail.action_view_groups @@ -1538,7 +1555,7 @@ msgstr "Вернуть в список задач" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "этого документа" @@ -1559,6 +1576,8 @@ msgid "" "If you have setup a catch-all email domain redirected to the OpenERP server, " "enter the domain name here." msgstr "" +"Если Вы настроили почтовый домен для перенаправления в OpenERP, введите его " +"имя." #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_message @@ -1572,7 +1591,7 @@ msgstr "Сообщения" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "остальные..." @@ -1603,6 +1622,8 @@ msgid "" "Technical field holding the message notifications. Use notified_partner_ids " "to access notified partners." msgstr "" +"Техническое поле, содержащее уведомления. Используйте notified_partner_ids " +"для доступа к оповещаемым партнерам." #. module: mail #: model:ir.ui.menu,name:mail.mail_feeds @@ -1626,7 +1647,7 @@ msgstr "Непрочитанное" msgid "" "Message subtypes followed, meaning subtypes that will be pushed onto the " "user's Wall." -msgstr "" +msgstr "Подтипы сообщений, на которые имеется подписка." #. module: mail #: help:mail.group,message_ids:0 @@ -1655,7 +1676,7 @@ msgstr "Модель связанного документа" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "не нравится" diff --git a/addons/mail/i18n/sl.po b/addons/mail/i18n/sl.po index 8dca991a1e2..791309c399c 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Avtor" @@ -139,7 +140,7 @@ msgstr "Neprebrana sporočila" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "prikaži" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Res želite brisati to sporočilo ?" @@ -171,13 +172,13 @@ msgstr "Iskanje skupin" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "sledilci" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Dostop zavrnjen" @@ -203,7 +204,7 @@ msgid "Support" msgstr "Podpora" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -269,8 +270,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "nalaganje" @@ -352,13 +353,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -414,7 +415,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Stranka" @@ -467,7 +467,7 @@ msgstr "Pošlji" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -498,8 +498,8 @@ msgstr "Arhivi" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Brisanje priponke" @@ -514,7 +514,7 @@ msgstr "Odgovori" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -569,7 +569,7 @@ msgstr "Prejemniki" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -657,7 +657,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -684,7 +684,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "kot" @@ -730,7 +730,7 @@ msgid "on" msgstr "vklopljeno" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -796,7 +796,7 @@ msgid "Send Now" msgstr "Pošlji zdaj" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -816,7 +816,7 @@ msgstr "Fotografija" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -926,7 +926,7 @@ msgstr "Obvestilo" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1079,7 +1079,7 @@ msgstr "Razširjeni filtri..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Za:" @@ -1103,7 +1103,7 @@ msgstr "Privzeto" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1160,7 +1160,7 @@ msgstr "Začeto" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1238,7 +1238,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1285,8 +1285,8 @@ msgstr "Celotno podjetje" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1304,7 +1304,7 @@ msgstr "Mesec kreiranja" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Novo sporočilo" @@ -1389,7 +1389,7 @@ msgid "Outgoing mail server" msgstr "Odhodni SMTP strežnik" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1457,7 +1457,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "ta dokument" @@ -1491,7 +1491,7 @@ msgstr "Sporočila" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "drugi..." @@ -1574,7 +1574,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/sr@latin.po b/addons/mail/i18n/sr@latin.po index 26dac34eda1..ed49b202840 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: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/sv.po b/addons/mail/i18n/sv.po index 6007819e45d..5f8cacce230 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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partner" @@ -464,7 +464,7 @@ msgstr "Skicka" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "Besvara" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "Mottagare" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "Skicka nu" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "Utökade filter..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1283,8 +1283,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1302,7 +1302,7 @@ msgstr "Månad skapad" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1387,7 +1387,7 @@ msgid "Outgoing mail server" msgstr "Utgående mailserver" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1455,7 +1455,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1489,7 +1489,7 @@ msgstr "Meddelanden" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1572,7 +1572,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/th.po b/addons/mail/i18n/th.po index a80d1aad14f..00dcb3716f7 100644 --- a/addons/mail/i18n/th.po +++ b/addons/mail/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: 2013-06-30 05:56+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/tr.po b/addons/mail/i18n/tr.po index 23dbab8d404..4689131e42a 100644 --- a/addons/mail/i18n/tr.po +++ b/addons/mail/i18n/tr.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 msgid "Followers Form" -msgstr "Takipçi Formu" +msgstr "İzleyici Kartı" #. module: mail #: model:ir.model,name:mail.model_publisher_warranty_contract @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Yazan" @@ -132,7 +133,7 @@ msgstr "Diğerlerini ekle" #. module: mail #: field:mail.message.subtype,parent_id:0 msgid "Parent" -msgstr "Ana" +msgstr "Üst" #. module: mail #: field:mail.group,message_unread:0 @@ -143,7 +144,7 @@ msgstr "Okunmamış Mesajlar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "göster" @@ -159,7 +160,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Bu mesajı gerçekten silmek istediğinizden emin misiniz?" @@ -177,13 +178,13 @@ msgstr "Grupları Ara" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" -msgstr "takipçiler" +msgstr "izleyiciler" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Erişim Rededildi" @@ -212,7 +213,7 @@ msgid "Support" msgstr "Destek" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -279,8 +280,8 @@ msgstr "Tartışma grubu" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "yükleniyor" @@ -345,7 +346,7 @@ msgstr "Orta boyutlu fotoğraf" #: model:ir.actions.client,name:mail.action_mail_to_me_feeds #: model:ir.ui.menu,name:mail.mail_tomefeeds msgid "To: me" -msgstr "Kime:" +msgstr "Kime: bana" #. module: mail #: field:mail.message.subtype,name:0 @@ -363,17 +364,17 @@ msgstr "Otomatik Sil" #: view:mail.group:0 #, python-format msgid "Unfollow" -msgstr "Takip etme" +msgstr "İzleme" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "bir ya da çok mesaj göster" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -407,8 +408,8 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" -"Sohbetçi özeti (mesaj sayısı, ...) barındırır. Bu özetdoğrudan html " -"formatında sipariş kanban görünümlerinde eklenecek." +"Sohbetçi özetini (mesaj sayısı, ...) barındırır. Bu özet kanban " +"görünümlerine eklenmek üzere doğrudan html biçimindedir." #. module: mail #: help:mail.alias,alias_model_id:0 @@ -434,7 +435,6 @@ msgstr "Sistem bildirimi" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "İş Ortağı" @@ -457,7 +457,7 @@ msgstr "İş Ortakları" #. module: mail #: view:mail.mail:0 msgid "Retry" -msgstr "Tekrar dene" +msgstr "Tekrar Dene" #. module: mail #: field:mail.compose.message,email_from:0 @@ -487,10 +487,10 @@ msgstr "Gönder" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" -msgstr "Takipçi Yok" +msgstr "İzleyici Yok" #. module: mail #: view:mail.mail:0 @@ -508,7 +508,7 @@ msgstr "Başarısız" #: field:res.partner,message_follower_ids:0 #, python-format msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: mail #: model:ir.actions.client,name:mail.action_mail_archives_feeds @@ -518,8 +518,8 @@ msgstr "Arşiv" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Bu eki sil" @@ -534,10 +534,10 @@ msgstr "Cevapla" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" -msgstr "Bir takipçi" +msgstr "Bir izleyici" #. module: mail #: field:mail.compose.message,type:0 @@ -591,7 +591,7 @@ msgstr "Alıcılar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -616,19 +616,19 @@ msgstr "Gruba Katıl" #. module: mail #: help:mail.mail,email_from:0 msgid "Message sender, taken from user preferences." -msgstr "Kullanıcı tercihlerine göre ​​alınan mesaj gönderen,." +msgstr "Mesaj gönderen, kullanıcı önceliklerinden ​​alınan." #. module: mail #: code:addons/mail/wizard/invite.py:40 #, python-format msgid "
You have been invited to follow a new document.
" -msgstr "
Sen yeni bir belge takip etmeye davet edildin.
" +msgstr "
Yeni bir belge izlemeye davet edildiniz.
" #. module: mail #: field:mail.compose.message,parent_id:0 #: field:mail.message,parent_id:0 msgid "Parent Message" -msgstr "Ana Mesaj" +msgstr "Üst Mesaj" #. module: mail #: field:mail.compose.message,res_id:0 @@ -682,10 +682,10 @@ msgstr "Gelişmiş" #: code:addons/mail/static/src/xml/mail.xml:244 #, python-format msgid "Move to Inbox" -msgstr "Geleni Taşı" +msgstr "Gelen Kutusuna Taşı" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Yanıt:" @@ -704,17 +704,17 @@ msgid "" "\"Settings > Users\" menu." msgstr "" "Bir kullanıcı oluşturamazsınız. Yeni kullanıcılar oluşturmak için " -"kullanmanız gereken \"Ayarlar > Kullanıcılar\" menü." +"kullanmanız gereken \"Ayarlar > Kullanıcılar\" menüsü." #. module: mail #: help:mail.followers,res_model:0 #: help:mail.wizard.invite,res_model:0 msgid "Model of the followed resource" -msgstr "Takip kaynağın Modeli" +msgstr "İzlenen kaynağın modeli" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "gibi" @@ -730,7 +730,7 @@ msgstr "Vazgeç" #: code:addons/mail/static/src/xml/mail.xml:47 #, python-format msgid "Share with my followers..." -msgstr "Benim takipçilerim ile paylaş ..." +msgstr "İzleyicilerim ile paylaş ..." #. module: mail #: field:mail.notification,partner_id:0 @@ -759,10 +759,10 @@ msgstr "Ekleri var" #. module: mail #: view:mail.mail:0 msgid "on" -msgstr "on" +msgstr "bunda" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -783,14 +783,14 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_mail_message_subtype msgid "Message subtypes" -msgstr "Mesaj alt tipleri" +msgstr "Mesaj alt-tipleri" #. module: mail #: help:mail.compose.message,notified_partner_ids:0 #: help:mail.message,notified_partner_ids:0 msgid "" "Partners that have a notification pushing this message in their mailboxes" -msgstr "Bu mesajı posta kutularına itekleme bildirimi olan iş ortakları" +msgstr "Bu mesajı iş ortakları posta kutularına iterek bildirim gönderir" #. module: mail #: selection:mail.compose.message,type:0 @@ -814,12 +814,13 @@ msgid "" " " msgstr "" "

\n" -" Hayırlı İşler! Gelen kutunuz boş.\n" +" İyi İşler! Gelen kutusu boş.\n" "

\n" -" Gelen kutunuz gönderilen özel mesajları veya e-postalar " -"içerir sen\n" -" ayrıca belge veya kontaklarla ilgili bilgilerinide \n" -" takip edersin.\n" +" Gelen kutusu size gönderilen özel mesajları veya e-" +"postaları\n" +" içerir,aynı zamanda izlediğiniz belge ya da kişilerle " +"ilgili \n" +" bilgileri de içerir.\n" "

\n" " " @@ -841,7 +842,7 @@ msgid "Send Now" msgstr "Şimdi Gönder" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -865,7 +866,7 @@ msgstr "Resim" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -927,7 +928,7 @@ msgstr "Mesaj" #: help:mail.followers,res_id:0 #: help:mail.wizard.invite,res_id:0 msgid "Id of the followed resource" -msgstr "Takipçini kayanak ıd si" +msgstr "İzlenen kaynağın Id i" #. module: mail #: field:mail.compose.message,body:0 @@ -979,10 +980,10 @@ msgstr "Bildirimler" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" -msgstr "Komple partnerin bilgisi lütfen" +msgstr "Lütfen iş ortağının bilgilerini tamamlayın" #. module: mail #: view:mail.wizard.invite:0 @@ -992,7 +993,7 @@ msgstr "İzleyici Ekle" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "Seçilen öğelerin takipçileri ve" +msgstr "Seçilen öğelerin izleyicileri ve" #. module: mail #: field:mail.alias,alias_force_thread_id:0 @@ -1109,7 +1110,7 @@ msgstr "Sadece Grup Seçilmiş" #: field:mail.thread,message_is_follower:0 #: field:res.partner,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçisi mi" +msgstr "Bir İzleyicidir" #. module: mail #: view:mail.alias:0 @@ -1147,7 +1148,7 @@ msgstr "Gelişmiş Filtreler..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Kime:" @@ -1157,7 +1158,7 @@ msgstr "Kime:" #: code:addons/mail/static/src/xml/mail.xml:193 #, python-format msgid "Write to my followers" -msgstr "Takipçilerin için yaz" +msgstr "İzleyicilerime yaz" #. module: mail #: model:ir.model,name:mail.model_res_groups @@ -1171,7 +1172,7 @@ msgstr "Öntanımlı" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "daha fazla mesaj göster" @@ -1186,7 +1187,7 @@ msgstr "Yapılacak olarak işaretle" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "Ana alt tip, otomatik abonelik için kullanılır." +msgstr "Üst alt-tipi, otomatik abonelik için kullanılır." #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite @@ -1214,7 +1215,7 @@ msgstr "" #: field:mail.message,subtype_id:0 #: view:mail.message.subtype:0 msgid "Subtype" -msgstr "Alttür" +msgstr "Alt-Tür" #. module: mail #: view:mail.group:0 @@ -1230,7 +1231,7 @@ msgstr "Yıldızlı" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "daha fazla mesaj" @@ -1246,7 +1247,7 @@ msgstr "Hata" #: code:addons/mail/static/src/xml/mail_followers.xml:13 #, python-format msgid "Following" -msgstr "Takip" +msgstr "İzleniyor" #. module: mail #: sql_constraint:mail.alias:0 @@ -1314,11 +1315,11 @@ msgstr "Yapılacaklar posta kutusuna giden yıldızlı mesaj" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" -msgstr "Takipçileri" +msgstr "Bunu izleyiciler" #. module: mail #: help:mail.mail,auto_delete:0 @@ -1347,7 +1348,7 @@ msgstr "Tartışmalar" #: code:addons/mail/static/src/xml/mail_followers.xml:11 #, python-format msgid "Follow" -msgstr "takip etme" +msgstr "İzle" #. module: mail #: field:mail.group,name:0 @@ -1357,12 +1358,12 @@ msgstr "Adı" #. module: mail #: model:mail.group,name:mail.group_all_employees msgid "Whole Company" -msgstr "Tüm Firma" +msgstr "Tüm Şirket" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1380,7 +1381,7 @@ msgstr "Oluşturma Ayı" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Yeni Mesaj Yaz" @@ -1418,7 +1419,7 @@ msgstr "" #. module: mail #: model:mail.group,name:mail.group_board msgid "Board meetings" -msgstr "Yönetim Kurulu toplantıları" +msgstr "Yönetim Kurulu Toplantıları" #. module: mail #: constraint:mail.alias:0 @@ -1449,14 +1450,14 @@ msgstr "Açıklama" #. module: mail #: model:ir.model,name:mail.model_mail_followers msgid "Document Followers" -msgstr "Belge Takipçileri" +msgstr "Belge İzleyicileri" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "Bu takipçisi kaldır" +msgstr "Bu izleyiciyi kaldır" #. module: mail #: selection:res.partner,notification_email_send:0 @@ -1469,7 +1470,7 @@ msgid "Outgoing mail server" msgstr "Giden mail sunucusu" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Partnerler e-posta bulunamadı adresleri" @@ -1503,7 +1504,7 @@ msgstr "" #: model:ir.actions.act_window,name:mail.action_view_groups #: model:ir.ui.menu,name:mail.mail_allgroups msgid "Join a group" -msgstr "Bir gruba katılın" +msgstr "Bir Gruba Katılın" #. module: mail #: model:ir.actions.client,help:mail.action_mail_group_feeds @@ -1547,7 +1548,7 @@ msgstr "Yapılacak geri ayarlayın" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "bu belgede" @@ -1583,7 +1584,7 @@ msgstr "Mesajlar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "digerleri..." @@ -1640,7 +1641,7 @@ msgid "" "Message subtypes followed, meaning subtypes that will be pushed onto the " "user's Wall." msgstr "" -"Mesaj alt tipleri izledi, kullanıcının Duvarına iteklenecek al tipler " +"Mesaj alt tipleri izlendi, kullanıcının Duvarına iteklenecek al tipler " "anlamına gelir." #. module: mail @@ -1670,7 +1671,7 @@ msgstr "İlgili Döküman Modeli" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "farklı" @@ -1722,7 +1723,7 @@ msgstr "" "

\n" " Yapılacak bir şey yok.\n" "

\n" -" Geln kutunuzdaki mesajları işlerken, bazılarını " +" Gelen kutusundaki mesajları işlerken, bazılarını " "yapılacaklar\n" " olarak işaretleyebilirsiniz. Bu menüden, bütün " "yapılacaklarınızı işleyebilirsiniz.\n" @@ -1759,7 +1760,7 @@ msgstr "Sadece E-postalar" #: model:ir.actions.client,name:mail.action_mail_inbox_feeds #: model:ir.ui.menu,name:mail.mail_inboxfeeds msgid "Inbox" -msgstr "Gelenler" +msgstr "Gelen Kutusu" #. module: mail #. openerp-web @@ -1773,13 +1774,13 @@ msgstr "Dosya" #: code:addons/mail/static/src/js/many2many_tags_email.js:63 #, python-format msgid "Please complete partner's informations and Email" -msgstr "Komple partnerin bilgi ve e-posta lütfen" +msgstr "Lütfen iş ortağının bilgilerini ve epostasını tamamlayın" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_message_subtype #: model:ir.ui.menu,name:mail.menu_message_subtype msgid "Subtypes" -msgstr "Alttürleri" +msgstr "Alt-Türler" #. module: mail #: model:ir.model,name:mail.model_mail_alias diff --git a/addons/mail/i18n/vi.po b/addons/mail/i18n/vi.po index 9f7569bddf7..f2496c2f1cd 100644 --- a/addons/mail/i18n/vi.po +++ b/addons/mail/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: 2013-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/zh_CN.po b/addons/mail/i18n/zh_CN.po index ba839ebc5bd..ab95c7225bc 100644 --- a/addons/mail/i18n/zh_CN.po +++ b/addons/mail/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-23 11:23+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \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: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "作者" @@ -139,7 +140,7 @@ msgstr "未读信息" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "显示" @@ -153,7 +154,7 @@ msgstr "这些群组的成员将自动添加为关注者。注意, 如果有必 #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "你确信要删除这些消息吗?" @@ -171,13 +172,13 @@ msgstr "搜索群组" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "关注者" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "访问被拒绝" @@ -203,7 +204,7 @@ msgid "Support" msgstr "支持" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -269,8 +270,8 @@ msgstr "讨论群组" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "上传中" @@ -352,13 +353,13 @@ msgstr "取消关注" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "显示一个或多个消息" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -414,7 +415,6 @@ msgstr "系统通知" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "业务伙伴" @@ -467,7 +467,7 @@ msgstr "发送" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "没有关注者" @@ -498,8 +498,8 @@ msgstr "存档" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "删除这个附件" @@ -514,7 +514,7 @@ msgstr "回复" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "一个关注者" @@ -569,7 +569,7 @@ msgstr "收件人" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -664,7 +664,7 @@ msgid "Move to Inbox" msgstr "移动到收件箱" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "回复:" @@ -691,7 +691,7 @@ msgstr "关注资源的模型" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "+1" @@ -737,7 +737,7 @@ msgid "on" msgstr "在" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -809,7 +809,7 @@ msgid "Send Now" msgstr "现在发送" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -829,7 +829,7 @@ msgstr "照片" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -939,7 +939,7 @@ msgstr "通知" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "请完成上级的信息" @@ -1100,7 +1100,7 @@ msgstr "扩展过滤器..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "到:" @@ -1124,7 +1124,7 @@ msgstr "默认" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "显示更多消息" @@ -1181,7 +1181,7 @@ msgstr "加星的邮件" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "更多消息" @@ -1261,7 +1261,7 @@ msgstr "加星号的消息进入到 待办事项 邮箱" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1308,8 +1308,8 @@ msgstr "整个公司" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1327,7 +1327,7 @@ msgstr "创建月份" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "写新消息" @@ -1412,7 +1412,7 @@ msgid "Outgoing mail server" msgstr "邮件发送服务器" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "合作伙伴邮件地址没找到" @@ -1486,7 +1486,7 @@ msgstr "设置回待办事项" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "这个文档" @@ -1520,7 +1520,7 @@ msgstr "消息" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "其它..." @@ -1603,7 +1603,7 @@ msgstr "相关单据模型" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "-1" diff --git a/addons/mail/i18n/zh_TW.po b/addons/mail/i18n/zh_TW.po index f7b38e9c36c..f31639fd15d 100644 --- a/addons/mail/i18n/zh_TW.po +++ b/addons/mail/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:30+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "作者" @@ -139,7 +140,7 @@ msgstr "未讀郵件" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "顯示" @@ -153,7 +154,7 @@ msgstr "群組成員將自動成為信件追隨者。需注意的是,必要時 #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "請確認是否刪除此訊息" @@ -171,13 +172,13 @@ msgstr "搜尋群組" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "關注者" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "拒絕存取" @@ -203,7 +204,7 @@ msgid "Support" msgstr "支援" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -268,8 +269,8 @@ msgstr "討論群組" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "上傳" @@ -351,13 +352,13 @@ msgstr "取消跟隨" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "再顯示一則訊息" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -413,7 +414,6 @@ msgstr "系統通知" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "夥伴" @@ -466,7 +466,7 @@ msgstr "傳送" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "無關注者" @@ -497,8 +497,8 @@ msgstr "封存" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "刪除附加檔" @@ -513,7 +513,7 @@ msgstr "回覆" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "一位關注者" @@ -568,7 +568,7 @@ msgstr "收件者" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "上一步" @@ -662,7 +662,7 @@ msgid "Move to Inbox" msgstr "移至收件匣" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -689,7 +689,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "類似" @@ -737,7 +737,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -803,7 +803,7 @@ msgid "Send Now" msgstr "立即傳送" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -823,7 +823,7 @@ msgstr "照片" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -933,7 +933,7 @@ msgstr "通知" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "請完成夥伴的資訊" @@ -1086,7 +1086,7 @@ msgstr "增加篩選條件..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "至:" @@ -1110,7 +1110,7 @@ msgstr "預設值" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "顯示更多訊息" @@ -1167,7 +1167,7 @@ msgstr "已加星號" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "更多訊息" @@ -1245,7 +1245,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1292,8 +1292,8 @@ msgstr "全公司" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1311,7 +1311,7 @@ msgstr "建立月份" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "撰寫新訊息" @@ -1396,7 +1396,7 @@ msgid "Outgoing mail server" msgstr "外送郵件伺服器" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "找不到夥伴郵件地址" @@ -1471,7 +1471,7 @@ msgstr "重新設回代辦事項" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "本文件" @@ -1505,7 +1505,7 @@ msgstr "訊息" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "其他..." @@ -1588,7 +1588,7 @@ msgstr "相關文件模型" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/mail_followers.py b/addons/mail/mail_followers.py index ac350810aa6..0059df90530 100644 --- a/addons/mail/mail_followers.py +++ b/addons/mail/mail_followers.py @@ -77,7 +77,7 @@ class mail_notification(osv.Model): if not cr.fetchone(): cr.execute('CREATE INDEX mail_notification_partner_id_read_starred_message_id ON mail_notification (partner_id, read, starred, message_id)') - def get_partners_to_notify(self, cr, uid, message, partners_to_notify=None, context=None): + def get_partners_to_email(self, cr, uid, ids, message, context=None): """ Return the list of partners to notify, based on their preferences. :param browse_record message: mail.message to notify @@ -85,13 +85,10 @@ class mail_notification(osv.Model): the notifications to process """ notify_pids = [] - for notification in message.notification_ids: + for notification in self.browse(cr, uid, ids, context=context): if notification.read: continue partner = notification.partner_id - # If partners_to_notify specified: restrict to them - if partners_to_notify is not None and partner.id not in partners_to_notify: - continue # Do not send to partners without email address defined if not partner.email: continue @@ -143,14 +140,62 @@ class mail_notification(osv.Model): company = user.company_id.name sent_by = _('Sent by %(company)s using %(openerp)s.') signature_company = '%s' % (sent_by % { - 'company': company, - 'openerp': "OpenERP" - }) + 'company': company, + 'openerp': "OpenERP" + }) footer = tools.append_content_to_html(footer, signature_company, plaintext=False, container_tag='div') return footer - def _notify(self, cr, uid, msg_id, partners_to_notify=None, context=None, + def update_message_notification(self, cr, uid, ids, message_id, partner_ids, context=None): + existing_pids = set() + new_pids = set() + new_notif_ids = [] + + for notification in self.browse(cr, uid, ids, context=context): + existing_pids.add(notification.partner_id.id) + + # update existing notifications + self.write(cr, uid, ids, {'read': False}, context=context) + + # create new notifications + new_pids = set(partner_ids) - existing_pids + for new_pid in new_pids: + new_notif_ids.append(self.create(cr, uid, {'message_id': message_id, 'partner_id': new_pid, 'read': False}, context=context)) + return new_notif_ids + + def _notify_email(self, cr, uid, ids, message_id, force_send=False, user_signature=True, context=None): + message = self.pool['mail.message'].browse(cr, SUPERUSER_ID, message_id, context=context) + + # compute partners + email_pids = self.get_partners_to_email(cr, uid, ids, message, context=None) + if not email_pids: + return True + + # compute email body (signature, company data) + body_html = message.body + user_id = message.author_id and message.author_id.user_ids and message.author_id.user_ids[0] and message.author_id.user_ids[0].id or None + if user_signature: + signature_company = self.get_signature_footer(cr, uid, user_id, res_model=message.model, res_id=message.res_id, context=context) + body_html = tools.append_content_to_html(body_html, signature_company, plaintext=False, container_tag='div') + + # compute email references + references = message.parent_id.message_id if message.parent_id else False + + # create email values + mail_values = { + 'mail_message_id': message.id, + 'auto_delete': True, + 'body_html': body_html, + 'recipient_ids': [(4, id) for id in email_pids], + 'references': references, + } + email_notif_id = self.pool.get('mail.mail').create(cr, uid, mail_values, context=context) + if force_send: + self.pool.get('mail.mail').send(cr, uid, [email_notif_id], context=context) + return True + + def _notify(self, cr, uid, message_id, partners_to_notify=None, context=None, force_send=False, user_signature=True): """ Send by email the notification depending on the user preferences @@ -162,57 +207,14 @@ class mail_notification(osv.Model): :param bool user_signature: if True, the generated mail.mail body is the body of the related mail.message with the author's signature """ - if context is None: - context = {} - mail_message_obj = self.pool.get('mail.message') + notif_ids = self.search(cr, SUPERUSER_ID, [('message_id', '=', message_id), ('partner_id', 'in', partners_to_notify)], context=context) - # optional list of partners to notify: subscribe them if not already done or update the notification - if partners_to_notify: - notifications_to_update = [] - notified_partners = [] - notif_ids = self.search(cr, SUPERUSER_ID, [('message_id', '=', msg_id), ('partner_id', 'in', partners_to_notify)], context=context) - for notification in self.browse(cr, SUPERUSER_ID, notif_ids, context=context): - notified_partners.append(notification.partner_id.id) - notifications_to_update.append(notification.id) - partners_to_notify = filter(lambda item: item not in notified_partners, partners_to_notify) - if notifications_to_update: - self.write(cr, SUPERUSER_ID, notifications_to_update, {'read': False}, context=context) - mail_message_obj.write(cr, uid, msg_id, {'notified_partner_ids': [(4, id) for id in partners_to_notify]}, context=context) + # update or create notifications + new_notif_ids = self.update_message_notification(cr, SUPERUSER_ID, notif_ids, message_id, partners_to_notify, context=context) # mail_notify_noemail (do not send email) or no partner_ids: do not send, return - if context.get('mail_notify_noemail'): + if context and context.get('mail_notify_noemail'): return True + # browse as SUPERUSER_ID because of access to res_partner not necessarily allowed - msg = self.pool.get('mail.message').browse(cr, SUPERUSER_ID, msg_id, context=context) - notify_partner_ids = self.get_partners_to_notify(cr, uid, msg, partners_to_notify=partners_to_notify, context=context) - if not notify_partner_ids: - return True - - # add the context in the email - # TDE FIXME: commented, to be improved in a future branch - # quote_context = self.pool.get('mail.message').message_quote_context(cr, uid, msg_id, context=context) - - # add signature - body_html = msg.body - user_id = msg.author_id and msg.author_id.user_ids and msg.author_id.user_ids[0] and msg.author_id.user_ids[0].id or None - if user_signature: - signature_company = self.get_signature_footer(cr, uid, user_id, res_model=msg.model, res_id=msg.res_id, context=context) - body_html = tools.append_content_to_html(body_html, signature_company, plaintext=False, container_tag='div') - - references = False - if msg.parent_id: - references = msg.parent_id.message_id - - mail_values = { - 'mail_message_id': msg.id, - 'auto_delete': True, - 'body_html': body_html, - 'recipient_ids': [(4, id) for id in notify_partner_ids], - 'references': references, - } - mail_mail = self.pool.get('mail.mail') - email_notif_id = mail_mail.create(cr, uid, mail_values, context=context) - - if force_send: - mail_mail.send(cr, uid, [email_notif_id], context=context) - return True + self._notify_email(cr, SUPERUSER_ID, new_notif_ids, message_id, force_send, user_signature, context=context) diff --git a/addons/mail/mail_group.py b/addons/mail/mail_group.py index 9e363065481..5a9f8751f2d 100644 --- a/addons/mail/mail_group.py +++ b/addons/mail/mail_group.py @@ -76,7 +76,7 @@ class mail_group(osv.Model): help="Small-sized photo of the group. It is automatically "\ "resized as a 64x64px image, with aspect ratio preserved. "\ "Use this field anywhere a small image is required."), - 'alias_id': fields.many2one('mail.alias', 'Alias', ondelete="cascade", required=True, + 'alias_id': fields.many2one('mail.alias', 'Alias', ondelete="restrict", required=True, help="The email address associated with this group. New emails received will automatically " "create new topics."), } diff --git a/addons/mail/mail_mail.py b/addons/mail/mail_mail.py index bf76216e7e4..91799b0ac63 100644 --- a/addons/mail/mail_mail.py +++ b/addons/mail/mail_mail.py @@ -61,15 +61,9 @@ class mail_mail(osv.Model): # Auto-detected based on create() - if 'mail_message_id' was passed then this mail is a notification # and during unlink() we will not cascade delete the parent and its attachments 'notification': fields.boolean('Is Notification', - help='Mail has been created to notify people of an existing mail.message') + help='Mail has been created to notify people of an existing mail.message'), } - def _get_default_from(self, cr, uid, context=None): - """ Kept for compatibility - TDE TODO: remove me in 8.0 - """ - return self.pool['mail.message']._get_default_from(cr, uid, context=context) - _defaults = { 'state': 'outgoing', } @@ -81,67 +75,10 @@ class mail_mail(osv.Model): context = dict(context, default_type=None) return super(mail_mail, self).default_get(cr, uid, fields, context=context) - def _get_reply_to(self, cr, uid, values, context=None): - """ Return a specific reply_to: alias of the document through message_get_reply_to - or take the email_from - """ - # if value specified: directly return it - if values.get('reply_to'): - return values.get('reply_to') - format_name = True # whether to use a 'Followers of Pigs catchall alias - if not email_reply_to: - catchall_alias = ir_config_parameter.get_param(cr, uid, "mail.catchall.alias", context=context) - if catchall_domain and catchall_alias: - email_reply_to = '%s@%s' % (catchall_alias, catchall_domain) - - # still no reply_to -> reply_to will be the email_from - if not email_reply_to and email_from: - email_reply_to = email_from - - # format 'Document name ' - if email_reply_to and model and res_id and format_name: - emails = tools.email_split(email_reply_to) - if emails: - email_reply_to = emails[0] - document_name = self.pool[model].name_get(cr, SUPERUSER_ID, [res_id], context=context)[0] - if document_name: - # sanitize document name - sanitized_doc_name = re.sub(r'[^\w+.]+', '-', document_name[1]) - # generate reply to - email_reply_to = _('"Followers of %s" <%s>') % (sanitized_doc_name, email_reply_to) - - return email_reply_to - def create(self, cr, uid, values, context=None): # notification field: if not set, set if mail comes from an existing mail.message if 'notification' not in values and values.get('mail_message_id'): values['notification'] = True - # reply_to: if not set, set with default values that require creation values - if not values.get('reply_to'): - values['reply_to'] = self._get_reply_to(cr, uid, values, context=context) return super(mail_mail, self).create(cr, uid, values, context=context) def unlink(self, cr, uid, ids, context=None): @@ -207,11 +144,6 @@ class mail_mail(osv.Model): # mail_mail formatting, tools and send mechanism #------------------------------------------------------ - # TODO in 8.0(+): maybe factorize this to enable in modules link generation - # independently of mail_mail model - # TODO in 8.0(+): factorize doc name sanitized and 'Followers of ...' formatting - # because it begins to appear everywhere - def _get_partner_access_link(self, cr, uid, mail, partner=None, context=None): """ Generate URLs for links in mails: - partner is an user and has read access to the document: direct link to document with model, res_id @@ -226,8 +158,8 @@ class mail_mail(osv.Model): } if mail.notification: fragment.update({ - 'message_id': mail.mail_message_id.id, - }) + 'message_id': mail.mail_message_id.id, + }) url = urljoin(base_url, "?%s#%s" % (urlencode(query), urlencode(fragment))) return _("""Access your messages and documents in OpenERP""") % url else: @@ -319,25 +251,37 @@ class mail_mail(osv.Model): email_list.append(self.send_get_email_dict(cr, uid, mail, context=context)) for partner in mail.recipient_ids: email_list.append(self.send_get_email_dict(cr, uid, mail, partner=partner, context=context)) + # headers + headers = {} + bounce_alias = self.pool['ir.config_parameter'].get_param(cr, uid, "mail.bounce.alias", context=context) + catchall_domain = self.pool['ir.config_parameter'].get_param(cr, uid, "mail.catchall.domain", context=context) + if bounce_alias and catchall_domain: + if mail.model and mail.res_id: + headers['Return-Path'] = '%s-%d-%s-%d@%s' % (bounce_alias, mail.id, mail.model, mail.res_id, catchall_domain) + else: + headers['Return-Path'] = '%s-%d@%s' % (bounce_alias, mail.id, catchall_domain) # build an RFC2822 email.message.Message object and send it without queuing + res = None for email in email_list: msg = ir_mail_server.build_email( - email_from = mail.email_from, - email_to = email.get('email_to'), - subject = email.get('subject'), - body = email.get('body'), - body_alternative = email.get('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 = 'plain') + email_from=mail.email_from, + email_to=email.get('email_to'), + subject=email.get('subject'), + body=email.get('body'), + body_alternative=email.get('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='plain', + headers=headers) res = ir_mail_server.send_email(cr, uid, msg, - mail_server_id=mail.mail_server_id.id, context=context) + mail_server_id=mail.mail_server_id.id, + context=context) if res: mail.write({'state': 'sent', 'message_id': res}) mail_sent = True diff --git a/addons/mail/mail_mail_view.xml b/addons/mail/mail_mail_view.xml index f3728d4653a..dd6a78fd8a4 100644 --- a/addons/mail/mail_mail_view.xml +++ b/addons/mail/mail_mail_view.xml @@ -14,7 +14,7 @@

-
+
by on
+ + + + + - + - + - + """ - status = "Not Finished" - if response.state == "done": status = "Finished" + status = _("Not Finished") + if response.state == "done": status = _("Finished") colwidth = str(tbl_width - 7) + "cm," colwidth += "7cm" rml += """ - + """ @@ -242,7 +243,7 @@ class survey_browse_response(report_rml): for page in survey.page_ids: rml += """ - + """ if page.note: rml += """ @@ -302,7 +303,7 @@ class survey_browse_response(report_rml): else: rml +=""" - + """ elif que.type in ['multiple_choice_only_one_ans','multiple_choice_multiple_ans']: diff --git a/addons/survey/survey_view.xml b/addons/survey/survey_view.xml index 2a94dc59e62..f6973a5bc30 100644 --- a/addons/survey/survey_view.xml +++ b/addons/survey/survey_view.xml @@ -44,7 +44,7 @@ - + @@ -1012,7 +1012,7 @@ - + @@ -1125,7 +1125,7 @@ - + diff --git a/addons/survey/wizard/survey_answer.py b/addons/survey/wizard/survey_answer.py index 7e58c8a10eb..5b9bbb5de7e 100644 --- a/addons/survey/wizard/survey_answer.py +++ b/addons/survey/wizard/survey_answer.py @@ -173,8 +173,8 @@ class survey_question_wiz(osv.osv_memory): # TODO: l10n, cleanup this code to make it readable. Or template? xml_group = etree.SubElement(xml_form, 'group', {'col': '40', 'colspan': '4'}) record = sur_response_obj.browse(cr, uid, context['response_id'][context['response_no']]) - etree.SubElement(xml_group, 'label', {'string': to_xml(tools.ustr('Answer Of :- ' + record.user_id.name + ', Date :- ' + record.date_create.split('.')[0] )), 'align':"0.0"}) - etree.SubElement(xml_group, 'label', {'string': to_xml(tools.ustr(" Answer :- " + str(context.get('response_no',0) + 1) +"/" + str(len(context.get('response_id',0))) )), 'align':"0.0"}) + etree.SubElement(xml_group, 'label', {'string': to_xml(tools.ustr(_('Answer Of :- ') + record.user_id.name + _(', Date :- ') + record.date_create.split('.')[0] )), 'align':"0.0"}) + etree.SubElement(xml_group, 'label', {'string': to_xml(tools.ustr(_(" Answer :- ") + str(context.get('response_no',0) + 1) +"/" + str(len(context.get('response_id',0))) )), 'align':"0.0"}) if context.get('response_no',0) > 0: etree.SubElement(xml_group, 'button', {'colspan':"1",'icon':"gtk-go-back",'name':"action_forward_previous",'string': tools.ustr("Previous Answer"),'type':"object"}) if context.get('response_no',0) + 1 < len(context.get('response_id',0)): @@ -221,7 +221,7 @@ class survey_question_wiz(osv.osv_memory): selection.append((tools.ustr(ans.id), ans.answer)) xml_group = etree.SubElement(xml_group, 'group', {'col': '2', 'colspan': '2'}) etree.SubElement(xml_group, 'field', {'readonly':str(readonly), 'name': tools.ustr(que.id) + "_selection"}) - fields[tools.ustr(que.id) + "_selection"] = {'type':'selection', 'selection' :selection, 'string':"Answer"} + fields[tools.ustr(que.id) + "_selection"] = {'type':'selection', 'selection' :selection, 'string':_('Answer')} elif que_rec.type == 'multiple_choice_multiple_ans': xml_group = etree.SubElement(xml_group, 'group', {'col': '4', 'colspan': '4'}) @@ -374,10 +374,10 @@ class survey_question_wiz(osv.osv_memory): if pre_button: etree.SubElement(xml_footer, 'label', {'string': ""}) - etree.SubElement(xml_footer, 'button', {'name':"action_previous",'string':"Previous",'type':"object"}) - but_string = "Next" + etree.SubElement(xml_footer, 'button', {'name':"action_previous",'string':_('Previous'),'type':"object"}) + but_string = _('Next') if int(page_number) + 1 == total_pages: - but_string = "Done" + but_string = _('Done') if context.has_key('active') and context.get('active',False) and int(page_number) + 1 == total_pages and context.has_key('response_id') and context.has_key('response_no') and context.get('response_no',0) + 1 == len(context.get('response_id',0)): etree.SubElement(xml_footer, 'label', {'string': ""}) etree.SubElement(xml_footer, 'button', {'special' : 'cancel','string': tools.ustr("Done") ,'context' : tools.ustr(context), 'class':"oe_highlight"}) @@ -390,8 +390,8 @@ class survey_question_wiz(osv.osv_memory): else: etree.SubElement(xml_footer, 'label', {'string': ""}) etree.SubElement(xml_footer, 'button', {'name':"action_next",'string': tools.ustr(but_string) ,'type':"object",'context' : tools.ustr(context), 'class':"oe_highlight"}) - etree.SubElement(xml_footer, 'label', {'string': "or"}) - etree.SubElement(xml_footer, 'button', {'special': "cancel",'string':"Exit",'class':"oe_link"}) + etree.SubElement(xml_footer, 'label', {'string': _('or')}) + etree.SubElement(xml_footer, 'button', {'special': "cancel",'string':_('Exit'),'class':"oe_link"}) etree.SubElement(xml_footer, 'label', {'string': tools.ustr(page_number+ 1) + "/" + tools.ustr(total_pages), 'class':"oe_survey_title_page oe_right"}) root = xml_form.getroottree() diff --git a/addons/warning/i18n/ar.po b/addons/warning/i18n/ar.po index 6b1ab168a1d..63fc16e35fe 100644 --- a/addons/warning/i18n/ar.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/bg.po b/addons/warning/i18n/bg.po index fba5beaef33..dbae8d55c96 100644 --- a/addons/warning/i18n/bg.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/bs.po b/addons/warning/i18n/bs.po index f10d8541159..2dfe50e947b 100644 --- a/addons/warning/i18n/bs.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ca.po b/addons/warning/i18n/ca.po index 056bb00e1dc..a08fa5307cd 100644 --- a/addons/warning/i18n/ca.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/cs.po b/addons/warning/i18n/cs.po index de171f5074a..4574cbfd1e2 100644 --- a/addons/warning/i18n/cs.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/da.po b/addons/warning/i18n/da.po index 978aa7ccda7..d5b83e82472 100644 --- a/addons/warning/i18n/da.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/de.po b/addons/warning/i18n/de.po index 4c0df2a3b26..09727cbaeb2 100644 --- a/addons/warning/i18n/de.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/el.po b/addons/warning/i18n/el.po index 4ca6192d153..8ddeee25df3 100644 --- a/addons/warning/i18n/el.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/es.po b/addons/warning/i18n/es.po index cd20245a931..de674ccbd3b 100644 --- a/addons/warning/i18n/es.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/es_AR.po b/addons/warning/i18n/es_AR.po index eb17f184d69..ba4ea91747f 100644 --- a/addons/warning/i18n/es_AR.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/es_CR.po b/addons/warning/i18n/es_CR.po index f8e95a5f776..f2931dc81f5 100644 --- a/addons/warning/i18n/es_CR.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: warning diff --git a/addons/warning/i18n/et.po b/addons/warning/i18n/et.po index 96a4f39016b..499c57adbd1 100644 --- a/addons/warning/i18n/et.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/fi.po b/addons/warning/i18n/fi.po index 16a302fe4e0..34068247176 100644 --- a/addons/warning/i18n/fi.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/fr.po b/addons/warning/i18n/fr.po index 64a42c58c33..6fcbedea926 100644 --- a/addons/warning/i18n/fr.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/gl.po b/addons/warning/i18n/gl.po index 7b8cde688ce..235acef4437 100644 --- a/addons/warning/i18n/gl.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/hr.po b/addons/warning/i18n/hr.po index 341489d2fb4..9fb73c48185 100644 --- a/addons/warning/i18n/hr.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: hr\n" #. module: warning diff --git a/addons/warning/i18n/hu.po b/addons/warning/i18n/hu.po index c841ae984ed..da907f02b3b 100644 --- a/addons/warning/i18n/hu.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/id.po b/addons/warning/i18n/id.po index 6a5d5ec37cc..473deed4e72 100644 --- a/addons/warning/i18n/id.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/it.po b/addons/warning/i18n/it.po index 0f040b07bb9..d9d617dd063 100644 --- a/addons/warning/i18n/it.po +++ b/addons/warning/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" "PO-Revision-Date: 2012-12-03 20:55+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ja.po b/addons/warning/i18n/ja.po index 610b4a201f7..3d216d46227 100644 --- a/addons/warning/i18n/ja.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ko.po b/addons/warning/i18n/ko.po index 76e38a82811..74d3a42610f 100644 --- a/addons/warning/i18n/ko.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/lt.po b/addons/warning/i18n/lt.po index 70cc0306a3a..71c16e88724 100644 --- a/addons/warning/i18n/lt.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/mk.po b/addons/warning/i18n/mk.po index d0cbb7d32c7..69d878dcecf 100644 --- a/addons/warning/i18n/mk.po +++ b/addons/warning/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line @@ -120,6 +120,9 @@ msgid "" "Selecting \"Blocking Message\" will throw an exception with the message and " "block the flow. The Message has to be written in the next field." msgstr "" +"Селектирањето на опцијата \"Внимание\" ќе го извести корисникот со порака, " +"селектирањето на \"Блокирање на порака\" ќе го отврли исклучокот со порака и " +"ќе го блокира текот. Пораката треба да биде напишана во наредното поле." #. module: warning #: code:addons/warning/warning.py:67 @@ -132,7 +135,7 @@ msgstr "" #: code:addons/warning/warning.py:299 #, python-format msgid "Alert for %s !" -msgstr "Алармирање за %s !" +msgstr "Аларм за %s !" #. module: warning #: view:res.partner:0 @@ -206,7 +209,7 @@ msgstr "Налог за продажба" #. module: warning #: model:ir.model,name:warning.model_stock_picking_out msgid "Delivery Orders" -msgstr "Налози за испорака" +msgstr "Испратници" #. module: warning #: model:ir.model,name:warning.model_sale_order_line diff --git a/addons/warning/i18n/mn.po b/addons/warning/i18n/mn.po index 9766b74f993..f26b80a0bea 100644 --- a/addons/warning/i18n/mn.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/nb.po b/addons/warning/i18n/nb.po index 388ac97ab23..623c65eb8e4 100644 --- a/addons/warning/i18n/nb.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/nl.po b/addons/warning/i18n/nl.po index 7e5c611f1ee..64478f55d6a 100644 --- a/addons/warning/i18n/nl.po +++ b/addons/warning/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" "PO-Revision-Date: 2012-12-21 19:08+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/nl_BE.po b/addons/warning/i18n/nl_BE.po index e5983fc966b..64827f9336e 100644 --- a/addons/warning/i18n/nl_BE.po +++ b/addons/warning/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: 2013-06-30 05:56+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/pl.po b/addons/warning/i18n/pl.po index f652736cd96..4ee3a8f0de7 100644 --- a/addons/warning/i18n/pl.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/pt.po b/addons/warning/i18n/pt.po index d2c69d280f8..1e84fc111df 100644 --- a/addons/warning/i18n/pt.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/pt_BR.po b/addons/warning/i18n/pt_BR.po index e32300587c0..18397872672 100644 --- a/addons/warning/i18n/pt_BR.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ro.po b/addons/warning/i18n/ro.po index 363925ba142..0f7445c1a22 100644 --- a/addons/warning/i18n/ro.po +++ b/addons/warning/i18n/ro.po @@ -13,19 +13,19 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line #: field:product.product,purchase_line_warn:0 msgid "Purchase Order Line" -msgstr "Linie comanda de achizitie" +msgstr "Linie comandă de achiziție" #. module: warning #: model:ir.model,name:warning.model_stock_picking_in msgid "Incoming Shipments" -msgstr "Incarcaturi primite" +msgstr "Încărcături primite" #. module: warning #: field:product.product,purchase_line_warn_msg:0 @@ -51,7 +51,7 @@ msgstr "Produs" #: view:product.product:0 #: view:res.partner:0 msgid "Warnings" -msgstr "Atentionare" +msgstr "Atenționări" #. module: warning #: selection:product.product,purchase_line_warn:0 @@ -98,12 +98,12 @@ msgstr "Ridicare stoc" #: model:ir.model,name:warning.model_purchase_order #: field:res.partner,purchase_warn:0 msgid "Purchase Order" -msgstr "Comanda de achizitie" +msgstr "Comandă de achiziție" #. module: warning #: field:res.partner,purchase_warn_msg:0 msgid "Message for Purchase Order" -msgstr "Mesaj pentru Comanda de aprovizionare" +msgstr "Mesaj pentru Comanda de achiziție" #. module: warning #: code:addons/warning/warning.py:32 @@ -139,17 +139,17 @@ msgstr "Alarma pentru %s !" #. module: warning #: view:res.partner:0 msgid "Warning on the Sales Order" -msgstr "Avertisment la Comanda de Vanzare" +msgstr "Avertisment la Comanda de Vânzare" #. module: warning #: field:res.partner,invoice_warn_msg:0 msgid "Message for Invoice" -msgstr "Mesaj pentru Factura" +msgstr "Mesaj pentru Factură" #. module: warning #: field:res.partner,sale_warn_msg:0 msgid "Message for Sales Order" -msgstr "Mesaj la Comanda de Vanzare" +msgstr "Mesaj la Comanda de Vânzare" #. module: warning #: view:res.partner:0 @@ -159,7 +159,7 @@ msgstr "Avertizare la Ridicare" #. module: warning #: view:res.partner:0 msgid "Warning on the Purchase Order" -msgstr "Avertizare pe Comanda de Achizitie" +msgstr "Avertizare pe Comanda de Achiziție" #. module: warning #: code:addons/warning/warning.py:68 @@ -177,7 +177,7 @@ msgstr "Avertizare pentru %s" #. module: warning #: field:product.product,sale_line_warn_msg:0 msgid "Message for Sales Order Line" -msgstr "Mesaje la Linia Comenzii de Vanzare" +msgstr "Mesaje la Linia Comenzii de Vânzare" #. module: warning #: selection:product.product,purchase_line_warn:0 @@ -187,7 +187,7 @@ msgstr "Mesaje la Linia Comenzii de Vanzare" #: selection:res.partner,purchase_warn:0 #: selection:res.partner,sale_warn:0 msgid "Warning" -msgstr "Atentionare" +msgstr "Atenționare" #. module: warning #: field:res.partner,picking_warn_msg:0 @@ -203,7 +203,7 @@ msgstr "Partener" #: model:ir.model,name:warning.model_sale_order #: field:res.partner,sale_warn:0 msgid "Sales Order" -msgstr "Comanda de vanzare" +msgstr "Comanda de vânzare" #. module: warning #: model:ir.model,name:warning.model_stock_picking_out diff --git a/addons/warning/i18n/ru.po b/addons/warning/i18n/ru.po index 7bb504d6c55..4d79386a7c6 100644 --- a/addons/warning/i18n/ru.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sl.po b/addons/warning/i18n/sl.po index 050f5087f55..dee26af8ac9 100644 --- a/addons/warning/i18n/sl.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sq.po b/addons/warning/i18n/sq.po index eeec86a7751..618cabdc24a 100644 --- a/addons/warning/i18n/sq.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sr.po b/addons/warning/i18n/sr.po index 8cfb58c0114..6e8f90e1fa7 100644 --- a/addons/warning/i18n/sr.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sr@latin.po b/addons/warning/i18n/sr@latin.po index ec67aca9f41..1c0edf836a3 100644 --- a/addons/warning/i18n/sr@latin.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sv.po b/addons/warning/i18n/sv.po index f4f4d2d3de3..dd057717df0 100644 --- a/addons/warning/i18n/sv.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/th.po b/addons/warning/i18n/th.po index 24ae791caae..e4c7628964f 100644 --- a/addons/warning/i18n/th.po +++ b/addons/warning/i18n/th.po @@ -14,14 +14,14 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-16 05:12+0000\n" -"X-Generator: Launchpad (build 16626)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line #: field:product.product,purchase_line_warn:0 msgid "Purchase Order Line" -msgstr "" +msgstr "รายการสั่งซื้อ" #. module: warning #: model:ir.model,name:warning.model_stock_picking_in @@ -36,7 +36,7 @@ msgstr "" #. module: warning #: model:ir.model,name:warning.model_stock_picking msgid "Picking List" -msgstr "" +msgstr "ใบรายการรับ/จ่ายสินค้า" #. module: warning #: view:product.product:0 @@ -46,13 +46,13 @@ msgstr "" #. module: warning #: model:ir.model,name:warning.model_product_product msgid "Product" -msgstr "" +msgstr "ผลิตภัณฑ์" #. module: warning #: view:product.product:0 #: view:res.partner:0 msgid "Warnings" -msgstr "" +msgstr "คำเตือน" #. module: warning #: selection:product.product,purchase_line_warn:0 @@ -77,13 +77,13 @@ msgstr "" #: selection:res.partner,purchase_warn:0 #: selection:res.partner,sale_warn:0 msgid "No Message" -msgstr "" +msgstr "ไม่มีข้อความ" #. module: warning #: model:ir.model,name:warning.model_account_invoice #: field:res.partner,invoice_warn:0 msgid "Invoice" -msgstr "" +msgstr "ใบกำกับสินค้า" #. module: warning #: view:product.product:0 @@ -99,7 +99,7 @@ msgstr "" #: model:ir.model,name:warning.model_purchase_order #: field:res.partner,purchase_warn:0 msgid "Purchase Order" -msgstr "" +msgstr "ใบสั่งซื้อ" #. module: warning #: field:res.partner,purchase_warn_msg:0 @@ -185,7 +185,7 @@ msgstr "" #: selection:res.partner,purchase_warn:0 #: selection:res.partner,sale_warn:0 msgid "Warning" -msgstr "" +msgstr "แจ้งเตือน" #. module: warning #: field:res.partner,picking_warn_msg:0 @@ -195,13 +195,13 @@ msgstr "" #. module: warning #: model:ir.model,name:warning.model_res_partner msgid "Partner" -msgstr "" +msgstr "คู่ค้า" #. module: warning #: model:ir.model,name:warning.model_sale_order #: field:res.partner,sale_warn:0 msgid "Sales Order" -msgstr "" +msgstr "คำสั่งขาย" #. module: warning #: model:ir.model,name:warning.model_stock_picking_out @@ -212,4 +212,4 @@ msgstr "" #: model:ir.model,name:warning.model_sale_order_line #: field:product.product,sale_line_warn:0 msgid "Sales Order Line" -msgstr "" +msgstr "รายการคำสั่งขาย" diff --git a/addons/warning/i18n/tlh.po b/addons/warning/i18n/tlh.po index fc4570ab2c9..d68fae3c6ea 100644 --- a/addons/warning/i18n/tlh.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/tr.po b/addons/warning/i18n/tr.po index 22573bb4956..c1ec9fba5cb 100644 --- a/addons/warning/i18n/tr.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/uk.po b/addons/warning/i18n/uk.po index 35861218a4c..160b1765c3c 100644 --- a/addons/warning/i18n/uk.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/vi.po b/addons/warning/i18n/vi.po index 3eca144e5a9..49fbdf4ddc9 100644 --- a/addons/warning/i18n/vi.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/zh_CN.po b/addons/warning/i18n/zh_CN.po index 0c244b9c873..1449ac8ca00 100644 --- a/addons/warning/i18n/zh_CN.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line @@ -35,7 +35,7 @@ msgstr "采购订单明细消息" #. module: warning #: model:ir.model,name:warning.model_stock_picking msgid "Picking List" -msgstr "装箱单" +msgstr "分拣单" #. module: warning #: view:product.product:0 @@ -92,7 +92,7 @@ msgstr "销售这产品时的警告" #. module: warning #: field:res.partner,picking_warn:0 msgid "Stock Picking" -msgstr "库存装箱" +msgstr "库存分拣" #. module: warning #: model:ir.model,name:warning.model_purchase_order @@ -134,7 +134,7 @@ msgstr "" #: code:addons/warning/warning.py:299 #, python-format msgid "Alert for %s !" -msgstr "警报%s !" +msgstr "%s 的警报!" #. module: warning #: view:res.partner:0 @@ -154,7 +154,7 @@ msgstr "销售订单消息" #. module: warning #: view:res.partner:0 msgid "Warning on the Picking" -msgstr "装箱警告" +msgstr "分拣单的警告" #. module: warning #: view:res.partner:0 @@ -172,7 +172,7 @@ msgstr "采购订单警告" #: code:addons/warning/warning.py:300 #, python-format msgid "Warning for %s" -msgstr "警告 %s" +msgstr "%s 的警告" #. module: warning #: field:product.product,sale_line_warn_msg:0 @@ -192,12 +192,12 @@ msgstr "警告" #. module: warning #: field:res.partner,picking_warn_msg:0 msgid "Message for Stock Picking" -msgstr "库存装箱消息" +msgstr "库存分拣单消息" #. module: warning #: model:ir.model,name:warning.model_res_partner msgid "Partner" -msgstr "业务伙伴" +msgstr "合作伙伴" #. module: warning #: model:ir.model,name:warning.model_sale_order diff --git a/addons/warning/i18n/zh_TW.po b/addons/warning/i18n/zh_TW.po index 749f44538e1..0e480727893 100644 --- a/addons/warning/i18n/zh_TW.po +++ b/addons/warning/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: 2013-03-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:03+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/web_linkedin/i18n/cs.po b/addons/web_linkedin/i18n/cs.po index 6057606cdf4..72d8c62e3f9 100644 --- a/addons/web_linkedin/i18n/cs.po +++ b/addons/web_linkedin/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: 2013-03-31 05:28+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "" @@ -87,7 +87,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "" @@ -111,7 +111,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "" diff --git a/addons/web_linkedin/i18n/de.po b/addons/web_linkedin/i18n/de.po index b9a792aab09..d92d14524c5 100644 --- a/addons/web_linkedin/i18n/de.po +++ b/addons/web_linkedin/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "API-Schlüssel" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "Keine Ergebnisse gefunden" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "Ok" @@ -87,7 +87,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "LinkedIn Suche" @@ -115,7 +115,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "LinkedIn ist nicht aktiviert" diff --git a/addons/web_linkedin/i18n/es.po b/addons/web_linkedin/i18n/es.po index eb000bf5131..e8b28b77523 100644 --- a/addons/web_linkedin/i18n/es.po +++ b/addons/web_linkedin/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "Clave API" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "No se obtuvieron resultados" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "Aceptar" @@ -87,7 +87,7 @@ msgstr "Copiar el" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "Búsqueda en LinkedIn" @@ -116,7 +116,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "LinkedIn no está habilitado" diff --git a/addons/web_linkedin/i18n/fr.po b/addons/web_linkedin/i18n/fr.po index 242a24c2dcf..01559a1a238 100644 --- a/addons/web_linkedin/i18n/fr.po +++ b/addons/web_linkedin/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "Clé API" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "Aucun résultat trouvé" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "Ok" @@ -87,7 +87,7 @@ msgstr "Copier le" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "Recherche LinkedIn" @@ -116,7 +116,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "LinkedIn n'est pas activé" diff --git a/addons/web_linkedin/i18n/hr.po b/addons/web_linkedin/i18n/hr.po index 25c3c321278..5474a111df3 100644 --- a/addons/web_linkedin/i18n/hr.po +++ b/addons/web_linkedin/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "API ključ" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "Nema pronađenih rezultata" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "Ok" @@ -87,7 +87,7 @@ msgstr "Kopiraj" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "LinkedIn pretraga" @@ -111,7 +111,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "LinkedIn nije omogućen" diff --git a/addons/web_linkedin/i18n/hu.po b/addons/web_linkedin/i18n/hu.po index 8a28009dcd5..202b3c4e4a6 100644 --- a/addons/web_linkedin/i18n/hu.po +++ b/addons/web_linkedin/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "API kulcs" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "Nincs találat" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "Ok" @@ -87,7 +87,7 @@ msgstr "Ennek másollása" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "LinkedIn keresés" @@ -116,7 +116,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "LinkedIn nincs bekapcsolva" diff --git a/addons/web_linkedin/i18n/it.po b/addons/web_linkedin/i18n/it.po index 971c9169647..8941fd7320b 100644 --- a/addons/web_linkedin/i18n/it.po +++ b/addons/web_linkedin/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" "PO-Revision-Date: 2012-12-14 21:06+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "Chiave API" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "Nessun risultato trovato" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "Ok" @@ -87,7 +87,7 @@ msgstr "Copiare il" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "Ricerca LinkedIn" @@ -116,7 +116,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "LinkedIn non è abilitato" diff --git a/addons/web_linkedin/i18n/mk.po b/addons/web_linkedin/i18n/mk.po index 0ee793ff4cc..29db9925282 100644 --- a/addons/web_linkedin/i18n/mk.po +++ b/addons/web_linkedin/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "API клуч" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "Нема пронајдени резултати" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "Во ред" @@ -87,7 +87,7 @@ msgstr "Копирај го" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "Linkedin пребарување" @@ -116,7 +116,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "Linkedin не е достапен" @@ -139,4 +139,4 @@ msgstr "Алатката за програмирање е Javascript" #. module: web_linkedin #: view:sale.config.settings:0 msgid "JavaScript API Domain:" -msgstr "JavaScript API Domain:" +msgstr "JavaScript API Домен:" diff --git a/addons/web_linkedin/i18n/mn.po b/addons/web_linkedin/i18n/mn.po index 67e3e63bf02..0d76a365db1 100644 --- a/addons/web_linkedin/i18n/mn.po +++ b/addons/web_linkedin/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "API түлхүүр" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "Илэрц олдсонгүй" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "Тийм" @@ -87,7 +87,7 @@ msgstr "Дараахийг хуулах" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "LinkedIn хайлт" @@ -111,7 +111,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "LinkedIn-д холбогдох боломжгүй." diff --git a/addons/web_linkedin/i18n/nl.po b/addons/web_linkedin/i18n/nl.po index b15525f96cd..459aabcdfb7 100644 --- a/addons/web_linkedin/i18n/nl.po +++ b/addons/web_linkedin/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" "PO-Revision-Date: 2012-12-01 16:29+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -25,18 +25,18 @@ msgstr "hier:" #. module: web_linkedin #: field:sale.config.settings,api_key:0 msgid "API Key" -msgstr "API Sleutel" +msgstr "API-code" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "Geen resultaten gevonden" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "Ok" @@ -78,7 +78,7 @@ msgstr "Bedrijven" #. module: web_linkedin #: view:sale.config.settings:0 msgid "API key" -msgstr "API sleutel" +msgstr "API-code" #. module: web_linkedin #: view:sale.config.settings:0 @@ -87,7 +87,7 @@ msgstr "Kopieer de" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "LinkedIn search" @@ -111,12 +111,12 @@ msgid "" "To use the LinkedIn module with this database, an API Key is required. " "Please follow this procedure:" msgstr "" -"Om de LinkedIn module te gebruiken met deze database is een API key nodig. " +"Om de LinkedIn module te gebruiken met deze database is een API code nodig. " "Volg de navolgende procedure:" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "LinkedIn is niet geactiveerd" @@ -139,4 +139,4 @@ msgstr "De programmeertaal is Javascript" #. module: web_linkedin #: view:sale.config.settings:0 msgid "JavaScript API Domain:" -msgstr "JavaScript API Domeinen:" +msgstr "JavaScript API-domeinen:" diff --git a/addons/web_linkedin/i18n/pl.po b/addons/web_linkedin/i18n/pl.po index 0f57c750942..9d827efec66 100644 --- a/addons/web_linkedin/i18n/pl.po +++ b/addons/web_linkedin/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "Brak wyników" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "" @@ -87,7 +87,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "" @@ -111,7 +111,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "" diff --git a/addons/web_linkedin/i18n/pt.po b/addons/web_linkedin/i18n/pt.po index afdb834fbc1..0b856e6d927 100644 --- a/addons/web_linkedin/i18n/pt.po +++ b/addons/web_linkedin/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "Chave API" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "Nenhum resultado encontrado" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "OK" @@ -87,7 +87,7 @@ msgstr "Copiar o" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "Pesquisa LinkedIn" @@ -108,10 +108,12 @@ msgid "" "To use the LinkedIn module with this database, an API Key is required. " "Please follow this procedure:" msgstr "" +"Para usar o módulo Linkedin nesta base de dados, é necessária uma Chave API. " +"Por favor siga este procedimento:" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "O Linkedin não está ativo" @@ -124,7 +126,7 @@ msgstr "" #. module: web_linkedin #: view:sale.config.settings:0 msgid "Go to this URL:" -msgstr "" +msgstr "Siga para esta URL:" #. module: web_linkedin #: view:sale.config.settings:0 @@ -134,4 +136,4 @@ msgstr "A ferramenta de programação é Javascript" #. module: web_linkedin #: view:sale.config.settings:0 msgid "JavaScript API Domain:" -msgstr "" +msgstr "Domínio de API JavaScript" diff --git a/addons/web_linkedin/i18n/pt_BR.po b/addons/web_linkedin/i18n/pt_BR.po index f15c5ca2673..aecf411f6e8 100644 --- a/addons/web_linkedin/i18n/pt_BR.po +++ b/addons/web_linkedin/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "Chave API" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "Nenhum resultado encontrado" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "Ok" @@ -87,7 +87,7 @@ msgstr "Copiar o" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "Pesquisar LinkedIn" @@ -116,7 +116,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "LinkedIn não está habilitado" diff --git a/addons/web_linkedin/i18n/ro.po b/addons/web_linkedin/i18n/ro.po index b34f30fa099..993f25343af 100644 --- a/addons/web_linkedin/i18n/ro.po +++ b/addons/web_linkedin/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" "PO-Revision-Date: 2012-12-18 04:41+0000\n" -"Last-Translator: Fekete Mihai \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "Cod API" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "Nu a fost gasit nici un rezultat" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "Ok" @@ -87,7 +87,7 @@ msgstr "Copiaza" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "Cautare LinkedIn" @@ -116,7 +116,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "LinkedIn nu este activat" diff --git a/addons/web_linkedin/i18n/sl.po b/addons/web_linkedin/i18n/sl.po index 572b0efb544..026dcd12cb9 100644 --- a/addons/web_linkedin/i18n/sl.po +++ b/addons/web_linkedin/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "API ključ" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "Ni najdenih zadetkov" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "V Redu" @@ -87,7 +87,7 @@ msgstr "Kopiraj" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "LinkedIn iskanje" @@ -111,7 +111,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "LinkedIn ni omogočen" diff --git a/addons/web_linkedin/i18n/tr.po b/addons/web_linkedin/i18n/tr.po index 0ad199833f5..34b3930e85a 100644 --- a/addons/web_linkedin/i18n/tr.po +++ b/addons/web_linkedin/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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "API Anahtarı" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "Sonuç bulunamadı" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "Tamam" @@ -87,7 +87,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "" @@ -111,7 +111,7 @@ msgstr "" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "" diff --git a/addons/web_linkedin/i18n/zh_CN.po b/addons/web_linkedin/i18n/zh_CN.po index 9eb5481c0d9..63cd1e07dcb 100644 --- a/addons/web_linkedin/i18n/zh_CN.po +++ b/addons/web_linkedin/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" "PO-Revision-Date: 2013-01-02 10:44+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \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: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -29,14 +29,14 @@ msgstr "API Key" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#: code:addons/web_linkedin/static/src/js/linkedin.js:331 #, python-format msgid "No results found" msgstr "找不到任何结果" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#: code:addons/web_linkedin/static/src/js/linkedin.js:62 #, python-format msgid "Ok" msgstr "确定" @@ -87,7 +87,7 @@ msgstr "复制" #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#: code:addons/web_linkedin/static/src/js/linkedin.js:263 #, python-format msgid "LinkedIn search" msgstr "LinkedIn 搜索" @@ -113,7 +113,7 @@ msgstr "要在这个数据库使用LinkedIn 模块,要求有一个API Key。 #. module: web_linkedin #. openerp-web -#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#: code:addons/web_linkedin/static/src/js/linkedin.js:60 #, python-format msgid "LinkedIn is not enabled" msgstr "LinkedIn 没启用。" diff --git a/addons/web_shortcuts/LICENSE b/addons/web_shortcuts/LICENSE deleted file mode 100644 index ff64be448e9..00000000000 --- a/addons/web_shortcuts/LICENSE +++ /dev/null @@ -1,15 +0,0 @@ -OpenERP, Open Source Management Solution -Copyright © 2010-2011 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 Lice -along with this program. If not, see . diff --git a/addons/web_shortcuts/i18n/de.po b/addons/web_shortcuts/i18n/de.po deleted file mode 100644 index 754fcd61f59..00000000000 --- a/addons/web_shortcuts/i18n/de.po +++ /dev/null @@ -1,25 +0,0 @@ -# German 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-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-04 07:22+0000\n" -"Last-Translator: Ferdinand @ Camptocamp \n" -"Language-Team: German \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Hinzufügen/Entfernen Lesezeichen ..." diff --git a/addons/web_shortcuts/i18n/es.po b/addons/web_shortcuts/i18n/es.po deleted file mode 100644 index c4b34e9dbca..00000000000 --- a/addons/web_shortcuts/i18n/es.po +++ /dev/null @@ -1,25 +0,0 @@ -# Spanish 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-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-12 12:54+0000\n" -"Last-Translator: Pedro Manuel Baeza \n" -"Language-Team: Spanish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Añadir / Eliminar acceso directo..." diff --git a/addons/web_shortcuts/i18n/fr.po b/addons/web_shortcuts/i18n/fr.po deleted file mode 100644 index 0386d87f641..00000000000 --- a/addons/web_shortcuts/i18n/fr.po +++ /dev/null @@ -1,25 +0,0 @@ -# French 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-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-01 08:11+0000\n" -"Last-Translator: WANTELLET Sylvain \n" -"Language-Team: French \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Ajouter / supprimer un raccourci..." diff --git a/addons/web_shortcuts/i18n/hr.po b/addons/web_shortcuts/i18n/hr.po deleted file mode 100644 index b770389267d..00000000000 --- a/addons/web_shortcuts/i18n/hr.po +++ /dev/null @@ -1,25 +0,0 @@ -# Croatian 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-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-10 06:51+0000\n" -"Last-Translator: Goran Kliska \n" -"Language-Team: Croatian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Dodaj / ukloni prečac..." diff --git a/addons/web_shortcuts/i18n/hu.po b/addons/web_shortcuts/i18n/hu.po deleted file mode 100644 index 67f51590bce..00000000000 --- a/addons/web_shortcuts/i18n/hu.po +++ /dev/null @@ -1,25 +0,0 @@ -# Hungarian translation for openobject-addons -# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2013. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2013-01-04 12:01+0000\n" -"Last-Translator: krnkris \n" -"Language-Team: Hungarian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Billentyűkombináció hozzáadása/eltávolítása" diff --git a/addons/web_shortcuts/i18n/it.po b/addons/web_shortcuts/i18n/it.po deleted file mode 100644 index 80b0b27aa06..00000000000 --- a/addons/web_shortcuts/i18n/it.po +++ /dev/null @@ -1,25 +0,0 @@ -# Italian 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-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-11-29 07:33+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" -"Language-Team: Italian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Aggiungi / Rimuovi Scorciatoia..." diff --git a/addons/web_shortcuts/i18n/lt.po b/addons/web_shortcuts/i18n/lt.po deleted file mode 100644 index 70fc0a04b6c..00000000000 --- a/addons/web_shortcuts/i18n/lt.po +++ /dev/null @@ -1,25 +0,0 @@ -# Lithuanian translation for openobject-addons -# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2013. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2013-04-24 18:29+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Lithuanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-25 05:20+0000\n" -"X-Generator: Launchpad (build 16580)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Pridėti / pašalinti trumpinį..." diff --git a/addons/web_shortcuts/i18n/mk.po b/addons/web_shortcuts/i18n/mk.po deleted file mode 100644 index 4d90f505fc9..00000000000 --- a/addons/web_shortcuts/i18n/mk.po +++ /dev/null @@ -1,25 +0,0 @@ -# Macedonian translation for openobject-addons -# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2013. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2013-03-01 14:20+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Macedonian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Додади / Отстрани кратенка" diff --git a/addons/web_shortcuts/i18n/nl.po b/addons/web_shortcuts/i18n/nl.po deleted file mode 100644 index 23a98dc4214..00000000000 --- a/addons/web_shortcuts/i18n/nl.po +++ /dev/null @@ -1,25 +0,0 @@ -# Dutch 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-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-11-27 19:29+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \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: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Toevoegen/verwijderen snelkoppeling" diff --git a/addons/web_shortcuts/i18n/pl.po b/addons/web_shortcuts/i18n/pl.po deleted file mode 100644 index b580f78b179..00000000000 --- a/addons/web_shortcuts/i18n/pl.po +++ /dev/null @@ -1,25 +0,0 @@ -# Polish 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-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-17 10:08+0000\n" -"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \n" -"Language-Team: Polish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Dodaj / Usuń skrót" diff --git a/addons/web_shortcuts/i18n/pt.po b/addons/web_shortcuts/i18n/pt.po deleted file mode 100644 index 03899799821..00000000000 --- a/addons/web_shortcuts/i18n/pt.po +++ /dev/null @@ -1,25 +0,0 @@ -# Portuguese 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-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-05 10:09+0000\n" -"Last-Translator: Andrei Talpa (multibase.pt) \n" -"Language-Team: Portuguese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Adicionar / Remover atalho..." diff --git a/addons/web_shortcuts/i18n/pt_BR.po b/addons/web_shortcuts/i18n/pt_BR.po deleted file mode 100644 index f2eb867f5ef..00000000000 --- a/addons/web_shortcuts/i18n/pt_BR.po +++ /dev/null @@ -1,25 +0,0 @@ -# Brazilian Portuguese 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-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-11-29 23:53+0000\n" -"Last-Translator: Luiz Fernando M.França (Sig Informática) \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: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Adicionar/Remover atalho..." diff --git a/addons/web_shortcuts/i18n/ro.po b/addons/web_shortcuts/i18n/ro.po deleted file mode 100644 index f8f39ecbb5b..00000000000 --- a/addons/web_shortcuts/i18n/ro.po +++ /dev/null @@ -1,25 +0,0 @@ -# Romanian 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-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-10 07:32+0000\n" -"Last-Translator: Fekete Mihai \n" -"Language-Team: Romanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Adauga / Sterge Shortcut..." diff --git a/addons/web_shortcuts/i18n/ru.po b/addons/web_shortcuts/i18n/ru.po deleted file mode 100644 index 7e88c800419..00000000000 --- a/addons/web_shortcuts/i18n/ru.po +++ /dev/null @@ -1,25 +0,0 @@ -# Russian 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-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-25 12:18+0000\n" -"Last-Translator: Chertykov Denis \n" -"Language-Team: Russian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Добавить / Удалить ярлык..." diff --git a/addons/web_shortcuts/i18n/sl.po b/addons/web_shortcuts/i18n/sl.po deleted file mode 100644 index 61053271490..00000000000 --- a/addons/web_shortcuts/i18n/sl.po +++ /dev/null @@ -1,25 +0,0 @@ -# Slovenian 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-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-18 22:32+0000\n" -"Last-Translator: Dušan Laznik (Mentis) \n" -"Language-Team: Slovenian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "Dodaj / Odstrani bližnjico..." diff --git a/addons/web_shortcuts/i18n/th.po b/addons/web_shortcuts/i18n/th.po deleted file mode 100644 index e520bfe2f20..00000000000 --- a/addons/web_shortcuts/i18n/th.po +++ /dev/null @@ -1,25 +0,0 @@ -# Thai translation for openobject-addons -# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2013. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2013-06-17 05:48+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Thai \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-18 05:46+0000\n" -"X-Generator: Launchpad (build 16673)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "เพิ่ม / ลบ ทางลัด ..." diff --git a/addons/web_shortcuts/i18n/web_shortcuts.pot b/addons/web_shortcuts/i18n/web_shortcuts.pot deleted file mode 100644 index 2babdff3864..00000000000 --- a/addons/web_shortcuts/i18n/web_shortcuts.pot +++ /dev/null @@ -1,24 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * web_shortcuts -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-21 17:06+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "" - diff --git a/addons/web_shortcuts/i18n/zh_CN.po b/addons/web_shortcuts/i18n/zh_CN.po deleted file mode 100644 index de1bef90235..00000000000 --- a/addons/web_shortcuts/i18n/zh_CN.po +++ /dev/null @@ -1,25 +0,0 @@ -# Chinese (Simplified) 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-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-11-27 14:18+0000\n" -"Last-Translator: 盈通 ccdos \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: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "添加/删除快捷方式" diff --git a/addons/web_shortcuts/i18n/zh_TW.po b/addons/web_shortcuts/i18n/zh_TW.po deleted file mode 100644 index 99680924f8e..00000000000 --- a/addons/web_shortcuts/i18n/zh_TW.po +++ /dev/null @@ -1,25 +0,0 @@ -# Chinese (Traditional) translation for openobject-addons -# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2013. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2013-01-31 03:39+0000\n" -"Last-Translator: FULL NAME \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: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" - -#. module: web_shortcuts -#. openerp-web -#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 -#, python-format -msgid "Add / Remove Shortcut..." -msgstr "新增/移除 捷徑..." diff --git a/addons/web_shortcuts/static/description/icon.png b/addons/web_shortcuts/static/description/icon.png deleted file mode 100644 index 44347e95f45..00000000000 Binary files a/addons/web_shortcuts/static/description/icon.png and /dev/null differ diff --git a/addons/web_shortcuts/static/src/css/web_shortcuts.css b/addons/web_shortcuts/static/src/css/web_shortcuts.css deleted file mode 100644 index 5d4e34f53b9..00000000000 --- a/addons/web_shortcuts/static/src/css/web_shortcuts.css +++ /dev/null @@ -1,60 +0,0 @@ -/* Shortcuts*/ -.oe_systray_shortcuts .oe_star_off { - color: #eee; -} -.oe_shortcuts_toggle { - height: 20px; - margin-top: 3px; - padding: 0; - width: 24px; - cursor: pointer; - display: block; - background: url(/web/static/src/img/add-shortcut.png) no-repeat center center; - float: left; -} -.oe_shortcuts_remove{ - background: url(/web/static/src/img/remove-shortcut.png) no-repeat center center; -} -.oe_shortcuts { - position: absolute; - margin: 0; - padding: 6px 15px; - top: 37px; - left: 197px; - right: 0; - height: 17px; - line-height: 1.2; -} -.oe_shortcuts ul { - display: block; - overflow: hidden; - list-style: none; - white-space: nowrap; - padding: 0; - margin: 0; -} -.oe_shortcuts li { - cursor: pointer; - display: -moz-inline-stack; - display: inline-block; - display: inline; /*IE7 */ - color: #fff; - text-align: center; - border-left: 1px solid #909090; - padding: 0 4px; - font-size: 80%; - font-weight: normal; - vertical-align: top; -} - -.oe_shortcuts li:hover { - background-color: #666; -} -.oe_shortcuts li:first-child { - border-left: none; - padding-left: 0; -} -.oe_systray_shortcuts_items > li > a:hover { - overflow:visible; - white-space: normal; -} \ No newline at end of file diff --git a/addons/web_shortcuts/static/src/js/web_shortcuts.js b/addons/web_shortcuts/static/src/js/web_shortcuts.js deleted file mode 100644 index 045bc5b5ae6..00000000000 --- a/addons/web_shortcuts/static/src/js/web_shortcuts.js +++ /dev/null @@ -1,149 +0,0 @@ -/*############################################################################ -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2011-2012 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 . -# -############################################################################*/ - -openerp.web_shortcuts = function (instance) { - -var QWeb = instance.web.qweb, - _t = instance.web._t; - -instance.web_shortcuts.Shortcuts = instance.web.Widget.extend({ - template: 'Systray.Shortcuts', - - init: function() { - this._super(); - this.on('load', this, this.load); - this.on('add', this, this.add); - this.on('display', this, this.display); - this.on('remove', this, this.remove); - this.on('click', this, this.click); - this.model = new instance.web.Model('ir.ui.view_sc'); - }, - start: function() { - var self = this; - this._super(); - this.trigger('load'); - this.$el.on('click', '.oe_systray_shortcuts_items a', function() { - self.trigger('click', $(this)); - }); - }, - load: function() { - var self = this; - this.$el.find('.oe_systray_shortcuts_items').empty(); - return this.model.call('get_sc', [ - instance.session.uid, - 'ir.ui.menu', - instance.web.pyeval.eval('context', {}) - ]).done(function(shortcuts) { - _.each(shortcuts, function(sc) { - self.trigger('display', sc); - }); - }); - }, - add: function (sc) { - var self = this; - this.model.call('create', [sc]).then(function(out){ - self.trigger('load'); - }); - }, - display: function(sc) { - var self = this; - this.$el.find('.oe_systray_shortcuts_items').append(); - var $sc = $(QWeb.render('Systray.Shortcuts.Item', {'shortcut': sc})); - $sc.appendTo(self.$el.find('.oe_systray_shortcuts_items')); - }, - remove: function (menu_id) { - var menu_id = this.session.active_id; - var $shortcut = this.$el.find('.oe_systray_shortcuts_items li a[data-id=' + menu_id + ']'); - var shortcut_id = $shortcut.data('shortcut-id'); - $shortcut.remove(); - this.model.call('unlink', [shortcut_id]); - }, - click: function($link) { - var self = this, - id = $link.data('id'); - self.session.active_id = id; - // TODO: Use do_action({menu_id: id, type: 'ir.actions.menu'}) - self.rpc('/web/menu/action', {'menu_id': id}).done(function(ir_menu_data) { - if (ir_menu_data.action.length){ - instance.webclient.on_menu_action({action_id: ir_menu_data.action[0][2].id}); - } - }); - this.$el.find('.oe_systray_shortcuts').trigger('mouseout'); - }, - has: function(menu_id) { - return !!this.$el.find('a[data-id=' + menu_id + ']').length; - } -}); - -instance.web.UserMenu.include({ - do_update: function() { - var self = this; - this._super.apply(this, arguments); - this.update_promise.done(function() { - if (self.shortcuts) { - self.shortcuts.trigger('load'); - } else { - self.shortcuts = new instance.web_shortcuts.Shortcuts(self); - self.shortcuts.appendTo(instance.webclient.$el.find('.oe_systray')); - } - }); - }, -}); - -instance.web.ViewManagerAction.include({ - switch_mode: function (view_type, no_store) { - var self = this; - this._super.apply(this, arguments).done(function() { - self.shortcut_check(self.views[view_type]); - }); - }, - shortcut_check : function(view) { - var self = this; - var shortcuts_menu = instance.webclient.user_menu.shortcuts; - var grandparent = this.getParent() && this.getParent().getParent(); - // display shortcuts if on the first view for the action - var $shortcut_toggle = this.$el.find('.oe_shortcuts_toggle'); - if (!this.action.name || - !(view.view_type === this.views_src[0].view_type - && view.view_id === this.views_src[0].view_id)) { - $shortcut_toggle.hide(); - return; - } - // Anonymous users don't have user_menu - if (shortcuts_menu) { - $shortcut_toggle.toggleClass('oe_shortcuts_remove', shortcuts_menu.has(self.session.active_id)); - $shortcut_toggle.unbind("click").click(function() { - if ($shortcut_toggle.hasClass("oe_shortcuts_remove")) { - shortcuts_menu.trigger('remove', self.session.active_id); - } else { - shortcuts_menu.trigger('add', { - 'user_id': self.session.uid, - 'res_id': self.session.active_id, - 'resource': 'ir.ui.menu', - 'name': self.action.name - }); - } - $shortcut_toggle.toggleClass("oe_shortcuts_remove"); - }); - } - } -}); - -}; diff --git a/addons/web_shortcuts/static/src/xml/web_shortcuts.xml b/addons/web_shortcuts/static/src/xml/web_shortcuts.xml deleted file mode 100644 index 0b9701f9f1a..00000000000 --- a/addons/web_shortcuts/static/src/xml/web_shortcuts.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - -
- 7 -
    -
-
- -
  • - - - -
  • -
    - - - - - -
    diff --git a/addons/point_of_sale/wizard/pos_session_opening.xml b/addons/point_of_sale/wizard/pos_session_opening.xml index a7dbe43c962..5aa3f8d4764 100644 --- a/addons/point_of_sale/wizard/pos_session_opening.xml +++ b/addons/point_of_sale/wizard/pos_session_opening.xml @@ -15,7 +15,7 @@ -
    Print Date : """ + _('Print Date : ') + """ """ + to_xml(rml_obj.formatLang(time.strftime("%Y-%m-%d %H:%M:%S"),date_time=True)) + """ Answered by : """ +_('Answered by : ') + """ """ + to_xml(response.user_id.login or '') + """
    Answer Date : """ +_('Answer Date : ') + """ """ + to_xml(resp_create) + """
    """ + to_xml(tools.ustr(survey.title)) + """Status :- """ + to_xml(tools.ustr(status)) + """"""+_('Status :- ')+ to_xml(tools.ustr(status)) + """
    Page :- """ + to_xml(tools.ustr(page.title or '')) + """
    """+_('Page :- ') + to_xml(tools.ustr(page.title or '')) + """
    No Answer
    """+ _('No Answer') + """