diff --git a/addons/account/__openerp__.py b/addons/account/__openerp__.py index 4a7cbaf5df2..988be4c871b 100644 --- a/addons/account/__openerp__.py +++ b/addons/account/__openerp__.py @@ -143,6 +143,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', @@ -150,12 +151,11 @@ for a particular financial year and for preparation of vouchers there is a modul 'test/account_period_close.yml', 'test/account_use_model.yml', 'test/account_validate_account_move.yml', - 'test/account_fiscalyear_close.yml', #'test/account_bank_statement.yml', #'test/account_cash_statement.yml', 'test/test_edi_invoice.yml', 'test/account_report.yml', - 'test/account_fiscalyear_close_state.yml', #last test, as it will definitively close the demo fiscalyear + 'test/account_fiscalyear_close.yml', #last test, as it will definitively close the demo fiscalyear ], 'installable': True, 'auto_install': False, diff --git a/addons/account/account.py b/addons/account/account.py index 33b52b643ed..75936320e58 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,11 +3047,19 @@ 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 _get_chart_parent_ids(self, cr, uid, chart_template, context=None): + """ Returns the IDs of all ancestor charts, including the chart itself. + (inverse of child_of operator) + + :param browse_record chart_template: the account.chart.template record + :return: the IDS of all ancestor charts, including the chart itself. + """ + result = [chart_template.id] + while chart_template.parent_id: + chart_template = chart_template.parent_id + result.append(chart_template.id) + return result def onchange_tax_rate(self, cr, uid, ids, rate=False, context=None): return {'value': {'purchase_tax_rate': rate or False}} @@ -3044,15 +3070,21 @@ 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" - , "=", chart_template_id), ('type_tax_use', 'in', ('sale','all'))], order="sequence, id desc") - purchase_tax_ids = tax_templ_obj.search(cr, uid, [("chart_template_id" - , "=", chart_template_id), ('type_tax_use', 'in', ('purchase','all'))], order="sequence, id desc") - res['value'].update({'sale_tax': sale_tax_ids and sale_tax_ids[0] or False, 'purchase_tax': purchase_tax_ids and purchase_tax_ids[0] or False}) - + chart_ids = self._get_chart_parent_ids(cr, uid, data, context=context) + base_tax_domain = [("chart_template_id", "in", chart_ids), ('parent_id', '=', False)] + sale_tax_domain = base_tax_domain + [('type_tax_use', 'in', ('sale','all'))] + purchase_tax_domain = base_tax_domain + [('type_tax_use', 'in', ('purchase','all'))] + sale_tax_ids = tax_templ_obj.search(cr, uid, sale_tax_domain, order="sequence, id desc") + purchase_tax_ids = tax_templ_obj.search(cr, uid, purchase_tax_domain, order="sequence, id desc") + res['value'].update({'sale_tax': sale_tax_ids and sale_tax_ids[0] or False, + 'purchase_tax': purchase_tax_ids and purchase_tax_ids[0] or False}) + res.setdefault('domain', {}) + res['domain']['sale_tax'] = repr(sale_tax_domain) + res['domain']['purchase_tax'] = repr(purchase_tax_domain) if data.code_digits: res['value'].update({'code_digits': data.code_digits}) return res @@ -3060,6 +3092,7 @@ class wizard_multi_charts_accounts(osv.osv_memory): def default_get(self, cr, uid, fields, context=None): res = super(wizard_multi_charts_accounts, self).default_get(cr, uid, fields, context=context) tax_templ_obj = self.pool.get('account.tax.template') + account_chart_template = self.pool['account.chart.template'] if 'bank_accounts_id' in fields: res.update({'bank_accounts_id': [{'acc_name': _('Cash'), 'account_type': 'cash'},{'acc_name': _('Bank'), 'account_type': 'bank'}]}) @@ -3073,17 +3106,28 @@ class wizard_multi_charts_accounts(osv.osv_memory): currency_id = company_obj.on_change_country(cr, uid, company_id, country_id, context=context)['value']['currency_id'] res.update({'currency_id': currency_id}) - ids = self.pool.get('account.chart.template').search(cr, uid, [('visible', '=', True)], context=context) + ids = account_chart_template.search(cr, uid, [('visible', '=', True)], context=context) if ids: + #in order to 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'] + chart = account_chart_template.browse(cr, uid, chart_id, context=context) + chart_hierarchy_ids = self._get_chart_parent_ids(cr, uid, chart, context=context) if 'chart_template_id' in fields: - res.update({'only_one_chart_template': len(ids) == 1, 'chart_template_id': ids[0]}) + 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") + sale_tax_ids = tax_templ_obj.search(cr, uid, [("chart_template_id", "in", chart_hierarchy_ids), + ('type_tax_use', 'in', ('sale','all'))], + order="sequence") res.update({'sale_tax': sale_tax_ids and sale_tax_ids[0] or False}) if 'purchase_tax' in fields: - purchase_tax_ids = tax_templ_obj.search(cr, uid, [("chart_template_id" - , "=", ids[0]), ('type_tax_use', 'in', ('purchase','all'))], order="sequence") + purchase_tax_ids = tax_templ_obj.search(cr, uid, [("chart_template_id", "in", chart_hierarchy_ids), + ('type_tax_use', 'in', ('purchase','all'))], + order="sequence") res.update({'purchase_tax': purchase_tax_ids and purchase_tax_ids[0] or False}) res.update({ 'purchase_tax_rate': 15.0, @@ -3351,12 +3395,7 @@ class wizard_multi_charts_accounts(osv.osv_memory): obj_tax_temp = self.pool.get('account.tax.template') chart_template = obj_wizard.chart_template_id vals = {} - # get the ids of all the parents of the selected account chart template - current_chart_template = chart_template - all_parents = [current_chart_template.id] - while current_chart_template.parent_id: - current_chart_template = current_chart_template.parent_id - all_parents.append(current_chart_template.id) + all_parents = self._get_chart_parent_ids(cr, uid, chart_template, context=context) # create tax templates and tax code templates from purchase_tax_rate and sale_tax_rate fields if not chart_template.complete_tax_set: value = obj_wizard.sale_tax_rate 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 bf1da5cb71b..42f3effd6f9 100644 --- a/addons/account/account_invoice.py +++ b/addons/account/account_invoice.py @@ -1431,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."), @@ -1467,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..3cf10f477e2 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 7f5fa9707c1..0fc9d9e2227 100644 --- a/addons/account/account_move_line.py +++ b/addons/account/account_move_line.py @@ -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 8ab93c2fcbb..09df82e38fd 100644 --- a/addons/account/res_config.py +++ b/addons/account/res_config.py @@ -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/static/src/js/account_move_line_quickadd.js b/addons/account/static/src/js/account_move_line_quickadd.js index 0b904e19da6..997b2b03bb6 100644 --- a/addons/account/static/src/js/account_move_line_quickadd.js +++ b/addons/account/static/src/js/account_move_line_quickadd.js @@ -84,7 +84,7 @@ openerp.account.quickadd = function (instance) { }, search_by_journal_period: function() { var self = this; - var domain = ['|',['debit', '!=', 0], ['credit', '!=', 0]]; + var domain = []; if (self.current_journal !== null) domain.push(["journal_id", "=", self.current_journal]); if (self.current_period !== null) domain.push(["period_id", "=", self.current_period]); self.last_context["journal_id"] = self.current_journal === null ? false : self.current_journal; 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_fiscalyear_close.yml b/addons/account/test/account_fiscalyear_close.yml index 1c3547ccefd..cc683ca8d46 100644 --- a/addons/account/test/account_fiscalyear_close.yml +++ b/addons/account/test/account_fiscalyear_close.yml @@ -4,20 +4,29 @@ !record {model: account.fiscalyear, id: account_fiscalyear_fiscalyear0}: code: !eval "'FY%s'% (datetime.now().year+1)" company_id: base.main_company - date_start: !eval "'%s-01-01' %(datetime.now().year+1)" - date_stop: !eval "'%s-12-31' %(datetime.now().year+1)" - name: !eval "'Fiscal Year %s' %(datetime.now().year+1)" + date_start: !eval "'%s-01-01' %(datetime.now().year-1)" + date_stop: !eval "'%s-12-31' %(datetime.now().year-1)" + name: !eval "'Fiscal Year %s' %(datetime.now().year-1)" - - I create a period for the opening entries for the new fiscalyear + I generate periods for the new fiscalyear - - !record {model: account.period, id: account_period_jan11}: - company_id: base.main_company - date_start: !eval "'%s-01-01'% (datetime.now().year+1)" - date_stop: !eval "'%s-01-01'% (datetime.now().year+1)" - fiscalyear_id: account_fiscalyear_fiscalyear0 - name: !eval "'OP %s' %(datetime.now().year+1)" - special: 1 - + !python {model: account.fiscalyear}: | + self.create_period(cr, uid, [ref("account_fiscalyear_fiscalyear0")]) +- + I create a new account invoice in the created fiscalyear +- + !record {model: account.invoice, id: account_invoice_current1}: + partner_id: base.res_partner_2 + date_invoice: !eval "'%s-01-02' %(datetime.now().year-1)" + invoice_line: + - partner_id: base.res_partner_2 + quantity: 1.0 + price_unit: 15.00 + name: Bying stuff +- + I validate the invoice +- + !workflow {model: account.invoice, action: invoice_open, ref: account.account_invoice_current1} - I made modification in journal so it can move entries - @@ -31,19 +40,40 @@ company_id: base.main_company centralisation: 1 - - I called the Generate Fiscalyear Opening Entries wizard + I call the Generate Fiscalyear Opening Entries wizard - !record {model: account.fiscalyear.close, id: account_fiscalyear_close_0}: - fy2_id: account_fiscalyear_fiscalyear0 - fy_id: account.data_fiscalyear + fy2_id: account.data_fiscalyear + fy_id: account_fiscalyear_fiscalyear0 journal_id: account.close_journal - period_id: account_period_jan11 + period_id: account.period_1 report_name: End of Fiscal Year Entry - I clicked on create Button - - !python {model: account.fiscalyear.close}: | self.data_save(cr, uid, [ref("account_fiscalyear_close_0")], {"lang": 'en_US', "active_model": "ir.ui.menu", "active_ids": [ref("account.menu_wizard_fy_close")], - "tz": False, "active_id": ref("account.menu_wizard_fy_close"), }) \ No newline at end of file + "tz": False, "active_id": ref("account.menu_wizard_fy_close"), }) +- + I close the previous fiscalyear +- + !record {model: account.fiscalyear.close.state, id: account_fiscalyear_close_state_0}: + fy_id: account_fiscalyear_fiscalyear0 +- + I clicked on Close States Button to close fiscalyear +- + !python {model: account.fiscalyear.close.state}: | + self.data_save(cr, uid, [ref("account_fiscalyear_close_state_0")], {"lang": 'en_US', + "active_model": "ir.ui.menu", "active_ids": [ref("account.menu_wizard_fy_close_state")], + "tz": False, "active_id": ref("account.menu_wizard_fy_close_state"), }) +- + I check that the fiscalyear state is now "Done" +- + !assert {model: account.fiscalyear, id: account_fiscalyear_fiscalyear0, string: Fiscal Year is in Done state}: + - state == 'done' +- + I check that the past accounts are taken into account in partner credit +- + !assert {model: res.partner, id: base.res_partner_2, string: Total Receivable does not takes unreconciled moves of previous years}: + - credit == 15.0 diff --git a/addons/account/test/account_fiscalyear_close_state.yml b/addons/account/test/account_fiscalyear_close_state.yml deleted file mode 100644 index 18c7dd570ed..00000000000 --- a/addons/account/test/account_fiscalyear_close_state.yml +++ /dev/null @@ -1,19 +0,0 @@ -- - I run the Close a Fiscalyear wizard to close the demo fiscalyear -- - !record {model: account.fiscalyear.close.state, id: account_fiscalyear_close_state_0}: - fy_id: data_fiscalyear -- - I clicked on Close States Button to close fiscalyear - -- - !python {model: account.fiscalyear.close.state}: | - self.data_save(cr, uid, [ref("account_fiscalyear_close_state_0")], {"lang": 'en_US', - "active_model": "ir.ui.menu", "active_ids": [ref("account.menu_wizard_fy_close_state")], - "tz": False, "active_id": ref("account.menu_wizard_fy_close_state"), }) -- - I check that the fiscalyear state is now "Done" -- - !assert {model: account.fiscalyear, id: data_fiscalyear, string: Fiscal Year is in Done state}: - - state == 'done' - 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 2232b8dc00e..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 - 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_common.py b/addons/account/wizard/account_report_common.py index b8dc562f3a0..6641c280765 100644 --- a/addons/account/wizard/account_report_common.py +++ b/addons/account/wizard/account_report_common.py @@ -154,6 +154,7 @@ class account_common_report(osv.osv_memory): result['fiscalyear'] = 'fiscalyear_id' in data['form'] and data['form']['fiscalyear_id'] 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'] == 'filter_date': result['date_from'] = data['form']['date_from'] result['date_to'] = data['form']['date_to'] diff --git a/addons/account/wizard/account_report_partner_ledger_view.xml b/addons/account/wizard/account_report_partner_ledger_view.xml index 34c5d55e4c1..61b57f87d7e 100644 --- a/addons/account/wizard/account_report_partner_ledger_view.xml +++ b/addons/account/wizard/account_report_partner_ledger_view.xml @@ -15,7 +15,7 @@ - + diff --git a/addons/account_accountant/i18n/ar.po b/addons/account_accountant/i18n/ar.po index 2ca2cfbd5df..5c2ffbd15bc 100644 --- a/addons/account_accountant/i18n/ar.po +++ b/addons/account_accountant/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/az.po b/addons/account_accountant/i18n/az.po index 315c2ee469c..57a4b0f3d06 100644 --- a/addons/account_accountant/i18n/az.po +++ b/addons/account_accountant/i18n/az.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bg.po b/addons/account_accountant/i18n/bg.po index 57ab5b14f93..e3e9d0715c0 100644 --- a/addons/account_accountant/i18n/bg.po +++ b/addons/account_accountant/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bn.po b/addons/account_accountant/i18n/bn.po index 65191d8e34d..9e0d1bd2455 100644 --- a/addons/account_accountant/i18n/bn.po +++ b/addons/account_accountant/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bs.po b/addons/account_accountant/i18n/bs.po index b45c0fd5ce9..46ec08cbec0 100644 --- a/addons/account_accountant/i18n/bs.po +++ b/addons/account_accountant/i18n/bs.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:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "Otvori meni računovodstva" #~ msgid "" #~ "\n" diff --git a/addons/account_accountant/i18n/ca.po b/addons/account_accountant/i18n/ca.po index 132bfc22980..f18881a0632 100644 --- a/addons/account_accountant/i18n/ca.po +++ b/addons/account_accountant/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/cs.po b/addons/account_accountant/i18n/cs.po index 4172b418a9f..f8d59601501 100644 --- a/addons/account_accountant/i18n/cs.po +++ b/addons/account_accountant/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/da.po b/addons/account_accountant/i18n/da.po index 0b2d606b335..0ce461fdb57 100644 --- a/addons/account_accountant/i18n/da.po +++ b/addons/account_accountant/i18n/da.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:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "Open Finans Menu" #~ msgid "Accountant" #~ msgstr "Bogholder" diff --git a/addons/account_accountant/i18n/de.po b/addons/account_accountant/i18n/de.po index 9ccaaaf580b..2fddae53f68 100644 --- a/addons/account_accountant/i18n/de.po +++ b/addons/account_accountant/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/el.po b/addons/account_accountant/i18n/el.po index 0f6f11e9206..bca20e06bbf 100644 --- a/addons/account_accountant/i18n/el.po +++ b/addons/account_accountant/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/en_GB.po b/addons/account_accountant/i18n/en_GB.po index 3c1b7ee32be..a310dec66e2 100644 --- a/addons/account_accountant/i18n/en_GB.po +++ b/addons/account_accountant/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es.po b/addons/account_accountant/i18n/es.po index 464caf962a9..016fef4f86c 100644 --- a/addons/account_accountant/i18n/es.po +++ b/addons/account_accountant/i18n/es.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-05 19:57+0000\n" -"Last-Translator: Santi (Pexego) \n" +"Last-Translator: Santi Argüeso(Pexego) \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:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_AR.po b/addons/account_accountant/i18n/es_AR.po new file mode 100644 index 00000000000..0e2684b0431 --- /dev/null +++ b/addons/account_accountant/i18n/es_AR.po @@ -0,0 +1,23 @@ +# Spanish (Argentina) 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-10-07 21:16+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Spanish (Argentina) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-10-08 05:42+0000\n" +"X-Generator: Launchpad (build 16799)\n" + +#. module: account_accountant +#: model:ir.actions.client,name:account_accountant.action_client_account_menu +msgid "Open Accounting Menu" +msgstr "" diff --git a/addons/account_accountant/i18n/es_CO.po b/addons/account_accountant/i18n/es_CO.po index 57c8f045a12..24335eaf913 100644 --- a/addons/account_accountant/i18n/es_CO.po +++ b/addons/account_accountant/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_CR.po b/addons/account_accountant/i18n/es_CR.po index f12ff15e063..dd56be0a86c 100644 --- a/addons/account_accountant/i18n/es_CR.po +++ b/addons/account_accountant/i18n/es_CR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: es\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/es_DO.po b/addons/account_accountant/i18n/es_DO.po index 1c69938d12f..0a995fe53b8 100644 --- a/addons/account_accountant/i18n/es_DO.po +++ b/addons/account_accountant/i18n/es_DO.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 20:23+0000\n" -"Last-Translator: Jose Ernesto Mendez \n" +"Last-Translator: Open Business Solutions, SRL. \n" "Language-Team: Spanish (Dominican Republic) \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:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_EC.po b/addons/account_accountant/i18n/es_EC.po index 07d81de8a28..a7895c70acb 100644 --- a/addons/account_accountant/i18n/es_EC.po +++ b/addons/account_accountant/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_MX.po b/addons/account_accountant/i18n/es_MX.po index 253aa4d53b7..524515c8f93 100644 --- a/addons/account_accountant/i18n/es_MX.po +++ b/addons/account_accountant/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_PY.po b/addons/account_accountant/i18n/es_PY.po index 41fd507d986..ebc125c9c27 100644 --- a/addons/account_accountant/i18n/es_PY.po +++ b/addons/account_accountant/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/et.po b/addons/account_accountant/i18n/et.po index 9145b5dbc63..a7d8ed05bec 100644 --- a/addons/account_accountant/i18n/et.po +++ b/addons/account_accountant/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fa.po b/addons/account_accountant/i18n/fa.po index 5f1c5af1f84..53b1ed80035 100644 --- a/addons/account_accountant/i18n/fa.po +++ b/addons/account_accountant/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fi.po b/addons/account_accountant/i18n/fi.po index 8a8d487a12c..6c9161b724a 100644 --- a/addons/account_accountant/i18n/fi.po +++ b/addons/account_accountant/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fr.po b/addons/account_accountant/i18n/fr.po index 0642a54eee8..9b0e8c79dd3 100644 --- a/addons/account_accountant/i18n/fr.po +++ b/addons/account_accountant/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/gl.po b/addons/account_accountant/i18n/gl.po index d2d841e8302..a57307870c6 100644 --- a/addons/account_accountant/i18n/gl.po +++ b/addons/account_accountant/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/he.po b/addons/account_accountant/i18n/he.po index 9d2d3854369..f9d5c663089 100644 --- a/addons/account_accountant/i18n/he.po +++ b/addons/account_accountant/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hi.po b/addons/account_accountant/i18n/hi.po index 8b8a68a57ec..22f3a47a03f 100644 --- a/addons/account_accountant/i18n/hi.po +++ b/addons/account_accountant/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hr.po b/addons/account_accountant/i18n/hr.po index a05862022e2..acbbbefc27f 100644 --- a/addons/account_accountant/i18n/hr.po +++ b/addons/account_accountant/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hu.po b/addons/account_accountant/i18n/hu.po index 9176d6342a0..9da40e725f1 100644 --- a/addons/account_accountant/i18n/hu.po +++ b/addons/account_accountant/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/id.po b/addons/account_accountant/i18n/id.po index b3d0656b8a5..b9f7625494b 100644 --- a/addons/account_accountant/i18n/id.po +++ b/addons/account_accountant/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/it.po b/addons/account_accountant/i18n/it.po index 122a581647d..14a7767cbfd 100644 --- a/addons/account_accountant/i18n/it.po +++ b/addons/account_accountant/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-11-28 19:50+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:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ja.po b/addons/account_accountant/i18n/ja.po index 1da9c374c7f..8214018aa51 100644 --- a/addons/account_accountant/i18n/ja.po +++ b/addons/account_accountant/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-31 05:16+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ko.po b/addons/account_accountant/i18n/ko.po index 6554e9e79fb..772261c71fa 100644 --- a/addons/account_accountant/i18n/ko.po +++ b/addons/account_accountant/i18n/ko.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: 2011-05-10 14:38+0000\n" -"Last-Translator: Gang Sung-jin \n" +"Last-Translator: Sungjin Gang \n" "Language-Team: Korean \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:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lo.po b/addons/account_accountant/i18n/lo.po index a5325f185f5..2d4875b4241 100644 --- a/addons/account_accountant/i18n/lo.po +++ b/addons/account_accountant/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lt.po b/addons/account_accountant/i18n/lt.po index ecd2fbd8655..2322c90caa7 100644 --- a/addons/account_accountant/i18n/lt.po +++ b/addons/account_accountant/i18n/lt.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:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "Atverti apskaitos meniu" #~ msgid "" #~ "\n" diff --git a/addons/account_accountant/i18n/lv.po b/addons/account_accountant/i18n/lv.po index 347ea5013a8..00893dbd5aa 100644 --- a/addons/account_accountant/i18n/lv.po +++ b/addons/account_accountant/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/mk.po b/addons/account_accountant/i18n/mk.po index 03dbf6bbe55..49457313f74 100644 --- a/addons/account_accountant/i18n/mk.po +++ b/addons/account_accountant/i18n/mk.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: 2013-02-25 14:55+0000\n" -"Last-Translator: Софче Димитријева \n" +"Last-Translator: Sofce Dimitrijeva \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:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/mn.po b/addons/account_accountant/i18n/mn.po index d72a2dc5198..255a374d564 100644 --- a/addons/account_accountant/i18n/mn.po +++ b/addons/account_accountant/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nb.po b/addons/account_accountant/i18n/nb.po index 62f729882dd..b7d94b1413d 100644 --- a/addons/account_accountant/i18n/nb.po +++ b/addons/account_accountant/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nl.po b/addons/account_accountant/i18n/nl.po index b9f0812c7cf..4baff389479 100644 --- a/addons/account_accountant/i18n/nl.po +++ b/addons/account_accountant/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-24 17:35+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:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nl_BE.po b/addons/account_accountant/i18n/nl_BE.po index 668f12a5152..391e5389100 100644 --- a/addons/account_accountant/i18n/nl_BE.po +++ b/addons/account_accountant/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/oc.po b/addons/account_accountant/i18n/oc.po index c06a7f7e64c..d63ab5fee0e 100644 --- a/addons/account_accountant/i18n/oc.po +++ b/addons/account_accountant/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pl.po b/addons/account_accountant/i18n/pl.po index 4e900fdeb1b..4ebf80193d6 100644 --- a/addons/account_accountant/i18n/pl.po +++ b/addons/account_accountant/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pt.po b/addons/account_accountant/i18n/pt.po index 3aca02629fd..957d01d464e 100644 --- a/addons/account_accountant/i18n/pt.po +++ b/addons/account_accountant/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pt_BR.po b/addons/account_accountant/i18n/pt_BR.po index 8b748ab1969..295edf01676 100644 --- a/addons/account_accountant/i18n/pt_BR.po +++ b/addons/account_accountant/i18n/pt_BR.po @@ -15,13 +15,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:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "Abrir Menu de Contabilidade" +msgstr "Abra o menu de Contabilidade" #~ msgid "Accountant" #~ msgstr "Contador" diff --git a/addons/account_accountant/i18n/ro.po b/addons/account_accountant/i18n/ro.po index 25b972f4366..25cbabf596d 100644 --- a/addons/account_accountant/i18n/ro.po +++ b/addons/account_accountant/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ru.po b/addons/account_accountant/i18n/ru.po index c144136b8dc..8d2c290c788 100644 --- a/addons/account_accountant/i18n/ru.po +++ b/addons/account_accountant/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sk.po b/addons/account_accountant/i18n/sk.po index ea10b90ce3c..2770df85235 100644 --- a/addons/account_accountant/i18n/sk.po +++ b/addons/account_accountant/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sl.po b/addons/account_accountant/i18n/sl.po index 59bc032e763..59d7cd438ed 100644 --- a/addons/account_accountant/i18n/sl.po +++ b/addons/account_accountant/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sq.po b/addons/account_accountant/i18n/sq.po index ced7b023367..026e05e11c1 100644 --- a/addons/account_accountant/i18n/sq.po +++ b/addons/account_accountant/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sr.po b/addons/account_accountant/i18n/sr.po index 28209016799..9ab294c0975 100644 --- a/addons/account_accountant/i18n/sr.po +++ b/addons/account_accountant/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sr@latin.po b/addons/account_accountant/i18n/sr@latin.po index 635c1917d39..1b49ca80cb1 100644 --- a/addons/account_accountant/i18n/sr@latin.po +++ b/addons/account_accountant/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sv.po b/addons/account_accountant/i18n/sv.po index 6fadf354f61..7f7e4429a9e 100644 --- a/addons/account_accountant/i18n/sv.po +++ b/addons/account_accountant/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ta.po b/addons/account_accountant/i18n/ta.po index cd4f4b00311..db2a93af6dc 100644 --- a/addons/account_accountant/i18n/ta.po +++ b/addons/account_accountant/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/th.po b/addons/account_accountant/i18n/th.po index 93b99bbd49c..6794bb42348 100644 --- a/addons/account_accountant/i18n/th.po +++ b/addons/account_accountant/i18n/th.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:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "เปิด เมนูบัญชี" #~ msgid "Accountant" #~ msgstr "ผู้ทำบัญชี" diff --git a/addons/account_accountant/i18n/tr.po b/addons/account_accountant/i18n/tr.po index 02e9331e00a..387b796fa8d 100644 --- a/addons/account_accountant/i18n/tr.po +++ b/addons/account_accountant/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/uk.po b/addons/account_accountant/i18n/uk.po index 3b3fe041df2..b1e3ba0bd12 100644 --- a/addons/account_accountant/i18n/uk.po +++ b/addons/account_accountant/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/vi.po b/addons/account_accountant/i18n/vi.po index a34c7e21edc..56c349aa3c6 100644 --- a/addons/account_accountant/i18n/vi.po +++ b/addons/account_accountant/i18n/vi.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:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "Mở menu kế toán" #~ msgid "Accountant" #~ msgstr "Kế toán viên" diff --git a/addons/account_accountant/i18n/zh_CN.po b/addons/account_accountant/i18n/zh_CN.po index ecc12d62ad8..db1cf114b04 100644 --- a/addons/account_accountant/i18n/zh_CN.po +++ b/addons/account_accountant/i18n/zh_CN.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:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "开启财务菜单" +msgstr "打开会计菜单" #~ msgid "Accountant" #~ msgstr "会计人员管理" diff --git a/addons/account_accountant/i18n/zh_TW.po b/addons/account_accountant/i18n/zh_TW.po index 57b62525197..47ccd55a6a9 100644 --- a/addons/account_accountant/i18n/zh_TW.po +++ b/addons/account_accountant/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_analytic_analysis/account_analytic_analysis.py b/addons/account_analytic_analysis/account_analytic_analysis.py index 7b21a4f1855..65d87ca3086 100644 --- a/addons/account_analytic_analysis/account_analytic_analysis.py +++ b/addons/account_analytic_analysis/account_analytic_analysis.py @@ -655,7 +655,7 @@ class account_analytic_account(osv.osv): if not contract.partner_id: raise osv.except_osv(_('No Customer Defined!'),_("You must first select a Customer for Contract %s!") % contract.name ) - fpos = contract.partner_id.property_account_position.id or False + fpos = contract.partner_id.property_account_position or False journal_ids = journal_obj.search(cr, uid, [('type', '=','sale'),('company_id', '=', contract.company_id.id or False)], limit=1) if not journal_ids: raise osv.except_osv(_('Error!'), @@ -673,7 +673,7 @@ class account_analytic_account(osv.osv): 'journal_id': len(journal_ids) and journal_ids[0] or False, 'date_invoice': contract.recurring_next_date, 'origin': contract.name, - 'fiscal_position': fpos, + 'fiscal_position': fpos and fpos.id, 'payment_term': partner_payment_term, 'company_id': contract.company_id.id or False, } @@ -687,7 +687,7 @@ class account_analytic_account(osv.osv): account_id = res.categ_id.property_account_income_categ.id account_id = fpos_obj.map_account(cr, uid, fpos, account_id) - taxes = res.taxes_id and res.taxes_id or False + taxes = res.taxes_id or False tax_id = fpos_obj.map_tax(cr, uid, fpos, taxes) invoice_line_vals = { diff --git a/addons/account_analytic_analysis/account_analytic_analysis_view.xml b/addons/account_analytic_analysis/account_analytic_analysis_view.xml index cd4be740815..8e08f90eb02 100644 --- a/addons/account_analytic_analysis/account_analytic_analysis_view.xml +++ b/addons/account_analytic_analysis/account_analytic_analysis_view.xml @@ -239,8 +239,8 @@ - - + + diff --git a/addons/account_analytic_analysis/i18n/ar.po b/addons/account_analytic_analysis/i18n/ar.po index a1a978a6e94..1416754ac45 100644 --- a/addons/account_analytic_analysis/i18n/ar.po +++ b/addons/account_analytic_analysis/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -350,6 +350,7 @@ msgid "" msgstr "العقد في نظام أوبن إي أر بي هو حساب تحليلي لشريك لك." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/bg.po b/addons/account_analytic_analysis/i18n/bg.po index 73ffbf7e1ac..34800065d7b 100644 --- a/addons/account_analytic_analysis/i18n/bg.po +++ b/addons/account_analytic_analysis/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -344,6 +344,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/bs.po b/addons/account_analytic_analysis/i18n/bs.po index 861136a74ab..7cfc25aff24 100644 --- a/addons/account_analytic_analysis/i18n/bs.po +++ b/addons/account_analytic_analysis/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -345,6 +345,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/ca.po b/addons/account_analytic_analysis/i18n/ca.po index c476f2dd32a..577b7469d76 100644 --- a/addons/account_analytic_analysis/i18n/ca.po +++ b/addons/account_analytic_analysis/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -345,6 +345,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/cs.po b/addons/account_analytic_analysis/i18n/cs.po index 2e2e6caa70d..babe4754b5e 100644 --- a/addons/account_analytic_analysis/i18n/cs.po +++ b/addons/account_analytic_analysis/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -99,7 +99,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -342,6 +342,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/da.po b/addons/account_analytic_analysis/i18n/da.po index d9a367282ff..3fe6211e478 100644 --- a/addons/account_analytic_analysis/i18n/da.po +++ b/addons/account_analytic_analysis/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/de.po b/addons/account_analytic_analysis/i18n/de.po index 8cb15939537..52012b9094d 100644 --- a/addons/account_analytic_analysis/i18n/de.po +++ b/addons/account_analytic_analysis/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Summe abgerechneter Arbeitszeiten" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Auftragspositionen von %s" @@ -367,6 +367,7 @@ msgid "" msgstr "Ein Vertrag ist ein Kundenprojekt mit Kostenstelle" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Aufträge" diff --git a/addons/account_analytic_analysis/i18n/el.po b/addons/account_analytic_analysis/i18n/el.po index a80f0069149..f90616d9608 100644 --- a/addons/account_analytic_analysis/i18n/el.po +++ b/addons/account_analytic_analysis/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -347,6 +347,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/en_GB.po b/addons/account_analytic_analysis/i18n/en_GB.po index 51acf03df75..94fd5d7b12e 100644 --- a/addons/account_analytic_analysis/i18n/en_GB.po +++ b/addons/account_analytic_analysis/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -107,7 +107,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Sum of timesheet lines invoiced for this contract." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Sales Order Lines of %s" @@ -373,6 +373,7 @@ msgstr "" "A contract in OpenERP is an analytic account having a partner set on it." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Sales Orders" diff --git a/addons/account_analytic_analysis/i18n/es.po b/addons/account_analytic_analysis/i18n/es.po index 6edc665e86f..a4c696d38fb 100644 --- a/addons/account_analytic_analysis/i18n/es.po +++ b/addons/account_analytic_analysis/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -105,7 +105,7 @@ msgstr "" "Suma de las líneas de las hojas de servicios facturadas para este contrato" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Líneas del pedido de venta de %s" @@ -369,6 +369,7 @@ msgstr "" "Un contrato en OpenERP es una cuenta analítica que tiene un cliente asignado." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Pedidos de venta" diff --git a/addons/account_analytic_analysis/i18n/es_AR.po b/addons/account_analytic_analysis/i18n/es_AR.po index bbc944a474e..f0392fdb515 100644 --- a/addons/account_analytic_analysis/i18n/es_AR.po +++ b/addons/account_analytic_analysis/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -344,6 +344,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/es_CR.po b/addons/account_analytic_analysis/i18n/es_CR.po index 4dddf07a516..707d6f7b810 100644 --- a/addons/account_analytic_analysis/i18n/es_CR.po +++ b/addons/account_analytic_analysis/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: account_analytic_analysis @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -352,6 +352,7 @@ msgstr "" "Un contrato en OpenERP es una cuenta analítica que tiene un cliente asignado." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/es_EC.po b/addons/account_analytic_analysis/i18n/es_EC.po index 8d21363248c..98544eb8a5a 100644 --- a/addons/account_analytic_analysis/i18n/es_EC.po +++ b/addons/account_analytic_analysis/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -351,6 +351,7 @@ msgstr "" "Un contrato en OpenERP es una cuenta analítica que tiene un cliente asignado." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/es_MX.po b/addons/account_analytic_analysis/i18n/es_MX.po index 04dd5bd9ff0..45b36f417f2 100644 --- a/addons/account_analytic_analysis/i18n/es_MX.po +++ b/addons/account_analytic_analysis/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -109,7 +109,7 @@ msgstr "" "Suma de las lineas de la hoja de trabajo facturadas para este contrato." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -377,6 +377,7 @@ msgstr "" "Un contrato en OpenERP es una cuenta analítica que tiene un cliente asignado." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Orden de Venta" diff --git a/addons/account_analytic_analysis/i18n/es_PY.po b/addons/account_analytic_analysis/i18n/es_PY.po index 0fc7d959c39..07d7392b025 100644 --- a/addons/account_analytic_analysis/i18n/es_PY.po +++ b/addons/account_analytic_analysis/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -345,6 +345,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/et.po b/addons/account_analytic_analysis/i18n/et.po index 936e5ce1244..628e876abd4 100644 --- a/addons/account_analytic_analysis/i18n/et.po +++ b/addons/account_analytic_analysis/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/fa.po b/addons/account_analytic_analysis/i18n/fa.po index 0a792d53ab2..738b43e3907 100644 --- a/addons/account_analytic_analysis/i18n/fa.po +++ b/addons/account_analytic_analysis/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/fi.po b/addons/account_analytic_analysis/i18n/fi.po index de2f6705571..fab530441fe 100644 --- a/addons/account_analytic_analysis/i18n/fi.po +++ b/addons/account_analytic_analysis/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -348,6 +348,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/fr.po b/addons/account_analytic_analysis/i18n/fr.po index ac625e8cb31..f5ca9bf5fe2 100644 --- a/addons/account_analytic_analysis/i18n/fr.po +++ b/addons/account_analytic_analysis/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Total du temps passé facturé pour ce contrat." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Lignes de commandes de %s" @@ -146,6 +146,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquer pour créer un nouveau contrat.\n" +"

\n" +" Vous trouverez ici les contrats à renouveler car leur\n" +" date de fin est échue ou que la charge de travail déjà\n" +" fournie est supérieure au maximum autorisée.\n" +"

\n" +" OpenERP positionne automatiquement les contrats à renouveler " +"en état\n" +" d'attente. Après négociation, le vendeur doit clore ou " +"renouveler les\n" +" contrats en attente.\n" +"

\n" +" " #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -358,6 +372,7 @@ msgstr "" "Un contrat dans OpenERP est un compte analytique associé à un partenaire." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Commandes" @@ -457,6 +472,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour créer un nouveau contract.\n" +"

\n" +" Utilisez les contrats pour suivre les tâches, les " +"incidents, les feuilles de temps ou la facturation basée sur le travail " +"réalisé, les dépenses et/ou les commandes de vente. OpenERP gérera " +"automatiquement les alertes de renouvellement des contrats pour le bon " +"vendeur.\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,toinvoice_total:0 diff --git a/addons/account_analytic_analysis/i18n/gl.po b/addons/account_analytic_analysis/i18n/gl.po index 46af589e2be..898a80dd6aa 100644 --- a/addons/account_analytic_analysis/i18n/gl.po +++ b/addons/account_analytic_analysis/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -103,7 +103,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -346,6 +346,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/gu.po b/addons/account_analytic_analysis/i18n/gu.po index 018583c830d..a78a554a27f 100644 --- a/addons/account_analytic_analysis/i18n/gu.po +++ b/addons/account_analytic_analysis/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -351,6 +351,7 @@ msgid "" msgstr "OpenERPમાં કરાર એટલે કે વિશ્લેષણાત્મક ખાતું જેમાં સહ-ભાગીદાર હોય." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/hr.po b/addons/account_analytic_analysis/i18n/hr.po index 262b6cbb688..aa288518284 100644 --- a/addons/account_analytic_analysis/i18n/hr.po +++ b/addons/account_analytic_analysis/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -344,6 +344,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Prodajni nalozi" diff --git a/addons/account_analytic_analysis/i18n/hu.po b/addons/account_analytic_analysis/i18n/hu.po index efa5d907cc9..0f0e331986c 100644 --- a/addons/account_analytic_analysis/i18n/hu.po +++ b/addons/account_analytic_analysis/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -107,7 +107,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Ennek a szerződéshez tartozó időkimutatás számlázott sorai." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Megrendelés sorok ebből %s" @@ -152,6 +152,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új szerződés létrehozásához.\n" +"

\n" +" Itt találhatók a frissítendő szerződések, melyeknek a " +"lejárati\n" +" ideje túllépett, vagy a belelőlt energia nagyobb mint a\n" +" maximum megengedett.\n" +"

\n" +" OpenERP automatikusan frissítésre állítja a függőben\n" +" lévőket. A tárgyalás után, az értékesítőnek le kell zárnia " +"vagy meg \n" +" kell újítania a fügőben lévő szerződéseket.\n" +"

\n" +" " #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -234,7 +248,7 @@ msgstr "Nincs mit számlázni, hozzon létre" #. module: account_analytic_analysis #: model:res.groups,name:account_analytic_analysis.group_template_required msgid "Mandatory use of templates in contracts" -msgstr "" +msgstr "Kizárólag sablonok használhatóak a szerződésekhez" #. module: account_analytic_analysis #: field:account.analytic.account,hours_quantity:0 @@ -325,6 +339,8 @@ msgid "" "Number of time (hours/days) (from journal of type 'general') that can be " "invoiced if you invoice based on analytic account." msgstr "" +"Idő mennyisége (órák/napok) (Az 'általános' típusú naplóból) melyek " +"számlázhatóak, ha a számlázás a gyüjtőkódon alapszik." #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -360,6 +376,7 @@ msgstr "" "kapcsoltak." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Vevői megrendelések" @@ -401,6 +418,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson szerződés sablon létrehozásához.\n" +"

\n" +" Sablonokat használ a szerződések/projektek " +"elképzelésénak kialakításához, \n" +" melyeket az értékesítő kiválaszthat és gyorsan " +"beállíthat a szerződés\n" +" feltételeihez és részleteihez.\n" +"

\n" +" " #. module: account_analytic_analysis #: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user diff --git a/addons/account_analytic_analysis/i18n/id.po b/addons/account_analytic_analysis/i18n/id.po index 0ac1114040d..05e41479d5c 100644 --- a/addons/account_analytic_analysis/i18n/id.po +++ b/addons/account_analytic_analysis/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -99,7 +99,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -342,6 +342,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/it.po b/addons/account_analytic_analysis/i18n/it.po index 0bda88b3898..5da1aa7d8c6 100644 --- a/addons/account_analytic_analysis/i18n/it.po +++ b/addons/account_analytic_analysis/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -105,7 +105,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Somma delle linee timesheet fatturate di questo contratto." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Linea ordine di vendita di %s" @@ -371,6 +371,7 @@ msgstr "" "Un contratto in OpenERP è un conto analitico associato ad un partner." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Ordini di Vendita" diff --git a/addons/account_analytic_analysis/i18n/ja.po b/addons/account_analytic_analysis/i18n/ja.po index 842adf79ac5..70e22c17e45 100644 --- a/addons/account_analytic_analysis/i18n/ja.po +++ b/addons/account_analytic_analysis/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "OpenERpの契約はその上にパートナのセットを持つ分析アカウントです。" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/ko.po b/addons/account_analytic_analysis/i18n/ko.po index c9635cb1db6..5980a7c3890 100644 --- a/addons/account_analytic_analysis/i18n/ko.po +++ b/addons/account_analytic_analysis/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/lt.po b/addons/account_analytic_analysis/i18n/lt.po index aca06131694..3b8f84a1140 100644 --- a/addons/account_analytic_analysis/i18n/lt.po +++ b/addons/account_analytic_analysis/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -344,6 +344,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/lv.po b/addons/account_analytic_analysis/i18n/lv.po index 3a4f78bcf41..68cca550a15 100644 --- a/addons/account_analytic_analysis/i18n/lv.po +++ b/addons/account_analytic_analysis/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -347,6 +347,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/mk.po b/addons/account_analytic_analysis/i18n/mk.po index dd2c74d27a6..9401b80bd02 100644 --- a/addons/account_analytic_analysis/i18n/mk.po +++ b/addons/account_analytic_analysis/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -30,7 +30,7 @@ msgstr "Групирај По..." #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "To Invoice" -msgstr "За фактурирање" +msgstr "Да се фактурира" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -48,7 +48,7 @@ msgid "" "If invoice from the costs, this is the date of the latest work or cost that " "have been invoiced." msgstr "" -"Доколку фактурирате од трошоци, ова е датумот на последната работи или " +"Доколку фактурирате од трошоци, ова е датумот на последната работа или " "трошок што е фактуриран." #. module: account_analytic_analysis @@ -94,15 +94,15 @@ msgstr "Сума на понудите за овој договор" #. module: account_analytic_analysis #: help:account.analytic.account,ca_invoiced:0 msgid "Total customer invoiced amount for this account." -msgstr "Вкупен фактуриран износ за оваа конто" +msgstr "Вкупно фактуриран износ на купувач за оваа сметка." #. module: account_analytic_analysis #: help:account.analytic.account,timesheet_ca_invoiced:0 msgid "Sum of timesheet lines invoiced for this contract." -msgstr "" +msgstr "Сума на фактурирани ставки од временската таблица за овој договор." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Ставки од налози за продажба на %s" @@ -118,7 +118,7 @@ msgstr "" #: field:account_analytic_analysis.summary.user,account_id:0 #: model:ir.model,name:account_analytic_analysis.model_account_analytic_account msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -128,7 +128,7 @@ msgstr "Партнер" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts that are not assigned to an account manager." -msgstr "Договори што не се доделени на акаунт менаџер" +msgstr "Договори што не се доделени на менаџерот на сметката." #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue @@ -152,10 +152,10 @@ msgstr "" " Кликнете овде за да дефинирате нов договор.\n" "

\n" " Овде ќе ги најдете договорите што треба да се обноват поради " -"истекување или работата е поголема од максимално дозволената\n" +"истекување или работата е поголема од максимално дозволената.\n" "

\n" "OpenERP автоматски ги поставува договорите за обновување во статус на " -"чекање. После преговарањето, референтот треба да го затвори или да ги обнови " +"чекање. После преговарањето, продавачот треба да го затвори или да ги обнови " "договорите на чекње.\n" "

\n" " " @@ -174,7 +174,7 @@ msgstr "Менаџер на сметка" #: help:account.analytic.account,remaining_hours_to_invoice:0 msgid "Computed using the formula: Maximum Time - Total Invoiced Time" msgstr "" -"Пресметано со користење на формулата: Максимум Време - Вкупно Фактурирано " +"Пресметано со користење на формулата: Максимално Време - Вкупно Фактурирано " "Време" #. module: account_analytic_analysis @@ -185,13 +185,13 @@ msgstr "Очекувано" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts not assigned" -msgstr "Не доделени договори" +msgstr "Недоделени договори" #. module: account_analytic_analysis #: help:account.analytic.account,theorical_margin:0 msgid "Computed using the formula: Theoretical Revenue - Total Costs" msgstr "" -"Пресметано со користење на формулата: Теоретска добивка - Вкупни трошоци" +"Пресметано со користење на формулата: Теоретски приход - Вкупни трошоци" #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_invoiced:0 @@ -224,7 +224,8 @@ msgstr "Реален процент на маржа (%)" #: help:account.analytic.account,remaining_hours:0 msgid "Computed using the formula: Maximum Time - Total Worked Time" msgstr "" -"Пресметано со користење на формулата: МаксималноВреме - ВкупноСработеноВреме" +"Пресметано со користење на формулата: Максимално Време - Вкупно Сработено " +"Време" #. module: account_analytic_analysis #: help:account.analytic.account,hours_quantity:0 @@ -232,6 +233,8 @@ msgid "" "Number of time you spent on the analytic account (from timesheet). It " "computes quantities on all journal of type 'general'." msgstr "" +"Време кое го поминувате на аналитичката сметка (од временска таблица). Ги " +"пресметува количините на сите дневници од типот 'општо'." #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -241,7 +244,7 @@ msgstr "Нема ништо за фактурирање, креирајте" #. module: account_analytic_analysis #: model:res.groups,name:account_analytic_analysis.group_template_required msgid "Mandatory use of templates in contracts" -msgstr "Задолжително користење на шаблони во договори" +msgstr "Задолжително користење на урнеци во договори" #. module: account_analytic_analysis #: field:account.analytic.account,hours_quantity:0 @@ -262,7 +265,7 @@ msgstr "Резиме на часови по месец" #: help:account.analytic.account,real_margin_rate:0 msgid "Computes using the formula: (Real Margin / Total Costs) * 100." msgstr "" -"Пресметано со користење на формулата :(Реална маржа/ Вкупни трошоци)*100" +"Пресметано со користење на формулата :(Реална маржа / Вкупни трошоци)*100" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -325,7 +328,7 @@ msgstr "Договори што чекаат на обновување" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Timesheets" -msgstr "Работни часови" +msgstr "Распореди" #. module: account_analytic_analysis #: help:account.analytic.account,hours_qtt_non_invoiced:0 @@ -333,8 +336,8 @@ msgid "" "Number of time (hours/days) (from journal of type 'general') that can be " "invoiced if you invoice based on analytic account." msgstr "" -"Време(часови/денови)(од дневни со тип 'општо') што може да биде фактурирано " -"доколку фактурата е базирана на аналитичко конто." +"Време(часови/денови)(од дневник со тип 'општо') што може да биде фактурирано " +"доколку фактурата е базирана на аналитичка сметка." #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -344,7 +347,7 @@ msgstr "Чекање" #. module: account_analytic_analysis #: field:account.analytic.account,is_overdue_quantity:0 msgid "Overdue Quantity" -msgstr "" +msgstr "Заостната количина" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -354,7 +357,7 @@ msgstr "Статус" #. module: account_analytic_analysis #: field:account.analytic.account,ca_theorical:0 msgid "Theoretical Revenue" -msgstr "Теоретска добивка" +msgstr "Теоретски приход" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -368,6 +371,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Налози за продажба" @@ -376,6 +380,8 @@ msgstr "Налози за продажба" #: help:account.analytic.account,last_invoice_date:0 msgid "If invoice from the costs, this is the date of the latest invoiced." msgstr "" +"Доколку фактурирате од трошоци, ова е датумот на последниот фактуриран " +"трошок." #. module: account_analytic_analysis #: help:account.analytic.account,ca_theorical:0 @@ -384,9 +390,8 @@ msgid "" "if all these costs have been invoiced at the normal sale price provided by " "the pricelist." msgstr "" -"Базирано на трошоците на проектот, колкава би била заработката доколку сите " -"овие трошоци би биле фактурирани во нормална продажна цена, дадена во " -"ценовникот." +"Засновано на трошоците на проектот, колкав би бил приходот доколку сите овие " +"трошоци би биле фактурирани по нормална продажна цена, дадена во ценовникот." #. module: account_analytic_analysis #: field:account.analytic.account,user_ids:0 @@ -407,6 +412,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да креирате урнек на договор.\n" +"

\n" +" Урнеците се користат за да го навестат " +"договорот/проектот кој \n" +" кој може да биде селектиран за брзо конфигурирање на\n" +" роковите и условите од договорот.\n" +"

\n" +" " #. module: account_analytic_analysis #: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user @@ -424,6 +438,8 @@ msgid "" "Allows you to set the template field as required when creating an analytic " "account or a contract." msgstr "" +"Ви овозможува да го подесите полето за урнек како што се бара кога се креира " +"аналитичка сметка или договор." #. module: account_analytic_analysis #: help:account.analytic.account,hours_qtt_invoiced:0 @@ -437,7 +453,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,revenue_per_hour:0 msgid "Revenue per Time (real)" -msgstr "" +msgstr "Приход по време (реално)" #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue_all @@ -454,6 +470,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да креирате нов договор.\n" +"

\n" +" Користете ги договорите за да ги следите задачите, " +"распоредите или фактурирањето врз основа на\n" +" завршена работа, трошоци и/или налози за продажба. " +"OpenERP автоматски ќе ги управува\n" +" алармите за обновување на договорите до одговорниот " +"продавач.\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,toinvoice_total:0 @@ -505,6 +532,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Овде ќе ги најдете распоредите и набавките кои сте ги " +"направиле за\n" +" договорите кои може повторно да бидат фактурирани на " +"купувачот. Доколку сакате\n" +" да ги снимите новите активности за да ги фактурирате, треба " +"да го употребите менито\n" +" временска таблица.\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_non_invoiced:0 @@ -543,12 +580,12 @@ msgstr " Сума на се што би можело да се фактурир #. module: account_analytic_analysis #: field:account.analytic.account,theorical_margin:0 msgid "Theoretical Margin" -msgstr "" +msgstr "Теоретска маржа" #. module: account_analytic_analysis #: field:account.analytic.account,remaining_total:0 msgid "Total Remaining" -msgstr "Преостанато вкупно" +msgstr "Вкупно преостанато" #. module: account_analytic_analysis #: help:account.analytic.account,real_margin:0 @@ -569,7 +606,7 @@ msgstr "Фиксна цена" #. module: account_analytic_analysis #: help:account.analytic.account,last_worked_date:0 msgid "Date of the latest work done on this account." -msgstr "Датум на последната работа завршена на оваа конто" +msgstr "Датум на последната работа завршена на оваа сметка" #. module: account_analytic_analysis #: model:ir.model,name:account_analytic_analysis.model_sale_config_settings @@ -579,13 +616,13 @@ msgstr "sale.config.settings" #. module: account_analytic_analysis #: field:sale.config.settings,group_template_required:0 msgid "Mandatory use of templates." -msgstr "Задолжително користење на шаблони" +msgstr "Задолжително користење на урнеци" #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.template_of_contract_action #: model:ir.ui.menu,name:account_analytic_analysis.menu_template_of_contract_action msgid "Contract Template" -msgstr "Шаблон на договор" +msgstr "Урнек на договор" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -598,6 +635,8 @@ msgid "" "Total of costs for this account. It includes real costs (from invoices) and " "indirect costs, like time spent on timesheets." msgstr "" +"Вкупно трошоци за оваа сметка. Тоа вклучува реални трошоци (од фактурите) и " +"индиректни трошоци, како време поминато на распореди." #. module: account_analytic_analysis #: field:account.analytic.account,est_total:0 @@ -607,7 +646,7 @@ msgstr "Вкупна проценка" #. module: account_analytic_analysis #: field:account.analytic.account,remaining_ca:0 msgid "Remaining Revenue" -msgstr "" +msgstr "Преостанат приход" #. module: account_analytic_analysis #: help:account.analytic.account,ca_to_invoice:0 @@ -615,6 +654,8 @@ msgid "" "If invoice from analytic account, the remaining amount you can invoice to " "the customer based on the total costs." msgstr "" +"Доколку фактурирате од аналитичка сметка, преостанатиот износ можете да го " +"фактурирате на купувачот врз основа на вкупните трошоци." #. module: account_analytic_analysis #: field:account_analytic_analysis.summary.month,unit_amount:0 @@ -626,12 +667,12 @@ msgstr "Вкупно време" #: model:res.groups,comment:account_analytic_analysis.group_template_required msgid "" "the field template of the analytic accounts and contracts will be required." -msgstr "" +msgstr "полето Урнек на аналитичките сметки и договори ќе бидат потребни." #. module: account_analytic_analysis #: field:account.analytic.account,invoice_on_timesheets:0 msgid "On Timesheets" -msgstr "" +msgstr "На распореди" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/mn.po b/addons/account_analytic_analysis/i18n/mn.po index 242bf558f84..a52203a03c8 100644 --- a/addons/account_analytic_analysis/i18n/mn.po +++ b/addons/account_analytic_analysis/i18n/mn.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -103,7 +103,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Энэ гэрээнд нэхэмжлэгдсэн цагийн хуудсын мөрийн нийлбэр" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "%s-н Борлуулалтын Захиалгын Мөрүүд" @@ -118,7 +118,7 @@ msgstr "Тооцоололт хийсэн томъёо: Нэхэмжилсэн #: field:account_analytic_analysis.summary.user,account_id:0 #: model:ir.model,name:account_analytic_analysis.model_account_analytic_account msgid "Analytic Account" -msgstr "Аналитик данс" +msgstr "Шинжилгээний Данс" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -366,6 +366,7 @@ msgid "" msgstr "OpenERP-д гэрээ нь харилцагч бүхий шинжилгээний данс юм." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Борлуулалтын захиалгууд" diff --git a/addons/account_analytic_analysis/i18n/nb.po b/addons/account_analytic_analysis/i18n/nb.po index e7a28c78415..526287b6e85 100644 --- a/addons/account_analytic_analysis/i18n/nb.po +++ b/addons/account_analytic_analysis/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Summen av timeliste linjer fakturert for denne kontrakten." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -355,6 +355,7 @@ msgstr "" "En kontrakt i OpenERP er et analytisk konto med en partner sett på den." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Salgsordre." diff --git a/addons/account_analytic_analysis/i18n/nl.po b/addons/account_analytic_analysis/i18n/nl.po index 52afaf67d1e..ff7ac1d8d6a 100644 --- a/addons/account_analytic_analysis/i18n/nl.po +++ b/addons/account_analytic_analysis/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-01 15:59+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:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -106,7 +106,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Totaal aan urenstaatregels gefactureerd voor dit contract" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Verkooporderregels van %s" @@ -374,6 +374,7 @@ msgstr "" "Een contract in OpenERP is een kostenplaats met een gekoppelde relatie." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Verkooporders" diff --git a/addons/account_analytic_analysis/i18n/nl_BE.po b/addons/account_analytic_analysis/i18n/nl_BE.po index 50122bc8f38..e350a84f297 100644 --- a/addons/account_analytic_analysis/i18n/nl_BE.po +++ b/addons/account_analytic_analysis/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/oc.po b/addons/account_analytic_analysis/i18n/oc.po index b9eee924707..1c5f1159541 100644 --- a/addons/account_analytic_analysis/i18n/oc.po +++ b/addons/account_analytic_analysis/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/pl.po b/addons/account_analytic_analysis/i18n/pl.po index 850b8d37dd6..716e4a89fa1 100644 --- a/addons/account_analytic_analysis/i18n/pl.po +++ b/addons/account_analytic_analysis/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -104,7 +104,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Suma pozycji kart czasu pracy zafakturowanych dla tej umowy." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -364,6 +364,7 @@ msgid "" msgstr "Umowa w OpenERP jest kontem analitycznym z ustawionym partnerem." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Zamówienia sprzedaży" diff --git a/addons/account_analytic_analysis/i18n/pt.po b/addons/account_analytic_analysis/i18n/pt.po index 50e150e1fd9..fe169110433 100644 --- a/addons/account_analytic_analysis/i18n/pt.po +++ b/addons/account_analytic_analysis/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -355,6 +355,7 @@ msgstr "" "sobre ele." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Ordens de venda" diff --git a/addons/account_analytic_analysis/i18n/pt_BR.po b/addons/account_analytic_analysis/i18n/pt_BR.po index f565520def5..3bbcd2446a6 100644 --- a/addons/account_analytic_analysis/i18n/pt_BR.po +++ b/addons/account_analytic_analysis/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -106,7 +106,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Total de linhas da planilha de horas faturadas para este contrato." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Linhas do Pedido de Vendas de %s" @@ -371,6 +371,7 @@ msgstr "" "nela." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Pedidos de Vendas" diff --git a/addons/account_analytic_analysis/i18n/ro.po b/addons/account_analytic_analysis/i18n/ro.po index 2b8dafdef78..2ff56365ac8 100644 --- a/addons/account_analytic_analysis/i18n/ro.po +++ b/addons/account_analytic_analysis/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -107,7 +107,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Suma liniilor fiselor de pontaj facturate pentru acest contract." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Liniile Comenzii de Vanzare de %s" @@ -375,6 +375,7 @@ msgstr "" "Un contract in OpenERP este un cont analitic care are setat un partener." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Comenzi de Vanzari" diff --git a/addons/account_analytic_analysis/i18n/ru.po b/addons/account_analytic_analysis/i18n/ru.po index 30313796af9..6cfc0a626e8 100644 --- a/addons/account_analytic_analysis/i18n/ru.po +++ b/addons/account_analytic_analysis/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-20 05:17+0000\n" -"X-Generator: Launchpad (build 16673)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -323,7 +323,7 @@ msgstr "В ожидании" #. module: account_analytic_analysis #: field:account.analytic.account,is_overdue_quantity:0 msgid "Overdue Quantity" -msgstr "" +msgstr "Просроченное количество" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -611,7 +611,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,invoice_on_timesheets:0 msgid "On Timesheets" -msgstr "" +msgstr "По табелям" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sl.po b/addons/account_analytic_analysis/i18n/sl.po index 27cb5c638ba..8c8e132955b 100644 --- a/addons/account_analytic_analysis/i18n/sl.po +++ b/addons/account_analytic_analysis/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Vsota postavk časovnice , zaračunanih za to pogodbo." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Vrstice prodajnega naloga %s" @@ -352,6 +352,7 @@ msgid "" msgstr "Pogodba pomeni analitični konto z dodeljenim partnerjem." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Prodajni nalogi" diff --git a/addons/account_analytic_analysis/i18n/sq.po b/addons/account_analytic_analysis/i18n/sq.po index 05a78fe56a0..df82a769628 100644 --- a/addons/account_analytic_analysis/i18n/sq.po +++ b/addons/account_analytic_analysis/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/sr.po b/addons/account_analytic_analysis/i18n/sr.po index 56050beba06..e8d4b5f6700 100644 --- a/addons/account_analytic_analysis/i18n/sr.po +++ b/addons/account_analytic_analysis/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -346,6 +346,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/sr@latin.po b/addons/account_analytic_analysis/i18n/sr@latin.po index 4d79b0e1b11..16273864fc3 100644 --- a/addons/account_analytic_analysis/i18n/sr@latin.po +++ b/addons/account_analytic_analysis/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -352,6 +352,7 @@ msgstr "" "Ugovor u OpenERP-u je analitički konto sa partnerom koji mu je pripisan." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/sv.po b/addons/account_analytic_analysis/i18n/sv.po index aa157658ec2..92e05d87295 100644 --- a/addons/account_analytic_analysis/i18n/sv.po +++ b/addons/account_analytic_analysis/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -351,6 +351,7 @@ msgstr "" "Ett avtal i OpenERP är ett objektkonto med ett företag knutet till sig." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/tlh.po b/addons/account_analytic_analysis/i18n/tlh.po index 2c22e7c57cf..75b9dafb89b 100644 --- a/addons/account_analytic_analysis/i18n/tlh.po +++ b/addons/account_analytic_analysis/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -99,7 +99,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -342,6 +342,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/tr.po b/addons/account_analytic_analysis/i18n/tr.po index 0afb1bdeef1..6feb4c6d882 100644 --- a/addons/account_analytic_analysis/i18n/tr.po +++ b/addons/account_analytic_analysis/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -24,7 +24,7 @@ msgstr "Faturalacak sipariş yok, oluştur" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Group By..." -msgstr "Grupla..." +msgstr "Grupla İle..." #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -108,7 +108,7 @@ msgstr "" "Bu sözleşmeye ait faturalandırılan zaman çizelgesi kalemlerinin toplamı." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Satış Siparişi Kalemlerinin %s" @@ -128,7 +128,7 @@ msgstr "Analitik Hesap" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Partner" -msgstr "Cari" +msgstr "İş Ortağı" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -190,7 +190,7 @@ msgstr "Beklenen" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts not assigned" -msgstr "atanmamış sözleşmeler" +msgstr "Atanmamış sözleşmeler" #. module: account_analytic_analysis #: help:account.analytic.account,theorical_margin:0 @@ -200,7 +200,7 @@ msgstr "Şu formül kullanılarak hesaplandı: Teorik Gelir - Toplam Maliyet." #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_invoiced:0 msgid "Invoiced Time" -msgstr "Faturalandırılmış Zaman" +msgstr "Faturalanmış Zaman" #. module: account_analytic_analysis #: field:account.analytic.account,fix_price_to_invoice:0 @@ -237,7 +237,7 @@ msgid "" "computes quantities on all journal of type 'general'." msgstr "" "Analitik hesap için harcadığınız saat sayısı (zaman çizelgesinden). 'genel' " -"tipindeki bütün günlüklerdeki miktarlar hesaplanır." +"tipindeki bütün yevmiyelerdeki miktarlar hesaplanır." #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -283,7 +283,7 @@ msgstr "Müşteri Şözleşmeleri" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Parent" -msgstr "Ana" +msgstr "Üst" #. module: account_analytic_analysis #: field:account.analytic.account,month_ids:0 @@ -340,7 +340,7 @@ msgid "" "invoiced if you invoice based on analytic account." msgstr "" "Analiz hesabına göre faturalandırıyorsanız faturalandırılacak zaman sayısı " -"(saat/gün)(günlük tipi 'genel'den) ." +"(saat/gün)(yevmiye tipi 'genel'den) ." #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -355,7 +355,7 @@ msgstr "Gecikmiş Miktarlar" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. module: account_analytic_analysis #: field:account.analytic.account,ca_theorical:0 @@ -376,6 +376,7 @@ msgstr "" "hesabıdır." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Satış Siparişleri" @@ -476,10 +477,10 @@ msgstr "" "

\n" " Yeni bir sözleşme oluşturmak için tıklayın.\n" "

\n" -" Sözleşmeleri görevleri, zaman çizelgelerini ya da " -"yapılan iş üzerine kesilen\n" -" faturaları, harcamaları ya da satış siparişlerini takip " -"etmek için kullanabilirsiniz.\n" +" Görevleri, zaman çizelgelerini ya da yapılan iş üzerine " +"kesilen faturaları,\n" +" harcamaları ya da satış siparişlerini izlemek için " +"sözleşmeleri kullanabilirsiniz.\n" " OpenERP sözleşmelerin yenilenmesi için ilgili satış " "temsilcisini otomatik olarak\n" " uyaracaktır.\n" @@ -547,7 +548,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_non_invoiced:0 msgid "Uninvoiced Time" -msgstr "Faturalandırılmamış Zaman" +msgstr "Faturalanmamış Zaman" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/uk.po b/addons/account_analytic_analysis/i18n/uk.po index 890025ffd93..a103d9c3941 100644 --- a/addons/account_analytic_analysis/i18n/uk.po +++ b/addons/account_analytic_analysis/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -99,7 +99,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -342,6 +342,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/vi.po b/addons/account_analytic_analysis/i18n/vi.po index 5b6c608ac9f..712c94cc805 100644 --- a/addons/account_analytic_analysis/i18n/vi.po +++ b/addons/account_analytic_analysis/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/zh_CN.po b/addons/account_analytic_analysis/i18n/zh_CN.po index a0d53dfa783..3bcf3f4406b 100644 --- a/addons/account_analytic_analysis/i18n/zh_CN.po +++ b/addons/account_analytic_analysis/i18n/zh_CN.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-01-30 03:58+0000\n" -"Last-Translator: Wei \"oldrev\" Li \n" +"PO-Revision-Date: 2013-10-18 02:59+0000\n" +"Last-Translator: padola \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:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-10-19 04:59+0000\n" +"X-Generator: Launchpad (build 16807)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -67,6 +67,10 @@ msgid "" "to\n" " define the customer invoice price rate." msgstr "" +"当发票符合计工单,OpenERP将使用\n" +" 合同使用价目表价格\n" +" 产品设置应用到每个员工\n" +" 指定客户发票价格率。" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -99,7 +103,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "合同已开票的计工单行的汇总" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "%s 的销售订单行" @@ -144,6 +148,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击以确立一个新合同\n" +"

\n" +" 你将发现合同已经更新,由于已过期或者工作流\n" +" 授权超过最大数\n" +"

\n" +" OpenERP会自动更新挂起状态的合同,商谈结束,\n" +" 销售员必须关闭或更新挂起的合同.\n" +" " #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -153,7 +166,7 @@ msgstr "截止日期" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Account Manager" -msgstr "会计经理" +msgstr "分管会计" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours_to_invoice:0 @@ -344,6 +357,7 @@ msgid "" msgstr "OpenERP中的合同是指一个被指定了业务伙伴的成本科目。" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "销售订单" @@ -594,7 +608,7 @@ msgstr "总时间" #: model:res.groups,comment:account_analytic_analysis.group_template_required msgid "" "the field template of the analytic accounts and contracts will be required." -msgstr "" +msgstr "这个分析账户和合同的字段模板是必填的" #. module: account_analytic_analysis #: field:account.analytic.account,invoice_on_timesheets:0 diff --git a/addons/account_analytic_analysis/i18n/zh_TW.po b/addons/account_analytic_analysis/i18n/zh_TW.po index d62f7d3b1c9..d3b4f7d472a 100644 --- a/addons/account_analytic_analysis/i18n/zh_TW.po +++ b/addons/account_analytic_analysis/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -99,7 +99,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -342,6 +342,7 @@ msgid "" msgstr "OpenERP中的合約是指一個被指定了業務夥伴的成本科目。" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_default/account_analytic_default_view.xml b/addons/account_analytic_default/account_analytic_default_view.xml index 889563b3bcb..8ff323e45c7 100644 --- a/addons/account_analytic_default/account_analytic_default_view.xml +++ b/addons/account_analytic_default/account_analytic_default_view.xml @@ -29,7 +29,7 @@ - + diff --git a/addons/account_analytic_default/i18n/ar.po b/addons/account_analytic_default/i18n/ar.po index 98d16cf2b3d..1301e144362 100644 --- a/addons/account_analytic_default/i18n/ar.po +++ b/addons/account_analytic_default/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/bg.po b/addons/account_analytic_default/i18n/bg.po index e30fe1094e4..9c2b066593a 100644 --- a/addons/account_analytic_default/i18n/bg.po +++ b/addons/account_analytic_default/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/bs.po b/addons/account_analytic_default/i18n/bs.po index 52ff020c3cd..30265c0f9f0 100644 --- a/addons/account_analytic_default/i18n/bs.po +++ b/addons/account_analytic_default/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ca.po b/addons/account_analytic_default/i18n/ca.po index 3b537c54d23..74fdc2d4345 100644 --- a/addons/account_analytic_default/i18n/ca.po +++ b/addons/account_analytic_default/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/cs.po b/addons/account_analytic_default/i18n/cs.po index 5ecf8a0bbff..be03333d873 100644 --- a/addons/account_analytic_default/i18n/cs.po +++ b/addons/account_analytic_default/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/da.po b/addons/account_analytic_default/i18n/da.po index 4167a2c16df..ed1c7b0d155 100644 --- a/addons/account_analytic_default/i18n/da.po +++ b/addons/account_analytic_default/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/de.po b/addons/account_analytic_default/i18n/de.po index d457dbb44db..396299e3d1c 100644 --- a/addons/account_analytic_default/i18n/de.po +++ b/addons/account_analytic_default/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/el.po b/addons/account_analytic_default/i18n/el.po index 8b2b1e398a4..b53b65f831a 100644 --- a/addons/account_analytic_default/i18n/el.po +++ b/addons/account_analytic_default/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/en_GB.po b/addons/account_analytic_default/i18n/en_GB.po index 444471a2ad7..634829581d7 100644 --- a/addons/account_analytic_default/i18n/en_GB.po +++ b/addons/account_analytic_default/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es.po b/addons/account_analytic_default/i18n/es.po index 8362fd07f05..7b0eb00b969 100644 --- a/addons/account_analytic_default/i18n/es.po +++ b/addons/account_analytic_default/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_AR.po b/addons/account_analytic_default/i18n/es_AR.po index 47798b1c815..34c26a393c0 100644 --- a/addons/account_analytic_default/i18n/es_AR.po +++ b/addons/account_analytic_default/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_CR.po b/addons/account_analytic_default/i18n/es_CR.po index 1700aaaaeb9..18fa56e0928 100644 --- a/addons/account_analytic_default/i18n/es_CR.po +++ b/addons/account_analytic_default/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/es_EC.po b/addons/account_analytic_default/i18n/es_EC.po index 20fc9aee338..10e4fcadd12 100644 --- a/addons/account_analytic_default/i18n/es_EC.po +++ b/addons/account_analytic_default/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_MX.po b/addons/account_analytic_default/i18n/es_MX.po index c97dba75ce9..b6ebd4141c4 100644 --- a/addons/account_analytic_default/i18n/es_MX.po +++ b/addons/account_analytic_default/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_PY.po b/addons/account_analytic_default/i18n/es_PY.po index ce19920d754..4fc909ebbfb 100644 --- a/addons/account_analytic_default/i18n/es_PY.po +++ b/addons/account_analytic_default/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/et.po b/addons/account_analytic_default/i18n/et.po index c23f457ce34..10671f8227b 100644 --- a/addons/account_analytic_default/i18n/et.po +++ b/addons/account_analytic_default/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fa.po b/addons/account_analytic_default/i18n/fa.po index 574af4c2afe..9948931f7fd 100644 --- a/addons/account_analytic_default/i18n/fa.po +++ b/addons/account_analytic_default/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fi.po b/addons/account_analytic_default/i18n/fi.po index 7e5e22d8d9b..b26eb42b0f0 100644 --- a/addons/account_analytic_default/i18n/fi.po +++ b/addons/account_analytic_default/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fr.po b/addons/account_analytic_default/i18n/fr.po index d688825739b..63c9ce41fa9 100644 --- a/addons/account_analytic_default/i18n/fr.po +++ b/addons/account_analytic_default/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/gl.po b/addons/account_analytic_default/i18n/gl.po index d3789b17f50..1759b453ec2 100644 --- a/addons/account_analytic_default/i18n/gl.po +++ b/addons/account_analytic_default/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/gu.po b/addons/account_analytic_default/i18n/gu.po index 3ae51533745..5ba30fe6275 100644 --- a/addons/account_analytic_default/i18n/gu.po +++ b/addons/account_analytic_default/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/hr.po b/addons/account_analytic_default/i18n/hr.po index 699569a4318..64530033700 100644 --- a/addons/account_analytic_default/i18n/hr.po +++ b/addons/account_analytic_default/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/hu.po b/addons/account_analytic_default/i18n/hu.po index 3696114dee2..0cf6bef59d8 100644 --- a/addons/account_analytic_default/i18n/hu.po +++ b/addons/account_analytic_default/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -31,7 +31,7 @@ msgstr "Csoportosítás" #. module: account_analytic_default #: help:account.analytic.default,date_stop:0 msgid "Default end date for this Analytic Account." -msgstr "" +msgstr "Alapértelmezett befejező dátum ehhez a gyüjtőkódhoz." #. module: account_analytic_default #: help:account.analytic.default,product_id:0 @@ -40,6 +40,10 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "product, it will automatically take this as an analytic account)" msgstr "" +"Válasszon terméket ami az alapértelmezett gyüjttőkódban meghatározott " +"gyűjtőkódot fogja használni (pl. ennek a terméknek a kiválasztásakor " +"létrehoz új vevői számlát vagy megrendelést, amit automatikusan mint " +"gyűjtókódot vesz figyelembe)" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_stock_picking @@ -64,6 +68,10 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "partner, it will automatically take this as an analytic account)" msgstr "" +"Válasszon partnert aki az alapértelmezett gyüjttőkódban meghatározott " +"gyűjtőkódot fogja használni (pl. ennek a terméknek a kiválasztásakor " +"létrehoz új vevői számlát vagy megrendelést, amit automatikusan mint " +"gyűjtókódot vesz figyelembe)" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -104,6 +112,8 @@ msgstr "Sorszám" msgid "" "Select a user which will use analytic account specified in analytic default." msgstr "" +"Válasszon felhasználót aki az alapértelmezett gyüjttőkódban meghatározott " +"gyűjtőkódot fogja használni" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_invoice_line @@ -117,6 +127,10 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "company, it will automatically take this as an analytic account)" msgstr "" +"Válasszon vállalatot aki az alapértelmezett gyüjttőkódban meghatározott " +"gyűjtőkódot fogja használni (pl. ennek a terméknek a kiválasztásakor " +"létrehoz új vevői számlát vagy megrendelést, amit automatikusan mint " +"gyűjtókódot vesz figyelembe)" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -132,7 +146,7 @@ msgstr "Analitikus felosztás" #. module: account_analytic_default #: help:account.analytic.default,date_start:0 msgid "Default start date for this Analytic Account." -msgstr "" +msgstr "Alapértelmezett indulási dátum ehhez a gyüjtőkódhoz." #. module: account_analytic_default #: view:account.analytic.default:0 diff --git a/addons/account_analytic_default/i18n/id.po b/addons/account_analytic_default/i18n/id.po index 68c7c41f589..ef149f78137 100644 --- a/addons/account_analytic_default/i18n/id.po +++ b/addons/account_analytic_default/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/it.po b/addons/account_analytic_default/i18n/it.po index e81a42087b4..830d9c0a956 100644 --- a/addons/account_analytic_default/i18n/it.po +++ b/addons/account_analytic_default/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ja.po b/addons/account_analytic_default/i18n/ja.po index 39291e5ee42..c44a6409fee 100644 --- a/addons/account_analytic_default/i18n/ja.po +++ b/addons/account_analytic_default/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ko.po b/addons/account_analytic_default/i18n/ko.po index 890660df62c..c5613193a16 100644 --- a/addons/account_analytic_default/i18n/ko.po +++ b/addons/account_analytic_default/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/lt.po b/addons/account_analytic_default/i18n/lt.po index 7a650b0eaea..7d4bc0f84f8 100644 --- a/addons/account_analytic_default/i18n/lt.po +++ b/addons/account_analytic_default/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -31,7 +31,7 @@ msgstr "" #. module: account_analytic_default #: help:account.analytic.default,date_stop:0 msgid "Default end date for this Analytic Account." -msgstr "" +msgstr "Numatytoji pabaigos data šiai analitinei sąskaitai." #. module: account_analytic_default #: help:account.analytic.default,product_id:0 @@ -40,16 +40,19 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "product, it will automatically take this as an analytic account)" msgstr "" +"Pasirinkite produktą, kuris naudos numatytąją analitinę sąskaitą (pvz. " +"kuriant sąskaitą faktūrą ar užsakymą ir pasirinkus šį produktą, bus " +"automatiškai pasirenkama numatytoji analitinė sąskaita)" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_stock_picking msgid "Picking List" -msgstr "" +msgstr "Siunta" #. module: account_analytic_default #: view:account.analytic.default:0 msgid "Conditions" -msgstr "" +msgstr "Sąlygos" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -64,6 +67,9 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "partner, it will automatically take this as an analytic account)" msgstr "" +"Pasirinkite partnerį, kuris naudos numatytąją analitinę sąskaitą (pvz. " +"kuriant sąskaitą faktūrą ar užsakymą ir pasirinkus šį partnerį, bus " +"automatiškai pasirenkama numatytoji analitinė sąskaita)" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -92,7 +98,7 @@ msgstr "Pabaigos data" #: model:ir.actions.act_window,name:account_analytic_default.action_analytic_default_list #: model:ir.ui.menu,name:account_analytic_default.menu_analytic_default_list msgid "Analytic Defaults" -msgstr "" +msgstr "Numatytosios analitinės sąskaitos" #. module: account_analytic_default #: field:account.analytic.default,sequence:0 @@ -103,12 +109,12 @@ msgstr "Seka" #: help:account.analytic.default,user_id:0 msgid "" "Select a user which will use analytic account specified in analytic default." -msgstr "" +msgstr "Pasirinkite naudotoją, kuris naudos numatytąją analitinę sąskaitą." #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Sąskaitos faktūros eilutė" #. module: account_analytic_default #: help:account.analytic.default,company_id:0 @@ -117,12 +123,15 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "company, it will automatically take this as an analytic account)" msgstr "" +"Pasirinkite įmonę, kuri naudos numatytąją analitinę sąskaitą (pvz. kuriant " +"sąskaitą faktūrą ar užsakymą ir pasirinkus šią įmonę, bus automatiškai " +"pasirenkama numatytoji analitinė sąskaita)" #. module: account_analytic_default #: view:account.analytic.default:0 #: field:account.analytic.default,analytic_id:0 msgid "Analytic Account" -msgstr "" +msgstr "Analitinė sąskaita" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_analytic_default @@ -132,7 +141,7 @@ msgstr "" #. module: account_analytic_default #: help:account.analytic.default,date_start:0 msgid "Default start date for this Analytic Account." -msgstr "" +msgstr "Numatytoji pradžios data šiai analitinei sąskaitai." #. module: account_analytic_default #: view:account.analytic.default:0 @@ -154,12 +163,12 @@ msgstr "Pradžios data" #: help:account.analytic.default,sequence:0 msgid "" "Gives the sequence order when displaying a list of analytic distribution" -msgstr "" +msgstr "Eilės tvarka, pagal kurią išdėstomas analitinio paskirstymo sąrašas." #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_sale_order_line msgid "Sales Order Line" -msgstr "" +msgstr "Pardavimo užsakymo eilutė" #~ msgid "Seq" #~ msgstr "Seka" diff --git a/addons/account_analytic_default/i18n/lv.po b/addons/account_analytic_default/i18n/lv.po index 75e7b96f8da..036005d9683 100644 --- a/addons/account_analytic_default/i18n/lv.po +++ b/addons/account_analytic_default/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/mk.po b/addons/account_analytic_default/i18n/mk.po index 509460f8fb8..42a272b8037 100644 --- a/addons/account_analytic_default/i18n/mk.po +++ b/addons/account_analytic_default/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -32,7 +32,7 @@ msgstr "Групирај по..." #. module: account_analytic_default #: help:account.analytic.default,date_stop:0 msgid "Default end date for this Analytic Account." -msgstr "Стандарден краен датум за ова Аналитичко конто" +msgstr "Стандарден краен датум за оваа Аналитичка сметка" #. module: account_analytic_default #: help:account.analytic.default,product_id:0 @@ -45,7 +45,7 @@ msgstr "" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_stock_picking msgid "Picking List" -msgstr "Требување" +msgstr "Листа за требување" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -81,7 +81,7 @@ msgstr "Корисник" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.act_account_acount_move_line_open msgid "Entries" -msgstr "Записи" +msgstr "Внесови" #. module: account_analytic_default #: field:account.analytic.default,date_stop:0 @@ -123,7 +123,7 @@ msgstr "" #: view:account.analytic.default:0 #: field:account.analytic.default,analytic_id:0 msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_analytic_default @@ -133,12 +133,12 @@ msgstr "Аналитичка дистрибуција" #. module: account_analytic_default #: help:account.analytic.default,date_start:0 msgid "Default start date for this Analytic Account." -msgstr "Стандарден стартен датум за ова аналитичко конто." +msgstr "Стандарден почетен датум за оваа аналитичка сметка." #. module: account_analytic_default #: view:account.analytic.default:0 msgid "Accounts" -msgstr "Конта" +msgstr "Сметки" #. module: account_analytic_default #: view:account.analytic.default:0 diff --git a/addons/account_analytic_default/i18n/mn.po b/addons/account_analytic_default/i18n/mn.po index 53ce058fda2..039bc4c36ce 100644 --- a/addons/account_analytic_default/i18n/mn.po +++ b/addons/account_analytic_default/i18n/mn.po @@ -14,15 +14,15 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_product #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_user msgid "Analytic Rules" -msgstr "Аналитик дүрмүүд" +msgstr "Шинжилгээний дүрмүүд" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -99,7 +99,7 @@ msgstr "Дуусах огноо" #: model:ir.actions.act_window,name:account_analytic_default.action_analytic_default_list #: model:ir.ui.menu,name:account_analytic_default.menu_analytic_default_list msgid "Analytic Defaults" -msgstr "Аналитик үндсэн утгууд" +msgstr "Шинжилгээний анхны утгууд" #. module: account_analytic_default #: field:account.analytic.default,sequence:0 @@ -134,7 +134,7 @@ msgstr "" #: view:account.analytic.default:0 #: field:account.analytic.default,analytic_id:0 msgid "Analytic Account" -msgstr "Аналитик данс" +msgstr "Шинжилгээний Данс" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_analytic_default diff --git a/addons/account_analytic_default/i18n/nb.po b/addons/account_analytic_default/i18n/nb.po index ecbf50ca0b8..24ffaed5ce5 100644 --- a/addons/account_analytic_default/i18n/nb.po +++ b/addons/account_analytic_default/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nl.po b/addons/account_analytic_default/i18n/nl.po index 1a6af27587c..fa430884aa6 100644 --- a/addons/account_analytic_default/i18n/nl.po +++ b/addons/account_analytic_default/i18n/nl.po @@ -8,20 +8,20 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 16:06+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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_product #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_user msgid "Analytic Rules" -msgstr "Kostenplaats regels" +msgstr "Kostenplaatsregels" #. module: account_analytic_default #: view:account.analytic.default:0 diff --git a/addons/account_analytic_default/i18n/nl_BE.po b/addons/account_analytic_default/i18n/nl_BE.po index 86fed1b535a..bea1b5a02e0 100644 --- a/addons/account_analytic_default/i18n/nl_BE.po +++ b/addons/account_analytic_default/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/oc.po b/addons/account_analytic_default/i18n/oc.po index 911243b40a7..61e7ee048c9 100644 --- a/addons/account_analytic_default/i18n/oc.po +++ b/addons/account_analytic_default/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pl.po b/addons/account_analytic_default/i18n/pl.po index 891671c1d45..81c83f3810e 100644 --- a/addons/account_analytic_default/i18n/pl.po +++ b/addons/account_analytic_default/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pt.po b/addons/account_analytic_default/i18n/pt.po index 895982afb79..d5edfc9580d 100644 --- a/addons/account_analytic_default/i18n/pt.po +++ b/addons/account_analytic_default/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pt_BR.po b/addons/account_analytic_default/i18n/pt_BR.po index 96a4484a928..c051181a112 100644 --- a/addons/account_analytic_default/i18n/pt_BR.po +++ b/addons/account_analytic_default/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ro.po b/addons/account_analytic_default/i18n/ro.po index 20cfa9b2047..131ed3493df 100644 --- a/addons/account_analytic_default/i18n/ro.po +++ b/addons/account_analytic_default/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ru.po b/addons/account_analytic_default/i18n/ru.po index 5199a8cfe2a..1d21fab865c 100644 --- a/addons/account_analytic_default/i18n/ru.po +++ b/addons/account_analytic_default/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -132,7 +132,7 @@ msgstr "Разнесение аналитики" #. module: account_analytic_default #: help:account.analytic.default,date_start:0 msgid "Default start date for this Analytic Account." -msgstr "" +msgstr "По умолчанию, дата начала этого аналитического счета." #. module: account_analytic_default #: view:account.analytic.default:0 diff --git a/addons/account_analytic_default/i18n/sk.po b/addons/account_analytic_default/i18n/sk.po index 639d99315a3..9d8b0d249ac 100644 --- a/addons/account_analytic_default/i18n/sk.po +++ b/addons/account_analytic_default/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sl.po b/addons/account_analytic_default/i18n/sl.po index 1a65fe37840..7d8e9252ac7 100644 --- a/addons/account_analytic_default/i18n/sl.po +++ b/addons/account_analytic_default/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sq.po b/addons/account_analytic_default/i18n/sq.po index 3c1bdd4481b..1bc9813276a 100644 --- a/addons/account_analytic_default/i18n/sq.po +++ b/addons/account_analytic_default/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sr.po b/addons/account_analytic_default/i18n/sr.po index fc8c47f7794..57252596b05 100644 --- a/addons/account_analytic_default/i18n/sr.po +++ b/addons/account_analytic_default/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sr@latin.po b/addons/account_analytic_default/i18n/sr@latin.po index bdd239b047b..96ab1cd3db8 100644 --- a/addons/account_analytic_default/i18n/sr@latin.po +++ b/addons/account_analytic_default/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sv.po b/addons/account_analytic_default/i18n/sv.po index 9d7f0122cee..fa68ebecced 100644 --- a/addons/account_analytic_default/i18n/sv.po +++ b/addons/account_analytic_default/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/tlh.po b/addons/account_analytic_default/i18n/tlh.po index 91ee0486605..ba08634341c 100644 --- a/addons/account_analytic_default/i18n/tlh.po +++ b/addons/account_analytic_default/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/tr.po b/addons/account_analytic_default/i18n/tr.po index 909c72c2d17..39f0d318bef 100644 --- a/addons/account_analytic_default/i18n/tr.po +++ b/addons/account_analytic_default/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -154,12 +154,12 @@ msgstr "Hesaplar" #: view:account.analytic.default:0 #: field:account.analytic.default,partner_id:0 msgid "Partner" -msgstr "Ortak" +msgstr "İş Ortağı" #. module: account_analytic_default #: field:account.analytic.default,date_start:0 msgid "Start Date" -msgstr "Baş. Tarihi" +msgstr "Başlama Tarihi" #. module: account_analytic_default #: help:account.analytic.default,sequence:0 diff --git a/addons/account_analytic_default/i18n/uk.po b/addons/account_analytic_default/i18n/uk.po index cdb3191a5a9..f06192130e1 100644 --- a/addons/account_analytic_default/i18n/uk.po +++ b/addons/account_analytic_default/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/vi.po b/addons/account_analytic_default/i18n/vi.po index 9a4f8a14d60..3eecb23617d 100644 --- a/addons/account_analytic_default/i18n/vi.po +++ b/addons/account_analytic_default/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/zh_CN.po b/addons/account_analytic_default/i18n/zh_CN.po index 6ec397e5a57..92db8f545a9 100644 --- a/addons/account_analytic_default/i18n/zh_CN.po +++ b/addons/account_analytic_default/i18n/zh_CN.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-27 16:42+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -103,7 +103,7 @@ msgstr "序列" #: help:account.analytic.default,user_id:0 msgid "" "Select a user which will use analytic account specified in analytic default." -msgstr "" +msgstr "选择一个用户用在辅助核算科目指定的默认值" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_invoice_line diff --git a/addons/account_analytic_default/i18n/zh_TW.po b/addons/account_analytic_default/i18n/zh_TW.po index 44d896a812e..71312ac8b06 100644 --- a/addons/account_analytic_default/i18n/zh_TW.po +++ b/addons/account_analytic_default/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_plans/i18n/ar.po b/addons/account_analytic_plans/i18n/ar.po index 840e371559a..06152c40225 100644 --- a/addons/account_analytic_plans/i18n/ar.po +++ b/addons/account_analytic_plans/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/bg.po b/addons/account_analytic_plans/i18n/bg.po index 31cd759a3b3..7aa9e268e51 100644 --- a/addons/account_analytic_plans/i18n/bg.po +++ b/addons/account_analytic_plans/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/bs.po b/addons/account_analytic_plans/i18n/bs.po index dbebd224b64..e23cb161a10 100644 --- a/addons/account_analytic_plans/i18n/bs.po +++ b/addons/account_analytic_plans/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ca.po b/addons/account_analytic_plans/i18n/ca.po index 2ee45149e58..a8e63efa923 100644 --- a/addons/account_analytic_plans/i18n/ca.po +++ b/addons/account_analytic_plans/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/cs.po b/addons/account_analytic_plans/i18n/cs.po index cdcc05e3a03..ca8ba58635d 100644 --- a/addons/account_analytic_plans/i18n/cs.po +++ b/addons/account_analytic_plans/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/da.po b/addons/account_analytic_plans/i18n/da.po index 266fe65b24f..c3d889e419e 100644 --- a/addons/account_analytic_plans/i18n/da.po +++ b/addons/account_analytic_plans/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/de.po b/addons/account_analytic_plans/i18n/de.po index 87e05a93fee..99cb5eb5da6 100644 --- a/addons/account_analytic_plans/i18n/de.po +++ b/addons/account_analytic_plans/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/el.po b/addons/account_analytic_plans/i18n/el.po index a7215ac15cc..50786f9e540 100644 --- a/addons/account_analytic_plans/i18n/el.po +++ b/addons/account_analytic_plans/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/en_GB.po b/addons/account_analytic_plans/i18n/en_GB.po index c8fc268b57d..06dde4ee446 100644 --- a/addons/account_analytic_plans/i18n/en_GB.po +++ b/addons/account_analytic_plans/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es.po b/addons/account_analytic_plans/i18n/es.po index 37eb444d6b5..58daf306ed2 100644 --- a/addons/account_analytic_plans/i18n/es.po +++ b/addons/account_analytic_plans/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_AR.po b/addons/account_analytic_plans/i18n/es_AR.po index 0e446ae7178..007135e5f11 100644 --- a/addons/account_analytic_plans/i18n/es_AR.po +++ b/addons/account_analytic_plans/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_CR.po b/addons/account_analytic_plans/i18n/es_CR.po index f362e8183a9..6a4b0589fec 100644 --- a/addons/account_analytic_plans/i18n/es_CR.po +++ b/addons/account_analytic_plans/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/es_EC.po b/addons/account_analytic_plans/i18n/es_EC.po index 58886bc334f..4acf3e84c37 100644 --- a/addons/account_analytic_plans/i18n/es_EC.po +++ b/addons/account_analytic_plans/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_MX.po b/addons/account_analytic_plans/i18n/es_MX.po index 98a5abde243..f6ec4360f55 100644 --- a/addons/account_analytic_plans/i18n/es_MX.po +++ b/addons/account_analytic_plans/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_PY.po b/addons/account_analytic_plans/i18n/es_PY.po index f679548bde4..404aa4189c2 100644 --- a/addons/account_analytic_plans/i18n/es_PY.po +++ b/addons/account_analytic_plans/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/et.po b/addons/account_analytic_plans/i18n/et.po index d19597e8b8a..6b28775244c 100644 --- a/addons/account_analytic_plans/i18n/et.po +++ b/addons/account_analytic_plans/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #~ msgid "Printing date:" #~ msgstr "Trükkimise kuupäev:" diff --git a/addons/account_analytic_plans/i18n/fa.po b/addons/account_analytic_plans/i18n/fa.po index f84ebd2a132..82487d6c848 100644 --- a/addons/account_analytic_plans/i18n/fa.po +++ b/addons/account_analytic_plans/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/fi.po b/addons/account_analytic_plans/i18n/fi.po index 46364d7482c..aafe0df43f2 100644 --- a/addons/account_analytic_plans/i18n/fi.po +++ b/addons/account_analytic_plans/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/fr.po b/addons/account_analytic_plans/i18n/fr.po index f30ca53d74c..43a0dabde68 100644 --- a/addons/account_analytic_plans/i18n/fr.po +++ b/addons/account_analytic_plans/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/gl.po b/addons/account_analytic_plans/i18n/gl.po index 48a3de24706..32207824647 100644 --- a/addons/account_analytic_plans/i18n/gl.po +++ b/addons/account_analytic_plans/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/gu.po b/addons/account_analytic_plans/i18n/gu.po index d205a604b1a..0f3893cfb66 100644 --- a/addons/account_analytic_plans/i18n/gu.po +++ b/addons/account_analytic_plans/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/hr.po b/addons/account_analytic_plans/i18n/hr.po index a30a995b22e..f72fcc38de2 100644 --- a/addons/account_analytic_plans/i18n/hr.po +++ b/addons/account_analytic_plans/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/hu.po b/addons/account_analytic_plans/i18n/hu.po index cf15e0e9554..37d393a9628 100644 --- a/addons/account_analytic_plans/i18n/hu.po +++ b/addons/account_analytic_plans/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -48,7 +48,7 @@ msgstr "Arány (%)" #: code:addons/account_analytic_plans/account_analytic_plans.py:234 #, python-format msgid "The total should be between %s and %s." -msgstr "" +msgstr "A teljes összegnek ez %s és ez %s közöttinek kell lennie." #. module: account_analytic_plans #: view:account.analytic.plan:0 @@ -132,7 +132,7 @@ msgstr "Ne mutassa az üres sorokat" #: code:addons/account_analytic_plans/wizard/account_crossovered_analytic.py:61 #, python-format msgid "There are no analytic lines related to account %s." -msgstr "" +msgstr "Nincsenek a %s számlához kapcsolódó elemző/analitikai sorok." #. module: account_analytic_plans #: field:account.analytic.plan.instance,account3_ids:0 @@ -143,12 +143,12 @@ msgstr "3.gyűjtőkód azonosító" #: view:account.crossovered.analytic:0 #: view:analytic.plan.create.model:0 msgid "or" -msgstr "" +msgstr "vagy" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Gyűjtőkód tételsor" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -282,7 +282,7 @@ msgstr "Bankkivonat sor" #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:41 #, python-format msgid "Error!" -msgstr "" +msgstr "Hiba!" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -298,7 +298,7 @@ msgstr "" #: code:addons/account_analytic_plans/wizard/account_crossovered_analytic.py:61 #, python-format msgid "User Error!" -msgstr "" +msgstr "Felhasználói hiba!" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account6_ids:0 @@ -316,7 +316,7 @@ msgstr "Gyűjtőnapló" #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:38 #, python-format msgid "Please put a name and a code before saving the model." -msgstr "" +msgstr "Kérem adjon meg nevet és kódot a mdell elmentése előtt." #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -348,7 +348,7 @@ msgstr "Napló" #: code:addons/account_analytic_plans/account_analytic_plans.py:486 #, python-format msgid "You have to define an analytic journal on the '%s' journal." -msgstr "" +msgstr "Egy elemző/analitikus naplót meg kell határozni a '%s' naplón." #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:342 @@ -376,7 +376,7 @@ msgstr "Számlasor" #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:41 #, python-format msgid "There is no analytic plan defined." -msgstr "" +msgstr "Nem lett meghatározva elemző/analitikai terv." #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_bank_statement @@ -403,7 +403,7 @@ msgstr "Analitikus felosztás" #: code:addons/account_analytic_plans/account_analytic_plans.py:221 #, python-format msgid "A model with this name and code already exists." -msgstr "" +msgstr "Ezzel a névvel és kóddal már létezik modell." #. module: account_analytic_plans #: help:account.analytic.plan.line,root_analytic_id:0 diff --git a/addons/account_analytic_plans/i18n/id.po b/addons/account_analytic_plans/i18n/id.po index b231c0e54ce..7d218abb58d 100644 --- a/addons/account_analytic_plans/i18n/id.po +++ b/addons/account_analytic_plans/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/it.po b/addons/account_analytic_plans/i18n/it.po index b6f42c3b5f9..8ce147d7e03 100644 --- a/addons/account_analytic_plans/i18n/it.po +++ b/addons/account_analytic_plans/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ja.po b/addons/account_analytic_plans/i18n/ja.po index b52f4d1f772..7a306e00ac5 100644 --- a/addons/account_analytic_plans/i18n/ja.po +++ b/addons/account_analytic_plans/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ko.po b/addons/account_analytic_plans/i18n/ko.po index 85c0ad752b3..f8213f3fa8a 100644 --- a/addons/account_analytic_plans/i18n/ko.po +++ b/addons/account_analytic_plans/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/lt.po b/addons/account_analytic_plans/i18n/lt.po index 39e2f5156f4..2789d37cb56 100644 --- a/addons/account_analytic_plans/i18n/lt.po +++ b/addons/account_analytic_plans/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/lv.po b/addons/account_analytic_plans/i18n/lv.po index cb098921a28..8935de99e06 100644 --- a/addons/account_analytic_plans/i18n/lv.po +++ b/addons/account_analytic_plans/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/mk.po b/addons/account_analytic_plans/i18n/mk.po index d8faf9c3fbd..72ddaa4a379 100644 --- a/addons/account_analytic_plans/i18n/mk.po +++ b/addons/account_analytic_plans/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -33,7 +33,7 @@ msgstr "" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account5_ids:0 msgid "Account5 Id" -msgstr "" +msgstr "Сметка5 Id" #. module: account_analytic_plans #: field:account.crossovered.analytic,date2:0 @@ -65,7 +65,8 @@ msgstr "Аналитички план" #: view:analytic.plan.create.model:0 msgid "" "This distribution model has been saved.You will be able to reuse it later." -msgstr "Моделот за редистрибуција е зачуван. Може да го користите покасно." +msgstr "" +"Моделот за дистрибуција е зачуван. Може да го користите повторно подоцна." #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_instance_line @@ -75,7 +76,7 @@ msgstr "" #. module: account_analytic_plans #: view:account.analytic.plan.instance.line:0 msgid "Analytic Distribution Lines" -msgstr "" +msgstr "Ставки на аналитичка дистрибуција" #. module: account_analytic_plans #: view:account.crossovered.analytic:0 @@ -90,12 +91,12 @@ msgstr "До датум" #. module: account_analytic_plans #: field:account.analytic.plan.instance.line,plan_id:0 msgid "Plan Id" -msgstr "План ИД" +msgstr "ID на план" #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_plan_instance_action msgid "Analytic Distribution's Models" -msgstr "" +msgstr "Модели на аналитичка дистрибуција" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -105,12 +106,12 @@ msgstr "Име на сметка" #. module: account_analytic_plans #: view:account.analytic.plan.instance.line:0 msgid "Analytic Distribution Line" -msgstr "" +msgstr "Ставка на аналитичка дистрибуција" #. module: account_analytic_plans #: field:account.analytic.plan.instance,code:0 msgid "Distribution Code" -msgstr "" +msgstr "Код за дистрибуција" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -132,12 +133,12 @@ msgstr "Не ги прикажува празните ставки" #: code:addons/account_analytic_plans/wizard/account_crossovered_analytic.py:61 #, python-format msgid "There are no analytic lines related to account %s." -msgstr "Нема аналитички ставки поврзани со контото %s" +msgstr "Нема аналитички ставки поврзани со сметката %s" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account3_ids:0 msgid "Account3 Id" -msgstr "" +msgstr "Сметка3 Id" #. module: account_analytic_plans #: view:account.crossovered.analytic:0 @@ -163,23 +164,23 @@ msgstr "Валута" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Analytic Account :" -msgstr "Аналитичко конто:" +msgstr "Аналитичка сметка:" #. module: account_analytic_plans #: view:analytic.plan.create.model:0 msgid "Save This Distribution as a Model" -msgstr "" +msgstr "Зачувајте ја оваа дистрибуција како модел" #. module: account_analytic_plans #: view:account.analytic.plan.line:0 #: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_line msgid "Analytic Plan Line" -msgstr "" +msgstr "Ставка на аналитички план" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Analytic Account Reference:" -msgstr "" +msgstr "Референца на аналитичка сметка:" #. module: account_analytic_plans #: field:account.analytic.plan.line,name:0 @@ -189,7 +190,7 @@ msgstr "Име на план" #. module: account_analytic_plans #: field:account.analytic.plan,default_instance_id:0 msgid "Default Entries" -msgstr "Записи по подразбирање" +msgstr "Стандардни внесови" #. module: account_analytic_plans #: view:account.analytic.plan:0 @@ -201,12 +202,12 @@ msgstr "Аналитички планови" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Perc(%)" -msgstr "Проц(%)" +msgstr "Процент(%)" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_move_line msgid "Journal Items" -msgstr "Ставки во картица" +msgstr "Ставки во дневник" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_analytic_plan_create_model @@ -216,7 +217,7 @@ msgstr "analytic.plan.create.model" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account1_ids:0 msgid "Account1 Id" -msgstr "Сметка1 ИД" +msgstr "Сметка1 Id" #. module: account_analytic_plans #: field:account.analytic.plan.line,max_required:0 @@ -233,7 +234,7 @@ msgstr "Коренска сметка" #: view:analytic.plan.create.model:0 #, python-format msgid "Distribution Model Saved" -msgstr "" +msgstr "Дистрибутивниот модел е зачуван" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_instance @@ -243,7 +244,7 @@ msgstr "" #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_instance_model_open msgid "Distribution Models" -msgstr "" +msgstr "Дистрибутивни модели" #. module: account_analytic_plans #: view:analytic.plan.create.model:0 @@ -253,7 +254,7 @@ msgstr "Во ред" #. module: account_analytic_plans #: view:account.analytic.plan.line:0 msgid "Analytic Plan Lines" -msgstr "" +msgstr "Ставки на аналитички план" #. module: account_analytic_plans #: field:account.analytic.plan.line,min_required:0 @@ -263,17 +264,17 @@ msgstr "Минимум дозволено (%)" #. module: account_analytic_plans #: field:account.analytic.plan.instance,plan_id:0 msgid "Model's Plan" -msgstr "" +msgstr "План на модел" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account2_ids:0 msgid "Account2 Id" -msgstr "" +msgstr "Сметка2 Id" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "" +msgstr "Ставка од Банкарски извод" #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:221 @@ -303,7 +304,7 @@ msgstr "Корисничка грешка!" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account6_ids:0 msgid "Account6 Id" -msgstr "" +msgstr "Сметка6 Id" #. module: account_analytic_plans #: field:account.analytic.plan.instance,journal_id:0 @@ -316,7 +317,7 @@ msgstr "Аналитички дневник" #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:38 #, python-format msgid "Please put a name and a code before saving the model." -msgstr "" +msgstr "Внесете име и код пред да го зачувате моделот." #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -326,12 +327,12 @@ msgstr "Количина" #. module: account_analytic_plans #: model:ir.ui.menu,name:account_analytic_plans.menu_account_analytic_multi_plan_action msgid "Multi Plans" -msgstr "" +msgstr "Повеќекратни планови" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account_ids:0 msgid "Account Id" -msgstr "" +msgstr "Id на сметка" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -348,14 +349,14 @@ msgstr "Дневник" #: code:addons/account_analytic_plans/account_analytic_plans.py:486 #, python-format msgid "You have to define an analytic journal on the '%s' journal." -msgstr "" +msgstr "Треба да дефинирате аналитички дневник на '%s' дневник." #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:342 #: code:addons/account_analytic_plans/account_analytic_plans.py:486 #, python-format msgid "No Analytic Journal !" -msgstr "Нема аналитичка картица !" +msgstr "Нема аналитички дневник !" #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.action_analytic_plan_create_model @@ -376,7 +377,7 @@ msgstr "Ставка од фактура" #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:41 #, python-format msgid "There is no analytic plan defined." -msgstr "" +msgstr "Нема дефинирано аналитички план." #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_bank_statement @@ -397,23 +398,23 @@ msgstr "Аналитичка сметка" #: field:account.move.line,analytics_id:0 #: model:ir.model,name:account_analytic_plans.model_account_analytic_default msgid "Analytic Distribution" -msgstr "" +msgstr "Аналитичка дистрибуција" #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:221 #, python-format msgid "A model with this name and code already exists." -msgstr "" +msgstr "Веќе постои модел со ова име и код." #. module: account_analytic_plans #: help:account.analytic.plan.line,root_analytic_id:0 msgid "Root account of this plan." -msgstr "" +msgstr "Коренска сметка на овој план." #. module: account_analytic_plans #: field:account.crossovered.analytic,ref:0 msgid "Analytic Account Reference" -msgstr "" +msgstr "Референца на аналитичка сметка" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_invoice diff --git a/addons/account_analytic_plans/i18n/mn.po b/addons/account_analytic_plans/i18n/mn.po index d9eaa9e8fc4..22404d551a7 100644 --- a/addons/account_analytic_plans/i18n/mn.po +++ b/addons/account_analytic_plans/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -76,7 +76,7 @@ msgstr "Analytic Instance Line" #. module: account_analytic_plans #: view:account.analytic.plan.instance.line:0 msgid "Analytic Distribution Lines" -msgstr "Analytic Distribution Lines" +msgstr "Шинжилгээний Тархалтын Мөрүүд" #. module: account_analytic_plans #: view:account.crossovered.analytic:0 @@ -96,7 +96,7 @@ msgstr "Төлөвлөгөөний дугаар" #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_plan_instance_action msgid "Analytic Distribution's Models" -msgstr "Аналитик байрлалын модел" +msgstr "Шинжилгээний Тархалтын Загварууд" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -106,12 +106,12 @@ msgstr "Дансны нэр" #. module: account_analytic_plans #: view:account.analytic.plan.instance.line:0 msgid "Analytic Distribution Line" -msgstr "Analytic Distribution Line" +msgstr "Шинжилгээний Тархалтын Мөрүүд" #. module: account_analytic_plans #: field:account.analytic.plan.instance,code:0 msgid "Distribution Code" -msgstr "Байрлалын код" +msgstr "Тархалтын Код" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -169,7 +169,7 @@ msgstr "Analytic Account :" #. module: account_analytic_plans #: view:analytic.plan.create.model:0 msgid "Save This Distribution as a Model" -msgstr "Save This Distribution as a Model" +msgstr "Энэ Тархалтыг Загвар Болгож Хадгалах" #. module: account_analytic_plans #: view:account.analytic.plan.line:0 @@ -197,7 +197,7 @@ msgstr "Default Entries" #: field:account.analytic.plan,plan_ids:0 #: field:account.journal,plan_id:0 msgid "Analytic Plans" -msgstr "Аналитик төлөвлөгөө" +msgstr "Шижилгээний төлөвлөгөө" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -234,7 +234,7 @@ msgstr "Root Account" #: view:analytic.plan.create.model:0 #, python-format msgid "Distribution Model Saved" -msgstr "Distribution Model Saved" +msgstr "Тархалтын Загвар Хадгалагдлаа" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_instance @@ -244,7 +244,7 @@ msgstr "Шинжилгээний Төлөвлөгөөний Тухайн тох #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_instance_model_open msgid "Distribution Models" -msgstr "Distribution Models" +msgstr "Тархалтын Загварууд" #. module: account_analytic_plans #: view:analytic.plan.create.model:0 @@ -387,7 +387,7 @@ msgstr "Банкны тайлан" #. module: account_analytic_plans #: field:account.analytic.plan.instance.line,analytic_account_id:0 msgid "Analytic Account" -msgstr "Аналитик Данс" +msgstr "Шинжилгээний Данс" #. module: account_analytic_plans #: field:account.analytic.default,analytics_id:0 @@ -398,7 +398,7 @@ msgstr "Аналитик Данс" #: field:account.move.line,analytics_id:0 #: model:ir.model,name:account_analytic_plans.model_account_analytic_default msgid "Analytic Distribution" -msgstr "Аналитик тархалт" +msgstr "Шинжилгээний тархалт" #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:221 diff --git a/addons/account_analytic_plans/i18n/nb.po b/addons/account_analytic_plans/i18n/nb.po index 02609ad891f..1786e6deccb 100644 --- a/addons/account_analytic_plans/i18n/nb.po +++ b/addons/account_analytic_plans/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/nl.po b/addons/account_analytic_plans/i18n/nl.po index a1461375455..96a4607548c 100644 --- a/addons/account_analytic_plans/i18n/nl.po +++ b/addons/account_analytic_plans/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-01 16:15+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:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -206,7 +206,7 @@ msgstr "Perc(%)" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_move_line msgid "Journal Items" -msgstr "Boekingen" +msgstr "Boekingsregels" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_analytic_plan_create_model diff --git a/addons/account_analytic_plans/i18n/nl_BE.po b/addons/account_analytic_plans/i18n/nl_BE.po index eed58230298..7c69f989537 100644 --- a/addons/account_analytic_plans/i18n/nl_BE.po +++ b/addons/account_analytic_plans/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/oc.po b/addons/account_analytic_plans/i18n/oc.po index ef2afc6c3bd..ded48df9da7 100644 --- a/addons/account_analytic_plans/i18n/oc.po +++ b/addons/account_analytic_plans/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pl.po b/addons/account_analytic_plans/i18n/pl.po index ad2d53da281..f9274afaa67 100644 --- a/addons/account_analytic_plans/i18n/pl.po +++ b/addons/account_analytic_plans/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pt.po b/addons/account_analytic_plans/i18n/pt.po index 0c53bd845c4..437b29c88a9 100644 --- a/addons/account_analytic_plans/i18n/pt.po +++ b/addons/account_analytic_plans/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pt_BR.po b/addons/account_analytic_plans/i18n/pt_BR.po index bb55189f436..76b99db2cc7 100644 --- a/addons/account_analytic_plans/i18n/pt_BR.po +++ b/addons/account_analytic_plans/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -452,9 +452,6 @@ msgstr "Linha do Pedido de Vendas" msgid "From Date" msgstr "Data Inicial" -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Invalido XML para Arquitetura da View" - #, python-format #~ msgid "A model having this name and code already exists !" #~ msgstr "Um modelo com esse nome e código já existe !" @@ -473,6 +470,9 @@ msgstr "Data Inicial" #~ msgid "Error" #~ msgstr "Erro" +#~ msgid "Invalid XML for View Architecture!" +#~ msgstr "XML Inválido para a Visão de Arquitetura!" + #~ msgid "" #~ "This module allows to use several analytic plans, according to the general " #~ "journal,\n" @@ -542,6 +542,9 @@ msgstr "Data Inicial" #~ msgid "Select Information" #~ msgstr "Selecione Informação" +#~ msgid "Currency:" +#~ msgstr "Moeda:" + #, python-format #~ msgid "Please put a name and a code before saving the model !" #~ msgstr "Por favor, ponha um nome e um código antes de salvar o modelo !" @@ -553,6 +556,9 @@ msgstr "Data Inicial" #~ msgid "OK" #~ msgstr "OK" +#~ msgid "Period from" +#~ msgstr "Período de" + #~ msgid "Analytic Distribution's models" #~ msgstr "Modelos de Distribuição Analítica" @@ -561,6 +567,9 @@ msgstr "Data Inicial" #~ msgstr "" #~ "Este modelo de distribuição foi salvo. Você poderá reutilizá-lo mais tarde." +#~ msgid "Printing date:" +#~ msgstr "Data de impressão:" + #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" #~ msgstr "" @@ -731,3 +740,6 @@ msgstr "Data Inicial" #~ msgid "You can not create analytic line on view account." #~ msgstr "Você não pode criar uma linha analítica em conta de visualização" + +#~ msgid "to" +#~ msgstr "para" diff --git a/addons/account_analytic_plans/i18n/ro.po b/addons/account_analytic_plans/i18n/ro.po index c749673f5e1..b09f71aa635 100644 --- a/addons/account_analytic_plans/i18n/ro.po +++ b/addons/account_analytic_plans/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ru.po b/addons/account_analytic_plans/i18n/ru.po index 29cb3ea910f..df92c0a9012 100644 --- a/addons/account_analytic_plans/i18n/ru.po +++ b/addons/account_analytic_plans/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-01 05:16+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sl.po b/addons/account_analytic_plans/i18n/sl.po index 5908fd1f75f..3ec58f2a864 100644 --- a/addons/account_analytic_plans/i18n/sl.po +++ b/addons/account_analytic_plans/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sq.po b/addons/account_analytic_plans/i18n/sq.po index 320607b2223..aefbba2eae5 100644 --- a/addons/account_analytic_plans/i18n/sq.po +++ b/addons/account_analytic_plans/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sr.po b/addons/account_analytic_plans/i18n/sr.po index 4ab819762fe..f28919caf9a 100644 --- a/addons/account_analytic_plans/i18n/sr.po +++ b/addons/account_analytic_plans/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sr@latin.po b/addons/account_analytic_plans/i18n/sr@latin.po index 9852ec6fe5d..9f200081073 100644 --- a/addons/account_analytic_plans/i18n/sr@latin.po +++ b/addons/account_analytic_plans/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sv.po b/addons/account_analytic_plans/i18n/sv.po index d2111fb04b2..8890fe34853 100644 --- a/addons/account_analytic_plans/i18n/sv.po +++ b/addons/account_analytic_plans/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/tlh.po b/addons/account_analytic_plans/i18n/tlh.po index 552f3cb906b..e8c3be19d02 100644 --- a/addons/account_analytic_plans/i18n/tlh.po +++ b/addons/account_analytic_plans/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/tr.po b/addons/account_analytic_plans/i18n/tr.po index 07cb0a820c3..0158a212cba 100644 --- a/addons/account_analytic_plans/i18n/tr.po +++ b/addons/account_analytic_plans/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/uk.po b/addons/account_analytic_plans/i18n/uk.po index 71861003be0..241b966b68f 100644 --- a/addons/account_analytic_plans/i18n/uk.po +++ b/addons/account_analytic_plans/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/vi.po b/addons/account_analytic_plans/i18n/vi.po index d26ff1de49d..dcf673f7f69 100644 --- a/addons/account_analytic_plans/i18n/vi.po +++ b/addons/account_analytic_plans/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/zh_CN.po b/addons/account_analytic_plans/i18n/zh_CN.po index 8d3a78536a2..52a40d79f90 100644 --- a/addons/account_analytic_plans/i18n/zh_CN.po +++ b/addons/account_analytic_plans/i18n/zh_CN.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 07:38+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \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:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/zh_TW.po b/addons/account_analytic_plans/i18n/zh_TW.po index 6bcd1f5425f..3db3eb06d08 100644 --- a/addons/account_analytic_plans/i18n/zh_TW.po +++ b/addons/account_analytic_plans/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_anglo_saxon/i18n/ar.po b/addons/account_anglo_saxon/i18n/ar.po index fcd9ab75fb3..23cb01dedbb 100644 --- a/addons/account_anglo_saxon/i18n/ar.po +++ b/addons/account_anglo_saxon/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/bg.po b/addons/account_anglo_saxon/i18n/bg.po index d8bd57ad7b5..311e5c2f992 100644 --- a/addons/account_anglo_saxon/i18n/bg.po +++ b/addons/account_anglo_saxon/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/bs.po b/addons/account_anglo_saxon/i18n/bs.po new file mode 100644 index 00000000000..69cca6cfe70 --- /dev/null +++ b/addons/account_anglo_saxon/i18n/bs.po @@ -0,0 +1,64 @@ +# 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:05+0000\n" +"PO-Revision-Date: 2013-10-26 01:22+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-10-27 05:49+0000\n" +"X-Generator: Launchpad (build 16810)\n" + +#. module: account_anglo_saxon +#: model:ir.model,name:account_anglo_saxon.model_product_category +msgid "Product Category" +msgstr "Kategorija proizvoda" + +#. module: account_anglo_saxon +#: model:ir.model,name:account_anglo_saxon.model_account_invoice_line +msgid "Invoice Line" +msgstr "Stavka fakture" + +#. module: account_anglo_saxon +#: model:ir.model,name:account_anglo_saxon.model_purchase_order +msgid "Purchase Order" +msgstr "Nabavna narudžba" + +#. module: account_anglo_saxon +#: model:ir.model,name:account_anglo_saxon.model_product_template +msgid "Product Template" +msgstr "Šablon proizvoda" + +#. module: account_anglo_saxon +#: field:product.category,property_account_creditor_price_difference_categ:0 +#: field:product.template,property_account_creditor_price_difference:0 +msgid "Price Difference Account" +msgstr "Konto razlike u cijeni" + +#. module: account_anglo_saxon +#: model:ir.model,name:account_anglo_saxon.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: account_anglo_saxon +#: model:ir.model,name:account_anglo_saxon.model_stock_picking +msgid "Picking List" +msgstr "Lista prikupljanja proizvoda" + +#. module: account_anglo_saxon +#: help:product.category,property_account_creditor_price_difference_categ:0 +#: help:product.template,property_account_creditor_price_difference:0 +msgid "" +"This account will be used to value price difference between purchase price " +"and cost price." +msgstr "" +"Ovaj konto biti će korišćen da vrednuje razliku u cijeni između nabavne i " +"prodajne cijene." diff --git a/addons/account_anglo_saxon/i18n/ca.po b/addons/account_anglo_saxon/i18n/ca.po index c3b7397b2a9..344b96d9254 100644 --- a/addons/account_anglo_saxon/i18n/ca.po +++ b/addons/account_anglo_saxon/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/cs.po b/addons/account_anglo_saxon/i18n/cs.po index 6a056afd7c0..2e35c7ae797 100644 --- a/addons/account_anglo_saxon/i18n/cs.po +++ b/addons/account_anglo_saxon/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/da.po b/addons/account_anglo_saxon/i18n/da.po index 847066ee076..744c186153d 100644 --- a/addons/account_anglo_saxon/i18n/da.po +++ b/addons/account_anglo_saxon/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/de.po b/addons/account_anglo_saxon/i18n/de.po index 5111383f237..29374221c34 100644 --- a/addons/account_anglo_saxon/i18n/de.po +++ b/addons/account_anglo_saxon/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/el.po b/addons/account_anglo_saxon/i18n/el.po index 81d2e4a1436..8e3244d0207 100644 --- a/addons/account_anglo_saxon/i18n/el.po +++ b/addons/account_anglo_saxon/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/en_GB.po b/addons/account_anglo_saxon/i18n/en_GB.po index 9f9c8b2f1a1..7bae7ec424a 100644 --- a/addons/account_anglo_saxon/i18n/en_GB.po +++ b/addons/account_anglo_saxon/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es.po b/addons/account_anglo_saxon/i18n/es.po index 28764724e98..8998739213f 100644 --- a/addons/account_anglo_saxon/i18n/es.po +++ b/addons/account_anglo_saxon/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_CR.po b/addons/account_anglo_saxon/i18n/es_CR.po index b7e0d077cdd..6aa0ab9d172 100644 --- a/addons/account_anglo_saxon/i18n/es_CR.po +++ b/addons/account_anglo_saxon/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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" "Language: es\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/es_EC.po b/addons/account_anglo_saxon/i18n/es_EC.po index 0a253c74e1d..6898bdb4cd6 100644 --- a/addons/account_anglo_saxon/i18n/es_EC.po +++ b/addons/account_anglo_saxon/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_MX.po b/addons/account_anglo_saxon/i18n/es_MX.po index 8f9f2997400..eb8a8c49937 100644 --- a/addons/account_anglo_saxon/i18n/es_MX.po +++ b/addons/account_anglo_saxon/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_PY.po b/addons/account_anglo_saxon/i18n/es_PY.po index 456ece2ed9d..8ab99ecfdef 100644 --- a/addons/account_anglo_saxon/i18n/es_PY.po +++ b/addons/account_anglo_saxon/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/et.po b/addons/account_anglo_saxon/i18n/et.po index 7f3ffea6a9a..cad03923f8a 100644 --- a/addons/account_anglo_saxon/i18n/et.po +++ b/addons/account_anglo_saxon/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fa.po b/addons/account_anglo_saxon/i18n/fa.po index e14885c072b..f0d793e7915 100644 --- a/addons/account_anglo_saxon/i18n/fa.po +++ b/addons/account_anglo_saxon/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fi.po b/addons/account_anglo_saxon/i18n/fi.po index d8ce3dfeade..b770ff8b73f 100644 --- a/addons/account_anglo_saxon/i18n/fi.po +++ b/addons/account_anglo_saxon/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fr.po b/addons/account_anglo_saxon/i18n/fr.po index bf3817f1c8d..d5c8f9b5cd2 100644 --- a/addons/account_anglo_saxon/i18n/fr.po +++ b/addons/account_anglo_saxon/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/gl.po b/addons/account_anglo_saxon/i18n/gl.po index 89ff94f7cc0..8aae4de02ec 100644 --- a/addons/account_anglo_saxon/i18n/gl.po +++ b/addons/account_anglo_saxon/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/gu.po b/addons/account_anglo_saxon/i18n/gu.po index be6c0e12b67..c2229a9fcee 100644 --- a/addons/account_anglo_saxon/i18n/gu.po +++ b/addons/account_anglo_saxon/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hi.po b/addons/account_anglo_saxon/i18n/hi.po index 31ea35ee862..2c2d3e6f2d2 100644 --- a/addons/account_anglo_saxon/i18n/hi.po +++ b/addons/account_anglo_saxon/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hr.po b/addons/account_anglo_saxon/i18n/hr.po index 3f9018d108e..4924afd5edc 100644 --- a/addons/account_anglo_saxon/i18n/hr.po +++ b/addons/account_anglo_saxon/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hu.po b/addons/account_anglo_saxon/i18n/hu.po index 02ed2e3b072..dfdd52944de 100644 --- a/addons/account_anglo_saxon/i18n/hu.po +++ b/addons/account_anglo_saxon/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/id.po b/addons/account_anglo_saxon/i18n/id.po index 5b78fb6db3a..4a1e5abce31 100644 --- a/addons/account_anglo_saxon/i18n/id.po +++ b/addons/account_anglo_saxon/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/it.po b/addons/account_anglo_saxon/i18n/it.po index 711fd207a05..dc2d112555a 100644 --- a/addons/account_anglo_saxon/i18n/it.po +++ b/addons/account_anglo_saxon/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: 2011-01-13 22:40+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:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ja.po b/addons/account_anglo_saxon/i18n/ja.po index 0e6043ffbe8..f608e7a825c 100644 --- a/addons/account_anglo_saxon/i18n/ja.po +++ b/addons/account_anglo_saxon/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/lv.po b/addons/account_anglo_saxon/i18n/lv.po index 8ed6f141ea5..8c44a486381 100644 --- a/addons/account_anglo_saxon/i18n/lv.po +++ b/addons/account_anglo_saxon/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/mk.po b/addons/account_anglo_saxon/i18n/mk.po index a4f6196d630..b50e699d036 100644 --- a/addons/account_anglo_saxon/i18n/mk.po +++ b/addons/account_anglo_saxon/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category @@ -41,7 +41,7 @@ msgstr "Урнек на производ" #: field:product.category,property_account_creditor_price_difference_categ:0 #: field:product.template,property_account_creditor_price_difference:0 msgid "Price Difference Account" -msgstr "" +msgstr "Сметка за разлика на цена" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_account_invoice @@ -60,3 +60,5 @@ msgid "" "This account will be used to value price difference between purchase price " "and cost price." msgstr "" +"Оваа сметка ќе се користи за да се вреднува разликата на цента помеѓу " +"набавната цена и цената на чинење." diff --git a/addons/account_anglo_saxon/i18n/mn.po b/addons/account_anglo_saxon/i18n/mn.po index 43fe5c6e4e5..58b5708fa31 100644 --- a/addons/account_anglo_saxon/i18n/mn.po +++ b/addons/account_anglo_saxon/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nb.po b/addons/account_anglo_saxon/i18n/nb.po index 3ad31474989..51266cf107b 100644 --- a/addons/account_anglo_saxon/i18n/nb.po +++ b/addons/account_anglo_saxon/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nl.po b/addons/account_anglo_saxon/i18n/nl.po index b0d2c3d8d5a..e5b77c550ad 100644 --- a/addons/account_anglo_saxon/i18n/nl.po +++ b/addons/account_anglo_saxon/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-24 18:08+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:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nl_BE.po b/addons/account_anglo_saxon/i18n/nl_BE.po index 5af9d25b07f..e32631d83df 100644 --- a/addons/account_anglo_saxon/i18n/nl_BE.po +++ b/addons/account_anglo_saxon/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/oc.po b/addons/account_anglo_saxon/i18n/oc.po index ee7d29b0d8d..3ea06237cb5 100644 --- a/addons/account_anglo_saxon/i18n/oc.po +++ b/addons/account_anglo_saxon/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/pl.po b/addons/account_anglo_saxon/i18n/pl.po index 8a5e56f5806..f64c6dc14b8 100644 --- a/addons/account_anglo_saxon/i18n/pl.po +++ b/addons/account_anglo_saxon/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/pt.po b/addons/account_anglo_saxon/i18n/pt.po index 533f089ba61..35640df483f 100644 --- a/addons/account_anglo_saxon/i18n/pt.po +++ b/addons/account_anglo_saxon/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/pt_BR.po b/addons/account_anglo_saxon/i18n/pt_BR.po index 56e2f3de7c0..671c152d8ce 100644 --- a/addons/account_anglo_saxon/i18n/pt_BR.po +++ b/addons/account_anglo_saxon/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ro.po b/addons/account_anglo_saxon/i18n/ro.po index e6ef0ec11af..8c1ded2289a 100644 --- a/addons/account_anglo_saxon/i18n/ro.po +++ b/addons/account_anglo_saxon/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ru.po b/addons/account_anglo_saxon/i18n/ru.po index d5b99d99311..eb87f968377 100644 --- a/addons/account_anglo_saxon/i18n/ru.po +++ b/addons/account_anglo_saxon/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sl.po b/addons/account_anglo_saxon/i18n/sl.po index e046087ea73..b85cdebd6af 100644 --- a/addons/account_anglo_saxon/i18n/sl.po +++ b/addons/account_anglo_saxon/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sq.po b/addons/account_anglo_saxon/i18n/sq.po index eddc5d24f36..e0f65129a82 100644 --- a/addons/account_anglo_saxon/i18n/sq.po +++ b/addons/account_anglo_saxon/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sr@latin.po b/addons/account_anglo_saxon/i18n/sr@latin.po index 8077128fa03..3c4719a4c9f 100644 --- a/addons/account_anglo_saxon/i18n/sr@latin.po +++ b/addons/account_anglo_saxon/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sv.po b/addons/account_anglo_saxon/i18n/sv.po index 31898f5da17..b8ad3c12d70 100644 --- a/addons/account_anglo_saxon/i18n/sv.po +++ b/addons/account_anglo_saxon/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ta.po b/addons/account_anglo_saxon/i18n/ta.po index 520630a54d9..0782bf9ec3a 100644 --- a/addons/account_anglo_saxon/i18n/ta.po +++ b/addons/account_anglo_saxon/i18n/ta.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: 2010-09-01 06:55+0000\n" -"Last-Translator: ஆமாச்சு \n" +"Last-Translator: ஆமாச்சு \n" "Language-Team: Tamil \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: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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/tr.po b/addons/account_anglo_saxon/i18n/tr.po index 82ebcf713e7..0e96cdc5c57 100644 --- a/addons/account_anglo_saxon/i18n/tr.po +++ b/addons/account_anglo_saxon/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/zh_CN.po b/addons/account_anglo_saxon/i18n/zh_CN.po index ede7ed5854d..e28aad31fcb 100644 --- a/addons/account_anglo_saxon/i18n/zh_CN.po +++ b/addons/account_anglo_saxon/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-27 16:41+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: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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/zh_TW.po b/addons/account_anglo_saxon/i18n/zh_TW.po index 16504cf0517..490022d2ec7 100644 --- a/addons/account_anglo_saxon/i18n/zh_TW.po +++ b/addons/account_anglo_saxon/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_asset/i18n/ar.po b/addons/account_asset/i18n/ar.po index fabec666121..b399c84cb19 100644 --- a/addons/account_asset/i18n/ar.po +++ b/addons/account_asset/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -705,7 +705,7 @@ msgid "Amount of Depreciation Lines" msgstr "قيمة خطوط الأستهلاك" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "إنشاء حركات الأصول" diff --git a/addons/account_asset/i18n/bs.po b/addons/account_asset/i18n/bs.po new file mode 100644 index 00000000000..4b844ea2334 --- /dev/null +++ b/addons/account_asset/i18n/bs.po @@ -0,0 +1,774 @@ +# 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-10-28 09:59+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-10-29 04:49+0000\n" +"X-Generator: Launchpad (build 16818)\n" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Assets in draft and open states" +msgstr "Osnovno sredstvo u stanju 'u pripremi' ili 'otvoreno'" + +#. module: account_asset +#: field:account.asset.category,method_end:0 +#: field:account.asset.history,method_end:0 +#: field:asset.modify,method_end:0 +msgid "Ending date" +msgstr "Završni datum" + +#. module: account_asset +#: field:account.asset.asset,value_residual:0 +msgid "Residual Value" +msgstr "Preostala vrijednost" + +#. module: account_asset +#: field:account.asset.category,account_expense_depreciation_id:0 +msgid "Depr. Expense Account" +msgstr "Konto troška amortizacije" + +#. module: account_asset +#: view:asset.asset.report:0 +msgid "Group By..." +msgstr "Grupiši po..." + +#. module: account_asset +#: field:asset.asset.report,gross_value:0 +msgid "Gross Amount" +msgstr "Bruto iznos" + +#. module: account_asset +#: view:account.asset.asset:0 +#: field:account.asset.depreciation.line,asset_id:0 +#: field:account.asset.history,asset_id:0 +#: field:account.move.line,asset_id:0 +#: view:asset.asset.report:0 +#: field:asset.asset.report,asset_id:0 +#: model:ir.model,name:account_asset.model_account_asset_asset +msgid "Asset" +msgstr "Osnovna sredstva" + +#. module: account_asset +#: help:account.asset.asset,prorata:0 +#: help:account.asset.category,prorata:0 +msgid "" +"Indicates that the first depreciation entry for this asset have to be done " +"from the purchase date instead of the first January" +msgstr "" +"Indicira da je prvi zapis amortizacije za ovo osnovno sredstvo mora biti " +"izvršeno od datuma nabavke umjesto prvog Januara" + +#. module: account_asset +#: selection:account.asset.asset,method:0 +#: selection:account.asset.category,method:0 +msgid "Linear" +msgstr "Linearno" + +#. module: account_asset +#: field:account.asset.asset,company_id:0 +#: field:account.asset.category,company_id:0 +#: view:asset.asset.report:0 +#: field:asset.asset.report,company_id:0 +msgid "Company" +msgstr "Kompanija" + +#. module: account_asset +#: view:asset.modify:0 +msgid "Modify" +msgstr "Izmijeni" + +#. module: account_asset +#: selection:account.asset.asset,state:0 +#: view:asset.asset.report:0 +#: selection:asset.asset.report,state:0 +msgid "Running" +msgstr "U toku" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Set to Draft" +msgstr "Postavi u pripremu" + +#. module: account_asset +#: view:asset.asset.report:0 +#: model:ir.actions.act_window,name:account_asset.action_asset_asset_report +#: model:ir.model,name:account_asset.model_asset_asset_report +#: model:ir.ui.menu,name:account_asset.menu_action_asset_asset_report +msgid "Assets Analysis" +msgstr "Analiza osnovnih sredstava" + +#. module: account_asset +#: field:asset.modify,name:0 +msgid "Reason" +msgstr "Razlog" + +#. module: account_asset +#: field:account.asset.asset,method_progress_factor:0 +#: field:account.asset.category,method_progress_factor:0 +msgid "Degressive Factor" +msgstr "Silazni faktor" + +#. module: account_asset +#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal +#: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_list_normal +msgid "Asset Categories" +msgstr "Grupe osnovnih sredstava" + +#. module: account_asset +#: view:account.asset.asset:0 +#: field:account.asset.asset,account_move_line_ids:0 +#: field:account.move.line,entry_ids:0 +#: model:ir.actions.act_window,name:account_asset.act_entries_open +msgid "Entries" +msgstr "Zapisi" + +#. module: account_asset +#: view:account.asset.asset:0 +#: field:account.asset.asset,depreciation_line_ids:0 +msgid "Depreciation Lines" +msgstr "Stavke amortizacije" + +#. module: account_asset +#: help:account.asset.asset,salvage_value:0 +msgid "It is the amount you plan to have that you cannot depreciate." +msgstr "Iznos je koji planirate imati a ne možete amortizovati." + +#. module: account_asset +#: help:account.asset.asset,method_period:0 +msgid "The amount of time between two depreciations, in months" +msgstr "Vremenski period između dvije amortizacije , u mjesecima" + +#. module: account_asset +#: field:account.asset.depreciation.line,depreciation_date:0 +#: view:asset.asset.report:0 +#: field:asset.asset.report,depreciation_date:0 +msgid "Depreciation Date" +msgstr "Datum amortizacije" + +#. module: account_asset +#: constraint:account.asset.asset:0 +msgid "Error ! You cannot create recursive assets." +msgstr "Greška! Nije moguće kreirati rekurzivna osnovna sredstva." + +#. module: account_asset +#: field:asset.asset.report,posted_value:0 +msgid "Posted Amount" +msgstr "Proknjiženi iznos" + +#. module: account_asset +#: view:account.asset.asset:0 +#: view:asset.asset.report:0 +#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_form +#: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_form +#: model:ir.ui.menu,name:account_asset.menu_finance_assets +#: model:ir.ui.menu,name:account_asset.menu_finance_config_assets +msgid "Assets" +msgstr "Osnovna sredstva" + +#. module: account_asset +#: field:account.asset.category,account_depreciation_id:0 +msgid "Depreciation Account" +msgstr "Konto amortizacije" + +#. module: account_asset +#: view:account.asset.asset:0 +#: view:account.asset.category:0 +#: view:account.asset.history:0 +#: view:asset.modify:0 +#: field:asset.modify,note:0 +msgid "Notes" +msgstr "Zabilješke" + +#. module: account_asset +#: field:account.asset.depreciation.line,move_id:0 +msgid "Depreciation Entry" +msgstr "Zapis amortizacije" + +#. module: account_asset +#: view:asset.asset.report:0 +#: field:asset.asset.report,nbr:0 +msgid "# of Depreciation Lines" +msgstr "# stavaka amortizacije" + +#. module: account_asset +#: field:account.asset.asset,method_period:0 +msgid "Number of Months in a Period" +msgstr "Broj mjeseci u periodu" + +#. module: account_asset +#: view:asset.asset.report:0 +msgid "Assets in draft state" +msgstr "Osnovna sredstva u pripremi" + +#. module: account_asset +#: field:account.asset.asset,method_end:0 +#: selection:account.asset.asset,method_time:0 +#: selection:account.asset.category,method_time:0 +#: selection:account.asset.history,method_time:0 +msgid "Ending Date" +msgstr "Završni datum" + +#. module: account_asset +#: field:account.asset.asset,code:0 +msgid "Reference" +msgstr "Referenca" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Account Asset" +msgstr "Konto osnovnog sredstva" + +#. module: account_asset +#: model:ir.actions.act_window,name:account_asset.action_asset_depreciation_confirmation_wizard +#: model:ir.ui.menu,name:account_asset.menu_asset_depreciation_confirmation_wizard +msgid "Compute Assets" +msgstr "Izračunj osnovna sredstva" + +#. module: account_asset +#: field:account.asset.category,method_period:0 +#: field:account.asset.history,method_period:0 +#: field:asset.modify,method_period:0 +msgid "Period Length" +msgstr "Trajanje perioda" + +#. module: account_asset +#: selection:account.asset.asset,state:0 +#: view:asset.asset.report:0 +#: selection:asset.asset.report,state:0 +msgid "Draft" +msgstr "U pripremi" + +#. module: account_asset +#: view:asset.asset.report:0 +msgid "Date of asset purchase" +msgstr "Datum nabave osnovnog sredstva" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Change Duration" +msgstr "Promjeni trajanje" + +#. module: account_asset +#: help:account.asset.asset,method_number:0 +#: help:account.asset.category,method_number:0 +#: help:account.asset.history,method_number:0 +msgid "The number of depreciations needed to depreciate your asset" +msgstr "Broj amortizacija potrebnih za amortizaciju osnovnog sredstva" + +#. module: account_asset +#: view:account.asset.category:0 +msgid "Analytic Information" +msgstr "Analitički podaci" + +#. module: account_asset +#: field:account.asset.category,account_analytic_id:0 +msgid "Analytic account" +msgstr "Analitički konto" + +#. module: account_asset +#: field:account.asset.asset,method:0 +#: field:account.asset.category,method:0 +msgid "Computation Method" +msgstr "Metoda izračunavanja" + +#. module: account_asset +#: constraint:account.asset.asset:0 +msgid "" +"Prorata temporis can be applied only for time method \"number of " +"depreciations\"." +msgstr "" + +#. module: account_asset +#: field:account.asset.depreciation.line,remaining_value:0 +msgid "Next Period Depreciation" +msgstr "Sljedeći period amortizacije" + +#. module: account_asset +#: help:account.asset.history,method_period:0 +msgid "Time in month between two depreciations" +msgstr "Vrijeme u mjesecima između dvije amortizacije" + +#. module: account_asset +#: view:asset.modify:0 +#: model:ir.actions.act_window,name:account_asset.action_asset_modify +#: model:ir.model,name:account_asset.model_asset_modify +msgid "Modify Asset" +msgstr "Uredi osnovno srestvo" + +#. module: account_asset +#: field:account.asset.asset,salvage_value:0 +msgid "Salvage Value" +msgstr "Vrijednost likvidacije" + +#. module: account_asset +#: field:account.asset.asset,category_id:0 +#: view:account.asset.category:0 +#: field:account.invoice.line,asset_category_id:0 +#: view:asset.asset.report:0 +msgid "Asset Category" +msgstr "Kategorija osnovnog sredstva" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Assets in closed state" +msgstr "Osnovna sredstva sa statusom 'zatvoreno'" + +#. module: account_asset +#: field:account.asset.asset,parent_id:0 +msgid "Parent Asset" +msgstr "Nadređeno osnovno sredstvo" + +#. module: account_asset +#: view:account.asset.history:0 +#: model:ir.model,name:account_asset.model_account_asset_history +msgid "Asset history" +msgstr "Istorija osnovnog sredstva" + +#. module: account_asset +#: view:account.asset.category:0 +msgid "Search Asset Category" +msgstr "Pretraži kategoriju osnovnog sredstva" + +#. module: account_asset +#: view:asset.modify:0 +msgid "months" +msgstr "mjeseci" + +#. module: account_asset +#: model:ir.model,name:account_asset.model_account_invoice_line +msgid "Invoice Line" +msgstr "Stavka fakture" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Depreciation Board" +msgstr "Kontrolna tabla amortizacije" + +#. module: account_asset +#: field:asset.asset.report,unposted_value:0 +msgid "Unposted Amount" +msgstr "Neproknjiženi iznos" + +#. module: account_asset +#: field:account.asset.asset,method_time:0 +#: field:account.asset.category,method_time:0 +#: field:account.asset.history,method_time:0 +msgid "Time Method" +msgstr "Vremenska metoda" + +#. module: account_asset +#: view:asset.depreciation.confirmation.wizard:0 +#: view:asset.modify:0 +msgid "or" +msgstr "ili" + +#. module: account_asset +#: field:account.asset.asset,note:0 +#: field:account.asset.category,note:0 +#: field:account.asset.history,note:0 +msgid "Note" +msgstr "Zabilješka" + +#. module: account_asset +#: help:account.asset.history,method_time:0 +msgid "" +"The method to use to compute the dates and number of depreciation lines.\n" +"Number of Depreciations: Fix the number of depreciation lines and the time " +"between 2 depreciations.\n" +"Ending Date: Choose the time between 2 depreciations and the date the " +"depreciations won't go beyond." +msgstr "" +"Metoda korišćena za izračunavanje datuma i brojeva stavki amortizacije.\n" +"Broj amortizacija: Fiksni broj stavki amortizacija i vrijeme između 2 " +"amortizacije.\n" +"Datum završetka: Odaberite vrijeme između 2 amortizacije i datum " +"amortizacije koji neće ići preko." + +#. module: account_asset +#: help:account.asset.asset,method_time:0 +#: help:account.asset.category,method_time:0 +msgid "" +"Choose the method to use to compute the dates and number of depreciation " +"lines.\n" +" * Number of Depreciations: Fix the number of depreciation lines and the " +"time between 2 depreciations.\n" +" * Ending Date: Choose the time between 2 depreciations and the date the " +"depreciations won't go beyond." +msgstr "" +"Metoda korišćena za izračunavanje datuma i brojeva stavki amortizacije.\n" +" * Broj amortizacija: Fiksni broj stavki amortizacija i vrijeme između 2 " +"amortizacije.\n" +" * Datum završetka: Odaberite vrijeme između 2 amortizacije i datum " +"amortizacije koji neće ići preko." + +#. module: account_asset +#: view:asset.asset.report:0 +msgid "Assets in running state" +msgstr "Osnovno sredtvo u toku" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Closed" +msgstr "Zatvoreno" + +#. module: account_asset +#: help:account.asset.asset,state:0 +msgid "" +"When an asset is created, the status is 'Draft'.\n" +"If the asset is confirmed, the status goes in 'Running' and the depreciation " +"lines can be posted in the accounting.\n" +"You can manually close an asset when the depreciation is over. If the last " +"line of depreciation is posted, the asset automatically goes in that status." +msgstr "" +"Kada je osnovno sredstvo kreirano, nalazi se u statusu 'U pripremi'.\n" +"Ako je osnovno sredstvo potvrđeno, status prelazi u 'U toku' i stavke " +"amortizacije mogu biti knjižene u računovodstvu.\n" +"Možete ručno da zatvorite osnovno sredstvo kada je amortizavija završena. " +"Ako je zadnja stavka amortizavije knjižena, osnovno sredstvo automatski " +"odlazi u taj status." + +#. module: account_asset +#: field:account.asset.asset,state:0 +#: field:asset.asset.report,state:0 +msgid "Status" +msgstr "Status" + +#. module: account_asset +#: field:account.asset.asset,partner_id:0 +#: field:asset.asset.report,partner_id:0 +msgid "Partner" +msgstr "Partner" + +#. module: account_asset +#: view:asset.asset.report:0 +msgid "Posted depreciation lines" +msgstr "Proknjižene stavke amortizacije" + +#. module: account_asset +#: field:account.asset.asset,child_ids:0 +msgid "Children Assets" +msgstr "Podređeno osnovno sredstvo" + +#. module: account_asset +#: view:asset.asset.report:0 +msgid "Date of depreciation" +msgstr "Datum amortizacije" + +#. module: account_asset +#: field:account.asset.history,user_id:0 +msgid "User" +msgstr "Korisnik" + +#. module: account_asset +#: field:account.asset.category,account_asset_id:0 +msgid "Asset Account" +msgstr "Konto osnovnog sredstva" + +#. module: account_asset +#: view:asset.asset.report:0 +msgid "Extended Filters..." +msgstr "Napredni filteri..." + +#. module: account_asset +#: view:account.asset.asset:0 +#: view:asset.depreciation.confirmation.wizard:0 +msgid "Compute" +msgstr "Izračunaj" + +#. module: account_asset +#: view:account.asset.history:0 +msgid "Asset History" +msgstr "Istorija osnovnog sredstva" + +#. module: account_asset +#: model:ir.model,name:account_asset.model_asset_depreciation_confirmation_wizard +msgid "asset.depreciation.confirmation.wizard" +msgstr "asset.depreciation.confirmation.wizard" + +#. module: account_asset +#: field:account.asset.asset,active:0 +msgid "Active" +msgstr "Aktivno" + +#. module: account_asset +#: field:account.asset.depreciation.line,parent_state:0 +msgid "State of Asset" +msgstr "Stanje osnovnog sredstva" + +#. module: account_asset +#: field:account.asset.depreciation.line,name:0 +msgid "Depreciation Name" +msgstr "Naziv amortizacije" + +#. module: account_asset +#: view:account.asset.asset:0 +#: field:account.asset.asset,history_ids:0 +msgid "History" +msgstr "Istorija" + +#. module: account_asset +#: view:asset.depreciation.confirmation.wizard:0 +msgid "Compute Asset" +msgstr "Izračunaj osnovno sredstvo" + +#. module: account_asset +#: field:asset.depreciation.confirmation.wizard,period_id:0 +msgid "Period" +msgstr "Period" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "General" +msgstr "Opšte" + +#. module: account_asset +#: field:account.asset.asset,prorata:0 +#: field:account.asset.category,prorata:0 +msgid "Prorata Temporis" +msgstr "" + +#. module: account_asset +#: model:ir.model,name:account_asset.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Set to Close" +msgstr "Postavi na zatvoreno" + +#. module: account_asset +#: view:asset.depreciation.confirmation.wizard:0 +#: view:asset.modify:0 +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_asset +#: selection:account.asset.asset,state:0 +#: selection:asset.asset.report,state:0 +msgid "Close" +msgstr "Zatvori" + +#. module: account_asset +#: model:ir.model,name:account_asset.model_account_move_line +msgid "Journal Items" +msgstr "Stavke dnevnika" + +#. module: account_asset +#: view:asset.modify:0 +msgid "Asset Durations to Modify" +msgstr "Trajanje osnovnih sredstava za uređivanje" + +#. module: account_asset +#: field:account.asset.asset,purchase_date:0 +#: view:asset.asset.report:0 +#: field:asset.asset.report,purchase_date:0 +msgid "Purchase Date" +msgstr "Datum nabave" + +#. module: account_asset +#: selection:account.asset.asset,method:0 +#: selection:account.asset.category,method:0 +msgid "Degressive" +msgstr "Silazno" + +#. module: account_asset +#: help:asset.depreciation.confirmation.wizard,period_id:0 +msgid "" +"Choose the period for which you want to automatically post the depreciation " +"lines of running assets" +msgstr "" +"Odaberite period za koji želite da automatski proknjižite stavke " +"amortizacija osnovnih sredstava u toku" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Current" +msgstr "Trenutni" + +#. module: account_asset +#: view:account.asset.category:0 +msgid "Depreciation Method" +msgstr "Metoda amortizacije" + +#. module: account_asset +#: field:account.asset.depreciation.line,amount:0 +msgid "Current Depreciation" +msgstr "Trenutna amortizacija" + +#. module: account_asset +#: field:account.asset.asset,name:0 +msgid "Asset Name" +msgstr "Naziv osnovnog sredstva" + +#. module: account_asset +#: field:account.asset.category,open_asset:0 +msgid "Skip Draft State" +msgstr "Preskoči status u pripremi" + +#. module: account_asset +#: view:account.asset.category:0 +msgid "Depreciation Dates" +msgstr "Datumi amortizacije" + +#. module: account_asset +#: field:account.asset.asset,currency_id:0 +msgid "Currency" +msgstr "Valuta" + +#. module: account_asset +#: field:account.asset.category,journal_id:0 +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_asset +#: field:account.asset.history,name:0 +msgid "History name" +msgstr "Istorijski naziv" + +#. module: account_asset +#: field:account.asset.depreciation.line,depreciated_value:0 +msgid "Amount Already Depreciated" +msgstr "Iznos je već amortiziran" + +#. module: account_asset +#: help:account.asset.asset,method:0 +#: help:account.asset.category,method:0 +msgid "" +"Choose the method to use to compute the amount of depreciation lines.\n" +" * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n" +" * Degressive: Calculated on basis of: Residual Value * Degressive Factor" +msgstr "" +"Odaberite metodu za izračunavanje iznosa stavki amortizacije.\n" +" * Linearno: Izračunato na osnovu: Bruto vrijednosti / Broj amortizacija\n" +" * Silazno: Izračunato na osnovu: Preostala vrijednost * Silazni faktor" + +#. module: account_asset +#: field:account.asset.depreciation.line,move_check:0 +#: view:asset.asset.report:0 +#: field:asset.asset.report,move_check:0 +msgid "Posted" +msgstr "Proknjiženo" + +#. module: account_asset +#: model:ir.actions.act_window,help:account_asset.action_asset_asset_report +msgid "" +"

\n" +" From this report, you can have an overview on all depreciation. " +"The\n" +" tool search can also be used to personalise your Assets reports " +"and\n" +" so, match this analysis to your needs;\n" +"

\n" +" " +msgstr "" +"

\n" +" Iz ovog izvještaja, možete pregledati sve amortizacije. Alat za " +"pretragu\n" +" također možete da koristite za personalizaciju izvještaja " +"osnovnih \n" +" srestava.\n" +"

\n" +" " + +#. module: account_asset +#: field:account.asset.asset,purchase_value:0 +msgid "Gross Value" +msgstr "Bruto vrijednost" + +#. module: account_asset +#: field:account.asset.category,name:0 +msgid "Name" +msgstr "Naziv" + +#. module: account_asset +#: help:account.asset.category,open_asset:0 +msgid "" +"Check this if you want to automatically confirm the assets of this category " +"when created by invoices." +msgstr "" +"Označite ovo ako želite da automatski potvrdite osnovna sredstva ove " +"kategorije kada su kreirani od fakture." + +#. module: account_asset +#: field:asset.asset.report,name:0 +msgid "Year" +msgstr "Godina" + +#. module: account_asset +#: model:ir.model,name:account_asset.model_account_asset_depreciation_line +msgid "Asset depreciation line" +msgstr "Stavka amortizacije osnovnog sredstva" + +#. module: account_asset +#: view:account.asset.category:0 +#: field:asset.asset.report,asset_category_id:0 +#: model:ir.model,name:account_asset.model_account_asset_category +msgid "Asset category" +msgstr "Kategorija osnovnog sredstva" + +#. module: account_asset +#: view:asset.asset.report:0 +#: field:asset.asset.report,depreciation_value:0 +msgid "Amount of Depreciation Lines" +msgstr "Iznos stavki amortizacija" + +#. module: account_asset +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 +#, python-format +msgid "Created Asset Moves" +msgstr "" + +#. module: account_asset +#: field:account.asset.depreciation.line,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: account_asset +#: help:account.asset.category,method_period:0 +msgid "State here the time between 2 depreciations, in months" +msgstr "" + +#. module: account_asset +#: field:account.asset.history,date:0 +msgid "Date" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,method_number:0 +#: selection:account.asset.asset,method_time:0 +#: field:account.asset.category,method_number:0 +#: selection:account.asset.category,method_time:0 +#: field:account.asset.history,method_number:0 +#: selection:account.asset.history,method_time:0 +#: field:asset.modify,method_number:0 +msgid "Number of Depreciations" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Create Move" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Confirm Asset" +msgstr "" + +#. module: account_asset +#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree +#: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree +msgid "Asset Hierarchy" +msgstr "" diff --git a/addons/account_asset/i18n/ca.po b/addons/account_asset/i18n/ca.po index d70b342678f..dfa8458ecce 100755 --- a/addons/account_asset/i18n/ca.po +++ b/addons/account_asset/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/cs.po b/addons/account_asset/i18n/cs.po index 1b5b7cd222e..2e16fefa17a 100644 --- a/addons/account_asset/i18n/cs.po +++ b/addons/account_asset/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Language: Czech\n" #. module: account_asset @@ -706,7 +706,7 @@ msgid "Amount of Depreciation Lines" msgstr "Částka odpisových řádků" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Vytvořit pohyby majetku" diff --git a/addons/account_asset/i18n/da.po b/addons/account_asset/i18n/da.po index 3232de8892c..664f5c86770 100644 --- a/addons/account_asset/i18n/da.po +++ b/addons/account_asset/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/de.po b/addons/account_asset/i18n/de.po index ac238f16696..ec1c249cd1e 100755 --- a/addons/account_asset/i18n/de.po +++ b/addons/account_asset/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -732,7 +732,7 @@ msgid "Amount of Depreciation Lines" msgstr "Betrag der Abschreibungen" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Erzeugte Anlagenbuchungen" diff --git a/addons/account_asset/i18n/en_GB.po b/addons/account_asset/i18n/en_GB.po index 8fb8729b4bc..c06683166e5 100644 --- a/addons/account_asset/i18n/en_GB.po +++ b/addons/account_asset/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_asset #: view:account.asset.asset:0 @@ -200,7 +200,7 @@ msgstr "Depreciation Entry" #: view:asset.asset.report:0 #: field:asset.asset.report,nbr:0 msgid "# of Depreciation Lines" -msgstr "# of Depreciation Lines" +msgstr "No. of Depreciation Lines" #. module: account_asset #: field:account.asset.asset,method_period:0 @@ -289,7 +289,7 @@ msgid "" "Prorata temporis can be applied only for time method \"number of " "depreciations\"." msgstr "" -"Prorata temporis can be applied only for time method \"number of " +"Pro rata temporis can be applied only for time method \"number of " "depreciations\"." #. module: account_asset @@ -539,7 +539,7 @@ msgstr "General" #: field:account.asset.asset,prorata:0 #: field:account.asset.category,prorata:0 msgid "Prorata Temporis" -msgstr "Prorata Temporis" +msgstr "Pro rata Temporis" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice @@ -728,7 +728,7 @@ msgid "Amount of Depreciation Lines" msgstr "Amount of Depreciation Lines" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Created Asset Moves" @@ -774,3 +774,141 @@ msgstr "Confirm Asset" #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree msgid "Asset Hierarchy" msgstr "Asset Hierarchy" + +#~ msgid "Sequence of the depreciation" +#~ msgstr "Sequence of the depreciation" + +#~ msgid "Other Information" +#~ msgstr "Other Information" + +#~ msgid "Invalid BBA Structured Communication !" +#~ msgstr "Invalid BBA Structured Communication !" + +#~ msgid "Wrong credit or debit value in accounting entry !" +#~ msgstr "Wrong credit or debit value in accounting entry !" + +#~ msgid "Depreciation Amount" +#~ msgstr "Depreciation Amount" + +#~ msgid "" +#~ "This wizard will post the depreciation lines of running assets that belong " +#~ "to the selected period." +#~ msgstr "" +#~ "This wizard will post the depreciation lines of running assets that belong " +#~ "to the selected period." + +#~ msgid "Calculates Depreciation within specified interval" +#~ msgstr "Calculates Depreciation within specified interval" + +#~ msgid "State here the time during 2 depreciations, in months" +#~ msgstr "State here the time during 2 depreciations, in months" + +#~ msgid "Gross value " +#~ msgstr "Gross value " + +#~ msgid "Error ! You can not create recursive assets." +#~ msgstr "Error ! You cannot create recursive assets." + +#~ msgid "Month" +#~ msgstr "Month" + +#~ msgid "Assets purchased in current year" +#~ msgstr "Assets purchased in current year" + +#~ msgid "" +#~ "The date of your Journal Entry is not in the defined period! You should " +#~ "change the date or remove this constraint from the journal." +#~ msgstr "" +#~ "The date of your Journal Entry is not in the defined period! You should " +#~ "change the date or remove this constraint from the journal." + +#~ msgid "" +#~ "The selected account of your Journal Entry forces to provide a secondary " +#~ "currency. You should remove the secondary currency on the account or select " +#~ "a multi-currency view on the journal." +#~ msgstr "" +#~ "The selected account of your Journal Entry forces to provide a secondary " +#~ "currency. You should remove the secondary currency on the account or select " +#~ "a multi-currency view on the journal." + +#~ msgid "State" +#~ msgstr "State" + +#~ msgid "Modify asset" +#~ msgstr "Modify asset" + +#~ msgid "Compute assets" +#~ msgstr "Compute assets" + +#~ msgid "Asset durations to modify" +#~ msgstr "Asset durations to modify" + +#~ msgid "" +#~ "Choose the method to use to compute the amount of depreciation lines.\n" +#~ " * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n" +#~ " * Degressive: Calculated on basis of: Remaining Value * Degressive Factor" +#~ msgstr "" +#~ "Choose the method to use to compute the amount of depreciation lines.\n" +#~ " * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n" +#~ " * Degressive: Calculated on basis of: Remaining Value * Degressive Factor" + +#~ msgid "Analytic information" +#~ msgstr "Analytic information" + +#~ msgid "Review Asset Categories" +#~ msgstr "Review Asset Categories" + +#~ msgid "Close asset" +#~ msgstr "Close asset" + +#~ msgid "Invoice Number must be unique per Company!" +#~ msgstr "Invoice Number must be unique per Company!" + +#~ msgid "Month-1" +#~ msgstr "Month-1" + +#~ msgid "Assets purchased in current month" +#~ msgstr "Assets purchased in current month" + +#~ msgid "" +#~ "When an asset is created, the state is 'Draft'.\n" +#~ "If the asset is confirmed, the state goes in 'Running' and the depreciation " +#~ "lines can be posted in the accounting.\n" +#~ "You can manually close an asset when the depreciation is over. If the last " +#~ "line of depreciation is posted, the asset automatically goes in that state." +#~ msgstr "" +#~ "When an asset is created, the state is 'Draft'.\n" +#~ "If the asset is confirmed, the state goes in 'Running' and the depreciation " +#~ "lines can be posted in the accounting.\n" +#~ "You can manually close an asset when the depreciation is over. If the last " +#~ "line of depreciation is posted, the asset automatically goes in that state." + +#~ msgid "Company must be the same for its related account and period." +#~ msgstr "Company must be the same for its related account and period." + +#~ msgid "You can not create journal items on an account of type view." +#~ msgstr "You cannot create journal items on an account of type view." + +#~ msgid "Amount to Depreciate" +#~ msgstr "Amount to Depreciate" + +#~ msgid "Accounting information" +#~ msgstr "Accounting information" + +#~ msgid "" +#~ "From this report, you can have an overview on all depreciation. The tool " +#~ "search can also be used to personalise your Assets reports and so, match " +#~ "this analysis to your needs;" +#~ msgstr "" +#~ "From this report, you can have an overview on all depreciation. The tool " +#~ "search can also be used to personalise your Assets reports and so, match " +#~ "this analysis to your needs;" + +#~ msgid "Assets purchased in last month" +#~ msgstr "Assets purchased in last month" + +#~ msgid "Post Depreciation Lines" +#~ msgstr "Post Depreciation Lines" + +#~ msgid "You can not create journal items on closed account." +#~ msgstr "You cannot create journal items on a closed account." diff --git a/addons/account_asset/i18n/es.po b/addons/account_asset/i18n/es.po index 6e56020d608..63f22c0aa51 100755 --- a/addons/account_asset/i18n/es.po +++ b/addons/account_asset/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -289,8 +289,8 @@ msgid "" "Prorata temporis can be applied only for time method \"number of " "depreciations\"." msgstr "" -"Prorata temporis puede ser aplicado solo para método de tiempo \"numero de " -"amortizaciones\"" +"El prorrateo de tiempo sólo se puede utilizar para el método de tiempo " +"\"numero de amortizaciones\"" #. module: account_asset #: field:account.asset.depreciation.line,remaining_value:0 @@ -540,7 +540,7 @@ msgstr "General" #: field:account.asset.asset,prorata:0 #: field:account.asset.category,prorata:0 msgid "Prorata Temporis" -msgstr "Tiempo prorateado" +msgstr "Tiempo prorrateado" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice @@ -727,7 +727,7 @@ msgid "Amount of Depreciation Lines" msgstr "Importe de las líneas de amortización" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Movimientos de activos creados" diff --git a/addons/account_asset/i18n/es_AR.po b/addons/account_asset/i18n/es_AR.po index 99fc92a886a..12214aa2f97 100644 --- a/addons/account_asset/i18n/es_AR.po +++ b/addons/account_asset/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/es_CR.po b/addons/account_asset/i18n/es_CR.po index ef841d754ad..22136b670fc 100755 --- a/addons/account_asset/i18n/es_CR.po +++ b/addons/account_asset/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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" "Language: es\n" #. module: account_asset @@ -713,7 +713,7 @@ msgid "Amount of Depreciation Lines" msgstr "Importe de las líneas de amortización" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Movimientos de activos creados" diff --git a/addons/account_asset/i18n/es_EC.po b/addons/account_asset/i18n/es_EC.po index 5c1f50184d9..57dc3cb3b8c 100644 --- a/addons/account_asset/i18n/es_EC.po +++ b/addons/account_asset/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_asset #: view:account.asset.asset:0 @@ -712,7 +712,7 @@ msgid "Amount of Depreciation Lines" msgstr "Importe de las líneas de depreciación" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Movimientos de activos creados" diff --git a/addons/account_asset/i18n/es_MX.po b/addons/account_asset/i18n/es_MX.po index b510f97a370..e75348123ba 100644 --- a/addons/account_asset/i18n/es_MX.po +++ b/addons/account_asset/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_asset #: view:account.asset.asset:0 @@ -726,7 +726,7 @@ msgid "Amount of Depreciation Lines" msgstr "Importe de las líneas de amortización" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Movimientos de activos creados" diff --git a/addons/account_asset/i18n/et.po b/addons/account_asset/i18n/et.po index d42d63552d4..f5511947853 100644 --- a/addons/account_asset/i18n/et.po +++ b/addons/account_asset/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/fi.po b/addons/account_asset/i18n/fi.po index 93b8d38393e..169f6f97fd0 100644 --- a/addons/account_asset/i18n/fi.po +++ b/addons/account_asset/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/fr.po b/addons/account_asset/i18n/fr.po index f32a8bdb42c..653de5d25a3 100755 --- a/addons/account_asset/i18n/fr.po +++ b/addons/account_asset/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -731,7 +731,7 @@ msgid "Amount of Depreciation Lines" msgstr "Montant des lignes d'amortissement" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Écritures d'amortissement créées" diff --git a/addons/account_asset/i18n/gu.po b/addons/account_asset/i18n/gu.po index 33a5bfb9596..6e4724899a2 100644 --- a/addons/account_asset/i18n/gu.po +++ b/addons/account_asset/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/hr.po b/addons/account_asset/i18n/hr.po index cdcd970ff0d..f2858a375f3 100644 --- a/addons/account_asset/i18n/hr.po +++ b/addons/account_asset/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "Iznos stavaka amortizacije" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Stvorena knjiženja imovine" diff --git a/addons/account_asset/i18n/hu.po b/addons/account_asset/i18n/hu.po index 19f50232515..d46afe92868 100644 --- a/addons/account_asset/i18n/hu.po +++ b/addons/account_asset/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-23 05:01+0000\n" -"X-Generator: Launchpad (build 16737)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -332,7 +332,7 @@ msgstr "" #: view:account.asset.history:0 #: model:ir.model,name:account_asset.model_account_asset_history msgid "Asset history" -msgstr "" +msgstr "Esuközök előzménye" #. module: account_asset #: view:account.asset.category:0 @@ -472,7 +472,7 @@ msgstr "Kiszámítás" #. module: account_asset #: view:account.asset.history:0 msgid "Asset History" -msgstr "Eszköz történet" +msgstr "Esuközök előzménye" #. module: account_asset #: model:ir.model,name:account_asset.model_asset_depreciation_confirmation_wizard @@ -616,7 +616,7 @@ msgstr "Napló" #. module: account_asset #: field:account.asset.history,name:0 msgid "History name" -msgstr "" +msgstr "Előzmény neve" #. module: account_asset #: field:account.asset.depreciation.line,depreciated_value:0 diff --git a/addons/account_asset/i18n/id.po b/addons/account_asset/i18n/id.po index e55ea5039b3..79ad0dcae9a 100644 --- a/addons/account_asset/i18n/id.po +++ b/addons/account_asset/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/it.po b/addons/account_asset/i18n/it.po index d7567af4299..810d172132c 100644 --- a/addons/account_asset/i18n/it.po +++ b/addons/account_asset/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -733,7 +733,7 @@ msgid "Amount of Depreciation Lines" msgstr "Importo delle Righe d'Ammortamento" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Movimenti Immobilizzazioni Creati" diff --git a/addons/account_asset/i18n/ja.po b/addons/account_asset/i18n/ja.po index 436e902a6d7..835a0502117 100644 --- a/addons/account_asset/i18n/ja.po +++ b/addons/account_asset/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -699,7 +699,7 @@ msgid "Amount of Depreciation Lines" msgstr "減価償却行の金額" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "作成済資産の移動" diff --git a/addons/account_asset/i18n/ko.po b/addons/account_asset/i18n/ko.po index 1185333020b..910aaa638a5 100644 --- a/addons/account_asset/i18n/ko.po +++ b/addons/account_asset/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/lt.po b/addons/account_asset/i18n/lt.po index 85d578241af..f03e23594af 100644 --- a/addons/account_asset/i18n/lt.po +++ b/addons/account_asset/i18n/lt.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:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 msgid "Assets in draft and open states" -msgstr "" +msgstr "Ilgalaikio turto juodraščiai bei vykdomi" #. module: account_asset #: field:account.asset.category,method_end:0 @@ -32,22 +32,22 @@ msgstr "Pabaigos data" #. module: account_asset #: field:account.asset.asset,value_residual:0 msgid "Residual Value" -msgstr "" +msgstr "Likutinė vertė" #. module: account_asset #: field:account.asset.category,account_expense_depreciation_id:0 msgid "Depr. Expense Account" -msgstr "" +msgstr "Nusidėv. sąnaudų sąskaita" #. module: account_asset #: view:asset.asset.report:0 msgid "Group By..." -msgstr "" +msgstr "Grupuoti pagal..." #. module: account_asset #: field:asset.asset.report,gross_value:0 msgid "Gross Amount" -msgstr "" +msgstr "Įsigijimo kaina" #. module: account_asset #: view:account.asset.asset:0 @@ -58,7 +58,7 @@ msgstr "" #: field:asset.asset.report,asset_id:0 #: model:ir.model,name:account_asset.model_account_asset_asset msgid "Asset" -msgstr "" +msgstr "Ilg. turtas" #. module: account_asset #: help:account.asset.asset,prorata:0 @@ -67,12 +67,13 @@ msgid "" "Indicates that the first depreciation entry for this asset have to be done " "from the purchase date instead of the first January" msgstr "" +"Skaičiuoti nusidėvėjimą nuo pirkimo datos, o ne nuo finansinių metų pradžios" #. module: account_asset #: selection:account.asset.asset,method:0 #: selection:account.asset.category,method:0 msgid "Linear" -msgstr "" +msgstr "Tiesinis" #. module: account_asset #: field:account.asset.asset,company_id:0 @@ -80,24 +81,24 @@ msgstr "" #: view:asset.asset.report:0 #: field:asset.asset.report,company_id:0 msgid "Company" -msgstr "" +msgstr "Įmonė" #. module: account_asset #: view:asset.modify:0 msgid "Modify" -msgstr "" +msgstr "Pakeisti" #. module: account_asset #: selection:account.asset.asset,state:0 #: view:asset.asset.report:0 #: selection:asset.asset.report,state:0 msgid "Running" -msgstr "" +msgstr "Veikiantis" #. module: account_asset #: view:account.asset.asset:0 msgid "Set to Draft" -msgstr "" +msgstr "Nustatyti kaip juodraštį" #. module: account_asset #: view:asset.asset.report:0 @@ -105,24 +106,24 @@ msgstr "" #: model:ir.model,name:account_asset.model_asset_asset_report #: model:ir.ui.menu,name:account_asset.menu_action_asset_asset_report msgid "Assets Analysis" -msgstr "" +msgstr "Ilagalaikio turto analizė" #. module: account_asset #: field:asset.modify,name:0 msgid "Reason" -msgstr "" +msgstr "Priežastis" #. module: account_asset #: field:account.asset.asset,method_progress_factor:0 #: field:account.asset.category,method_progress_factor:0 msgid "Degressive Factor" -msgstr "" +msgstr "Nusidėvėjimo procentas" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_list_normal msgid "Asset Categories" -msgstr "" +msgstr "Ilgalaikio turto kategorijos" #. module: account_asset #: view:account.asset.asset:0 @@ -130,30 +131,30 @@ msgstr "" #: field:account.move.line,entry_ids:0 #: model:ir.actions.act_window,name:account_asset.act_entries_open msgid "Entries" -msgstr "" +msgstr "Įrašai" #. module: account_asset #: view:account.asset.asset:0 #: field:account.asset.asset,depreciation_line_ids:0 msgid "Depreciation Lines" -msgstr "" +msgstr "Nusidėvėjimo eilutės" #. module: account_asset #: help:account.asset.asset,salvage_value:0 msgid "It is the amount you plan to have that you cannot depreciate." -msgstr "" +msgstr "Tai suma iki kurios gali būti nudėvėtas ilgalaikis turtas." #. module: account_asset #: help:account.asset.asset,method_period:0 msgid "The amount of time between two depreciations, in months" -msgstr "" +msgstr "Laikotarpis mėnesiais tarp dviejų nusidėvėjimų" #. module: account_asset #: field:account.asset.depreciation.line,depreciation_date:0 #: view:asset.asset.report:0 #: field:asset.asset.report,depreciation_date:0 msgid "Depreciation Date" -msgstr "" +msgstr "Nusidėvėjimo data" #. module: account_asset #: constraint:account.asset.asset:0 @@ -163,7 +164,7 @@ msgstr "" #. module: account_asset #: field:asset.asset.report,posted_value:0 msgid "Posted Amount" -msgstr "" +msgstr "Užregistruota suma" #. module: account_asset #: view:account.asset.asset:0 @@ -173,12 +174,12 @@ msgstr "" #: model:ir.ui.menu,name:account_asset.menu_finance_assets #: model:ir.ui.menu,name:account_asset.menu_finance_config_assets msgid "Assets" -msgstr "" +msgstr "Ilgalaikis turtas" #. module: account_asset #: field:account.asset.category,account_depreciation_id:0 msgid "Depreciation Account" -msgstr "" +msgstr "Nusidėvėjimo sąskaita" #. module: account_asset #: view:account.asset.asset:0 @@ -187,28 +188,28 @@ msgstr "" #: view:asset.modify:0 #: field:asset.modify,note:0 msgid "Notes" -msgstr "" +msgstr "Pastabos" #. module: account_asset #: field:account.asset.depreciation.line,move_id:0 msgid "Depreciation Entry" -msgstr "" +msgstr "Operacija" #. module: account_asset #: view:asset.asset.report:0 #: field:asset.asset.report,nbr:0 msgid "# of Depreciation Lines" -msgstr "" +msgstr "# nusidėvėjimo įrašų" #. module: account_asset #: field:account.asset.asset,method_period:0 msgid "Number of Months in a Period" -msgstr "" +msgstr "Mėnesių skaičius per periodą" #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in draft state" -msgstr "" +msgstr "Ilgalaikio turto juodraščiai" #. module: account_asset #: field:account.asset.asset,method_end:0 @@ -216,70 +217,70 @@ msgstr "" #: selection:account.asset.category,method_time:0 #: selection:account.asset.history,method_time:0 msgid "Ending Date" -msgstr "" +msgstr "Pabaigos data" #. module: account_asset #: field:account.asset.asset,code:0 msgid "Reference" -msgstr "" +msgstr "Numeris" #. module: account_asset #: view:account.asset.asset:0 msgid "Account Asset" -msgstr "" +msgstr "Ilgalaikio turto sąskaita" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_asset_depreciation_confirmation_wizard #: model:ir.ui.menu,name:account_asset.menu_asset_depreciation_confirmation_wizard msgid "Compute Assets" -msgstr "" +msgstr "Skaičiuoti nusidėvėjimą" #. module: account_asset #: field:account.asset.category,method_period:0 #: field:account.asset.history,method_period:0 #: field:asset.modify,method_period:0 msgid "Period Length" -msgstr "" +msgstr "Periodo ilgis" #. module: account_asset #: selection:account.asset.asset,state:0 #: view:asset.asset.report:0 #: selection:asset.asset.report,state:0 msgid "Draft" -msgstr "" +msgstr "Juodraštis" #. module: account_asset #: view:asset.asset.report:0 msgid "Date of asset purchase" -msgstr "" +msgstr "Ilgalaikio turto pirkimo data" #. module: account_asset #: view:account.asset.asset:0 msgid "Change Duration" -msgstr "" +msgstr "Keisti laikotarpį" #. module: account_asset #: help:account.asset.asset,method_number:0 #: help:account.asset.category,method_number:0 #: help:account.asset.history,method_number:0 msgid "The number of depreciations needed to depreciate your asset" -msgstr "" +msgstr "Nusidėvėjimų skaičius per kuriuos nudėvimas ilgalaikis turtas" #. module: account_asset #: view:account.asset.category:0 msgid "Analytic Information" -msgstr "" +msgstr "Analitinė informacija" #. module: account_asset #: field:account.asset.category,account_analytic_id:0 msgid "Analytic account" -msgstr "" +msgstr "Analitinė sąskaita" #. module: account_asset #: field:account.asset.asset,method:0 #: field:account.asset.category,method:0 msgid "Computation Method" -msgstr "" +msgstr "Skaičiavimo metodas" #. module: account_asset #: constraint:account.asset.asset:0 @@ -291,7 +292,7 @@ msgstr "" #. module: account_asset #: field:account.asset.depreciation.line,remaining_value:0 msgid "Next Period Depreciation" -msgstr "" +msgstr "Likutinė vertė" #. module: account_asset #: help:account.asset.history,method_period:0 @@ -303,12 +304,12 @@ msgstr "" #: model:ir.actions.act_window,name:account_asset.action_asset_modify #: model:ir.model,name:account_asset.model_asset_modify msgid "Modify Asset" -msgstr "" +msgstr "Pakeisti ilgalaikio turto nusidėvėjimo laikotarpį" #. module: account_asset #: field:account.asset.asset,salvage_value:0 msgid "Salvage Value" -msgstr "" +msgstr "Likvidacinė kaina" #. module: account_asset #: field:account.asset.asset,category_id:0 @@ -316,23 +317,23 @@ msgstr "" #: field:account.invoice.line,asset_category_id:0 #: view:asset.asset.report:0 msgid "Asset Category" -msgstr "" +msgstr "Ilgalaikio turto kategorija" #. module: account_asset #: view:account.asset.asset:0 msgid "Assets in closed state" -msgstr "" +msgstr "Uždarytos ilgalaikio turto kortelės" #. module: account_asset #: field:account.asset.asset,parent_id:0 msgid "Parent Asset" -msgstr "" +msgstr "Tėvinis ilgalaikis turtas" #. module: account_asset #: view:account.asset.history:0 #: model:ir.model,name:account_asset.model_account_asset_history msgid "Asset history" -msgstr "" +msgstr "Ilgalaikio turto istorija" #. module: account_asset #: view:account.asset.category:0 @@ -342,17 +343,17 @@ msgstr "" #. module: account_asset #: view:asset.modify:0 msgid "months" -msgstr "" +msgstr "mėnesiai" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Sąskaitos faktūros eilutė" #. module: account_asset #: view:account.asset.asset:0 msgid "Depreciation Board" -msgstr "" +msgstr "Nusidėvėjimo lenta" #. module: account_asset #: field:asset.asset.report,unposted_value:0 @@ -364,20 +365,20 @@ msgstr "" #: field:account.asset.category,method_time:0 #: field:account.asset.history,method_time:0 msgid "Time Method" -msgstr "" +msgstr "Laikotarpio metodas" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 #: view:asset.modify:0 msgid "or" -msgstr "" +msgstr "arba" #. module: account_asset #: field:account.asset.asset,note:0 #: field:account.asset.category,note:0 #: field:account.asset.history,note:0 msgid "Note" -msgstr "" +msgstr "Pastaba" #. module: account_asset #: help:account.asset.history,method_time:0 @@ -388,6 +389,12 @@ msgid "" "Ending Date: Choose the time between 2 depreciations and the date the " "depreciations won't go beyond." msgstr "" +"Metodas naudojamas paskaičiuoti datas ir kartus, per kiek nusidėvės " +"ilgalaikis turtas.\n" +"Periodų skaičius: Fiksuotas kartų skaičius ir laikotarpis tarp dviejų " +"nusidėvėjimo skaičiavimų.\n" +"Pabaigos data: Pasirinkite laikotarpį tarp dviejų nusidėvėjimo skaičiavimų " +"ir turtas bus nudėvėtas iki šios datos." #. module: account_asset #: help:account.asset.asset,method_time:0 @@ -400,16 +407,22 @@ msgid "" " * Ending Date: Choose the time between 2 depreciations and the date the " "depreciations won't go beyond." msgstr "" +"Pasirinkite metodą naudojamą paskaičiuoti datas ir kartus, per kiek " +"nusidėvės ilgalaikis turtas.\n" +" * Periodų skaičius: Fiksuotas kartų skaičius ir laikotarpis tarp dviejų " +"nusidėvėjimo skaičiavimų.\n" +" * Pabaigos data: Pasirinkite laikotarpį tarp dviejų nusidėvėjimo " +"skaičiavimų ir turtas bus nudėvėtas iki šios datos." #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in running state" -msgstr "" +msgstr "Naudojamas ilgalaikis turtas" #. module: account_asset #: view:account.asset.asset:0 msgid "Closed" -msgstr "" +msgstr "Uždaryta" #. module: account_asset #: help:account.asset.asset,state:0 @@ -425,18 +438,18 @@ msgstr "" #: field:account.asset.asset,state:0 #: field:asset.asset.report,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: account_asset #: field:account.asset.asset,partner_id:0 #: field:asset.asset.report,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Partneris" #. module: account_asset #: view:asset.asset.report:0 msgid "Posted depreciation lines" -msgstr "" +msgstr "Užregistruoti nusidėvėjimo DK įrašai" #. module: account_asset #: field:account.asset.asset,child_ids:0 @@ -446,33 +459,33 @@ msgstr "" #. module: account_asset #: view:asset.asset.report:0 msgid "Date of depreciation" -msgstr "" +msgstr "Nusidėvėjimo data" #. module: account_asset #: field:account.asset.history,user_id:0 msgid "User" -msgstr "" +msgstr "Naudotojas" #. module: account_asset #: field:account.asset.category,account_asset_id:0 msgid "Asset Account" -msgstr "" +msgstr "Ilgalaikio turto sąskaita" #. module: account_asset #: view:asset.asset.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Išplėstiniai filtrai..." #. module: account_asset #: view:account.asset.asset:0 #: view:asset.depreciation.confirmation.wizard:0 msgid "Compute" -msgstr "" +msgstr "Skaičiuoti" #. module: account_asset #: view:account.asset.history:0 msgid "Asset History" -msgstr "" +msgstr "Ilgalaikio turto istorija" #. module: account_asset #: model:ir.model,name:account_asset.model_asset_depreciation_confirmation_wizard @@ -482,7 +495,7 @@ msgstr "" #. module: account_asset #: field:account.asset.asset,active:0 msgid "Active" -msgstr "" +msgstr "Aktyvus" #. module: account_asset #: field:account.asset.depreciation.line,parent_state:0 @@ -492,28 +505,28 @@ msgstr "" #. module: account_asset #: field:account.asset.depreciation.line,name:0 msgid "Depreciation Name" -msgstr "" +msgstr "Pavadinimas" #. module: account_asset #: view:account.asset.asset:0 #: field:account.asset.asset,history_ids:0 msgid "History" -msgstr "" +msgstr "Istorija" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 msgid "Compute Asset" -msgstr "" +msgstr "Skaičiuoti nusidėvėjimą" #. module: account_asset #: field:asset.depreciation.confirmation.wizard,period_id:0 msgid "Period" -msgstr "" +msgstr "Periodas" #. module: account_asset #: view:account.asset.asset:0 msgid "General" -msgstr "" +msgstr "Bendra" #. module: account_asset #: field:account.asset.asset,prorata:0 @@ -524,47 +537,47 @@ msgstr "" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice msgid "Invoice" -msgstr "" +msgstr "Sąskaita-faktūra" #. module: account_asset #: view:account.asset.asset:0 msgid "Set to Close" -msgstr "" +msgstr "Užbaigti vykdymą" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 #: view:asset.modify:0 msgid "Cancel" -msgstr "" +msgstr "Atšaukti" #. module: account_asset #: selection:account.asset.asset,state:0 #: selection:asset.asset.report,state:0 msgid "Close" -msgstr "" +msgstr "Uždaryta" #. module: account_asset #: model:ir.model,name:account_asset.model_account_move_line msgid "Journal Items" -msgstr "" +msgstr "DK įrašai" #. module: account_asset #: view:asset.modify:0 msgid "Asset Durations to Modify" -msgstr "" +msgstr "Pakeisti ilgalaikio turto nusidėvėjimo laikotarpį" #. module: account_asset #: field:account.asset.asset,purchase_date:0 #: view:asset.asset.report:0 #: field:asset.asset.report,purchase_date:0 msgid "Purchase Date" -msgstr "" +msgstr "Pirkimo data" #. module: account_asset #: selection:account.asset.asset,method:0 #: selection:account.asset.category,method:0 msgid "Degressive" -msgstr "" +msgstr "Dvigubo balanso" #. module: account_asset #: help:asset.depreciation.confirmation.wizard,period_id:0 @@ -572,56 +585,58 @@ msgid "" "Choose the period for which you want to automatically post the depreciation " "lines of running assets" msgstr "" +"Pasirinkite periodą, kuriame užregistruoti naudojamo ilgalaikio turto " +"nusidėvėjimą DK įrašus" #. module: account_asset #: view:account.asset.asset:0 msgid "Current" -msgstr "" +msgstr "Naudojami" #. module: account_asset #: view:account.asset.category:0 msgid "Depreciation Method" -msgstr "" +msgstr "Nusidėvėjimo metodas" #. module: account_asset #: field:account.asset.depreciation.line,amount:0 msgid "Current Depreciation" -msgstr "" +msgstr "Nusidėvėjimas" #. module: account_asset #: field:account.asset.asset,name:0 msgid "Asset Name" -msgstr "" +msgstr "Ilgalaikio turto pavadinimas" #. module: account_asset #: field:account.asset.category,open_asset:0 msgid "Skip Draft State" -msgstr "" +msgstr "Patvirtinti automatiškai" #. module: account_asset #: view:account.asset.category:0 msgid "Depreciation Dates" -msgstr "" +msgstr "Nusidėvėjimo datos" #. module: account_asset #: field:account.asset.asset,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Valiuta" #. module: account_asset #: field:account.asset.category,journal_id:0 msgid "Journal" -msgstr "" +msgstr "Žurnalas" #. module: account_asset #: field:account.asset.history,name:0 msgid "History name" -msgstr "" +msgstr "Pavadinimas" #. module: account_asset #: field:account.asset.depreciation.line,depreciated_value:0 msgid "Amount Already Depreciated" -msgstr "" +msgstr "Nudėvėta" #. module: account_asset #: help:account.asset.asset,method:0 @@ -631,13 +646,16 @@ msgid "" " * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n" " * Degressive: Calculated on basis of: Residual Value * Degressive Factor" msgstr "" +"Pasirinkite metodą naudojamą nusidėvėjimo eilučių skaičiavimui.\n" +" * Tiesinis: Skaičiuojama pagal: Įsigijimo kaina / Periodų skaičius\n" +" * Dvigubo balanso: Skaičiuojama: Likutinė vertė * Nusidėvėjimo procentas" #. module: account_asset #: field:account.asset.depreciation.line,move_check:0 #: view:asset.asset.report:0 #: field:asset.asset.report,move_check:0 msgid "Posted" -msgstr "" +msgstr "Užregistruota" #. module: account_asset #: model:ir.actions.act_window,help:account_asset.action_asset_asset_report @@ -655,12 +673,12 @@ msgstr "" #. module: account_asset #: field:account.asset.asset,purchase_value:0 msgid "Gross Value" -msgstr "" +msgstr "Įsigijimo kaina" #. module: account_asset #: field:account.asset.category,name:0 msgid "Name" -msgstr "" +msgstr "Pavadinimas" #. module: account_asset #: help:account.asset.category,open_asset:0 @@ -668,11 +686,13 @@ msgid "" "Check this if you want to automatically confirm the assets of this category " "when created by invoices." msgstr "" +"Ilgalaikis turtas sukurtas iš sąskaitos faktūros ir priklausantis šiai " +"kategorijai bus automatiškai patvirtintas." #. module: account_asset #: field:asset.asset.report,name:0 msgid "Year" -msgstr "" +msgstr "Metai" #. module: account_asset #: model:ir.model,name:account_asset.model_account_asset_depreciation_line @@ -684,16 +704,16 @@ msgstr "" #: field:asset.asset.report,asset_category_id:0 #: model:ir.model,name:account_asset.model_account_asset_category msgid "Asset category" -msgstr "" +msgstr "Ilgalaikio turto kategorija" #. module: account_asset #: view:asset.asset.report:0 #: field:asset.asset.report,depreciation_value:0 msgid "Amount of Depreciation Lines" -msgstr "" +msgstr "Nusidėvėjusi vertė" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" @@ -701,17 +721,17 @@ msgstr "" #. module: account_asset #: field:account.asset.depreciation.line,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Seka" #. module: account_asset #: help:account.asset.category,method_period:0 msgid "State here the time between 2 depreciations, in months" -msgstr "" +msgstr "Laikotarpis tarp dviejų nusidėvėjimų, mėnesiais" #. module: account_asset #: field:account.asset.history,date:0 msgid "Date" -msgstr "" +msgstr "Data" #. module: account_asset #: field:account.asset.asset,method_number:0 @@ -722,20 +742,20 @@ msgstr "" #: selection:account.asset.history,method_time:0 #: field:asset.modify,method_number:0 msgid "Number of Depreciations" -msgstr "" +msgstr "Periodų skaičius" #. module: account_asset #: view:account.asset.asset:0 msgid "Create Move" -msgstr "" +msgstr "Sukurti įrašus" #. module: account_asset #: view:account.asset.asset:0 msgid "Confirm Asset" -msgstr "" +msgstr "Patvirtinti ilgalaikį turtą" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree msgid "Asset Hierarchy" -msgstr "" +msgstr "Ilgalaikio turto hierarchija" diff --git a/addons/account_asset/i18n/mk.po b/addons/account_asset/i18n/mk.po index 1f08c8620d2..ab5c6cd547b 100644 --- a/addons/account_asset/i18n/mk.po +++ b/addons/account_asset/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -32,7 +32,7 @@ msgstr "Краен датум" #. module: account_asset #: field:account.asset.asset,value_residual:0 msgid "Residual Value" -msgstr "Преостаната вредност" +msgstr "Вредност на остаток" #. module: account_asset #: field:account.asset.category,account_expense_depreciation_id:0 @@ -67,7 +67,7 @@ msgid "" "Indicates that the first depreciation entry for this asset have to be done " "from the purchase date instead of the first January" msgstr "" -"Покажува дека првиот запис за амортизација за ова средство треба да се " +"Покажува дека првиот внес за амортизација за ова средство треба да се " "направи од датумот на набавката наместо од први јануари" #. module: account_asset @@ -143,7 +143,7 @@ msgstr "Ставки на амортизација" #. module: account_asset #: help:account.asset.asset,salvage_value:0 msgid "It is the amount you plan to have that you cannot depreciate." -msgstr "" +msgstr "Ова е износот кој планирате дека нема да можете да го амортизирате." #. module: account_asset #: help:account.asset.asset,method_period:0 @@ -194,13 +194,13 @@ msgstr "Белешки" #. module: account_asset #: field:account.asset.depreciation.line,move_id:0 msgid "Depreciation Entry" -msgstr "Запис за амортизација" +msgstr "Внес за амортизација" #. module: account_asset #: view:asset.asset.report:0 #: field:asset.asset.report,nbr:0 msgid "# of Depreciation Lines" -msgstr "# на ставки за обезвреднување" +msgstr "# на ставки за амортизација" #. module: account_asset #: field:account.asset.asset,method_period:0 @@ -290,6 +290,8 @@ msgid "" "Prorata temporis can be applied only for time method \"number of " "depreciations\"." msgstr "" +"Prorata temporis може да се примени единствено на временскиот метод \"број " +"на амортизации\"." #. module: account_asset #: field:account.asset.depreciation.line,remaining_value:0 @@ -329,7 +331,7 @@ msgstr "Средства во затворена состојба" #. module: account_asset #: field:account.asset.asset,parent_id:0 msgid "Parent Asset" -msgstr "" +msgstr "Средство Родител" #. module: account_asset #: view:account.asset.history:0 @@ -392,11 +394,11 @@ msgid "" "depreciations won't go beyond." msgstr "" "Методот што се користи за пресметување на датуми и број на ставки за " -"обезвреднување.\n" -"Број на обезвреднувања: Корекција на бројот на ставки за обезвреднување и " -"времето помеѓу 2 обезвреднувања.\n" -"Датум на завршување: Изберете го времето помеѓу 2 обезвреднувања и датумот " -"што обезвреднувањата нема да го поминат." +"амортизација.\n" +"Број на амортизации: Корекција на бројот на ставки за амортизација и времето " +"помеѓу 2 амортизации.\n" +"Датум на завршување: Изберете го времето помеѓу 2 амортизации и датумот што " +"амортизациите нема да го поминат." #. module: account_asset #: help:account.asset.asset,method_time:0 @@ -409,11 +411,17 @@ msgid "" " * Ending Date: Choose the time between 2 depreciations and the date the " "depreciations won't go beyond." msgstr "" +"Изберете метод што ќе го користите за пресметување на датуми и број на " +"ставки за амортизација.\n" +"Број на амортизации: Фиксирајте го бројот на ставки за амортизација и " +"времето помеѓу 2 амортизации.\n" +"Датум на завршување: Изберете го времето помеѓу 2 амортизации и датумот што " +"амортизациите нема да го поминат." #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in running state" -msgstr "Средства во состојба на извршување" +msgstr "Средства во работна состојба" #. module: account_asset #: view:account.asset.asset:0 @@ -456,7 +464,7 @@ msgstr "Објавени ставки за амортизација" #. module: account_asset #: field:account.asset.asset,child_ids:0 msgid "Children Assets" -msgstr "" +msgstr "Средства Деца" #. module: account_asset #: view:asset.asset.report:0 @@ -466,7 +474,7 @@ msgstr "Датум на амортизација" #. module: account_asset #: field:account.asset.history,user_id:0 msgid "User" -msgstr "Корисни" +msgstr "Корисник" #. module: account_asset #: field:account.asset.category,account_asset_id:0 @@ -492,7 +500,7 @@ msgstr "Историја на средство" #. module: account_asset #: model:ir.model,name:account_asset.model_asset_depreciation_confirmation_wizard msgid "asset.depreciation.confirmation.wizard" -msgstr "Copy text \t asset.depreciation.confirmation.wizard" +msgstr "asset.depreciation.confirmation.wizard" #. module: account_asset #: field:account.asset.asset,active:0 @@ -534,7 +542,7 @@ msgstr "Општо" #: field:account.asset.asset,prorata:0 #: field:account.asset.category,prorata:0 msgid "Prorata Temporis" -msgstr "" +msgstr "Prorata Temporis" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice @@ -566,7 +574,7 @@ msgstr "Ставки на дневник" #. module: account_asset #: view:asset.modify:0 msgid "Asset Durations to Modify" -msgstr "Модификација на траење на средство" +msgstr "Изменување на времетраењето на средството" #. module: account_asset #: field:account.asset.asset,purchase_date:0 @@ -671,7 +679,7 @@ msgid "" " " msgstr "" "

\n" -" Од овој извештај имате преглед на сите обезвреднувања. \n" +" Од овој извештај имате преглед на сите амортизации. \n" " Алатката за пребарување може да се користи за персонализирање " "на\n" " извештаите за средствата за да одговара на анализите што вам ви " @@ -722,10 +730,10 @@ msgid "Amount of Depreciation Lines" msgstr "Износ на ставките за амортизација" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" -msgstr "" +msgstr "Креирани движења на средство" #. module: account_asset #: field:account.asset.depreciation.line,sequence:0 diff --git a/addons/account_asset/i18n/mn.po b/addons/account_asset/i18n/mn.po index 91e55e7a698..8d4eb32ac90 100644 --- a/addons/account_asset/i18n/mn.po +++ b/addons/account_asset/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -723,7 +723,7 @@ msgid "Amount of Depreciation Lines" msgstr "Элэгдлийн мөрүүдийн дүн" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Үүсгэгдсэн Хөрөнгийн Хөдөлгөөнүүд" @@ -768,7 +768,7 @@ msgstr "Хөрөнгийг батлах" #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree msgid "Asset Hierarchy" -msgstr "Хөрөнгийн эзэмшигч" +msgstr "Хөрөнгийн Шатлал" #~ msgid "Review Asset Categories" #~ msgstr "Хөрөнгийн ангилалыг дахин харах" diff --git a/addons/account_asset/i18n/nb.po b/addons/account_asset/i18n/nb.po index de87533a58c..278be58ce88 100644 --- a/addons/account_asset/i18n/nb.po +++ b/addons/account_asset/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -711,7 +711,7 @@ msgid "Amount of Depreciation Lines" msgstr "Størrelsen på avskrivningene linjer" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Opprettet eiendel trekk." diff --git a/addons/account_asset/i18n/nl.po b/addons/account_asset/i18n/nl.po index bfadaa0dba9..d081832a519 100644 --- a/addons/account_asset/i18n/nl.po +++ b/addons/account_asset/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-12-21 19:10+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:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -569,7 +569,7 @@ msgstr "Afsluiten" #. module: account_asset #: model:ir.model,name:account_asset.model_account_move_line msgid "Journal Items" -msgstr "Boekingen" +msgstr "Boekingsregels" #. module: account_asset #: view:asset.modify:0 @@ -732,7 +732,7 @@ msgid "Amount of Depreciation Lines" msgstr "Bedrag aan afschrijvingsregels" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Maak activa mutaties" diff --git a/addons/account_asset/i18n/nl_BE.po b/addons/account_asset/i18n/nl_BE.po index 3413cf38ac8..94ae8273a88 100644 --- a/addons/account_asset/i18n/nl_BE.po +++ b/addons/account_asset/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -724,7 +724,7 @@ msgid "Amount of Depreciation Lines" msgstr "Aantal afschrijvingslijnen" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Gemaakte investeringsboekingen" diff --git a/addons/account_asset/i18n/pl.po b/addons/account_asset/i18n/pl.po index 007c65e0f23..792a6436a38 100755 --- a/addons/account_asset/i18n/pl.po +++ b/addons/account_asset/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -37,7 +37,7 @@ msgstr "Wartość pozostała" #. module: account_asset #: field:account.asset.category,account_expense_depreciation_id:0 msgid "Depr. Expense Account" -msgstr "Konto umorzenia" +msgstr "Konto amortyzacji" #. module: account_asset #: view:asset.asset.report:0 @@ -178,7 +178,7 @@ msgstr "Środki trwałe" #. module: account_asset #: field:account.asset.category,account_depreciation_id:0 msgid "Depreciation Account" -msgstr "Konto amortyzacji" +msgstr "Konto umorzenia" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/pt.po b/addons/account_asset/i18n/pt.po index 76162329c3c..732fdcfbc71 100755 --- a/addons/account_asset/i18n/pt.po +++ b/addons/account_asset/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -713,7 +713,7 @@ msgid "Amount of Depreciation Lines" msgstr "Quantidade de linhas de depreciação" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Movimento de ativos criados" diff --git a/addons/account_asset/i18n/pt_BR.po b/addons/account_asset/i18n/pt_BR.po index 17094692595..1d5846a1e25 100644 --- a/addons/account_asset/i18n/pt_BR.po +++ b/addons/account_asset/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_asset #: view:account.asset.asset:0 @@ -727,7 +727,7 @@ msgid "Amount of Depreciation Lines" msgstr "Quantidade de Linhas de Depreciação" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Movimentação de Bens" diff --git a/addons/account_asset/i18n/ro.po b/addons/account_asset/i18n/ro.po index 4e0363a89e4..8c3e06c9195 100644 --- a/addons/account_asset/i18n/ro.po +++ b/addons/account_asset/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -731,7 +731,7 @@ msgid "Amount of Depreciation Lines" msgstr "Suma Liniilor Devalorizarii" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Miscari de active create" diff --git a/addons/account_asset/i18n/ru.po b/addons/account_asset/i18n/ru.po index d6bc83aacb5..44b591557a4 100644 --- a/addons/account_asset/i18n/ru.po +++ b/addons/account_asset/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-01 05:16+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -697,10 +697,10 @@ msgid "Amount of Depreciation Lines" msgstr "Сумма по позициям амортизации" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" -msgstr "" +msgstr "Созданные операции по активам" #. module: account_asset #: field:account.asset.depreciation.line,sequence:0 diff --git a/addons/account_asset/i18n/sl.po b/addons/account_asset/i18n/sl.po index 188f701aab5..35e457f47a2 100644 --- a/addons/account_asset/i18n/sl.po +++ b/addons/account_asset/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -713,7 +713,7 @@ msgid "Amount of Depreciation Lines" msgstr "Vrednost amortizacijskih postavk" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Kreirane vknjižbe osnovnega sredstva" diff --git a/addons/account_asset/i18n/sr@latin.po b/addons/account_asset/i18n/sr@latin.po index 54d81791f73..19ed1b89e04 100644 --- a/addons/account_asset/i18n/sr@latin.po +++ b/addons/account_asset/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/sv.po b/addons/account_asset/i18n/sv.po index 1bf58855317..cd2f83554e5 100755 --- a/addons/account_asset/i18n/sv.po +++ b/addons/account_asset/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -710,7 +710,7 @@ msgid "Amount of Depreciation Lines" msgstr "Antal avskrivningsrader" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Skapade tillgångsändringar" diff --git a/addons/account_asset/i18n/th.po b/addons/account_asset/i18n/th.po index cd7967a5eb2..9e280ccc382 100644 --- a/addons/account_asset/i18n/th.po +++ b/addons/account_asset/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-25 05:13+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/tr.po b/addons/account_asset/i18n/tr.po index 4593ec68032..c021584462a 100644 --- a/addons/account_asset/i18n/tr.po +++ b/addons/account_asset/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -726,7 +726,7 @@ msgid "Amount of Depreciation Lines" msgstr "Amortisman Satırları Tutarı" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Oluşturulan Demirbaş Hareketleri" diff --git a/addons/account_asset/i18n/vi.po b/addons/account_asset/i18n/vi.po index b137f24d29c..215651465d2 100644 --- a/addons/account_asset/i18n/vi.po +++ b/addons/account_asset/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/zh_CN.po b/addons/account_asset/i18n/zh_CN.po index aca22a8c9fb..db73c0d1c96 100644 --- a/addons/account_asset/i18n/zh_CN.po +++ b/addons/account_asset/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_asset #: view:account.asset.asset:0 @@ -263,7 +263,7 @@ msgstr "修改周期" #: help:account.asset.category,method_number:0 #: help:account.asset.history,method_number:0 msgid "The number of depreciations needed to depreciate your asset" -msgstr "" +msgstr "被折旧资产的折旧数量" #. module: account_asset #: view:account.asset.category:0 @@ -291,7 +291,7 @@ msgstr "等比折旧仅用于“折旧次数”的计时方式" #. module: account_asset #: field:account.asset.depreciation.line,remaining_value:0 msgid "Next Period Depreciation" -msgstr "" +msgstr "下个期间的折旧" #. module: account_asset #: help:account.asset.history,method_period:0 @@ -592,7 +592,7 @@ msgstr "折旧方法" #. module: account_asset #: field:account.asset.depreciation.line,amount:0 msgid "Current Depreciation" -msgstr "" +msgstr "当前折旧" #. module: account_asset #: field:account.asset.asset,name:0 @@ -699,7 +699,7 @@ msgid "Amount of Depreciation Lines" msgstr "折旧行金额" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "新建固定资产会计凭证" diff --git a/addons/account_asset/i18n/zh_TW.po b/addons/account_asset/i18n/zh_TW.po index d824a9ad4d6..e580df0970b 100644 --- a/addons/account_asset/i18n/zh_TW.po +++ b/addons/account_asset/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_asset #: view:account.asset.asset:0 @@ -699,7 +699,7 @@ msgid "Amount of Depreciation Lines" msgstr "折舊明細的金額" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "建立資產轉移" diff --git a/addons/account_asset/report/account_asset_report_view.xml b/addons/account_asset/report/account_asset_report_view.xml index c772c6e4103..c0055773bea 100644 --- a/addons/account_asset/report/account_asset_report_view.xml +++ b/addons/account_asset/report/account_asset_report_view.xml @@ -56,9 +56,9 @@ - - diff --git a/addons/account_bank_statement_extensions/i18n/ar.po b/addons/account_bank_statement_extensions/i18n/ar.po index d3230fc15fb..8fae3b2a067 100644 --- a/addons/account_bank_statement_extensions/i18n/ar.po +++ b/addons/account_bank_statement_extensions/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/bs.po b/addons/account_bank_statement_extensions/i18n/bs.po new file mode 100644 index 00000000000..cfc187a6819 --- /dev/null +++ b/addons/account_bank_statement_extensions/i18n/bs.po @@ -0,0 +1,363 @@ +# 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:05+0000\n" +"PO-Revision-Date: 2013-10-29 18:57+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-10-30 05:16+0000\n" +"X-Generator: Launchpad (build 16820)\n" + +#. module: account_bank_statement_extensions +#: help:account.bank.statement.line.global,name:0 +msgid "Originator to Beneficiary Information" +msgstr "Informacije o pokretaču i korisniku" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +#: selection:account.bank.statement.line,state:0 +msgid "Confirmed" +msgstr "Potvrđeno" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement:0 +#: view:account.bank.statement.line:0 +msgid "Glob. Id" +msgstr "Glob. Id" + +#. module: account_bank_statement_extensions +#: selection:account.bank.statement.line.global,type:0 +msgid "CODA" +msgstr "CODA" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,parent_id:0 +msgid "Parent Code" +msgstr "Šifra nadređenog" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Debit" +msgstr "Duguje" + +#. module: account_bank_statement_extensions +#: view:cancel.statement.line:0 +#: model:ir.actions.act_window,name:account_bank_statement_extensions.action_cancel_statement_line +#: model:ir.model,name:account_bank_statement_extensions.model_cancel_statement_line +msgid "Cancel selected statement lines" +msgstr "Otkaži odabrane stavke izvoda" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,val_date:0 +msgid "Value Date" +msgstr "Datum vrijednovanja" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Group By..." +msgstr "Grupiši po..." + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +#: selection:account.bank.statement.line,state:0 +msgid "Draft" +msgstr "U pripremi" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Statement" +msgstr "Izvod" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +#: model:ir.actions.act_window,name:account_bank_statement_extensions.action_confirm_statement_line +#: model:ir.model,name:account_bank_statement_extensions.model_confirm_statement_line +msgid "Confirm selected statement lines" +msgstr "Potvrdi odabrane stavke izvoda" + +#. module: account_bank_statement_extensions +#: report:bank.statement.balance.report:0 +#: model:ir.actions.report.xml,name:account_bank_statement_extensions.bank_statement_balance_report +msgid "Bank Statement Balances Report" +msgstr "Izvještaj stanja izvoda" + +#. module: account_bank_statement_extensions +#: view:cancel.statement.line:0 +msgid "Cancel Lines" +msgstr "Otkaži stavke" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line.global:0 +#: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line_global +msgid "Batch Payment Info" +msgstr "Informacije grupnog plaćanja" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,state:0 +msgid "Status" +msgstr "Status" + +#. module: account_bank_statement_extensions +#: code:addons/account_bank_statement_extensions/account_bank_statement.py:129 +#, python-format +msgid "" +"Delete operation not allowed. Please go to the associated bank " +"statement in order to delete and/or modify bank statement line." +msgstr "" +"Operacija brisanja nije dozvoljena. Molimo otiđite na povezanu stavku izvoda " +"da bi ste obrisali ili uredili stavku izvoda." + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +msgid "or" +msgstr "ili" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +msgid "Confirm Lines" +msgstr "Potvrdi stavke" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line.global:0 +msgid "Transactions" +msgstr "Transakcije" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,type:0 +msgid "Type" +msgstr "Tip" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +#: report:bank.statement.balance.report:0 +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Confirmed Statement Lines." +msgstr "Potvrđene stavke izvoda" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Credit Transactions." +msgstr "Potražne transakcije" + +#. module: account_bank_statement_extensions +#: model:ir.actions.act_window,help:account_bank_statement_extensions.action_cancel_statement_line +msgid "cancel selected statement lines." +msgstr "otkaži odabrane stavke izvoda." + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,counterparty_number:0 +msgid "Counterparty Number" +msgstr "Broj protupartije" + +#. module: account_bank_statement_extensions +#: report:bank.statement.balance.report:0 +msgid "Closing Balance" +msgstr "Završni saldo" + +#. module: account_bank_statement_extensions +#: report:bank.statement.balance.report:0 +msgid "Date" +msgstr "Datum" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +#: field:account.bank.statement.line,globalisation_amount:0 +msgid "Glob. Amount" +msgstr "Glob. vrijednost" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Debit Transactions." +msgstr "Dugovne transakcije" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Extended Filters..." +msgstr "Napredni filteri..." + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +msgid "Confirmed lines cannot be changed anymore." +msgstr "Potvrđene stavke se ne mogu više mjenjati." + +#. module: account_bank_statement_extensions +#: view:cancel.statement.line:0 +msgid "Are you sure you want to cancel the selected Bank Statement lines ?" +msgstr "" +"Da li ste sigurni da želite otkazati odabrane stavke izvoda iz banke ?" + +#. module: account_bank_statement_extensions +#: report:bank.statement.balance.report:0 +msgid "Name" +msgstr "Naziv" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,name:0 +msgid "OBI" +msgstr "JIB/JBMG" + +#. module: account_bank_statement_extensions +#: selection:account.bank.statement.line.global,type:0 +msgid "ISO 20022" +msgstr "ISO 20022" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Notes" +msgstr "Zabilješke" + +#. module: account_bank_statement_extensions +#: selection:account.bank.statement.line.global,type:0 +msgid "Manual" +msgstr "Ručno" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Bank Transaction" +msgstr "Bankovne transakcije" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Credit" +msgstr "Potražuje" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,amount:0 +msgid "Amount" +msgstr "Iznos" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Fin.Account" +msgstr "Fin.konto" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,counterparty_currency:0 +msgid "Counterparty Currency" +msgstr "Valuta protupartije" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,counterparty_bic:0 +msgid "Counterparty BIC" +msgstr "BIC protupartije" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,child_ids:0 +msgid "Child Codes" +msgstr "Šifre podređenih" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Search Bank Transactions" +msgstr "Pretraži izvode banke" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +msgid "Are you sure you want to confirm the selected Bank Statement lines ?" +msgstr "" +"Da li ste sigurni da želite potvrditi odabrane stavke izvoda iz banke?" + +#. module: account_bank_statement_extensions +#: help:account.bank.statement.line,globalisation_id:0 +msgid "" +"Code to identify transactions belonging to the same globalisation level " +"within a batch payment" +msgstr "" +"Šifra za identifikaciju transakcije koja pripada nekom globalizacijskom " +"nivou sa grupnim plaćanjima" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Draft Statement Lines." +msgstr "Stavke izvoda u toku." + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Glob. Am." +msgstr "Glob. Vrij." + +#. module: account_bank_statement_extensions +#: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "Stavka bankovnog izvoda" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,code:0 +msgid "Code" +msgstr "Šifra" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,counterparty_name:0 +msgid "Counterparty Name" +msgstr "Naziv protupartije" + +#. module: account_bank_statement_extensions +#: model:ir.model,name:account_bank_statement_extensions.model_res_partner_bank +msgid "Bank Accounts" +msgstr "Računi banke" + +#. module: account_bank_statement_extensions +#: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement +msgid "Bank Statement" +msgstr "Izvod banke" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Statement Line" +msgstr "Stavka izvoda" + +#. module: account_bank_statement_extensions +#: sql_constraint:account.bank.statement.line.global:0 +msgid "The code must be unique !" +msgstr "Šifra mora biti jedinstvena !" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,bank_statement_line_ids:0 +#: model:ir.actions.act_window,name:account_bank_statement_extensions.action_bank_statement_line +#: model:ir.ui.menu,name:account_bank_statement_extensions.bank_statement_line +msgid "Bank Statement Lines" +msgstr "Stavke izvoda iz banke" + +#. module: account_bank_statement_extensions +#: code:addons/account_bank_statement_extensions/account_bank_statement.py:129 +#, python-format +msgid "Warning!" +msgstr "Upozorenje!" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line.global:0 +msgid "Child Batch Payments" +msgstr "Podređena grupna plaćanja" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Statement Lines" +msgstr "Stavke izvoda" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Total Amount" +msgstr "Ukupan Iznos" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,globalisation_id:0 +msgid "Globalisation ID" +msgstr "Globalizacijski ID" diff --git a/addons/account_bank_statement_extensions/i18n/cs.po b/addons/account_bank_statement_extensions/i18n/cs.po index 4eef2acf03b..0664be0ab35 100644 --- a/addons/account_bank_statement_extensions/i18n/cs.po +++ b/addons/account_bank_statement_extensions/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/da.po b/addons/account_bank_statement_extensions/i18n/da.po new file mode 100644 index 00000000000..0c6d05c076b --- /dev/null +++ b/addons/account_bank_statement_extensions/i18n/da.po @@ -0,0 +1,357 @@ +# Danish 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:05+0000\n" +"PO-Revision-Date: 2013-10-15 00:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-10-16 04:37+0000\n" +"X-Generator: Launchpad (build 16799)\n" + +#. module: account_bank_statement_extensions +#: help:account.bank.statement.line.global,name:0 +msgid "Originator to Beneficiary Information" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +#: selection:account.bank.statement.line,state:0 +msgid "Confirmed" +msgstr "Bekræftet" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement:0 +#: view:account.bank.statement.line:0 +msgid "Glob. Id" +msgstr "" + +#. module: account_bank_statement_extensions +#: selection:account.bank.statement.line.global,type:0 +msgid "CODA" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,parent_id:0 +msgid "Parent Code" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Debit" +msgstr "Debet" + +#. module: account_bank_statement_extensions +#: view:cancel.statement.line:0 +#: model:ir.actions.act_window,name:account_bank_statement_extensions.action_cancel_statement_line +#: model:ir.model,name:account_bank_statement_extensions.model_cancel_statement_line +msgid "Cancel selected statement lines" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,val_date:0 +msgid "Value Date" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Group By..." +msgstr "Gruppér efter..." + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +#: selection:account.bank.statement.line,state:0 +msgid "Draft" +msgstr "Kladde" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Statement" +msgstr "Erklæring" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +#: model:ir.actions.act_window,name:account_bank_statement_extensions.action_confirm_statement_line +#: model:ir.model,name:account_bank_statement_extensions.model_confirm_statement_line +msgid "Confirm selected statement lines" +msgstr "" + +#. module: account_bank_statement_extensions +#: report:bank.statement.balance.report:0 +#: model:ir.actions.report.xml,name:account_bank_statement_extensions.bank_statement_balance_report +msgid "Bank Statement Balances Report" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:cancel.statement.line:0 +msgid "Cancel Lines" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line.global:0 +#: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line_global +msgid "Batch Payment Info" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,state:0 +msgid "Status" +msgstr "Status" + +#. module: account_bank_statement_extensions +#: code:addons/account_bank_statement_extensions/account_bank_statement.py:129 +#, python-format +msgid "" +"Delete operation not allowed. Please go to the associated bank " +"statement in order to delete and/or modify bank statement line." +msgstr "" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +msgid "or" +msgstr "eller" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +msgid "Confirm Lines" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line.global:0 +msgid "Transactions" +msgstr "Transaktioner" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,type:0 +msgid "Type" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +#: report:bank.statement.balance.report:0 +msgid "Journal" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Confirmed Statement Lines." +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Credit Transactions." +msgstr "" + +#. module: account_bank_statement_extensions +#: model:ir.actions.act_window,help:account_bank_statement_extensions.action_cancel_statement_line +msgid "cancel selected statement lines." +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,counterparty_number:0 +msgid "Counterparty Number" +msgstr "" + +#. module: account_bank_statement_extensions +#: report:bank.statement.balance.report:0 +msgid "Closing Balance" +msgstr "" + +#. module: account_bank_statement_extensions +#: report:bank.statement.balance.report:0 +msgid "Date" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +#: field:account.bank.statement.line,globalisation_amount:0 +msgid "Glob. Amount" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Debit Transactions." +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Extended Filters..." +msgstr "" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +msgid "Confirmed lines cannot be changed anymore." +msgstr "" + +#. module: account_bank_statement_extensions +#: view:cancel.statement.line:0 +msgid "Are you sure you want to cancel the selected Bank Statement lines ?" +msgstr "" + +#. module: account_bank_statement_extensions +#: report:bank.statement.balance.report:0 +msgid "Name" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,name:0 +msgid "OBI" +msgstr "" + +#. module: account_bank_statement_extensions +#: selection:account.bank.statement.line.global,type:0 +msgid "ISO 20022" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Notes" +msgstr "" + +#. module: account_bank_statement_extensions +#: selection:account.bank.statement.line.global,type:0 +msgid "Manual" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Bank Transaction" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Credit" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,amount:0 +msgid "Amount" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Fin.Account" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,counterparty_currency:0 +msgid "Counterparty Currency" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,counterparty_bic:0 +msgid "Counterparty BIC" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,child_ids:0 +msgid "Child Codes" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Search Bank Transactions" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +msgid "Are you sure you want to confirm the selected Bank Statement lines ?" +msgstr "" + +#. module: account_bank_statement_extensions +#: help:account.bank.statement.line,globalisation_id:0 +msgid "" +"Code to identify transactions belonging to the same globalisation level " +"within a batch payment" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Draft Statement Lines." +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Glob. Am." +msgstr "" + +#. module: account_bank_statement_extensions +#: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,code:0 +msgid "Code" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,counterparty_name:0 +msgid "Counterparty Name" +msgstr "" + +#. module: account_bank_statement_extensions +#: model:ir.model,name:account_bank_statement_extensions.model_res_partner_bank +msgid "Bank Accounts" +msgstr "Bankkonti" + +#. module: account_bank_statement_extensions +#: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement +msgid "Bank Statement" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Statement Line" +msgstr "" + +#. module: account_bank_statement_extensions +#: sql_constraint:account.bank.statement.line.global:0 +msgid "The code must be unique !" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,bank_statement_line_ids:0 +#: model:ir.actions.act_window,name:account_bank_statement_extensions.action_bank_statement_line +#: model:ir.ui.menu,name:account_bank_statement_extensions.bank_statement_line +msgid "Bank Statement Lines" +msgstr "" + +#. module: account_bank_statement_extensions +#: code:addons/account_bank_statement_extensions/account_bank_statement.py:129 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line.global:0 +msgid "Child Batch Payments" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +msgid "Cancel" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Statement Lines" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Total Amount" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,globalisation_id:0 +msgid "Globalisation ID" +msgstr "" diff --git a/addons/account_bank_statement_extensions/i18n/de.po b/addons/account_bank_statement_extensions/i18n/de.po index fec8dd92f3f..ec1be94259e 100644 --- a/addons/account_bank_statement_extensions/i18n/de.po +++ b/addons/account_bank_statement_extensions/i18n/de.po @@ -15,13 +15,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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Auftrageber oder Begünstigter" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 diff --git a/addons/account_bank_statement_extensions/i18n/en_GB.po b/addons/account_bank_statement_extensions/i18n/en_GB.po index 650724963b1..3a3936cb6d7 100644 --- a/addons/account_bank_statement_extensions/i18n/en_GB.po +++ b/addons/account_bank_statement_extensions/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es.po b/addons/account_bank_statement_extensions/i18n/es.po index 56dded2fea0..447e063b9e0 100644 --- a/addons/account_bank_statement_extensions/i18n/es.po +++ b/addons/account_bank_statement_extensions/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_CR.po b/addons/account_bank_statement_extensions/i18n/es_CR.po index 8d42b1ba620..4339a6ef4ac 100644 --- a/addons/account_bank_statement_extensions/i18n/es_CR.po +++ b/addons/account_bank_statement_extensions/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_EC.po b/addons/account_bank_statement_extensions/i18n/es_EC.po index d6a9619d17c..aca4ec709fb 100644 --- a/addons/account_bank_statement_extensions/i18n/es_EC.po +++ b/addons/account_bank_statement_extensions/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_MX.po b/addons/account_bank_statement_extensions/i18n/es_MX.po index 1dea6446b5c..93820ed0b81 100644 --- a/addons/account_bank_statement_extensions/i18n/es_MX.po +++ b/addons/account_bank_statement_extensions/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/fi.po b/addons/account_bank_statement_extensions/i18n/fi.po index ca8f56985cb..54035546b3d 100644 --- a/addons/account_bank_statement_extensions/i18n/fi.po +++ b/addons/account_bank_statement_extensions/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/fr.po b/addons/account_bank_statement_extensions/i18n/fr.po index 703ddc8d222..f02bc7cd940 100644 --- a/addons/account_bank_statement_extensions/i18n/fr.po +++ b/addons/account_bank_statement_extensions/i18n/fr.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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Informations de l'initiateur au bénéficiaire" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -208,7 +208,7 @@ msgstr "Nom / Libellé" #. module: account_bank_statement_extensions #: field:account.bank.statement.line.global,name:0 msgid "OBI" -msgstr "" +msgstr "IAB" #. module: account_bank_statement_extensions #: selection:account.bank.statement.line.global,type:0 diff --git a/addons/account_bank_statement_extensions/i18n/gu.po b/addons/account_bank_statement_extensions/i18n/gu.po index 653807b7d8b..98816b65414 100644 --- a/addons/account_bank_statement_extensions/i18n/gu.po +++ b/addons/account_bank_statement_extensions/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/hr.po b/addons/account_bank_statement_extensions/i18n/hr.po index e8a51f9d5b3..4a3084199c8 100644 --- a/addons/account_bank_statement_extensions/i18n/hr.po +++ b/addons/account_bank_statement_extensions/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/hu.po b/addons/account_bank_statement_extensions/i18n/hu.po index a631c43ade0..5337b198a0b 100644 --- a/addons/account_bank_statement_extensions/i18n/hu.po +++ b/addons/account_bank_statement_extensions/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-06 05:40+0000\n" -"X-Generator: Launchpad (build 16598)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/it.po b/addons/account_bank_statement_extensions/i18n/it.po index b6a32420ecf..d62a09d2310 100644 --- a/addons/account_bank_statement_extensions/i18n/it.po +++ b/addons/account_bank_statement_extensions/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ja.po b/addons/account_bank_statement_extensions/i18n/ja.po index 114cf379dbf..4c351e0b344 100644 --- a/addons/account_bank_statement_extensions/i18n/ja.po +++ b/addons/account_bank_statement_extensions/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/mk.po b/addons/account_bank_statement_extensions/i18n/mk.po index 55d719d004b..8a9883f9359 100644 --- a/addons/account_bank_statement_extensions/i18n/mk.po +++ b/addons/account_bank_statement_extensions/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: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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Креатор на информации за корисник" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -88,7 +88,7 @@ msgstr "Потврди ги селектираните ставки на изв #: report:bank.statement.balance.report:0 #: model:ir.actions.report.xml,name:account_bank_statement_extensions.bank_statement_balance_report msgid "Bank Statement Balances Report" -msgstr "" +msgstr "Извештај за салдата на банкарскиот извод" #. module: account_bank_statement_extensions #: view:cancel.statement.line:0 @@ -99,7 +99,7 @@ msgstr "Откажи ставки" #: view:account.bank.statement.line.global:0 #: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line_global msgid "Batch Payment Info" -msgstr "" +msgstr "Информации за групно плаќање" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,state:0 @@ -150,7 +150,7 @@ msgstr "Потврдени ставки на изводот" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Credit Transactions." -msgstr "Трансакции на побарување" +msgstr "Трансакции на побарување." #. module: account_bank_statement_extensions #: model:ir.actions.act_window,help:account_bank_statement_extensions.action_cancel_statement_line @@ -160,7 +160,7 @@ msgstr "откажи ги селектираните ставки на изво #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_number:0 msgid "Counterparty Number" -msgstr "" +msgstr "Број на договорна страна" #. module: account_bank_statement_extensions #: report:bank.statement.balance.report:0 @@ -191,7 +191,7 @@ msgstr "Проширени филтри..." #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 msgid "Confirmed lines cannot be changed anymore." -msgstr "Потврдените стави не може повеќе да бидат менувани" +msgstr "Потврдените ставки не може повеќе да бидат менувани" #. module: account_bank_statement_extensions #: view:cancel.statement.line:0 @@ -248,7 +248,7 @@ msgstr "Конто финансии" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_currency:0 msgid "Counterparty Currency" -msgstr "" +msgstr "Валута на договорна страна" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_bic:0 @@ -278,6 +278,8 @@ msgid "" "Code to identify transactions belonging to the same globalisation level " "within a batch payment" msgstr "" +"Кодот за идентификување на трансакциите припаѓа на исто ниво на " +"глобализација во рамките на групното плаќање" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -302,7 +304,7 @@ msgstr "Код" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_name:0 msgid "Counterparty Name" -msgstr "" +msgstr "Име на договорна страна" #. module: account_bank_statement_extensions #: model:ir.model,name:account_bank_statement_extensions.model_res_partner_bank @@ -360,4 +362,4 @@ msgstr "Вкупна сума" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,globalisation_id:0 msgid "Globalisation ID" -msgstr "" +msgstr "ID на глобализација" diff --git a/addons/account_bank_statement_extensions/i18n/mn.po b/addons/account_bank_statement_extensions/i18n/mn.po index 03f11d2dba9..25289df52cf 100644 --- a/addons/account_bank_statement_extensions/i18n/mn.po +++ b/addons/account_bank_statement_extensions/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 @@ -158,7 +158,7 @@ msgstr "" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_number:0 msgid "Counterparty Number" -msgstr "Эсрэг талын дугаар" +msgstr "Харьцах дансны дугаар" #. module: account_bank_statement_extensions #: report:bank.statement.balance.report:0 diff --git a/addons/account_bank_statement_extensions/i18n/nb.po b/addons/account_bank_statement_extensions/i18n/nb.po index b09f1cbbc63..f255c904104 100644 --- a/addons/account_bank_statement_extensions/i18n/nb.po +++ b/addons/account_bank_statement_extensions/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/nl.po b/addons/account_bank_statement_extensions/i18n/nl.po index a2afd2fcde3..400f042d8e7 100644 --- a/addons/account_bank_statement_extensions/i18n/nl.po +++ b/addons/account_bank_statement_extensions/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-22 20:43+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: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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/pl.po b/addons/account_bank_statement_extensions/i18n/pl.po index 26ee9631791..302e7e014dd 100644 --- a/addons/account_bank_statement_extensions/i18n/pl.po +++ b/addons/account_bank_statement_extensions/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/pt.po b/addons/account_bank_statement_extensions/i18n/pt.po index 375d1a537b3..8db9595bd51 100644 --- a/addons/account_bank_statement_extensions/i18n/pt.po +++ b/addons/account_bank_statement_extensions/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/pt_BR.po b/addons/account_bank_statement_extensions/i18n/pt_BR.po index c80230e0fe6..77ffb07f5d7 100644 --- a/addons/account_bank_statement_extensions/i18n/pt_BR.po +++ b/addons/account_bank_statement_extensions/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ro.po b/addons/account_bank_statement_extensions/i18n/ro.po index e82c0c757d0..5b0d8363716 100644 --- a/addons/account_bank_statement_extensions/i18n/ro.po +++ b/addons/account_bank_statement_extensions/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ru.po b/addons/account_bank_statement_extensions/i18n/ru.po index 61b054e7563..ff4d21c2539 100644 --- a/addons/account_bank_statement_extensions/i18n/ru.po +++ b/addons/account_bank_statement_extensions/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-06 04:47+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sl.po b/addons/account_bank_statement_extensions/i18n/sl.po index 40c5983d1ed..09b782094a0 100644 --- a/addons/account_bank_statement_extensions/i18n/sl.po +++ b/addons/account_bank_statement_extensions/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sr@latin.po b/addons/account_bank_statement_extensions/i18n/sr@latin.po index a04c56e8bab..ac636e31ba4 100644 --- a/addons/account_bank_statement_extensions/i18n/sr@latin.po +++ b/addons/account_bank_statement_extensions/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sv.po b/addons/account_bank_statement_extensions/i18n/sv.po index fef21e53a8a..01c5c32e564 100644 --- a/addons/account_bank_statement_extensions/i18n/sv.po +++ b/addons/account_bank_statement_extensions/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/tr.po b/addons/account_bank_statement_extensions/i18n/tr.po index c2f9ad07f4c..4e79bf2a0ce 100644 --- a/addons/account_bank_statement_extensions/i18n/tr.po +++ b/addons/account_bank_statement_extensions/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 @@ -32,7 +32,7 @@ msgstr "Onaylandı" #: view:account.bank.statement:0 #: view:account.bank.statement.line:0 msgid "Glob. Id" -msgstr "Glob. Id" +msgstr "Gen. Id" #. module: account_bank_statement_extensions #: selection:account.bank.statement.line.global,type:0 @@ -64,7 +64,7 @@ msgstr "Değer Tarihi" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Group By..." -msgstr "Grupla..." +msgstr "Gruplandır..." #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -75,14 +75,14 @@ msgstr "Taslak" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Statement" -msgstr "Ekstre" +msgstr "Hesap özeti" #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 #: model:ir.actions.act_window,name:account_bank_statement_extensions.action_confirm_statement_line #: model:ir.model,name:account_bank_statement_extensions.model_confirm_statement_line msgid "Confirm selected statement lines" -msgstr "Seçili ekstre kalemlerini onayla" +msgstr "Seçili hesap özeti kalemlerini onayla" #. module: account_bank_statement_extensions #: report:bank.statement.balance.report:0 @@ -93,7 +93,7 @@ msgstr "Banka Durumu Raporu" #. module: account_bank_statement_extensions #: view:cancel.statement.line:0 msgid "Cancel Lines" -msgstr "kalemleri İptal et" +msgstr "Kalemleri İptal et" #. module: account_bank_statement_extensions #: view:account.bank.statement.line.global:0 @@ -113,8 +113,8 @@ msgid "" "Delete operation not allowed. Please go to the associated bank " "statement in order to delete and/or modify bank statement line." msgstr "" -"Silme işlemine izin verilmemiş. Banka ekstre kalemini silmek/değiştirmek " -"için lütfen ilgili banka ekstresini açın." +"Silme işlemine izin verilmez. Banka hesap özeti kalemini silmek/değiştirmek " +"için lütfen ilgili banka hesap özetini açın." #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 @@ -124,12 +124,12 @@ msgstr "ya da" #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 msgid "Confirm Lines" -msgstr "kalemleri Onayla" +msgstr "Kalemleri Onayla" #. module: account_bank_statement_extensions #: view:account.bank.statement.line.global:0 msgid "Transactions" -msgstr "Hareketler" +msgstr "İşlemler" #. module: account_bank_statement_extensions #: field:account.bank.statement.line.global,type:0 @@ -145,17 +145,17 @@ msgstr "Günlük" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Confirmed Statement Lines." -msgstr "Onaylanmış ekstre kalemleri." +msgstr "Onaylanmış Hesap Özeti Kalemleri." #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Credit Transactions." -msgstr "Alacak hareketleri." +msgstr "Alacak İşlemleri." #. module: account_bank_statement_extensions #: model:ir.actions.act_window,help:account_bank_statement_extensions.action_cancel_statement_line msgid "cancel selected statement lines." -msgstr "Seçili ekstre kalemlerini iptal et." +msgstr "Seçili hesap özeti kalemlerini iptal et." #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_number:0 @@ -176,28 +176,28 @@ msgstr "Tarih" #: view:account.bank.statement.line:0 #: field:account.bank.statement.line,globalisation_amount:0 msgid "Glob. Amount" -msgstr "Glob. Tutar" +msgstr "Gen. Tutar" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Debit Transactions." -msgstr "Borç hareketleri." +msgstr "Borç İşlemleri." #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Extended Filters..." -msgstr "Gelişmiş Filtreler..." +msgstr "Genişletişmiş Süzgeçler..." #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 msgid "Confirmed lines cannot be changed anymore." -msgstr "Onaylı kalemleri artık değiştirilemez." +msgstr "Onaylı kalemler artık değiştirilemez." #. module: account_bank_statement_extensions #: view:cancel.statement.line:0 msgid "Are you sure you want to cancel the selected Bank Statement lines ?" msgstr "" -"Seçili Banka ekstre kalemlerini iptal etmek istediğinizden emin misiniz?" +"Seçili Banka Hesap Özeti kalemlerini iptal etmek istediğinizden emin misiniz?" #. module: account_bank_statement_extensions #: report:bank.statement.balance.report:0 @@ -227,7 +227,7 @@ msgstr "El ile" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Bank Transaction" -msgstr "Banka hareketleri" +msgstr "Banka İşlemleri" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -242,7 +242,7 @@ msgstr "Tutar" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Fin.Account" -msgstr "Finans Hesabı" +msgstr "Fin.Hesabı" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_currency:0 @@ -262,13 +262,13 @@ msgstr "Alt Kodlar" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Search Bank Transactions" -msgstr "Banka hareketleri ara" +msgstr "Banka İşlemi Ara" #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 msgid "Are you sure you want to confirm the selected Bank Statement lines ?" msgstr "" -"Seçili Banka ekstre kalemlerini onaylamak istediğinizden emin misiniz?" +"Seçili Banka Hesap Özeti kalemlerini onaylamak istediğinizden emin misiniz?" #. module: account_bank_statement_extensions #: help:account.bank.statement.line,globalisation_id:0 @@ -276,22 +276,22 @@ msgid "" "Code to identify transactions belonging to the same globalisation level " "within a batch payment" msgstr "" -"Bir toplu ödemede aynı küreselleşme seviyesine ait işlemlerin tanımlama Kodu" +"Bir toplu ödemede aynı genelleştirme seviyesine ait işlemlerin tanımlama Kodu" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Draft Statement Lines." -msgstr "Taslak ekstre kalemleri" +msgstr "Taslak Hesap Özeti kalemleri" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Glob. Am." -msgstr "Glob. Am." +msgstr "Gen. Tut." #. module: account_bank_statement_extensions #: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "Banka ekstre kalemi" +msgstr "Banka Hesap Özeti Kalemi" #. module: account_bank_statement_extensions #: field:account.bank.statement.line.global,code:0 @@ -311,12 +311,12 @@ msgstr "Banka Hesapları" #. module: account_bank_statement_extensions #: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement msgid "Bank Statement" -msgstr "Banka ekstresi" +msgstr "Banka Hesap Özeti" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Statement Line" -msgstr "Hesap Özeti Satırı" +msgstr "Hesap Özeti Kalemi" #. module: account_bank_statement_extensions #: sql_constraint:account.bank.statement.line.global:0 @@ -328,7 +328,7 @@ msgstr "Kod eşsiz olamlı!" #: model:ir.actions.act_window,name:account_bank_statement_extensions.action_bank_statement_line #: model:ir.ui.menu,name:account_bank_statement_extensions.bank_statement_line msgid "Bank Statement Lines" -msgstr "Banka ekstre kalemleri" +msgstr "Banka Hesap Özeti Kalemleri" #. module: account_bank_statement_extensions #: code:addons/account_bank_statement_extensions/account_bank_statement.py:129 @@ -349,7 +349,7 @@ msgstr "İptal" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Statement Lines" -msgstr "Ekstre kalemleri" +msgstr "Hesap Özeti Kalemleri" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -359,7 +359,7 @@ msgstr "Toplam Tutar" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,globalisation_id:0 msgid "Globalisation ID" -msgstr "Küreselleşme ID" +msgstr "Genelleştirme ID" #~ msgid "The RIB and/or IBAN is not valid" #~ msgstr "RIB ve/veya IBAN geçerli değil" diff --git a/addons/account_bank_statement_extensions/i18n/zh_CN.po b/addons/account_bank_statement_extensions/i18n/zh_CN.po index 25f27524ef0..ba903336310 100644 --- a/addons/account_bank_statement_extensions/i18n/zh_CN.po +++ b/addons/account_bank_statement_extensions/i18n/zh_CN.po @@ -9,18 +9,18 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 06:46+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:51+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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "发起人到受益人的信息" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -204,7 +204,7 @@ msgstr "名称" #. module: account_bank_statement_extensions #: field:account.bank.statement.line.global,name:0 msgid "OBI" -msgstr "" +msgstr "OBI" #. module: account_bank_statement_extensions #: selection:account.bank.statement.line.global,type:0 diff --git a/addons/account_bank_statement_extensions/i18n/zh_TW.po b/addons/account_bank_statement_extensions/i18n/zh_TW.po index 4ff26f2a0f6..e00583a0cdf 100644 --- a/addons/account_bank_statement_extensions/i18n/zh_TW.po +++ b/addons/account_bank_statement_extensions/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+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: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_budget/account_budget_view.xml b/addons/account_budget/account_budget_view.xml index 237406ff657..71358736110 100644 --- a/addons/account_budget/account_budget_view.xml +++ b/addons/account_budget/account_budget_view.xml @@ -111,7 +111,7 @@ - + diff --git a/addons/account_budget/i18n/ar.po b/addons/account_budget/i18n/ar.po index 6a24ab59302..0a4a83f92b9 100644 --- a/addons/account_budget/i18n/ar.po +++ b/addons/account_budget/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/bg.po b/addons/account_budget/i18n/bg.po index 9430f7e7345..b5c57f530b0 100644 --- a/addons/account_budget/i18n/bg.po +++ b/addons/account_budget/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/bs.po b/addons/account_budget/i18n/bs.po index 6f0ec313295..2852363d739 100644 --- a/addons/account_budget/i18n/bs.po +++ b/addons/account_budget/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ca.po b/addons/account_budget/i18n/ca.po index bef64019461..368a864539d 100644 --- a/addons/account_budget/i18n/ca.po +++ b/addons/account_budget/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/cs.po b/addons/account_budget/i18n/cs.po index 4d9ab187067..94ec786870f 100644 --- a/addons/account_budget/i18n/cs.po +++ b/addons/account_budget/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/da.po b/addons/account_budget/i18n/da.po index ffb8e6294da..f2a18fced98 100644 --- a/addons/account_budget/i18n/da.po +++ b/addons/account_budget/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/de.po b/addons/account_budget/i18n/de.po index 67384f36a6b..9365607eaa4 100644 --- a/addons/account_budget/i18n/de.po +++ b/addons/account_budget/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/el.po b/addons/account_budget/i18n/el.po index 30e9b2c0e73..99ba305b806 100644 --- a/addons/account_budget/i18n/el.po +++ b/addons/account_budget/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/en_GB.po b/addons/account_budget/i18n/en_GB.po index 95e99e402c9..cd1df9d8647 100644 --- a/addons/account_budget/i18n/en_GB.po +++ b/addons/account_budget/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es.po b/addons/account_budget/i18n/es.po index 913659239d2..82e3b34030a 100644 --- a/addons/account_budget/i18n/es.po +++ b/addons/account_budget/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_AR.po b/addons/account_budget/i18n/es_AR.po index 669eb086715..2b7fbfb2bad 100644 --- a/addons/account_budget/i18n/es_AR.po +++ b/addons/account_budget/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_CR.po b/addons/account_budget/i18n/es_CR.po index 7f7e9d0db93..47af92b90d4 100644 --- a/addons/account_budget/i18n/es_CR.po +++ b/addons/account_budget/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: account_budget diff --git a/addons/account_budget/i18n/es_EC.po b/addons/account_budget/i18n/es_EC.po index 50c978dbb21..6f564eb06da 100644 --- a/addons/account_budget/i18n/es_EC.po +++ b/addons/account_budget/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_MX.po b/addons/account_budget/i18n/es_MX.po index 0152eabae9c..bc13c03c1f0 100644 --- a/addons/account_budget/i18n/es_MX.po +++ b/addons/account_budget/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_PY.po b/addons/account_budget/i18n/es_PY.po index 850daae6e03..2843f9fd1df 100644 --- a/addons/account_budget/i18n/es_PY.po +++ b/addons/account_budget/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/et.po b/addons/account_budget/i18n/et.po index 7e8ff9fe09d..e50c72e68b7 100644 --- a/addons/account_budget/i18n/et.po +++ b/addons/account_budget/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/fa.po b/addons/account_budget/i18n/fa.po index bd6e905a476..21daa03e08d 100644 --- a/addons/account_budget/i18n/fa.po +++ b/addons/account_budget/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/fi.po b/addons/account_budget/i18n/fi.po index 46753523eff..2fc1d03401a 100644 --- a/addons/account_budget/i18n/fi.po +++ b/addons/account_budget/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.post:0 diff --git a/addons/account_budget/i18n/fr.po b/addons/account_budget/i18n/fr.po index 1544460d3fd..a056e208b96 100644 --- a/addons/account_budget/i18n/fr.po +++ b/addons/account_budget/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -23,7 +23,7 @@ msgstr "" #: view:account.budget.crossvered.summary.report:0 #: view:account.budget.report:0 msgid "Select Dates Period" -msgstr "Sélectionnez la Période de Date" +msgstr "Sélectionnez la période" #. module: account_budget #: field:crossovered.budget,creating_user_id:0 @@ -39,7 +39,7 @@ msgstr "Confirmé" #: model:ir.actions.act_window,name:account_budget.open_budget_post_form #: model:ir.ui.menu,name:account_budget.menu_budget_post_form msgid "Budgetary Positions" -msgstr "Positions budgétaires" +msgstr "Postes budgétaires" #. module: account_budget #: report:account.budget:0 @@ -64,7 +64,7 @@ msgstr "Imprimer un résumé" #. module: account_budget #: field:crossovered.budget.lines,paid_date:0 msgid "Paid Date" -msgstr "Date de Paiement" +msgstr "Date de paiement" #. module: account_budget #: field:account.budget.analytic,date_to:0 @@ -90,7 +90,7 @@ msgstr "à" #: model:ir.actions.act_window,name:account_budget.action_account_budget_analytic #: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_report msgid "Print Budgets" -msgstr "Imprimer les Budgets" +msgstr "Imprimer les budgets" #. module: account_budget #: report:account.budget:0 @@ -121,7 +121,7 @@ msgstr "État" #: code:addons/account_budget/account_budget.py:119 #, python-format msgid "The Budget '%s' has no accounts!" -msgstr "Le budget '%s' n'a pas de compte!" +msgstr "Le budget \"%s\" n'a pas de compte !" #. module: account_budget #: report:account.budget:0 @@ -187,7 +187,7 @@ msgstr "Total réel" #: view:crossovered.budget:0 #: field:crossovered.budget.lines,practical_amount:0 msgid "Practical Amount" -msgstr "Montant en Pratique" +msgstr "Montant réel" #. module: account_budget #: field:crossovered.budget,date_to:0 @@ -199,7 +199,7 @@ msgstr "Date de fin" #: model:ir.model,name:account_budget.model_account_budget_analytic #: model:ir.model,name:account_budget.model_account_budget_report msgid "Account Budget report for analytic account" -msgstr "Rapport de compte budgétaire pour le compte analytique" +msgstr "Rapport de budget pour le compte analytique" #. module: account_budget #: view:account.analytic.account:0 @@ -215,7 +215,7 @@ msgstr "Nom" #. module: account_budget #: model:ir.model,name:account_budget.model_crossovered_budget_lines msgid "Budget Line" -msgstr "Ligne budgétaire" +msgstr "Ligne de budget" #. module: account_budget #: report:account.budget:0 @@ -263,7 +263,7 @@ msgstr "Budgets" #. module: account_budget #: view:account.budget.crossvered.summary.report:0 msgid "This wizard is used to print summary of budgets" -msgstr "Cet assistant est utilisé pour imprimer un résumé des budgets" +msgstr "Cet assistant sert à imprimer un résumé des budgets" #. module: account_budget #: selection:crossovered.budget,state:0 @@ -285,7 +285,7 @@ msgstr "À approuver" #: field:crossovered.budget.lines,general_budget_id:0 #: model:ir.model,name:account_budget.model_account_budget_post msgid "Budgetary Position" -msgstr "Position budgétaire" +msgstr "Poste budgétaire" #. module: account_budget #: field:account.budget.analytic,date_from:0 @@ -325,7 +325,7 @@ msgstr "Imprimer" #: view:crossovered.budget:0 #: field:crossovered.budget.lines,theoritical_amount:0 msgid "Theoretical Amount" -msgstr "Montant Théorique" +msgstr "Montant théorique" #. module: account_budget #: view:account.budget.analytic:0 @@ -339,7 +339,7 @@ msgstr "ou" #: field:crossovered.budget.lines,analytic_account_id:0 #: model:ir.model,name:account_budget.model_account_analytic_account msgid "Analytic Account" -msgstr "Compte Analytique" +msgstr "Compte analytique" #. module: account_budget #: report:account.budget:0 @@ -412,7 +412,7 @@ msgstr "Comptes" #: model:ir.actions.act_window,name:account_budget.act_crossovered_budget_lines_view #: model:ir.ui.menu,name:account_budget.menu_act_crossovered_budget_lines_view msgid "Budget Lines" -msgstr "Lignes de Budget" +msgstr "Lignes de budget" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/gl.po b/addons/account_budget/i18n/gl.po index dcb96e5f7f7..ff6b6dfa8a6 100644 --- a/addons/account_budget/i18n/gl.po +++ b/addons/account_budget/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/gu.po b/addons/account_budget/i18n/gu.po index 917995592a5..cf658e794c8 100644 --- a/addons/account_budget/i18n/gu.po +++ b/addons/account_budget/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/he.po b/addons/account_budget/i18n/he.po index 48c9508ef4b..71055c387d0 100644 --- a/addons/account_budget/i18n/he.po +++ b/addons/account_budget/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hi.po b/addons/account_budget/i18n/hi.po index 3dc5c2cfbb4..e10c792d5a2 100644 --- a/addons/account_budget/i18n/hi.po +++ b/addons/account_budget/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hr.po b/addons/account_budget/i18n/hr.po index 603ebb577aa..8b6b397e2f5 100644 --- a/addons/account_budget/i18n/hr.po +++ b/addons/account_budget/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hu.po b/addons/account_budget/i18n/hu.po index 0497b9bc47b..0dd740012f8 100644 --- a/addons/account_budget/i18n/hu.po +++ b/addons/account_budget/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -367,6 +367,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" A költségvetés az a vállalata bevételeinek és/vagy " +"kiadásainak egy\n" +" jövőbeni időszakra vetített előrejelzése. A költségvetést " +"egyes pénzügyi\n" +" számlák és vagy elemző számlák határozzák meg (melyek " +"kifejezhetnek\n" +" projekteket, osztályokat, termék kategóriákat, stb.)\n" +"

\n" +" Annak nyomon követésével, hogy hová folyik a pénze, kevésbé\n" +" tud túlköltekezni, és könnyeben elérheti a pénzügyi\n" +" céljait. A költségvetés részletes előrejelzése az elemző " +"könyvelési\n" +" számlánkénti elvárt bevételével és a megadott időszakban " +"valóban\n" +" megvalósult bevételeken alapuló elemzések felügyelése.\n" +"

\n" +" " #. module: account_budget #: report:account.budget:0 diff --git a/addons/account_budget/i18n/id.po b/addons/account_budget/i18n/id.po index e5baec19618..8420d3701f1 100644 --- a/addons/account_budget/i18n/id.po +++ b/addons/account_budget/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/it.po b/addons/account_budget/i18n/it.po index 403c58648e6..2b42eabd065 100644 --- a/addons/account_budget/i18n/it.po +++ b/addons/account_budget/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-14 21:11+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:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ja.po b/addons/account_budget/i18n/ja.po index 4dd1ba0298f..4db7270d80b 100644 --- a/addons/account_budget/i18n/ja.po +++ b/addons/account_budget/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-31 05:16+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ko.po b/addons/account_budget/i18n/ko.po index 8a8a7ff3a14..14e071fbb2a 100644 --- a/addons/account_budget/i18n/ko.po +++ b/addons/account_budget/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lo.po b/addons/account_budget/i18n/lo.po index 5c761030d08..9636c17ae5b 100644 --- a/addons/account_budget/i18n/lo.po +++ b/addons/account_budget/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lt.po b/addons/account_budget/i18n/lt.po index dba52c798f7..fd07dc0dfc1 100644 --- a/addons/account_budget/i18n/lt.po +++ b/addons/account_budget/i18n/lt.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 16:01+0000\n" -"Last-Translator: Andrius Preimantas \n" +"Last-Translator: Andrius Preimantas @ hbee \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:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lv.po b/addons/account_budget/i18n/lv.po index ec7b886a270..69c8aaafec7 100644 --- a/addons/account_budget/i18n/lv.po +++ b/addons/account_budget/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/mk.po b/addons/account_budget/i18n/mk.po index 3eabc04177e..f08ccea634b 100644 --- a/addons/account_budget/i18n/mk.po +++ b/addons/account_budget/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -59,7 +59,7 @@ msgstr "Валидирај корисник" #. module: account_budget #: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_summary_report msgid "Print Summary" -msgstr "Резиме од печатењето" +msgstr "Печати резиме" #. module: account_budget #: field:crossovered.budget.lines,paid_date:0 @@ -199,7 +199,7 @@ msgstr "Краен датум" #: model:ir.model,name:account_budget.model_account_budget_analytic #: model:ir.model,name:account_budget.model_account_budget_report msgid "Account Budget report for analytic account" -msgstr "" +msgstr "Извештај на сметка Буџет за аналитичката сметка" #. module: account_budget #: view:account.analytic.account:0 @@ -339,7 +339,7 @@ msgstr "или" #: field:crossovered.budget.lines,analytic_account_id:0 #: model:ir.model,name:account_budget.model_account_analytic_account msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: account_budget #: report:account.budget:0 @@ -376,9 +376,8 @@ msgstr "" " оддели, категории на производи итн.)\n" "

\n" " Со следењето на вашите пари, помала е веројатноста да " -"преплатите\n" -" и поголема да ги постигнете финансисиките цели. Предвидете " -"го\n" +"потрошите повеќе и поголема да ги постигнете финансиските цели. " +"Предвидете го\n" " буџетот со поголема деталност околу приходите за аналитичка\n" " сметка и следење на еволуцијата врз база на вистинските " "остварувања\n" @@ -396,7 +395,7 @@ msgstr "Планиран изн" #: view:account.budget.post:0 #: field:account.budget.post,account_ids:0 msgid "Accounts" -msgstr "Конта" +msgstr "Сметки" #. module: account_budget #: view:account.analytic.account:0 @@ -410,7 +409,7 @@ msgstr "Конта" #: model:ir.actions.act_window,name:account_budget.act_crossovered_budget_lines_view #: model:ir.ui.menu,name:account_budget.menu_act_crossovered_budget_lines_view msgid "Budget Lines" -msgstr "Стафки од буџет" +msgstr "Ставки од буџет" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/mn.po b/addons/account_budget/i18n/mn.po index 327f03a76ed..10b92abd68a 100644 --- a/addons/account_budget/i18n/mn.po +++ b/addons/account_budget/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -39,7 +39,7 @@ msgstr "Батлагдсан" #: model:ir.actions.act_window,name:account_budget.open_budget_post_form #: model:ir.ui.menu,name:account_budget.menu_budget_post_form msgid "Budgetary Positions" -msgstr "Төсөв төлөвлөлт" +msgstr "Төсвийн чиглэл" #. module: account_budget #: report:account.budget:0 @@ -285,7 +285,7 @@ msgstr "Батлах" #: field:crossovered.budget.lines,general_budget_id:0 #: model:ir.model,name:account_budget.model_account_budget_post msgid "Budgetary Position" -msgstr "Төсөв төлөвлөлт" +msgstr "Төсвийн чиглэл" #. module: account_budget #: field:account.budget.analytic,date_from:0 diff --git a/addons/account_budget/i18n/nb.po b/addons/account_budget/i18n/nb.po index ddbd48d31c8..d45eca0bea2 100644 --- a/addons/account_budget/i18n/nb.po +++ b/addons/account_budget/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nl.po b/addons/account_budget/i18n/nl.po index 6bfe13b47f2..e372257b713 100644 --- a/addons/account_budget/i18n/nl.po +++ b/addons/account_budget/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-06 11:57+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:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -22,7 +22,7 @@ msgstr "" #: view:account.budget.crossvered.summary.report:0 #: view:account.budget.report:0 msgid "Select Dates Period" -msgstr "Kies datums periode" +msgstr "Kies datumperiode" #. module: account_budget #: field:crossovered.budget,creating_user_id:0 @@ -38,7 +38,7 @@ msgstr "Bevestigd" #: model:ir.actions.act_window,name:account_budget.open_budget_post_form #: model:ir.ui.menu,name:account_budget.menu_budget_post_form msgid "Budgetary Positions" -msgstr "Budgettaire posities" +msgstr "Budgetposten" #. module: account_budget #: report:account.budget:0 @@ -104,7 +104,7 @@ msgstr "Budget kruisanalyse" #. module: account_budget #: selection:crossovered.budget,state:0 msgid "Validated" -msgstr "Gevalideerd" +msgstr "Bevestigd" #. module: account_budget #: field:crossovered.budget.lines,percentage:0 @@ -153,7 +153,7 @@ msgstr "naar" #. module: account_budget #: view:crossovered.budget:0 msgid "Reset to Draft" -msgstr "Terugzetten naar Concept" +msgstr "Terugzetten naar concept" #. module: account_budget #: view:account.budget.post:0 @@ -284,7 +284,7 @@ msgstr "Nog goedkeuren" #: field:crossovered.budget.lines,general_budget_id:0 #: model:ir.model,name:account_budget.model_account_budget_post msgid "Budgetary Position" -msgstr "Budgettaire positie" +msgstr "Budgetposten" #. module: account_budget #: field:account.budget.analytic,date_from:0 diff --git a/addons/account_budget/i18n/nl_BE.po b/addons/account_budget/i18n/nl_BE.po index ff1ba274fdd..e80190cd926 100644 --- a/addons/account_budget/i18n/nl_BE.po +++ b/addons/account_budget/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/oc.po b/addons/account_budget/i18n/oc.po index 027df686fb2..445c9e7d5fc 100644 --- a/addons/account_budget/i18n/oc.po +++ b/addons/account_budget/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/pl.po b/addons/account_budget/i18n/pl.po index a5b8841f8db..ca442d582fb 100644 --- a/addons/account_budget/i18n/pl.po +++ b/addons/account_budget/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -38,7 +38,7 @@ msgstr "Potwierdzone" #: model:ir.actions.act_window,name:account_budget.open_budget_post_form #: model:ir.ui.menu,name:account_budget.menu_budget_post_form msgid "Budgetary Positions" -msgstr "Pozycje budżetowe" +msgstr "Składniki budżetowe" #. module: account_budget #: report:account.budget:0 @@ -284,7 +284,7 @@ msgstr "Do aprobaty" #: field:crossovered.budget.lines,general_budget_id:0 #: model:ir.model,name:account_budget.model_account_budget_post msgid "Budgetary Position" -msgstr "Pozycja budżetu" +msgstr "Składnik budżetu" #. module: account_budget #: field:account.budget.analytic,date_from:0 diff --git a/addons/account_budget/i18n/pt.po b/addons/account_budget/i18n/pt.po index 1423558c25c..93c3c0fad4d 100644 --- a/addons/account_budget/i18n/pt.po +++ b/addons/account_budget/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/pt_BR.po b/addons/account_budget/i18n/pt_BR.po index 38779fd690a..58a471b9406 100644 --- a/addons/account_budget/i18n/pt_BR.po +++ b/addons/account_budget/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -451,6 +451,10 @@ msgstr "Orçamentos Provisórios" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Invalido XML para Arquitetura da View" +#, python-format +#~ msgid "Insufficient Data!" +#~ msgstr "Dados insuficientes" + #~ msgid "Dotations" #~ msgstr "Dotações" @@ -475,6 +479,12 @@ msgstr "Orçamentos Provisórios" #~ msgid "A/c No." #~ msgstr "No.Cta." +#, python-format +#~ msgid "No Dotations or Master Budget Expenses Found on Budget %s!" +#~ msgstr "" +#~ "Não encontrada a Dotação ou o Orçamento Master de Despesas para o Orçamento " +#~ "%s!" + #~ msgid "Period Budget" #~ msgstr "Orçamento do Período" diff --git a/addons/account_budget/i18n/ro.po b/addons/account_budget/i18n/ro.po index 2042daed84d..2269e38be07 100644 --- a/addons/account_budget/i18n/ro.po +++ b/addons/account_budget/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ru.po b/addons/account_budget/i18n/ru.po index 387402a0e3b..ece8ca70649 100644 --- a/addons/account_budget/i18n/ru.po +++ b/addons/account_budget/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -120,7 +120,7 @@ msgstr "Состояние" #: code:addons/account_budget/account_budget.py:119 #, python-format msgid "The Budget '%s' has no accounts!" -msgstr "" +msgstr "Бюджет '%s' не имеет счетов !" #. module: account_budget #: report:account.budget:0 @@ -229,7 +229,7 @@ msgstr "Бюджет" #. module: account_budget #: view:crossovered.budget:0 msgid "To Approve Budgets" -msgstr "" +msgstr "Утвердить бюджет" #. module: account_budget #: view:crossovered.budget:0 diff --git a/addons/account_budget/i18n/sl.po b/addons/account_budget/i18n/sl.po index 402b6e31efe..e17179cb4cc 100644 --- a/addons/account_budget/i18n/sl.po +++ b/addons/account_budget/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sq.po b/addons/account_budget/i18n/sq.po index 86f3e1ddbf4..054269b9a86 100644 --- a/addons/account_budget/i18n/sq.po +++ b/addons/account_budget/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sr.po b/addons/account_budget/i18n/sr.po index 4acf2f20ba5..d0ce0fe9022 100644 --- a/addons/account_budget/i18n/sr.po +++ b/addons/account_budget/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sr@latin.po b/addons/account_budget/i18n/sr@latin.po index 941a411ed7b..3d677b8461b 100644 --- a/addons/account_budget/i18n/sr@latin.po +++ b/addons/account_budget/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sv.po b/addons/account_budget/i18n/sv.po index fb3bf7c23df..725cf53217a 100644 --- a/addons/account_budget/i18n/sv.po +++ b/addons/account_budget/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/tlh.po b/addons/account_budget/i18n/tlh.po index 7874048fc92..fdc70a96da2 100644 --- a/addons/account_budget/i18n/tlh.po +++ b/addons/account_budget/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/tr.po b/addons/account_budget/i18n/tr.po index 466102b6e1a..777b8e03f52 100644 --- a/addons/account_budget/i18n/tr.po +++ b/addons/account_budget/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/uk.po b/addons/account_budget/i18n/uk.po index d78be638fd4..8b0eef5d21b 100644 --- a/addons/account_budget/i18n/uk.po +++ b/addons/account_budget/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/vi.po b/addons/account_budget/i18n/vi.po index 1a063539696..98583da4407 100644 --- a/addons/account_budget/i18n/vi.po +++ b/addons/account_budget/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/zh_CN.po b/addons/account_budget/i18n/zh_CN.po index 6bbb0ca8f29..8329072ae41 100644 --- a/addons/account_budget/i18n/zh_CN.po +++ b/addons/account_budget/i18n/zh_CN.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 06:47+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \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:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/zh_TW.po b/addons/account_budget/i18n/zh_TW.po index 61dfbe1cb60..018fa666e46 100644 --- a/addons/account_budget/i18n/zh_TW.po +++ b/addons/account_budget/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_cancel/i18n/ar.po b/addons/account_cancel/i18n/ar.po index 00e62f39e63..1a9f5ce5f21 100644 --- a/addons/account_cancel/i18n/ar.po +++ b/addons/account_cancel/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bg.po b/addons/account_cancel/i18n/bg.po index 747f223c263..a218badab9c 100644 --- a/addons/account_cancel/i18n/bg.po +++ b/addons/account_cancel/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bn.po b/addons/account_cancel/i18n/bn.po index 61a5e146113..09b39b6e6a2 100644 --- a/addons/account_cancel/i18n/bn.po +++ b/addons/account_cancel/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/br.po b/addons/account_cancel/i18n/br.po index 26a04eac044..01e9b32f49e 100644 --- a/addons/account_cancel/i18n/br.po +++ b/addons/account_cancel/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bs.po b/addons/account_cancel/i18n/bs.po index 1bb948499b0..3ea80ac780f 100644 --- a/addons/account_cancel/i18n/bs.po +++ b/addons/account_cancel/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ca.po b/addons/account_cancel/i18n/ca.po index 8212c35d466..f1b1cfa5524 100644 --- a/addons/account_cancel/i18n/ca.po +++ b/addons/account_cancel/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/cs.po b/addons/account_cancel/i18n/cs.po index 261b2b5262d..676a74fe112 100644 --- a/addons/account_cancel/i18n/cs.po +++ b/addons/account_cancel/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/da.po b/addons/account_cancel/i18n/da.po index 79872b27954..2f0269b2d93 100644 --- a/addons/account_cancel/i18n/da.po +++ b/addons/account_cancel/i18n/da.po @@ -8,19 +8,19 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2011-11-08 10:42+0000\n" -"Last-Translator: OpenERP Danmark / Mikhael Saxtorph \n" +"PO-Revision-Date: 2013-09-26 21:19+0000\n" +"Last-Translator: Morten Schou \n" "Language-Team: Danish \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:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-27 05:49+0000\n" +"X-Generator: Launchpad (build 16774)\n" #. module: account_cancel #: view:account.invoice:0 msgid "Cancel" -msgstr "" +msgstr "Annuller" #~ msgid "Account Cancel" #~ msgstr "Annuller post" diff --git a/addons/account_cancel/i18n/de.po b/addons/account_cancel/i18n/de.po index 36d930f4d26..ffb5fb81a6f 100644 --- a/addons/account_cancel/i18n/de.po +++ b/addons/account_cancel/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/el.po b/addons/account_cancel/i18n/el.po index 67dcbfd9d02..d3fedc1b2c2 100644 --- a/addons/account_cancel/i18n/el.po +++ b/addons/account_cancel/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/en_GB.po b/addons/account_cancel/i18n/en_GB.po index 4394fc7d531..4f1136c16f5 100644 --- a/addons/account_cancel/i18n/en_GB.po +++ b/addons/account_cancel/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es.po b/addons/account_cancel/i18n/es.po index 75da00b10c2..589b48fa31b 100644 --- a/addons/account_cancel/i18n/es.po +++ b/addons/account_cancel/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_CL.po b/addons/account_cancel/i18n/es_CL.po index 9e607f50651..ce52ab986d7 100644 --- a/addons/account_cancel/i18n/es_CL.po +++ b/addons/account_cancel/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_CR.po b/addons/account_cancel/i18n/es_CR.po index 27d3422ab18..4e583367367 100644 --- a/addons/account_cancel/i18n/es_CR.po +++ b/addons/account_cancel/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: es\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/es_EC.po b/addons/account_cancel/i18n/es_EC.po index dfcc068a4f0..5abb1efa038 100644 --- a/addons/account_cancel/i18n/es_EC.po +++ b/addons/account_cancel/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_MX.po b/addons/account_cancel/i18n/es_MX.po index a813009db01..1432e2d92a6 100644 --- a/addons/account_cancel/i18n/es_MX.po +++ b/addons/account_cancel/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_PY.po b/addons/account_cancel/i18n/es_PY.po index 15f8bfcebe1..54577ad1ceb 100644 --- a/addons/account_cancel/i18n/es_PY.po +++ b/addons/account_cancel/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/et.po b/addons/account_cancel/i18n/et.po new file mode 100644 index 00000000000..440850791a7 --- /dev/null +++ b/addons/account_cancel/i18n/et.po @@ -0,0 +1,23 @@ +# Estonian 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:05+0000\n" +"PO-Revision-Date: 2013-10-09 14:39+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Estonian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-10-10 04:41+0000\n" +"X-Generator: Launchpad (build 16799)\n" + +#. module: account_cancel +#: view:account.invoice:0 +msgid "Cancel" +msgstr "" diff --git a/addons/account_cancel/i18n/fa.po b/addons/account_cancel/i18n/fa.po index 7f54fcf4afe..3faa6a47552 100644 --- a/addons/account_cancel/i18n/fa.po +++ b/addons/account_cancel/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fi.po b/addons/account_cancel/i18n/fi.po index ed9ed08868d..8389ee2d724 100644 --- a/addons/account_cancel/i18n/fi.po +++ b/addons/account_cancel/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fr.po b/addons/account_cancel/i18n/fr.po index a5ddd548229..5184797a9d4 100644 --- a/addons/account_cancel/i18n/fr.po +++ b/addons/account_cancel/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/gl.po b/addons/account_cancel/i18n/gl.po index 80770ece238..2ca1d5d7b76 100644 --- a/addons/account_cancel/i18n/gl.po +++ b/addons/account_cancel/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/gu.po b/addons/account_cancel/i18n/gu.po index 0c608986421..1eff318966c 100644 --- a/addons/account_cancel/i18n/gu.po +++ b/addons/account_cancel/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hi.po b/addons/account_cancel/i18n/hi.po index 1c964ed4ae6..5b432e70c12 100644 --- a/addons/account_cancel/i18n/hi.po +++ b/addons/account_cancel/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hr.po b/addons/account_cancel/i18n/hr.po index c852da9ac36..54eecc98d20 100644 --- a/addons/account_cancel/i18n/hr.po +++ b/addons/account_cancel/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hu.po b/addons/account_cancel/i18n/hu.po index bab8304030f..8579d844d68 100644 --- a/addons/account_cancel/i18n/hu.po +++ b/addons/account_cancel/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-05 05:37+0000\n" -"X-Generator: Launchpad (build 16550)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/id.po b/addons/account_cancel/i18n/id.po index 5f2f04dac00..eb683f7d29f 100644 --- a/addons/account_cancel/i18n/id.po +++ b/addons/account_cancel/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/it.po b/addons/account_cancel/i18n/it.po index 49669baeda6..433f99f309d 100644 --- a/addons/account_cancel/i18n/it.po +++ b/addons/account_cancel/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-11-28 19:46+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:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ja.po b/addons/account_cancel/i18n/ja.po index 2633c1fe104..ab8b2c8841c 100644 --- a/addons/account_cancel/i18n/ja.po +++ b/addons/account_cancel/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/kk.po b/addons/account_cancel/i18n/kk.po index 0fada8b6012..cbdf8ab6a5e 100644 --- a/addons/account_cancel/i18n/kk.po +++ b/addons/account_cancel/i18n/kk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lo.po b/addons/account_cancel/i18n/lo.po index 51f38c5d641..29d15e2306c 100644 --- a/addons/account_cancel/i18n/lo.po +++ b/addons/account_cancel/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lt.po b/addons/account_cancel/i18n/lt.po index 751603fc823..baf97fb334a 100644 --- a/addons/account_cancel/i18n/lt.po +++ b/addons/account_cancel/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lv.po b/addons/account_cancel/i18n/lv.po index 816cd55496b..83c84e82372 100644 --- a/addons/account_cancel/i18n/lv.po +++ b/addons/account_cancel/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/mk.po b/addons/account_cancel/i18n/mk.po index 565258605c2..1bbfb9f0004 100644 --- a/addons/account_cancel/i18n/mk.po +++ b/addons/account_cancel/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/mn.po b/addons/account_cancel/i18n/mn.po index 951542fbb84..1196792944a 100644 --- a/addons/account_cancel/i18n/mn.po +++ b/addons/account_cancel/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nb.po b/addons/account_cancel/i18n/nb.po index 90bfd87ffbf..0b54b9b533f 100644 --- a/addons/account_cancel/i18n/nb.po +++ b/addons/account_cancel/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nl.po b/addons/account_cancel/i18n/nl.po index c1873b0b4fd..b7d4ba1cd84 100644 --- a/addons/account_cancel/i18n/nl.po +++ b/addons/account_cancel/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nl_BE.po b/addons/account_cancel/i18n/nl_BE.po index 279eb922a62..fb3091499e5 100644 --- a/addons/account_cancel/i18n/nl_BE.po +++ b/addons/account_cancel/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/oc.po b/addons/account_cancel/i18n/oc.po index 75402c75648..22af8b46f10 100644 --- a/addons/account_cancel/i18n/oc.po +++ b/addons/account_cancel/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pl.po b/addons/account_cancel/i18n/pl.po index 781b2bc5610..cb9ca0ff86d 100644 --- a/addons/account_cancel/i18n/pl.po +++ b/addons/account_cancel/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pt.po b/addons/account_cancel/i18n/pt.po index 20603f3eaa8..6a119e84738 100644 --- a/addons/account_cancel/i18n/pt.po +++ b/addons/account_cancel/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pt_BR.po b/addons/account_cancel/i18n/pt_BR.po index 1ef6492edfe..b34abc933ff 100644 --- a/addons/account_cancel/i18n/pt_BR.po +++ b/addons/account_cancel/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ro.po b/addons/account_cancel/i18n/ro.po index 6adf2791aca..68b091681b6 100644 --- a/addons/account_cancel/i18n/ro.po +++ b/addons/account_cancel/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ru.po b/addons/account_cancel/i18n/ru.po index 77485b73c1a..220d0627059 100644 --- a/addons/account_cancel/i18n/ru.po +++ b/addons/account_cancel/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sl.po b/addons/account_cancel/i18n/sl.po index 748f0a3053c..36f23ce00d5 100644 --- a/addons/account_cancel/i18n/sl.po +++ b/addons/account_cancel/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sq.po b/addons/account_cancel/i18n/sq.po index 04b7e213c5d..8b98fd3f5a4 100644 --- a/addons/account_cancel/i18n/sq.po +++ b/addons/account_cancel/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sr.po b/addons/account_cancel/i18n/sr.po index 1dd65353a80..bf65fed7d72 100644 --- a/addons/account_cancel/i18n/sr.po +++ b/addons/account_cancel/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sr@latin.po b/addons/account_cancel/i18n/sr@latin.po index 804e48da484..c8ba42d93d8 100644 --- a/addons/account_cancel/i18n/sr@latin.po +++ b/addons/account_cancel/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sv.po b/addons/account_cancel/i18n/sv.po index f3958c9fce3..4e6d410092b 100644 --- a/addons/account_cancel/i18n/sv.po +++ b/addons/account_cancel/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ta.po b/addons/account_cancel/i18n/ta.po index 6fe3b01cf78..c5614660588 100644 --- a/addons/account_cancel/i18n/ta.po +++ b/addons/account_cancel/i18n/ta.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: 2010-09-01 06:55+0000\n" -"Last-Translator: ஆமாச்சு \n" +"Last-Translator: ஆமாச்சு \n" "Language-Team: Tamil \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:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/th.po b/addons/account_cancel/i18n/th.po index eabcc0814dd..77ce8da5e3f 100644 --- a/addons/account_cancel/i18n/th.po +++ b/addons/account_cancel/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-16 05:12+0000\n" -"X-Generator: Launchpad (build 16626)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/tr.po b/addons/account_cancel/i18n/tr.po index 8be33609c0f..a0a9f50dbbb 100644 --- a/addons/account_cancel/i18n/tr.po +++ b/addons/account_cancel/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/uk.po b/addons/account_cancel/i18n/uk.po index 5fbae627883..9b7f0e07124 100644 --- a/addons/account_cancel/i18n/uk.po +++ b/addons/account_cancel/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-02 05:38+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/vi.po b/addons/account_cancel/i18n/vi.po index 89a7feb7942..e5f0e6134bd 100644 --- a/addons/account_cancel/i18n/vi.po +++ b/addons/account_cancel/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-01 05:14+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/zh_CN.po b/addons/account_cancel/i18n/zh_CN.po index 5a62e356c38..285acf99586 100644 --- a/addons/account_cancel/i18n/zh_CN.po +++ b/addons/account_cancel/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/zh_TW.po b/addons/account_cancel/i18n/zh_TW.po index fe3176caa13..57abdd48438 100644 --- a/addons/account_cancel/i18n/zh_TW.po +++ b/addons/account_cancel/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_chart/i18n/ar.po b/addons/account_chart/i18n/ar.po index e791c7c54c9..c67db857aeb 100644 --- a/addons/account_chart/i18n/ar.po +++ b/addons/account_chart/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/bg.po b/addons/account_chart/i18n/bg.po index d31c966ebe2..23ab324a1ff 100644 --- a/addons/account_chart/i18n/bg.po +++ b/addons/account_chart/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/bs.po b/addons/account_chart/i18n/bs.po index 0d92a6556c5..529b7fd3807 100644 --- a/addons/account_chart/i18n/bs.po +++ b/addons/account_chart/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information @@ -24,4 +24,4 @@ msgstr "Ukloni minimalni kontni plan" #. module: account_chart #: model:ir.module.module,shortdesc:account_chart.module_meta_information msgid "Charts of Accounts" -msgstr "" +msgstr "Kontni plan" diff --git a/addons/account_chart/i18n/ca.po b/addons/account_chart/i18n/ca.po index 87fed8c266b..095fc0ba2c1 100644 --- a/addons/account_chart/i18n/ca.po +++ b/addons/account_chart/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/cs.po b/addons/account_chart/i18n/cs.po index 7063d7233dc..e0b42de5dc3 100644 --- a/addons/account_chart/i18n/cs.po +++ b/addons/account_chart/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/da.po b/addons/account_chart/i18n/da.po index 6bffa78de64..8f024402e08 100644 --- a/addons/account_chart/i18n/da.po +++ b/addons/account_chart/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/de.po b/addons/account_chart/i18n/de.po index a46cc4d3af7..abea21a0976 100644 --- a/addons/account_chart/i18n/de.po +++ b/addons/account_chart/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/el.po b/addons/account_chart/i18n/el.po index 85aa787ffc6..c3f9cb462a0 100644 --- a/addons/account_chart/i18n/el.po +++ b/addons/account_chart/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/en_GB.po b/addons/account_chart/i18n/en_GB.po index bd490568e83..dcd660fcbf1 100644 --- a/addons/account_chart/i18n/en_GB.po +++ b/addons/account_chart/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es.po b/addons/account_chart/i18n/es.po index 66d1cc7fc4b..c2c9df36b1a 100644 --- a/addons/account_chart/i18n/es.po +++ b/addons/account_chart/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_AR.po b/addons/account_chart/i18n/es_AR.po index 6061ea372b5..b5bee70eacd 100644 --- a/addons/account_chart/i18n/es_AR.po +++ b/addons/account_chart/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_CL.po b/addons/account_chart/i18n/es_CL.po index f119ba9fae5..40b7c82b159 100644 --- a/addons/account_chart/i18n/es_CL.po +++ b/addons/account_chart/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_CR.po b/addons/account_chart/i18n/es_CR.po index 45ef18bffbd..342b39ede49 100644 --- a/addons/account_chart/i18n/es_CR.po +++ b/addons/account_chart/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: account_chart diff --git a/addons/account_chart/i18n/es_EC.po b/addons/account_chart/i18n/es_EC.po index 06fc88f3a71..557a994514a 100644 --- a/addons/account_chart/i18n/es_EC.po +++ b/addons/account_chart/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_MX.po b/addons/account_chart/i18n/es_MX.po index 8035b8a1cdf..b922dcc3f6c 100644 --- a/addons/account_chart/i18n/es_MX.po +++ b/addons/account_chart/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_PY.po b/addons/account_chart/i18n/es_PY.po index f8c2346b813..780aa1219f0 100644 --- a/addons/account_chart/i18n/es_PY.po +++ b/addons/account_chart/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/et.po b/addons/account_chart/i18n/et.po index a50100e4df6..410b162bc5a 100644 --- a/addons/account_chart/i18n/et.po +++ b/addons/account_chart/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/eu.po b/addons/account_chart/i18n/eu.po index a7eed70c0a1..849371bc190 100644 --- a/addons/account_chart/i18n/eu.po +++ b/addons/account_chart/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fa.po b/addons/account_chart/i18n/fa.po index 895b60033d0..e73025d11b6 100644 --- a/addons/account_chart/i18n/fa.po +++ b/addons/account_chart/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fi.po b/addons/account_chart/i18n/fi.po index b08fb20735a..7bac54a1f5c 100644 --- a/addons/account_chart/i18n/fi.po +++ b/addons/account_chart/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fr.po b/addons/account_chart/i18n/fr.po index 198d899f915..904b8e3aad1 100644 --- a/addons/account_chart/i18n/fr.po +++ b/addons/account_chart/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/gl.po b/addons/account_chart/i18n/gl.po index 43ae6dc4345..9d150801d5c 100644 --- a/addons/account_chart/i18n/gl.po +++ b/addons/account_chart/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/gu.po b/addons/account_chart/i18n/gu.po index d76d1e45c38..9e2c7fef8c9 100644 --- a/addons/account_chart/i18n/gu.po +++ b/addons/account_chart/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hi.po b/addons/account_chart/i18n/hi.po index ce2a91d06a9..33101885813 100644 --- a/addons/account_chart/i18n/hi.po +++ b/addons/account_chart/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hr.po b/addons/account_chart/i18n/hr.po index 3d359127db6..7be581b8db2 100644 --- a/addons/account_chart/i18n/hr.po +++ b/addons/account_chart/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hu.po b/addons/account_chart/i18n/hu.po index 20f62de045e..911f596d6b5 100644 --- a/addons/account_chart/i18n/hu.po +++ b/addons/account_chart/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/id.po b/addons/account_chart/i18n/id.po index 7dec16c02ba..9c82b4bdba2 100644 --- a/addons/account_chart/i18n/id.po +++ b/addons/account_chart/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/it.po b/addons/account_chart/i18n/it.po index e331dd18749..b320f9fa43e 100644 --- a/addons/account_chart/i18n/it.po +++ b/addons/account_chart/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ja.po b/addons/account_chart/i18n/ja.po index 61497f75b7f..1df2c2a3b62 100644 --- a/addons/account_chart/i18n/ja.po +++ b/addons/account_chart/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ko.po b/addons/account_chart/i18n/ko.po index 2456e6b2876..d014e768369 100644 --- a/addons/account_chart/i18n/ko.po +++ b/addons/account_chart/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lo.po b/addons/account_chart/i18n/lo.po index 33bba394f7c..12aa65f2db5 100644 --- a/addons/account_chart/i18n/lo.po +++ b/addons/account_chart/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lt.po b/addons/account_chart/i18n/lt.po index 8467e209195..aa0b0aea7b8 100644 --- a/addons/account_chart/i18n/lt.po +++ b/addons/account_chart/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lv.po b/addons/account_chart/i18n/lv.po index ecae603551f..98d84f698a0 100644 --- a/addons/account_chart/i18n/lv.po +++ b/addons/account_chart/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/mk.po b/addons/account_chart/i18n/mk.po index 6fb26264a19..bf16c6a4ecb 100644 --- a/addons/account_chart/i18n/mk.po +++ b/addons/account_chart/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/mn.po b/addons/account_chart/i18n/mn.po index bc9ffdeb3a8..c07589f3d5c 100644 --- a/addons/account_chart/i18n/mn.po +++ b/addons/account_chart/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nb.po b/addons/account_chart/i18n/nb.po index 9e7502cfd77..1b6d4983d84 100644 --- a/addons/account_chart/i18n/nb.po +++ b/addons/account_chart/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nl.po b/addons/account_chart/i18n/nl.po index b9ceb02b2bf..865548fc2d4 100644 --- a/addons/account_chart/i18n/nl.po +++ b/addons/account_chart/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nl_BE.po b/addons/account_chart/i18n/nl_BE.po index 2d3cfa37ca0..358778605b6 100644 --- a/addons/account_chart/i18n/nl_BE.po +++ b/addons/account_chart/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/oc.po b/addons/account_chart/i18n/oc.po index 8f498048c58..de71ecc7cf3 100644 --- a/addons/account_chart/i18n/oc.po +++ b/addons/account_chart/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pl.po b/addons/account_chart/i18n/pl.po index dffdbc5f3c3..2dca683d3e1 100644 --- a/addons/account_chart/i18n/pl.po +++ b/addons/account_chart/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pt.po b/addons/account_chart/i18n/pt.po index 24498e6df82..21f4bdc076c 100644 --- a/addons/account_chart/i18n/pt.po +++ b/addons/account_chart/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pt_BR.po b/addons/account_chart/i18n/pt_BR.po index d8cbb502ad9..d0657822dbe 100644 --- a/addons/account_chart/i18n/pt_BR.po +++ b/addons/account_chart/i18n/pt_BR.po @@ -13,15 +13,15 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information msgid "Remove minimal account chart" -msgstr "Remover plano de contas mínimo" +msgstr "Retirar plano de contas mínimo" #. module: account_chart #: model:ir.module.module,shortdesc:account_chart.module_meta_information msgid "Charts of Accounts" -msgstr "Plano de Contas" +msgstr "Planos de Contas" diff --git a/addons/account_chart/i18n/ro.po b/addons/account_chart/i18n/ro.po index c1b3a98ad68..8de1ebcde79 100644 --- a/addons/account_chart/i18n/ro.po +++ b/addons/account_chart/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ru.po b/addons/account_chart/i18n/ru.po index 0da9f51ea51..7d6b74ceeea 100644 --- a/addons/account_chart/i18n/ru.po +++ b/addons/account_chart/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sk.po b/addons/account_chart/i18n/sk.po index 8327579a5e5..a1359b0c340 100644 --- a/addons/account_chart/i18n/sk.po +++ b/addons/account_chart/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sl.po b/addons/account_chart/i18n/sl.po index 82aa063fffe..ab5757e67ba 100644 --- a/addons/account_chart/i18n/sl.po +++ b/addons/account_chart/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sq.po b/addons/account_chart/i18n/sq.po index 20a171b4c3c..2f76d061217 100644 --- a/addons/account_chart/i18n/sq.po +++ b/addons/account_chart/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sr.po b/addons/account_chart/i18n/sr.po index 53bb599db48..e861b34435e 100644 --- a/addons/account_chart/i18n/sr.po +++ b/addons/account_chart/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sr@latin.po b/addons/account_chart/i18n/sr@latin.po index ee621b57108..d952391201b 100644 --- a/addons/account_chart/i18n/sr@latin.po +++ b/addons/account_chart/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sv.po b/addons/account_chart/i18n/sv.po index 9286a44f81f..1acc9a88d8d 100644 --- a/addons/account_chart/i18n/sv.po +++ b/addons/account_chart/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ta.po b/addons/account_chart/i18n/ta.po index 247ed3802d5..87c043166bd 100644 --- a/addons/account_chart/i18n/ta.po +++ b/addons/account_chart/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/th.po b/addons/account_chart/i18n/th.po index 94df384df0c..968dde402e3 100644 --- a/addons/account_chart/i18n/th.po +++ b/addons/account_chart/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/tr.po b/addons/account_chart/i18n/tr.po index 91a10446b81..39fef0f560d 100644 --- a/addons/account_chart/i18n/tr.po +++ b/addons/account_chart/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/uk.po b/addons/account_chart/i18n/uk.po index 4d5b6f68d33..e70b146055e 100644 --- a/addons/account_chart/i18n/uk.po +++ b/addons/account_chart/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/vi.po b/addons/account_chart/i18n/vi.po index 89bdf916f57..afb41c4b2f5 100644 --- a/addons/account_chart/i18n/vi.po +++ b/addons/account_chart/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/zh_CN.po b/addons/account_chart/i18n/zh_CN.po index 42fc8696005..e4a83ba2bc0 100644 --- a/addons/account_chart/i18n/zh_CN.po +++ b/addons/account_chart/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/zh_TW.po b/addons/account_chart/i18n/zh_TW.po index eb1c304faca..f88ec1074c6 100644 --- a/addons/account_chart/i18n/zh_TW.po +++ b/addons/account_chart/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_check_writing/i18n/ar.po b/addons/account_check_writing/i18n/ar.po index c07d586e1ba..361f28f1a90 100644 --- a/addons/account_check_writing/i18n/ar.po +++ b/addons/account_check_writing/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/bs.po b/addons/account_check_writing/i18n/bs.po index 252798b016f..d4068b46622 100644 --- a/addons/account_check_writing/i18n/bs.po +++ b/addons/account_check_writing/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-09 05:06+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/cs.po b/addons/account_check_writing/i18n/cs.po index 147c35bf4a9..563e84af02f 100644 --- a/addons/account_check_writing/i18n/cs.po +++ b/addons/account_check_writing/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/de.po b/addons/account_check_writing/i18n/de.po index d9b678dd237..84346fbb1cb 100644 --- a/addons/account_check_writing/i18n/de.po +++ b/addons/account_check_writing/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/en_GB.po b/addons/account_check_writing/i18n/en_GB.po index 5cfbd89687c..e23cb7427ee 100644 --- a/addons/account_check_writing/i18n/en_GB.po +++ b/addons/account_check_writing/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es.po b/addons/account_check_writing/i18n/es.po index 20d0cca84c9..e35974eca2c 100644 --- a/addons/account_check_writing/i18n/es.po +++ b/addons/account_check_writing/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_CR.po b/addons/account_check_writing/i18n/es_CR.po index 556abae21e4..20156083fa9 100644 --- a/addons/account_check_writing/i18n/es_CR.po +++ b/addons/account_check_writing/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_EC.po b/addons/account_check_writing/i18n/es_EC.po index c3b827d8f42..f8556f8d282 100644 --- a/addons/account_check_writing/i18n/es_EC.po +++ b/addons/account_check_writing/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_MX.po b/addons/account_check_writing/i18n/es_MX.po index e0499e30384..d9ac4218ed9 100644 --- a/addons/account_check_writing/i18n/es_MX.po +++ b/addons/account_check_writing/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/fi.po b/addons/account_check_writing/i18n/fi.po index d719f4da53e..f18a381d877 100644 --- a/addons/account_check_writing/i18n/fi.po +++ b/addons/account_check_writing/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/fr.po b/addons/account_check_writing/i18n/fr.po index de23aea7b9f..9a71819e380 100644 --- a/addons/account_check_writing/i18n/fr.po +++ b/addons/account_check_writing/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/gu.po b/addons/account_check_writing/i18n/gu.po index e4428d2c96e..744638b0496 100644 --- a/addons/account_check_writing/i18n/gu.po +++ b/addons/account_check_writing/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/hr.po b/addons/account_check_writing/i18n/hr.po index b674dbef542..36a8df12ef6 100644 --- a/addons/account_check_writing/i18n/hr.po +++ b/addons/account_check_writing/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/hu.po b/addons/account_check_writing/i18n/hu.po index 528cb4fed60..7ba9f5704f5 100644 --- a/addons/account_check_writing/i18n/hu.po +++ b/addons/account_check_writing/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-12 05:21+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ja.po b/addons/account_check_writing/i18n/ja.po index 11bf5314025..6dbc2951463 100644 --- a/addons/account_check_writing/i18n/ja.po +++ b/addons/account_check_writing/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/lt.po b/addons/account_check_writing/i18n/lt.po index f7f77dcb0d7..51fb3cbda54 100644 --- a/addons/account_check_writing/i18n/lt.po +++ b/addons/account_check_writing/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/mk.po b/addons/account_check_writing/i18n/mk.po index ee265e8166b..e60502bf638 100644 --- a/addons/account_check_writing/i18n/mk.po +++ b/addons/account_check_writing/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 @@ -25,7 +25,7 @@ msgstr "" #. module: account_check_writing #: report:account.print.check.top:0 msgid "Open Balance" -msgstr "Отворен биланс" +msgstr "Отвори салдо" #. module: account_check_writing #: view:account.check.write:0 @@ -36,7 +36,7 @@ msgstr "Испечати Чек" #. module: account_check_writing #: selection:res.company,check_layout:0 msgid "Check in middle" -msgstr "" +msgstr "Чек во средина" #. module: account_check_writing #: help:res.company,check_layout:0 @@ -45,6 +45,9 @@ msgid "" "Check in middle is compatible with Peachtree, ACCPAC and DacEasy. Check on " "bottom is compatible with Peachtree, ACCPAC and DacEasy only" msgstr "" +"Check on top е компатибилен со Quicken, QuickBooks и Microsoft Money. Check " +"in middle е компатибилен со Peachtree, ACCPAC и DacEasy. Check on bottom е " +"компатибилен единствено со Peachtree, ACCPAC и DacEasy." #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -129,7 +132,7 @@ msgstr "" #. module: account_check_writing #: model:ir.actions.report.xml,name:account_check_writing.account_print_check_bottom msgid "Print Check (Bottom)" -msgstr "" +msgstr "Печати чек (Дно)" #. module: account_check_writing #: model:ir.actions.act_window,help:account_check_writing.action_write_check @@ -147,6 +150,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за креирате нов чек. \n" +"

\n" +" Формуларот за плаќање на чекот ви дозволува да го следите " +"плаќањето кое го правите\n" +" кон вашите добавувачи со користење на чекови. Кога избирате " +"добавувач,\n" +" метод на плаќање и износот на уплатата, OpenERP ќе ви\n" +" предложи да го порамните вашето плаќање со отворените " +"фактури и \n" +" сметки на добавувачот.\n" +"

\n" +" " #. module: account_check_writing #: report:account.print.check.bottom:0 @@ -158,7 +174,7 @@ msgstr "Краен датум" #. module: account_check_writing #: model:ir.actions.report.xml,name:account_check_writing.account_print_check_middle msgid "Print Check (Middle)" -msgstr "" +msgstr "Печати чек (Средина)" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_res_company @@ -185,7 +201,7 @@ msgstr "" #. module: account_check_writing #: model:ir.actions.report.xml,name:account_check_writing.account_print_check_top msgid "Print Check (Top)" -msgstr "" +msgstr "Печати чек (Врв)" #. module: account_check_writing #: report:account.print.check.bottom:0 diff --git a/addons/account_check_writing/i18n/mn.po b/addons/account_check_writing/i18n/mn.po index da122c036b1..971a2ae2889 100644 --- a/addons/account_check_writing/i18n/mn.po +++ b/addons/account_check_writing/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/nb.po b/addons/account_check_writing/i18n/nb.po index cb5806eed37..11e43857442 100644 --- a/addons/account_check_writing/i18n/nb.po +++ b/addons/account_check_writing/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/nl.po b/addons/account_check_writing/i18n/nl.po index a5213eb32d5..30368eff64a 100644 --- a/addons/account_check_writing/i18n/nl.po +++ b/addons/account_check_writing/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/pl.po b/addons/account_check_writing/i18n/pl.po index 91a0008610a..9b097bc458c 100644 --- a/addons/account_check_writing/i18n/pl.po +++ b/addons/account_check_writing/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/pt.po b/addons/account_check_writing/i18n/pt.po index 66eacc8e492..1e1543f0fec 100644 --- a/addons/account_check_writing/i18n/pt.po +++ b/addons/account_check_writing/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/pt_BR.po b/addons/account_check_writing/i18n/pt_BR.po index 462875b29e9..3fe7071a26d 100644 --- a/addons/account_check_writing/i18n/pt_BR.po +++ b/addons/account_check_writing/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ro.po b/addons/account_check_writing/i18n/ro.po index b84ca947f43..45545d713c3 100644 --- a/addons/account_check_writing/i18n/ro.po +++ b/addons/account_check_writing/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ru.po b/addons/account_check_writing/i18n/ru.po index 8e68dd7152a..af73a60e7e1 100644 --- a/addons/account_check_writing/i18n/ru.po +++ b/addons/account_check_writing/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-04 05:20+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sl.po b/addons/account_check_writing/i18n/sl.po index e1f991478ef..4dfb394d03b 100644 --- a/addons/account_check_writing/i18n/sl.po +++ b/addons/account_check_writing/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sr@latin.po b/addons/account_check_writing/i18n/sr@latin.po index 4140b959921..830040c50cf 100644 --- a/addons/account_check_writing/i18n/sr@latin.po +++ b/addons/account_check_writing/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sv.po b/addons/account_check_writing/i18n/sv.po index 07e53b33448..1bf5469d79b 100644 --- a/addons/account_check_writing/i18n/sv.po +++ b/addons/account_check_writing/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/tr.po b/addons/account_check_writing/i18n/tr.po index 938610c7a62..57b672879a6 100644 --- a/addons/account_check_writing/i18n/tr.po +++ b/addons/account_check_writing/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 @@ -31,7 +31,7 @@ msgstr "Açık Bakiye" #: view:account.check.write:0 #: view:account.voucher:0 msgid "Print Check" -msgstr "Çeki yazdır" +msgstr "Çeki Yazdır" #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -85,13 +85,13 @@ msgstr "Açıklama" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_account_journal msgid "Journal" -msgstr "Günlük" +msgstr "Yevmiye" #. module: account_check_writing #: model:ir.actions.act_window,name:account_check_writing.action_write_check #: model:ir.ui.menu,name:account_check_writing.menu_action_write_check msgid "Write Checks" -msgstr "Çekleri yaz" +msgstr "Çekleri Yazma" #. module: account_check_writing #: report:account.print.check.bottom:0 @@ -207,12 +207,12 @@ msgstr "Çek Yazdır (Üst)" #: report:account.print.check.middle:0 #: report:account.print.check.top:0 msgid "Check Amount" -msgstr "Çek tutarı" +msgstr "Çek Tutarı" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_account_voucher msgid "Accounting Voucher" -msgstr "Muhasebe makbuzu" +msgstr "Muhasebe Makbuzu" #. module: account_check_writing #: view:account.check.write:0 diff --git a/addons/account_check_writing/i18n/zh_CN.po b/addons/account_check_writing/i18n/zh_CN.po index 59bd10a21ad..4853574341c 100644 --- a/addons/account_check_writing/i18n/zh_CN.po +++ b/addons/account_check_writing/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 06:58+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: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: account_check_writing #: selection:res.company,check_layout:0 @@ -56,13 +56,13 @@ msgstr "底部的支票" #. module: account_check_writing #: model:ir.actions.act_window,name:account_check_writing.action_account_check_write msgid "Print Check in Batch" -msgstr "" +msgstr "批量打印支票" #. module: account_check_writing #: code:addons/account_check_writing/wizard/account_check_batch_printing.py:59 #, python-format msgid "One of the printed check already got a number." -msgstr "" +msgstr "打印的支票已经获得一个号码" #. module: account_check_writing #: help:account.journal,allow_check_writing:0 @@ -109,7 +109,7 @@ msgstr "原始金额" #. module: account_check_writing #: field:res.company,check_layout:0 msgid "Check Layout" -msgstr "" +msgstr "支票布局" #. module: account_check_writing #: field:account.voucher,allow_check:0 @@ -180,12 +180,12 @@ msgstr "公司" #: code:addons/account_check_writing/wizard/account_check_batch_printing.py:59 #, python-format msgid "Error!" -msgstr "" +msgstr "错误!" #. module: account_check_writing #: help:account.check.write,check_number:0 msgid "The number of the next check number to be printed." -msgstr "" +msgstr "下个要被打印的支票号码" #. module: account_check_writing #: report:account.print.check.bottom:0 @@ -213,7 +213,7 @@ msgstr "手工凭证" #. module: account_check_writing #: view:account.check.write:0 msgid "or" -msgstr "" +msgstr "或" #. module: account_check_writing #: field:account.voucher,amount_in_word:0 @@ -223,22 +223,22 @@ msgstr "金额大写" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_account_check_write msgid "Prin Check in Batch" -msgstr "" +msgstr "批量打印支票" #. module: account_check_writing #: view:account.check.write:0 msgid "Cancel" -msgstr "" +msgstr "取消" #. module: account_check_writing #: field:account.check.write,check_number:0 msgid "Next Check Number" -msgstr "" +msgstr "下一个支票号" #. module: account_check_writing #: view:account.check.write:0 msgid "Check" -msgstr "" +msgstr "核对" #~ msgid "" #~ "The check payment form allows you to track the payment you do to your " diff --git a/addons/account_check_writing/i18n/zh_TW.po b/addons/account_check_writing/i18n/zh_TW.po index 300d7b8dfbc..25e18e7f8f2 100644 --- a/addons/account_check_writing/i18n/zh_TW.po +++ b/addons/account_check_writing/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_followup/account_followup.py b/addons/account_followup/account_followup.py index 715860cab83..9237282ad80 100644 --- a/addons/account_followup/account_followup.py +++ b/addons/account_followup/account_followup.py @@ -185,7 +185,7 @@ class res_partner(osv.osv): return {} data['partner_ids'] = wizard_partner_ids datas = { - 'ids': [], + 'ids': wizard_partner_ids, 'model': 'account_followup.followup', 'form': data } diff --git a/addons/account_followup/i18n/ar.po b/addons/account_followup/i18n/ar.po index 8ec196555ae..4856de3526c 100644 --- a/addons/account_followup/i18n/ar.po +++ b/addons/account_followup/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "شركة" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "تاريخ الفاتورة" @@ -118,7 +118,7 @@ msgstr "أرسل المتابعات" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "المقدار" @@ -492,7 +492,7 @@ msgid "Follow Ups" msgstr "متابعات" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "لم يتم إرسال الرسالة لأن حقل عنوان الشريك فارغ" @@ -703,7 +703,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -949,7 +949,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "الوصف" diff --git a/addons/account_followup/i18n/bg.po b/addons/account_followup/i18n/bg.po index 2e9427e48f2..520c0ab5bfa 100644 --- a/addons/account_followup/i18n/bg.po +++ b/addons/account_followup/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Фирма" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Дата на фактура" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Следва" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Описание" diff --git a/addons/account_followup/i18n/bs.po b/addons/account_followup/i18n/bs.po index 3f4f1842f5a..1d7ba8e7ab3 100644 --- a/addons/account_followup/i18n/bs.po +++ b/addons/account_followup/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Poduzeće" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Datum Fakture" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Iznos" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Opomene" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -701,7 +701,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -947,7 +947,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Opis" diff --git a/addons/account_followup/i18n/ca.po b/addons/account_followup/i18n/ca.po index 07ddebde6c6..3048aab65a5 100644 --- a/addons/account_followup/i18n/ca.po +++ b/addons/account_followup/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Companyia" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Data factura" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -492,7 +492,7 @@ msgid "Follow Ups" msgstr "Seguiments" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -703,7 +703,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -949,7 +949,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descripció" diff --git a/addons/account_followup/i18n/cs.po b/addons/account_followup/i18n/cs.po index 82e9f49777f..38b027ed331 100644 --- a/addons/account_followup/i18n/cs.po +++ b/addons/account_followup/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "" diff --git a/addons/account_followup/i18n/da.po b/addons/account_followup/i18n/da.po index 023da2bbedb..e5c4ee0cfcb 100644 --- a/addons/account_followup/i18n/da.po +++ b/addons/account_followup/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "" diff --git a/addons/account_followup/i18n/de.po b/addons/account_followup/i18n/de.po index 185cbe55448..1602f3c2716 100644 --- a/addons/account_followup/i18n/de.po +++ b/addons/account_followup/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Unternehmen" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Rechnungsdatum" @@ -119,7 +119,7 @@ msgstr "Sende Mahnungen" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Betrag" @@ -595,7 +595,7 @@ msgid "Follow Ups" msgstr "Mahnungen" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Email wurde aufgrund fehlender Mailadresse nicht gesendet" @@ -865,7 +865,7 @@ msgid "unknown" msgstr "unbekannt" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Druck überfällige Zahlungen" @@ -1166,7 +1166,7 @@ msgstr "Beinhaltet Buchungen aus lfd. Rechtsstreitigkeiten" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Beschreibung" diff --git a/addons/account_followup/i18n/el.po b/addons/account_followup/i18n/el.po index edf3c5d33f1..10ff1b2e5b1 100644 --- a/addons/account_followup/i18n/el.po +++ b/addons/account_followup/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Εταιρία" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Ημερομηνία Τιμολογίου" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "Follow Ups" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -702,7 +702,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -948,7 +948,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Περιγραφή" diff --git a/addons/account_followup/i18n/en_GB.po b/addons/account_followup/i18n/en_GB.po index 63a5dcdd945..9be7f0fa224 100644 --- a/addons/account_followup/i18n/en_GB.po +++ b/addons/account_followup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Company" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Invoice Date" @@ -119,7 +119,7 @@ msgstr "Send Follow-Ups" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Amount" @@ -590,7 +590,7 @@ msgid "Follow Ups" msgstr "Follow Ups" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Email not sent because of email address of partner not filled in" @@ -857,7 +857,7 @@ msgid "unknown" msgstr "unknown" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Printed overdue payments report" @@ -1156,7 +1156,7 @@ msgstr "Including journal entries marked as a litigation" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Description" diff --git a/addons/account_followup/i18n/es.po b/addons/account_followup/i18n/es.po index e9ca44add9b..a3d57aa52b0 100644 --- a/addons/account_followup/i18n/es.po +++ b/addons/account_followup/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Compañia" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fecha factura" @@ -118,7 +118,7 @@ msgstr "Enviar seguimientos" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Importe" @@ -592,7 +592,7 @@ msgid "Follow Ups" msgstr "Seguimientos" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -862,7 +862,7 @@ msgid "unknown" msgstr "desconocido" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Impresión del informe de pagos vencidos" @@ -1163,7 +1163,7 @@ msgstr "Incluyendo asientos marcados como litigio" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descripción" diff --git a/addons/account_followup/i18n/es_AR.po b/addons/account_followup/i18n/es_AR.po index a942289a489..98867129aa7 100644 --- a/addons/account_followup/i18n/es_AR.po +++ b/addons/account_followup/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Compañía" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fecha de factura" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Seguimientos" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -701,7 +701,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -947,7 +947,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descripción" diff --git a/addons/account_followup/i18n/es_CR.po b/addons/account_followup/i18n/es_CR.po index 464cbed727d..92a0360617a 100644 --- a/addons/account_followup/i18n/es_CR.po +++ b/addons/account_followup/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: account_followup @@ -82,7 +82,7 @@ msgstr "Compañía" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fecha factura" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Monto" @@ -493,7 +493,7 @@ msgid "Follow Ups" msgstr "Seguimientos" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -706,7 +706,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -952,7 +952,7 @@ msgstr "Incluyendo asientos marcados como litigio" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descripción" diff --git a/addons/account_followup/i18n/es_EC.po b/addons/account_followup/i18n/es_EC.po index 45f300a756e..a2752fd69de 100644 --- a/addons/account_followup/i18n/es_EC.po +++ b/addons/account_followup/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Compañía" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fecha factura" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Seguimientos" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -701,7 +701,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -947,7 +947,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descripción" diff --git a/addons/account_followup/i18n/es_PY.po b/addons/account_followup/i18n/es_PY.po index f05f2f32a9f..616ee3a9b97 100644 --- a/addons/account_followup/i18n/es_PY.po +++ b/addons/account_followup/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Compañía" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fecha de Factura" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -493,7 +493,7 @@ msgid "Follow Ups" msgstr "Seguimientos" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -704,7 +704,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -950,7 +950,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descripción" diff --git a/addons/account_followup/i18n/et.po b/addons/account_followup/i18n/et.po index 28f957f1dd0..0c4643c48f6 100644 --- a/addons/account_followup/i18n/et.po +++ b/addons/account_followup/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Firma" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Arve kuupäev" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Kirjeldus" diff --git a/addons/account_followup/i18n/fa.po b/addons/account_followup/i18n/fa.po index 8c2bcc2a669..8879c1bd4d5 100644 --- a/addons/account_followup/i18n/fa.po +++ b/addons/account_followup/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "" diff --git a/addons/account_followup/i18n/fi.po b/addons/account_followup/i18n/fi.po index efbf58ed7aa..a0fe7293b56 100644 --- a/addons/account_followup/i18n/fi.po +++ b/addons/account_followup/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Yritys" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Laskun päiväys" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Määrä" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "Muistutukset" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Kuvaus" diff --git a/addons/account_followup/i18n/fr.po b/addons/account_followup/i18n/fr.po index cb1903631fd..4ed9c5ceb28 100644 --- a/addons/account_followup/i18n/fr.po +++ b/addons/account_followup/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Société" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Date de facturation" @@ -118,7 +118,7 @@ msgstr "Envoyer les relances" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Montant" @@ -161,6 +161,24 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Cher %(partner_name)s,\n" +"\n" +"Nous constatons avec regret que malgré notre précédent rappel, votre compte " +"est toujours débiteur.\n" +"\n" +" Nous vous mettons donc en demeure de nous régler sous huitaine " +"l’intégralité de la somme. Passé ce délai, nous bloquerons votre compte ce " +"qui signifie que vous ne pourrez plus passer de commandes auprès de notre " +"société (articles/services).\n" +"\n" +"Si pour une raison qui nous est inconnue vous ne pouvez régler ces factures, " +"n'hésitez pas à prendre contact avec notre service comptable afin que nous " +"trouvions une solution rapide à ce problème.\n" +"\n" +"Le détail des factures impayées est listé ci-dessous.\n" +"\n" +"Veuillez agréer nos salutations distinguées,\n" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level0 @@ -198,6 +216,40 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Cher ${object.name},

\n" +"

\n" +" A l'examen de votre compte, nous constatons que sauf erreur ou omission " +"de notre part, nous n'avons toujours pas reçu à ce jour de règlement des " +"factures reprises sur le relevé ci-dessous. Nous vous remercions de bien " +"vouloir régulariser cette situation sous huitaine.\n" +"\n" +"\n" +"Au cas où votre règlement se serait croisé avec la présente, nous vous " +"prions de ne pas en tenir compte. N'hésitez pas à contacter notre service " +"comptable.\n" +"\n" +"

\n" +"
\n" +"Veuillez agréer nos salutations distinguées,\n" +"
\n" +"
\n" +"${user.name}\n" +"\n" +"
\n" +"
\n" +"\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: view:account_followup.stat.by.partner:0 @@ -293,7 +345,7 @@ msgstr "Échéance la plus en retard" #. module: account_followup #: view:account_followup.stat:0 msgid "Not Litigation" -msgstr "Non contentieux" +msgstr "Pas de litige" #. module: account_followup #: view:account_followup.print:0 @@ -350,6 +402,43 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Cher ${object.name},

\n" +"

\n" +" Nous constatons avec regret que malgré notre précédent rappel, votre " +"compte est toujours débiteur.\n" +"Nous vous mettons donc en demeure de nous régler sous huitaine l’intégralité " +"de la somme. Passé ce délai,\n" +"nous bloquerons votre compte ce qui signifie que vous ne pourrez plus passer " +"de commandes\n" +"auprès de notre société (articles/services).\n" +"Si pour une raison qui nous est inconnue vous ne pouvez régler ces factures, " +"n'hésitez pas à prendre contact\n" +"avec notre service comptable afin que nous trouvions une solution rapide à " +"ce problème.\n" +"\n" +"Le détail des factures impayées est listé ci-dessous.\n" +"

\n" +"
\n" +"Veuillez agréer nos salutations distinguées,\n" +" \n" +"
\n" +"
\n" +"${user.name}\n" +" \n" +"
\n" +"
\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: field:account_followup.stat,debit:0 @@ -495,7 +584,7 @@ msgid "Follow Ups" msgstr "Relances" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Courriel non envoyé car l'adresse du partenaire n'est pas remplie" @@ -602,6 +691,7 @@ msgstr "" #: view:res.partner:0 msgid "Print overdue payments report independent of follow-up line" msgstr "" +"Imprimer les relances de paiement indépendamment de la ligne de relance" #. module: account_followup #: help:account_followup.print,date:0 @@ -656,6 +746,38 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Cher ${object.name},

\n" +"

\n" +" Malgré plusieurs rappels, votre compte est toujours débiteur.\n" +"Nous vous mettons donc en demeure de nous régler sous huitaine l’intégralité " +"de la somme. Passé ce délai,\n" +"nous mettrons en œuvre toutes les démarches légales nécessaires au " +"recouvrement de notre créance sans nouvelle notification.\n" +"J'espère que ces actions ne seront pas nécessaires et vous trouverez le " +"détail des factures impayées ci-dessous.\n" +"Pour toutes questions concernant ce sujet. n'hésitez pas à prendre contact " +"avec notre service comptable.\n" +"

\n" +"
\n" +"Veuillez agréer nos salutations distinguées,\n" +"
\n" +"
\n" +"${user.name}\n" +"
\n" +"
\n" +"\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: report:account_followup.followup.print:0 @@ -688,6 +810,24 @@ msgid "" "Best Regards,\n" " " msgstr "" +"\n" +"Cher %(partner_name)s,\n" +"\n" +"Malgré plusieurs rappels, votre compte est toujours débiteur.\n" +"\n" +"Nous vous mettons donc en demeure de nous régler sous huitaine l’intégralité " +"de la somme. Passé ce délai,\n" +"nous mettrons en œuvre toutes les démarches légales nécessaires au " +"recouvrement de notre créance sans nouvelle notification.\n" +"\n" +"J'espère que ces actions ne seront pas nécessaires et vous trouverez le " +"détail des factures impayées ci-dessous.\n" +"\n" +"Pour toutes questions concernant ce sujet. n'hésitez pas à prendre contact " +"avec notre service comptable.\n" +"\n" +"Veuillez agréer nos salutations distinguées,\n" +" " #. module: account_followup #: field:res.partner,payment_amount_due:0 @@ -711,7 +851,7 @@ msgid "unknown" msgstr "inconnu" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Imprimer le rapport des retards de paiement" @@ -731,6 +871,10 @@ msgid "" " order to exclude it from the next follow-up " "actions." msgstr "" +"Ci-dessous se trouve l'historique des transactions de ce \n" +" client. Vous pouvez sélectionner \"Aucun " +"suivi\" afin \n" +" de le retirer de la prochaine action de relance." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:171 @@ -786,6 +930,7 @@ msgid "" "The maximum follow-up level without taking into account the account move " "lines with litigation" msgstr "" +"Le degré maximal de relance sans prendre en compte les écritures en litige" #. module: account_followup #: view:account_followup.stat:0 @@ -824,6 +969,34 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Dear ${object.name},

\n" +"

\n" +" A l'examen de votre compte, nous constatons que sauf erreur ou omission " +"de notre part, nous n'avons toujours pas reçu à ce jour de règlement des " +"factures reprises sur le relevé ci-dessous. Nous vous remercions de bien " +"vouloir régulariser cette situation sous huitaine.\n" +"Au cas où votre règlement se serait croisé avec ce courriel, nous vous " +"prions de ne pas en tenir compte. N'hésitez pas à contacter notre service " +"comptable. \n" +"

\n" +"
\n" +"Veuillez agréer nos salutations distinguées,\n" +"
\n" +"
\n" +"${user.name}\n" +"
\n" +"
\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"
\n" +" " #. module: account_followup #: field:account.move.line,result:0 @@ -864,6 +1037,19 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Cher %(partner_name)s,\n" +"\n" +"A l'examen de votre compte, nous constatons que sauf erreur ou omission de " +"notre part, nous n'avons toujours pas reçu à ce jour de règlement des " +"factures reprises sur le relevé ci-dessous. Nous vous remercions de bien " +"vouloir régulariser cette situation dans les 8 jours.\n" +"\n" +"Au cas où votre règlement se serait croisé avec la présente, nous vous " +"prions de ne pas en tenir compte. N'hésitez pas à contacter notre service " +"comptable.\n" +"\n" +"Veuillez agréer nos salutations distinguées,\n" #. module: account_followup #: field:account_followup.stat,date_move_last:0 @@ -885,7 +1071,7 @@ msgstr "%s partenaire(s) n'a/ont pas de crédit, donc l'action est effacée." #. module: account_followup #: model:ir.actions.report.xml,name:account_followup.account_followup_followup_report msgid "Follow-up Report" -msgstr "" +msgstr "Rapport du suivi des paiements" #. module: account_followup #: view:res.partner:0 @@ -957,7 +1143,7 @@ msgstr "Inclure les écritures marquées comme litigieuses" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Description" @@ -985,7 +1171,7 @@ msgstr "Exercice comptable" #. module: account_followup #: field:res.partner,latest_followup_level_id_without_lit:0 msgid "Latest Follow-up Level without litigation" -msgstr "Dernière relance avant action en justice" +msgstr "Dernier niveau de suivi sans litige" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_manual_reconcile_receivable @@ -1144,7 +1330,7 @@ msgstr "Réf. Client" #. module: account_followup #: report:account_followup.followup.print:0 msgid "Maturity Date" -msgstr "Date de Maturité" +msgstr "Date d'échéance" #. module: account_followup #: help:account_followup.followup.line,delay:0 diff --git a/addons/account_followup/i18n/gl.po b/addons/account_followup/i18n/gl.po index 257ef062041..b5d5c4d7152 100644 --- a/addons/account_followup/i18n/gl.po +++ b/addons/account_followup/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Compañía" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Data da factura" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -492,7 +492,7 @@ msgid "Follow Ups" msgstr "Seguimentos" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -703,7 +703,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -949,7 +949,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descrición" diff --git a/addons/account_followup/i18n/hr.po b/addons/account_followup/i18n/hr.po index 551ff6be120..68dfcd525d0 100644 --- a/addons/account_followup/i18n/hr.po +++ b/addons/account_followup/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Tvrtka" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Datum računa" @@ -118,7 +118,7 @@ msgstr "Pošalji prateće korake" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Iznos" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "IOS-i" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Email nije poslan zato što nije pronađena email adresa partnera." @@ -701,7 +701,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -947,7 +947,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Opis" diff --git a/addons/account_followup/i18n/hu.po b/addons/account_followup/i18n/hu.po index e69bb7b38c0..a757bd43bf8 100644 --- a/addons/account_followup/i18n/hu.po +++ b/addons/account_followup/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-05 05:37+0000\n" -"X-Generator: Launchpad (build 16550)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Vállalat" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Számla kelte" @@ -118,7 +118,7 @@ msgstr "Fizetési-emlékezető küldése" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Összeg" @@ -588,7 +588,7 @@ msgid "Follow Ups" msgstr "Fizetési emlékeztetők" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -646,7 +646,7 @@ msgstr "Fizetési-emlékeztető keresése" #. module: account_followup #: view:res.partner:0 msgid "Account Move line" -msgstr "" +msgstr "Könyvelési sor mozgás" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:237 @@ -856,7 +856,7 @@ msgid "unknown" msgstr "ismeretlen" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Lejárt fizetési tételek jelentésének nyomtatása" @@ -1157,7 +1157,7 @@ msgstr "Beleértve a peres megjelölésű jelentés bejegyzéseket" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Megjegyzés" diff --git a/addons/account_followup/i18n/id.po b/addons/account_followup/i18n/id.po index 784d5579875..79012109e9a 100644 --- a/addons/account_followup/i18n/id.po +++ b/addons/account_followup/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "" diff --git a/addons/account_followup/i18n/it.po b/addons/account_followup/i18n/it.po index 1d7ce3f4db1..128adf5246a 100644 --- a/addons/account_followup/i18n/it.po +++ b/addons/account_followup/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Azienda" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Data Fattura" @@ -118,7 +118,7 @@ msgstr "Invio Solleciti di Pagamento" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Importo" @@ -495,7 +495,7 @@ msgid "Follow Ups" msgstr "Solleciti di Pagamento" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Email non spedite per mancanza dell'indirizzo email del partner" @@ -736,7 +736,7 @@ msgid "unknown" msgstr "sconosciuto" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Report stampe pagamenti scaduti" @@ -1001,7 +1001,7 @@ msgstr "Incluse le registrazioni marcate come contenzioso" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descrizione" diff --git a/addons/account_followup/i18n/ja.po b/addons/account_followup/i18n/ja.po index 1c716d0b1c8..3a6cd32d7ad 100644 --- a/addons/account_followup/i18n/ja.po +++ b/addons/account_followup/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "会社" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "請求日" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "金額" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "フォローアップ" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "訴訟としてマークされた仕訳帳エントリーを含みます #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "説明" diff --git a/addons/account_followup/i18n/ko.po b/addons/account_followup/i18n/ko.po index d81f337d074..044fa345a44 100644 --- a/addons/account_followup/i18n/ko.po +++ b/addons/account_followup/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "회사" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "인보이스 날짜" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "설명" diff --git a/addons/account_followup/i18n/lt.po b/addons/account_followup/i18n/lt.po index 8653b241ec3..1f1a608b0f1 100644 --- a/addons/account_followup/i18n/lt.po +++ b/addons/account_followup/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Įmonė" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Aprašas" diff --git a/addons/account_followup/i18n/mk.po b/addons/account_followup/i18n/mk.po index 8bbd00027a9..56b2e7f7bd6 100644 --- a/addons/account_followup/i18n/mk.po +++ b/addons/account_followup/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Компанија" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Датум на фактура" @@ -105,7 +105,7 @@ msgstr "задоцнети денови, превземи ги следните #. module: account_followup #: view:account_followup.followup.line:0 msgid "Follow-up Steps" -msgstr "" +msgstr "Чекори за проследување" #. module: account_followup #: field:account_followup.print,email_body:0 @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Износ" @@ -130,6 +130,8 @@ msgid "" "This is the next action to be taken. It will automatically be set when the " "partner gets a follow-up level that requires a manual action. " msgstr "" +"Ова е следна акција која треба да биде превземена. Таа автоматски ќе биде " +"подесена кога партнерот добива ниво на проследување кое бара рачна акција. " #. module: account_followup #: view:res.partner:0 @@ -270,7 +272,7 @@ msgstr "Партнери" #. module: account_followup #: sql_constraint:account_followup.followup:0 msgid "Only one follow-up per company is allowed" -msgstr "Дозволеное е само едно проследување по компанија" +msgstr "Дозволено е е само едно проследување по компанија" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:254 @@ -281,7 +283,7 @@ msgstr "Потсетник за фактури" #. module: account_followup #: help:account_followup.followup.line,send_letter:0 msgid "When processing, it will print a letter" -msgstr "" +msgstr "Кога се процесира, ќе испечати писмо" #. module: account_followup #: field:res.partner,payment_earliest_due_date:0 @@ -296,7 +298,7 @@ msgstr "Не е судска постапка" #. module: account_followup #: view:account_followup.print:0 msgid "Send emails and generate letters" -msgstr "Прати пораки и генерирај писма" +msgstr "Прати е-пошти и генерирај писма" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_customer_followup @@ -373,6 +375,8 @@ msgstr "Критериум за проследување" #: help:account_followup.followup.line,sequence:0 msgid "Gives the sequence order when displaying a list of follow-up lines." msgstr "" +"Дава секвенциски редослед кога ја прикажува листата на ставки за " +"проследување." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:166 @@ -399,23 +403,23 @@ msgstr "Следења на плаќање" #. module: account_followup #: field:account_followup.followup.line,delay:0 msgid "Due Days" -msgstr "денови на задоцнување" +msgstr "Денови на задоцнување" #. module: account_followup #: field:account.move.line,followup_line_id:0 #: view:account_followup.stat:0 msgid "Follow-up Level" -msgstr "" +msgstr "Ниво на проследување" #. module: account_followup #: field:account_followup.stat,date_followup:0 msgid "Latest followup" -msgstr "" +msgstr "Последно проследување" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_manual_reconcile_followup msgid "Reconcile Invoices & Payments" -msgstr "Порамни Фактири & Плаќања" +msgstr "Порамни Фактури & Плаќања" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_s @@ -435,17 +439,17 @@ msgstr "Испрати емаил потврда" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up Entries with period in current year" -msgstr "" +msgstr "Внесови за проследување со период во тековната година" #. module: account_followup #: field:account_followup.stat.by.partner,date_followup:0 msgid "Latest follow-up" -msgstr "" +msgstr "Последно проследување" #. module: account_followup #: field:account_followup.print,partner_lang:0 msgid "Send Email in Partner Language" -msgstr "Испрати емаил на јазикот на партнерот" +msgstr "Испрати е-пошта на јазикот на партнерот" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:169 @@ -456,7 +460,7 @@ msgstr " испратена е-пошта(и)" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_print msgid "Print Follow-up & Send Mail to Customers" -msgstr "" +msgstr "Испечати проследување & Испрати маил до купувачите" #. module: account_followup #: field:account_followup.followup.line,description:0 @@ -488,10 +492,10 @@ msgstr "Испечати задоцнети плаќања" #: field:account_followup.followup.line,followup_id:0 #: field:account_followup.stat,followup_id:0 msgid "Follow Ups" -msgstr "" +msgstr "Проследувања" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -501,7 +505,7 @@ msgstr "" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup msgid "Account Follow-up" -msgstr "" +msgstr "Следење на сметка" #. module: account_followup #: help:res.partner,payment_responsible_id:0 @@ -530,7 +534,7 @@ msgstr "" #: code:addons/account_followup/wizard/account_followup_print.py:172 #, python-format msgid " manual action(s) assigned:" -msgstr " доделени рачни постапки:" +msgstr " доделени рачни акции:" #. module: account_followup #: view:res.partner:0 @@ -545,18 +549,18 @@ msgstr "Испрати писма и е-пошти" #. module: account_followup #: view:account_followup.followup:0 msgid "Search Follow-up" -msgstr "" +msgstr "Барај проследување" #. module: account_followup #: view:res.partner:0 msgid "Account Move line" -msgstr "" +msgstr "Ставка за движење на сметка" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:237 #, python-format msgid "Send Letters and Emails: Actions Summary" -msgstr "" +msgstr "Испрати Писма и Е-пошти: Резиме на акција" #. module: account_followup #: view:account_followup.print:0 @@ -573,7 +577,7 @@ msgstr "" #. module: account_followup #: sql_constraint:account_followup.followup.line:0 msgid "Days of the follow-up levels must be different" -msgstr "" +msgstr "Деновите на нивоата за проследување мора да бидат различни" #. module: account_followup #: view:res.partner:0 @@ -583,7 +587,7 @@ msgstr "Кликнете за да ја означите акцијата как #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_action_followup_stat_follow msgid "Follow-Ups Analysis" -msgstr "" +msgstr "Анализи на проследувања" #. module: account_followup #: help:res.partner,payment_next_action_date:0 @@ -706,7 +710,7 @@ msgid "unknown" msgstr "непознато" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Печатен извештај за платени задоцнувања" @@ -952,7 +956,7 @@ msgstr "Вклучени записи од дневници означени к #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Опис" diff --git a/addons/account_followup/i18n/mn.po b/addons/account_followup/i18n/mn.po index a0af118a5e5..73456c483a8 100644 --- a/addons/account_followup/i18n/mn.po +++ b/addons/account_followup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -28,7 +28,7 @@ msgstr "${user.company_id.name} Төлбөрийн Сануулга" #. module: account_followup #: help:res.partner,latest_followup_level_id:0 msgid "The maximum follow-up level" -msgstr "" +msgstr "Мөшгөлтийн максимум түвшин" #. module: account_followup #: view:account_followup.stat:0 @@ -39,7 +39,7 @@ msgstr "Бүлэглэх..." #. module: account_followup #: field:account_followup.print,followup_id:0 msgid "Follow-Up" -msgstr "" +msgstr "Мөшгөлт" #. module: account_followup #: view:account_followup.followup.line:0 @@ -55,7 +55,7 @@ msgstr "Дараа үйлдэл хийх огноо" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,manual_action:0 msgid "Manual Action" -msgstr "" +msgstr "Гар үйлдэл" #. module: account_followup #: field:account_followup.sending.results,needprinting:0 @@ -65,7 +65,7 @@ msgstr "Хэвлэх шаардлагатай" #. module: account_followup #: view:res.partner:0 msgid "⇾ Mark as Done" -msgstr "" +msgstr "⇾ Хийгдсэнээр Тэмдэглэх" #. module: account_followup #: field:account_followup.followup.line,manual_action_note:0 @@ -82,7 +82,7 @@ msgstr "Компани" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Нэхэмлэлийн Огноо" @@ -100,12 +100,12 @@ msgstr "%(user_signature)s" #. module: account_followup #: view:account_followup.followup.line:0 msgid "days overdue, do the following actions:" -msgstr "" +msgstr "хугацаа дуусах хүртэлх өдөрүүд, дараах арга хэмжээг авна уу:" #. module: account_followup #: view:account_followup.followup.line:0 msgid "Follow-up Steps" -msgstr "Мөрөөр хийх ажлын алхамууд" +msgstr "Мөшгөлтийн алхамууд" #. module: account_followup #: field:account_followup.print,email_body:0 @@ -115,11 +115,11 @@ msgstr "Имэйлийн агуулга" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_print msgid "Send Follow-Ups" -msgstr "Мөрөөр хийх ажлуудыг илгээх" +msgstr "Мөшгөлтүүдийг илгээх" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Дүн" @@ -130,6 +130,9 @@ msgid "" "This is the next action to be taken. It will automatically be set when the " "partner gets a follow-up level that requires a manual action. " msgstr "" +"Энэ нь дараагийн авах арга хэмжээ байна. Энэ нь харилцагч мөшгөлтийн " +"дараагийн түвшинд хүрч гар ажиллагаа шаардлагатай болоход автоматаар " +"тохируулагдана. " #. module: account_followup #: view:res.partner:0 @@ -159,6 +162,25 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Сайн байна уу? Эрхэм %(partner_name)s,\n" +"\n" +"Бид танд хэдэнтээ сануулга явуулсан хэдий ч таны тооцоо ноцтойгоор хугацаа " +"хэтрээд байгааг мэдэгдэж байгаадаа харамсаж байна.\n" +"\n" +"Даруйхан төлбөрөө төлөх явдал чухал байна. Эс бөгөөс бид таны данстай " +"харилцах харилцааг зогсоох бөгөөд ингэснээр бид танай компанид аливаа бараа, " +"үйлчилгээг нийлүүлэхгүй болно.\n" +"Ойрын 8 хоногийн хугацаанд төлбөрийн талаар зохих арга хэмжээг гүйцэтгэнэ " +"үү.\n" +"\n" +"Хэрэв нэхэмжлэлийг төлөхтэй холбоотой бидний анхаарахгүй, мэдэхгүй байгаа " +"асуудал байгаа бол бидэнд санаа зоволгүй мэдэгдэнэ үү. Бид асуудлыг хурдан " +"шийдвэрлэх болно.\n" +"\n" +"Хугацаа хэтэрсэн төлбөрийн талаарх дэлгэрэнгүйг доор хэвлэлээ.\n" +"\n" +"Хүндэтгэсэн,\n" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level0 @@ -196,6 +218,37 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Сайн байна уу? Эрхэм ${object.name},

\n" +"

\n" +"Саатал тохиолдлоо. Хэрэв энэ нь бидний алдаа байсан бол дараах дүн " +"төлөгдөөгүй үлдлээ. Ойрын 8 хоногийн хугацаанд төлбөрийн талаар зохих арга " +"хэмжээг гүйцэтгэнэ үү.\n" +"\n" +"Энэ имэйл илгээгдсэн дараа таны төлбөр хийгдсэн бол энэ имэйлийг хэрэгсэхгүй " +"байж болно. Манай санхүүгийн албатай эргэлзэлгүйгээр холбогдож болно.\n" +"\n" +"

\n" +"
\n" +"Хүндэтгэсэн,\n" +"
\n" +"
\n" +"${user.name}\n" +"\n" +"
\n" +"
\n" +"\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: view:account_followup.stat.by.partner:0 @@ -220,14 +273,14 @@ msgstr ": Харилцагчийн нэр" #. module: account_followup #: field:account_followup.followup.line,manual_action_responsible_id:0 msgid "Assign a Responsible" -msgstr "" +msgstr "Хариуцагч Оноох" #. module: account_followup #: view:account_followup.followup:0 #: field:account_followup.followup,followup_line:0 #: view:res.partner:0 msgid "Follow-up" -msgstr "Мөрөөр хийх ажил" +msgstr "Мөшгөлт" #. module: account_followup #: report:account_followup.followup.print:0 @@ -256,6 +309,19 @@ msgid "" " same customer, the actions of the most \n" " overdue invoice will be executed." msgstr "" +"Захиалагчид нэхэмжлэлээ төлөх явдлыг сануулахын \n" +" тулд хугацаа дуусах талаар хэр зэрэг ойрхон ямар " +"арга \n" +" хэмжээнүүд авахыг тодорхойлно. Эдгээр арга \n" +" хэмжээнүүд нь мөшгөлтийн түвшингүүдэд багцлагдаж \n" +" нэхэмжлэлийн хугацаа дууссанаас хэд хоног " +"өнгөрснөөс \n" +" хамааруулан төрөл бүрийн арга хэмжээг эхлүүлнэ. " +"Хэрэв \n" +" нэг захиалагч дээр хугацаа хэтэрсэн олон нэхэмжлэл " +"\n" +" байвал хамгийн их хугацаа хэтэрсэн нэхэмжлэлийн \n" +" дагууд арга хэмжээнүүд авагдана." #. module: account_followup #: report:account_followup.followup.print:0 @@ -270,7 +336,7 @@ msgstr "Харилцагч" #. module: account_followup #: sql_constraint:account_followup.followup:0 msgid "Only one follow-up per company is allowed" -msgstr "" +msgstr "Компанийн хэмжээнд зөвхөн нэг л мөшгөлт зөвшөөрөгдөнө." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:254 @@ -281,12 +347,12 @@ msgstr "Үнийн нэхэмжлэл сануулах" #. module: account_followup #: help:account_followup.followup.line,send_letter:0 msgid "When processing, it will print a letter" -msgstr "" +msgstr "Боловсруулж байхдаа энэ нь захидал хэвлэнэ" #. module: account_followup #: field:res.partner,payment_earliest_due_date:0 msgid "Worst Due Date" -msgstr "" +msgstr "Хамгийн муу хугацаат огноо" #. module: account_followup #: view:account_followup.stat:0 @@ -296,12 +362,12 @@ msgstr "Зарга биш" #. module: account_followup #: view:account_followup.print:0 msgid "Send emails and generate letters" -msgstr "" +msgstr "Имэйл илгээгээд захидал үүсгэнэ" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_customer_followup msgid "Manual Follow-Ups" -msgstr "" +msgstr "Гар мөшгөлтүүд" #. module: account_followup #: view:account_followup.followup.line:0 @@ -348,6 +414,44 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Сайн байна уу? Эрхэм ${object.name},

\n" +"

\n" +"Бид танд хэдэнтээ сануулга явуулсан хэдий ч таны тооцоо ноцтойгоор хугацаа " +"хэтрээд байгааг мэдэгдэж байгаадаа харамсаж байна.\n" +"\n" +"Даруйхан төлбөрөө төлөх явдал чухал байна. Эс бөгөөс бид таны данстай " +"харилцах харилцааг зогсоох бөгөөд ингэснээр бид танай компанид аливаа бараа, " +"үйлчилгээг нийлүүлэхгүй болно.\n" +"Ойрын 8 хоногийн хугацаанд төлбөрийн талаар зохих арга хэмжээг гүйцэтгэнэ " +"үү.\n" +"\n" +"Хэрэв нэхэмжлэлийг төлөхтэй холбоотой бидний анхаарахгүй, мэдэхгүй байгаа " +"асуудал байгаа бол бидэнд санаа зоволгүй мэдэгдэнэ үү. Бид асуудлыг хурдан " +"шийдвэрлэх болно.\n" +"Хугацаа хэтэрсэн нэхэмжлэлийн талаарх дэлгэрэнгүйг доор хэвлэлээ.\n" +"\n" +"

\n" +"
\n" +"Best Regards,\n" +" \n" +"
\n" +"
\n" +"${user.name}\n" +" \n" +"
\n" +"
\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: field:account_followup.stat,debit:0 @@ -357,28 +461,28 @@ msgstr "Дебит" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat msgid "Follow-up Statistics" -msgstr "Мөрөөр хийх ажилын статистик" +msgstr "Мөшгөлтийн Статистик" #. module: account_followup #: view:res.partner:0 msgid "Send Overdue Email" -msgstr "" +msgstr "Хугацаа Хэтэрсэн талаар Имэйл илгээх" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup_line msgid "Follow-up Criteria" -msgstr "Мөрөөр хийх ажлын шинжүүр" +msgstr "Мөшгөлтийн Шинжүүр" #. module: account_followup #: help:account_followup.followup.line,sequence:0 msgid "Gives the sequence order when displaying a list of follow-up lines." -msgstr "" +msgstr "Мөшгөлтүүдийн мөрүүдийг харуулах дэс дарааллыг өгнө" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:166 #, python-format msgid " will be sent" -msgstr "" +msgstr " илгээгдэх болно" #. module: account_followup #: view:account_followup.followup.line:0 @@ -394,33 +498,33 @@ msgstr "Захидал илгээх" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_definition_form msgid "Payment Follow-ups" -msgstr "" +msgstr "Төлбөрийн мөшгөлтүүд" #. module: account_followup #: field:account_followup.followup.line,delay:0 msgid "Due Days" -msgstr "" +msgstr "Товлосон өдрүүд" #. module: account_followup #: field:account.move.line,followup_line_id:0 #: view:account_followup.stat:0 msgid "Follow-up Level" -msgstr "" +msgstr "Мөшгөлтийн түвшин" #. module: account_followup #: field:account_followup.stat,date_followup:0 msgid "Latest followup" -msgstr "" +msgstr "Сүүлийн мөшгөлт" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_manual_reconcile_followup msgid "Reconcile Invoices & Payments" -msgstr "" +msgstr "Нэхэмжлэхүүд болон Төлбөрүүдийг Тулгах" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_s msgid "Do Manual Follow-Ups" -msgstr "" +msgstr "Гар Мөшгөлтүүдийг Хийх" #. module: account_followup #: report:account_followup.followup.print:0 @@ -435,12 +539,12 @@ msgstr "Батламжлах имэйл илгээх" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up Entries with period in current year" -msgstr "" +msgstr "Одоогийн жилийн мөчлөгтэй мөшгөлтийн бичилтүүд" #. module: account_followup #: field:account_followup.stat.by.partner,date_followup:0 msgid "Latest follow-up" -msgstr "" +msgstr "Хамгийн сүүлийн мөшгөлт" #. module: account_followup #: field:account_followup.print,partner_lang:0 @@ -451,17 +555,17 @@ msgstr "Имэйлийг Харилцагчийн хэлээр илгээх" #: code:addons/account_followup/wizard/account_followup_print.py:169 #, python-format msgid " email(s) sent" -msgstr "" +msgstr " имэйл илгээгдсэн" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_print msgid "Print Follow-up & Send Mail to Customers" -msgstr "" +msgstr "Мөшгөлт хэвлэх & Үйлчлүүлэгч рүү имэйл илгээх" #. module: account_followup #: field:account_followup.followup.line,description:0 msgid "Printed Message" -msgstr "" +msgstr "Хэвлэсэн мессеж" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:155 @@ -472,7 +576,7 @@ msgstr "Хэн нэгэн" #. module: account_followup #: help:account_followup.followup.line,send_email:0 msgid "When processing, it will send an email" -msgstr "" +msgstr "Боловсруулж байхдаа энэ нь имэйл илгээнэ" #. module: account_followup #: view:account_followup.stat.by.partner:0 @@ -482,24 +586,24 @@ msgstr "Сануулах Харилцагч" #. module: account_followup #: view:res.partner:0 msgid "Print Overdue Payments" -msgstr "" +msgstr "Хугацаа нь дууссан төлбөрийг хэвлэх" #. module: account_followup #: field:account_followup.followup.line,followup_id:0 #: field:account_followup.stat,followup_id:0 msgid "Follow Ups" -msgstr "" +msgstr "Мөшгөлтүүд" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" -msgstr "" +msgstr "Харилцагчийн имэйл хаяг бөглөгдөөгүй тул имэйл илгээгдсэнгүй" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup msgid "Account Follow-up" -msgstr "" +msgstr "Дансны мөшгөлт" #. module: account_followup #: help:res.partner,payment_responsible_id:0 @@ -507,11 +611,13 @@ msgid "" "Optionally you can assign a user to this field, which will make him " "responsible for the action." msgstr "" +"Энэ талбарт хэрэглэгчийг оноож болох бөгөөд ингэснээр түүнийг арга хэмжээ " +"бүрт хариуцагч болгоно." #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_sending_results msgid "Results from the sending of the different letters and emails" -msgstr "" +msgstr "Ялгаатай захидал болон имэйл илгээглтийн үр дүнгүүд" #. module: account_followup #: constraint:account_followup.followup.line:0 @@ -519,12 +625,14 @@ msgid "" "Your description is invalid, use the right legend or %% if you want to use " "the percent character." msgstr "" +"Таны тодорхойломж буруу, зөв тайлбар эсвэл %%-г процент тэмдэг хэрэглэх гэж " +"байгаа бол ашиглана уу." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:172 #, python-format msgid " manual action(s) assigned:" -msgstr "" +msgstr " гар арга хэмжээ оноогдсон:" #. module: account_followup #: view:res.partner:0 @@ -534,23 +642,23 @@ msgstr "Харилцагч хайх" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_print_menu msgid "Send Letters and Emails" -msgstr "" +msgstr "Имэйл болон захидал илгээх" #. module: account_followup #: view:account_followup.followup:0 msgid "Search Follow-up" -msgstr "" +msgstr "Мөшгөлтүүдийг Хайх" #. module: account_followup #: view:res.partner:0 msgid "Account Move line" -msgstr "" +msgstr "Зөөх дансны мөр" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:237 #, python-format msgid "Send Letters and Emails: Actions Summary" -msgstr "" +msgstr "Захидал болон имэйл илгээх: үйл ажиллагааны хураангуй" #. module: account_followup #: view:account_followup.print:0 @@ -563,21 +671,23 @@ msgid "" "If not specified by the latest follow-up level, it will send from the " "default email template" msgstr "" +"Хэрэв сүүлийн мөшгилтийн түвшинд зааж өгөөгүй бол энэ нь үндсэн имэйл " +"үлгэрээс илгээх болно" #. module: account_followup #: sql_constraint:account_followup.followup.line:0 msgid "Days of the follow-up levels must be different" -msgstr "" +msgstr "Мөшгөлтийн түвшингүүдийн өдөрүүд нь ялгаатай байх ёстой" #. module: account_followup #: view:res.partner:0 msgid "Click to mark the action as done." -msgstr "" +msgstr "Арга хэмжээг хийгдсэнээр тэмдэглэхдээ дарна уу." #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_action_followup_stat_follow msgid "Follow-Ups Analysis" -msgstr "" +msgstr "Мөшгөлтийн анализ" #. module: account_followup #: help:res.partner,payment_next_action_date:0 @@ -587,28 +697,33 @@ msgid "" "action. Can be practical to set manually e.g. to see if he keeps his " "promises." msgstr "" +"Энэ нь гар мөшгилт шаардлагатай тохиолдол юм. Харилцагч нь гар мөшгилт " +"хэрэгтэй түвшинд хүрсэн бол огноо нь одоогийн огноогоор тохируулагдана. " +"Гараараа амлалт дээр нь үндэслэн өөрчилж болно." #. module: account_followup #: view:res.partner:0 msgid "Print overdue payments report independent of follow-up line" msgstr "" +"Мөшгөлтийн мөрөөс үл хамааруулан хугацаа хэтэрсэн төлбөрийн тайланг хэвлэх" #. module: account_followup #: help:account_followup.print,date:0 msgid "" "This field allow you to select a forecast date to plan your follow-ups" msgstr "" +"Энэ талбар нь мөшгилтийг төлөвлөх ирээдүйн огноог сонгоход ашиглагддаг" #. module: account_followup #: field:account_followup.print,date:0 msgid "Follow-up Sending Date" -msgstr "" +msgstr "Мөшгөлт илгээх огноо" #. module: account_followup #: view:res.partner:0 #: field:res.partner,payment_responsible_id:0 msgid "Follow-up Responsible" -msgstr "" +msgstr "Мөшгөлтийн Хариуцагч" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level2 @@ -645,6 +760,35 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Эрхэм ${object.name},

\n" +"

\n" +" Танд олон удаа сануулсан боловч тооцоо дуусаагүй хэвээр байна.\n" +"8 хоногийн хугацаанд бүрэн төлбөр хийгдэхгүй бол дахин мэдэгдэл үгүйгээр " +"хуулийн арга хэмжээнд шилжих болно.\n" +"Төлбөрийн тухай мэдээллийг доор хэвлэлээ. \n" +"Үүнтэй холбоотой асуух, магадлах зүйлс байвал санаа зоволгүйгээр манай " +"санхүүгийн албатай холбогдоно уу.\n" +"

\n" +"
\n" +"Хүндэтгэсэн\n" +"
\n" +"
\n" +"${user.name}\n" +"
\n" +"
\n" +"\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: report:account_followup.followup.print:0 @@ -654,7 +798,7 @@ msgstr "Баримт: Үйлчлүүлэгчийн дансны тодорхой #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_menu msgid "Follow-up Levels" -msgstr "" +msgstr "Мөшгөлтийн Түвшингүүд" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line4 @@ -677,21 +821,33 @@ msgid "" "Best Regards,\n" " " msgstr "" +"\n" +"Эрхэм ${object.name},\n" +"\n" +"Танд олон удаа сануулсан боловч тооцоо дуусаагүй хэвээр байна.\n" +"8 хоногийн хугацаанд бүрэн төлбөр хийгдэхгүй бол дахин мэдэгдэл үгүйгээр " +"хуулийн арга хэмжээнд шилжих болно.\n" +"Төлбөрийн тухай мэдээллийг доор хэвлэлээ. \n" +"Үүнтэй холбоотой асуух, магадлах зүйлс байвал санаа зоволгүйгээр манай " +"санхүүгийн албатай холбогдоно уу.\n" +"\n" +"Хүндэтгэсэн\n" +" " #. module: account_followup #: field:res.partner,payment_amount_due:0 msgid "Amount Due" -msgstr "" +msgstr "Хугацаа хэтэрсэн дүн" #. module: account_followup #: field:account.move.line,followup_date:0 msgid "Latest Follow-up" -msgstr "" +msgstr "Сүүлийн Мөшгөлт" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Download Letters" -msgstr "" +msgstr "Захидалуудыг татах" #. module: account_followup #: field:account_followup.print,company_id:0 @@ -700,17 +856,17 @@ msgid "unknown" msgstr "тодорхой бус" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" -msgstr "" +msgstr "Хугацаа хэтэрсэн төлбөрийн нэхэмжлэл хэвлэгдсэн" #. module: account_followup #: help:account_followup.followup.line,manual_action:0 msgid "" "When processing, it will set the manual action to be taken for that " "customer. " -msgstr "" +msgstr "Боловсруулалт хийхэд захиалагчид авах гар арга хэмжээг тохируулна. " #. module: account_followup #: view:res.partner:0 @@ -720,12 +876,15 @@ msgid "" " order to exclude it from the next follow-up " "actions." msgstr "" +"Доор энэ захиалагчийн гүйлгээний түүх \n" +" байна. Хэрэв мөшгилт хэрэггүй гэж үзвэл \n" +" \"Мөшгилт үгүй\" сонголтыг арилгаж болно." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:171 #, python-format msgid " email(s) should have been sent, but " -msgstr "" +msgstr " имэйлүүд илгээгдлээ, гэхдээ " #. module: account_followup #: help:account_followup.print,test_print:0 @@ -757,7 +916,7 @@ msgstr "Хураангуй" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,send_email:0 msgid "Send an Email" -msgstr "" +msgstr "Имэйл илгээх" #. module: account_followup #: field:account_followup.stat,credit:0 @@ -767,7 +926,7 @@ msgstr "Кредит" #. module: account_followup #: field:res.partner,payment_amount_overdue:0 msgid "Amount Overdue" -msgstr "" +msgstr "Хугацаа хэтэрсэн дүн" #. module: account_followup #: help:res.partner,latest_followup_level_id_without_lit:0 @@ -775,12 +934,14 @@ msgid "" "The maximum follow-up level without taking into account the account move " "lines with litigation" msgstr "" +"Маргаантай санхүүгийн хөдөлгөөний мөрүүдийг тооцолгүйгээр мөшгилтийн " +"максимум түвшин" #. module: account_followup #: view:account_followup.stat:0 #: field:res.partner,latest_followup_date:0 msgid "Latest Follow-up Date" -msgstr "" +msgstr "Сүүлийн Мөшгилтийн Огноо" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_default @@ -813,6 +974,32 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Эрхэм ${object.name},

\n" +"

\n" +" Хэрэв бидний алдаа байвал залруулах болно. Гэхдээ дүн төлөгдөөгүй байгаа " +"бололтой байна. Ойрын 8 хоногийн хугацаанд холбогдох тооцоог хийнэ үү. Хэрэв " +"энэ имэйл илгээгдсэн дараа төлбөр тань хийгдсэн байгаа бол энэ имэйлийг " +"хэрэгсэхгүй байж болно. Манай санхүүгийн албатай санаа зоволтгүй холбогдож " +"асууж болно.\n" +"

\n" +"
\n" +"Амжилт хүсье,\n" +"
\n" +"
\n" +"${user.name}\n" +"
\n" +"
\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"
\n" +" " #. module: account_followup #: field:account.move.line,result:0 @@ -825,17 +1012,17 @@ msgstr "Тэнцэл" #. module: account_followup #: help:res.partner,payment_note:0 msgid "Payment Note" -msgstr "" +msgstr "Төлбөрийн Тэмдэглэл" #. module: account_followup #: view:res.partner:0 msgid "My Follow-ups" -msgstr "" +msgstr "Миний мөшгөлтүүд" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(company_name)s" -msgstr "" +msgstr "%(company_name)s" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line1 @@ -853,12 +1040,23 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Эрхэм %(partner_name)s,\n" +"\n" +" Хэрэв бидний алдаа байвал залруулах болно. Гэхдээ дүн төлөгдөөгүй байгаа " +"бололтой байна. Ойрын 8 хоногийн хугацаанд холбогдох тооцоог хийнэ үү. \n" +"\n" +"Хэрэв энэ имэйл илгээгдсэн дараа төлбөр тань хийгдсэн байгаа бол энэ " +"имэйлийг хэрэгсэхгүй байж болно. Манай санхүүгийн албатай санаа зоволтгүй " +"холбогдож асууж болно.\n" +"\n" +"Амжилт хүсье,\n" #. module: account_followup #: field:account_followup.stat,date_move_last:0 #: field:account_followup.stat.by.partner,date_move_last:0 msgid "Last move" -msgstr "" +msgstr "Сүүлийн хөдөлгөөн" #. module: account_followup #: field:account_followup.stat,period_id:0 @@ -869,12 +1067,12 @@ msgstr "Мөчлөг" #: code:addons/account_followup/wizard/account_followup_print.py:228 #, python-format msgid "%s partners have no credits and as such the action is cleared" -msgstr "" +msgstr "%s харилцагч нар нь зээлгүй бөгөөд ийм арга хэмжээнүүд цэвэрлэгдлээ." #. module: account_followup #: model:ir.actions.report.xml,name:account_followup.account_followup_followup_report msgid "Follow-up Report" -msgstr "" +msgstr "Мөшгилтийн Тайлан" #. module: account_followup #: view:res.partner:0 @@ -882,6 +1080,8 @@ msgid "" ", the latest payment follow-up\n" " was:" msgstr "" +", төлбөрийн сүүлийн мөшгилт \n" +" нь:" #. module: account_followup #: view:account_followup.print:0 @@ -901,13 +1101,13 @@ msgstr "Маргаантай" #. module: account_followup #: field:account_followup.stat.by.partner,max_followup_id:0 msgid "Max Follow Up Level" -msgstr "" +msgstr "Мөшгилтийн Максимум Түвшин" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:171 #, python-format msgid " had unknown email address(es)" -msgstr "" +msgstr " үл мэдэгдэх имэйл хаягуудтай байна" #. module: account_followup #: view:res.partner:0 @@ -918,12 +1118,12 @@ msgstr "" #: model:ir.ui.menu,name:account_followup.menu_finance_followup #: view:res.partner:0 msgid "Payment Follow-up" -msgstr "" +msgstr "Төлбөрийн мөшгөлт" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": Current Date" -msgstr "" +msgstr ": Одоогийн Огноо" #. module: account_followup #: view:account_followup.print:0 @@ -932,21 +1132,25 @@ msgid "" " set the manual actions per customer, according to " "the follow-up levels defined." msgstr "" +"Энэ арга хэмжээ нь мөшгилтийн имэйл илгээх, захидал \n" +" хэвлэх, гар арга хэмжээ тохируулах ажлыг захиалагчид " +"дээр тохируулсан \n" +" мөшгилтийн түвшингээр хийнэ." #. module: account_followup #: field:account_followup.followup.line,name:0 msgid "Follow-Up Action" -msgstr "" +msgstr "Мөшгилтийн Арга хэмжээ" #. module: account_followup #: view:account_followup.stat:0 msgid "Including journal entries marked as a litigation" -msgstr "" +msgstr "Журналын бичилтийг оруулаад маргаантай гэж тэмдэглэгдлээ." #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Тайлбар" @@ -954,7 +1158,7 @@ msgstr "Тайлбар" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Summary of actions" -msgstr "" +msgstr "Арга хэмжээний хураангуй" #. module: account_followup #: report:account_followup.followup.print:0 @@ -974,7 +1178,7 @@ msgstr "Энэ санхүүгийн жил" #. module: account_followup #: field:res.partner,latest_followup_level_id_without_lit:0 msgid "Latest Follow-up Level without litigation" -msgstr "" +msgstr "Маргаангүй мөшгилтийн сүүлийн түвшин" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_manual_reconcile_receivable @@ -997,7 +1201,7 @@ msgstr "Харилцагчийн бичилт" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up lines" -msgstr "" +msgstr "Мөшгилтийн мөрүүд" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line3 @@ -1018,6 +1222,17 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Эрхэм %(partner_name)s,\n" +"\n" +"Танд олон удаа сануулсан боловч тооцоо дуусаагүй хэвээр байна.\n" +"8 хоногийн хугацаанд бүрэн төлбөр хийгдэхгүй бол дахин мэдэгдэл үгүйгээр " +"хуулийн арга хэмжээнд шилжих болно.\n" +"Төлбөрийн тухай мэдээллийг доор хэвлэлээ. \n" +"Үүнтэй холбоотой асуух, магадлах зүйлс байвал санаа зоволгүйгээр манай " +"санхүүгийн албатай холбогдоно уу.\n" +"\n" +"Хүндэтгэсэн\n" #. module: account_followup #: help:account_followup.print,partner_lang:0 @@ -1025,6 +1240,8 @@ msgid "" "Do not change message text, if you want to send email in partner language, " "or configure from company" msgstr "" +"Хэрэв захиалагчийн хэлээр эсвэл компанийн тохиргооны хэлээр имэйл илгээхээр " +"бол текстийг битгий өөрчил" #. module: account_followup #: view:account_followup.followup.line:0 @@ -1037,12 +1254,17 @@ msgid "" "installed\n" " using to top right icon." msgstr "" +"Энэ танилцуулга захидлыг бичнэ,\n" +" Энэ нь мөшгилтийн түвшинтэй уялдсан байна. \n" +" Дараах түлхүүр үгүүдийг ашиглаж болно. Суулгасан " +"бүх хэлний \n" +" хувьд орчуулахаа мартаж болохгүй." #. module: account_followup #: view:account_followup.stat:0 #: model:ir.actions.act_window,name:account_followup.action_followup_stat msgid "Follow-ups Sent" -msgstr "" +msgstr "Мөшгилтүүд Илгээгдсэн" #. module: account_followup #: field:account_followup.followup,name:0 @@ -1052,34 +1274,34 @@ msgstr "Нэр" #. module: account_followup #: field:res.partner,latest_followup_level_id:0 msgid "Latest Follow-up Level" -msgstr "" +msgstr "Мөшгилтийн Сүүлийн Түвшин" #. module: account_followup #: field:account_followup.stat,date_move:0 #: field:account_followup.stat.by.partner,date_move:0 msgid "First move" -msgstr "" +msgstr "Эхний хөдөлгөөн" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat_by_partner msgid "Follow-up Statistics by Partner" -msgstr "" +msgstr "Мөшгилтийн статистик Харилцагчаар" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:172 #, python-format msgid " letter(s) in report" -msgstr "" +msgstr " тайлан дахь захидлууд" #. module: account_followup #: view:res.partner:0 msgid "Partners with Overdue Credits" -msgstr "" +msgstr "Харилцагчийн хугацаа нь дууссан кредитүүд" #. module: account_followup #: view:res.partner:0 msgid "Customer Followup" -msgstr "" +msgstr "Захиалагчийн мөшгилт" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_followup_definition_form @@ -1095,12 +1317,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Энд мөшгилтийн түвшин болон холбогдох арга хэмжээг " +"тодорхойлохдоо дарна уу.\n" +"

\n" +" Алхам бүрт, авах арга хэмжээ болон хүлээх хоногийг зааж " +"өгнө.\n" +" Захиалагчид илгээх имэйл, захидалд үлгэрүүдийг ашиглах " +"боломжтой.\n" +"

\n" +" " #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:166 #, python-format msgid "Follow-up letter of " -msgstr "" +msgstr "Дараахийн мөшгилтийн захидал " #. module: account_followup #: view:res.partner:0 @@ -1110,7 +1342,7 @@ msgstr "" #. module: account_followup #: view:account_followup.print:0 msgid "Send follow-ups" -msgstr "" +msgstr "Мөшгилтүүдийг илгээх" #. module: account_followup #: view:account.move.line:0 @@ -1125,17 +1357,17 @@ msgstr "Дугаарлалт" #. module: account_followup #: view:res.partner:0 msgid "Follow-ups To Do" -msgstr "" +msgstr "Хийх мөшгилтүүд" #. module: account_followup #: report:account_followup.followup.print:0 msgid "Customer Ref :" -msgstr "" +msgstr "Захиалагчийн код:" #. module: account_followup #: report:account_followup.followup.print:0 msgid "Maturity Date" -msgstr "" +msgstr "Гүйцэх огноо" #. module: account_followup #: help:account_followup.followup.line,delay:0 @@ -1144,11 +1376,13 @@ msgid "" "the reminder. Could be negative if you want to send a polite alert " "beforehand." msgstr "" +"Хугацаа хэтэрснээс хойш сануулга илгээхийн өмнө хүлээх хоногийн тоо. Хугацаа " +"дуусахаас өмнө эелдэг сануулга өгөхөөр бол сөрөг тоо байж болно." #. module: account_followup #: help:res.partner,latest_followup_date:0 msgid "Latest date that the follow-up level of the partner was changed" -msgstr "" +msgstr "Харилцагчийн мөшгилтийн түвшин өөрчлөгдсөн хамгийн сүүлийн огноо" #. module: account_followup #: field:account_followup.print,test_print:0 @@ -1158,7 +1392,7 @@ msgstr "Тест хэвлэх" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": User Name" -msgstr "" +msgstr ": Хэрэглэгчийн нэр" #. module: account_followup #: view:res.partner:0 @@ -1173,7 +1407,7 @@ msgstr "Хоригдсон" #. module: account_followup #: field:res.partner,payment_note:0 msgid "Customer Payment Promise" -msgstr "" +msgstr "Захиалагчийн Төлөх Амлалт" #~ msgid "Invalid model name in the action definition." #~ msgstr "Үйлдэлийн тодорхойлолтод буруу моделийн нэр заасан байна." diff --git a/addons/account_followup/i18n/nb.po b/addons/account_followup/i18n/nb.po index ca1e28e3cc7..0f11b7effac 100644 --- a/addons/account_followup/i18n/nb.po +++ b/addons/account_followup/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Firma" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fakturadato" @@ -119,7 +119,7 @@ msgstr "Send oppfølgninger." #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Beløp" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "Oppfølginger" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "E-posten er ikke send fordi e-postadressen partner ikke er fylt ut." @@ -705,7 +705,7 @@ msgid "unknown" msgstr "Ukjent." #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Skrevet ut forfalte betalings rapporter." @@ -957,7 +957,7 @@ msgstr "Inkludert posteringer merket som en rettssak" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Beskrivelse" diff --git a/addons/account_followup/i18n/nl.po b/addons/account_followup/i18n/nl.po index 1616c7541ee..f93dd0b6ec0 100644 --- a/addons/account_followup/i18n/nl.po +++ b/addons/account_followup/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Bedrijf" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Factuurdatum" @@ -118,7 +118,7 @@ msgstr "Verstuur Betalingsherinneringen" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Bedrag" @@ -582,7 +582,7 @@ msgstr "Relatie voor betalingsherinnering" #. module: account_followup #: view:res.partner:0 msgid "Print Overdue Payments" -msgstr "Vervallen betalingen afdrukken" +msgstr "Afdrukken openstaande posten" #. module: account_followup #: field:account_followup.followup.line,followup_id:0 @@ -591,7 +591,7 @@ msgid "Follow Ups" msgstr "Betalingsherinneringen" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -844,7 +844,7 @@ msgstr "" #. module: account_followup #: field:res.partner,payment_amount_due:0 msgid "Amount Due" -msgstr "Vervallen bedrag" +msgstr "Verschuldigd bedrag" #. module: account_followup #: field:account.move.line,followup_date:0 @@ -863,7 +863,7 @@ msgid "unknown" msgstr "onbekend" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Druk het rapport achterstallige betalingen af" @@ -908,7 +908,7 @@ msgstr "" #. module: account_followup #: model:ir.model,name:account_followup.model_account_move_line msgid "Journal Items" -msgstr "Boekingen" +msgstr "Boekingsregels" #. module: account_followup #: report:account_followup.followup.print:0 @@ -1167,7 +1167,7 @@ msgstr "Inclusief boekingen gemarkeerd als een geschil" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Omschrijving" diff --git a/addons/account_followup/i18n/nl_BE.po b/addons/account_followup/i18n/nl_BE.po index 64a73d776ef..72dfc3455a1 100644 --- a/addons/account_followup/i18n/nl_BE.po +++ b/addons/account_followup/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-17 05:15+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: nl\n" #. module: account_followup @@ -34,12 +34,12 @@ msgstr "Het maximale aanmaningsniveau" #: view:account_followup.stat:0 #: view:res.partner:0 msgid "Group By..." -msgstr "Groepeer op..." +msgstr "Groeperen op..." #. module: account_followup #: field:account_followup.print,followup_id:0 msgid "Follow-Up" -msgstr "Aanmanen" +msgstr "Aanmaningen" #. module: account_followup #: view:account_followup.followup.line:0 @@ -82,7 +82,7 @@ msgstr "Bedrijf" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Factuurdatum" @@ -119,7 +119,7 @@ msgstr "Aanmaningen versturen" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Bedrag" @@ -225,7 +225,7 @@ msgstr "" "

Beste ${object.name},

\n" "

\n" " Volgens onze informatie, heeft u nog een openstaand saldo. Wij verzoeken " -"u het nodige te doen om deze betaling binnen de 8 dagen over te schrijven op " +"u het nodige te doen om dit bedrag binnen de 8 dagen over te schrijven op " "onze rekening.\n" "\n" "Indien uw betaling deze e-mail heeft gekruist, mag u dit bericht als " @@ -352,7 +352,7 @@ msgstr "Bij verwerking wordt een brief gemaakt" #. module: account_followup #: field:res.partner,payment_earliest_due_date:0 msgid "Worst Due Date" -msgstr "Slechtste vervaldatum" +msgstr "Hoogste vervaldatum" #. module: account_followup #: view:account_followup.stat:0 @@ -421,8 +421,8 @@ msgstr "" " \n" "

Beste ${object.name},

\n" "

\n" -" Het spijt ons te moeten vaststellen dat, ondanks een eerdere aanmaning, " -"u nog steeds een openstaand saldo hebt.\n" +" Het spijt ons te moeten vaststellen dat u, ondanks een eerdere " +"aanmaning, nog steeds een openstaand saldo hebt.\n" "Wij verzoeken u dringend het openstaande saldo te betalen. Bij gebrek aan " "betaling, zijn wij genoodzaakt de verdere levering van goederen en diensten " "stop te zetten.\n" @@ -507,7 +507,7 @@ msgstr "Dagen vervallen" #: field:account.move.line,followup_line_id:0 #: view:account_followup.stat:0 msgid "Follow-up Level" -msgstr "Niveau aanmaning" +msgstr "Aanmaningsniveau" #. module: account_followup #: field:account_followup.stat,date_followup:0 @@ -593,7 +593,7 @@ msgid "Follow Ups" msgstr "Aanmaningen" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -770,9 +770,9 @@ msgstr "" "

\n" " Ondanks het feit dat wij u meerdere aanmaningen hebben gestuurd, is uw " "openstaand saldo nog steeds niet betaald.\n" -"Indien de betaling ervan niet binnen de 8 dagen op onze rekening staat, " -"schakelen wij een advocaat in om het verschuldigde saldo bij u te innen. U " -"ontvangt hierover geen verdere communicatie.\n" +"Indien dit bedrag niet binnen de 8 dagen op onze rekening staat, schakelen " +"wij een advocaat in om het verschuldigde saldo bij u te innen. U ontvangt " +"hierover geen verdere communicatie.\n" "Wij gaan ervan uit dat deze stap niet nodig zal zijn. De details van de " "openstaande betalingen vindt u hierna.\n" "Aarzel niet contact op te nemen met onze boekhouding als u nog vragen " @@ -864,7 +864,7 @@ msgid "unknown" msgstr "onbekend" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Afgedrukt aanmaningsrapport" @@ -1164,7 +1164,7 @@ msgstr "Inclusief betwiste boekingen" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Omschrijving" @@ -1413,7 +1413,7 @@ msgstr "Testafdruk" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": User Name" -msgstr ": Gberuikersnaam" +msgstr ": Gebruikersnaam" #. module: account_followup #: view:res.partner:0 diff --git a/addons/account_followup/i18n/oc.po b/addons/account_followup/i18n/oc.po index 14f3700f7cf..c0ceab20db7 100644 --- a/addons/account_followup/i18n/oc.po +++ b/addons/account_followup/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Entrepresa" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descripcion" diff --git a/addons/account_followup/i18n/pl.po b/addons/account_followup/i18n/pl.po index 4b4aa0aa66c..837848e6b75 100644 --- a/addons/account_followup/i18n/pl.po +++ b/addons/account_followup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Firma" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Data faktury" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Kwota" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Windykacje" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Opis" diff --git a/addons/account_followup/i18n/pt.po b/addons/account_followup/i18n/pt.po index 01c057f9da9..79a6252a4e0 100644 --- a/addons/account_followup/i18n/pt.po +++ b/addons/account_followup/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -22,7 +22,7 @@ msgstr "" #: model:email.template,subject:account_followup.email_template_account_followup_level1 #: model:email.template,subject:account_followup.email_template_account_followup_level2 msgid "${user.company_id.name} Payment Reminder" -msgstr "" +msgstr "Aviso de pagamento: ${user.company_id.name}" #. module: account_followup #: help:res.partner,latest_followup_level_id:0 @@ -48,7 +48,7 @@ msgstr "%(date)s" #. module: account_followup #: field:res.partner,payment_next_action_date:0 msgid "Next Action Date" -msgstr "" +msgstr "Data da próxima acção" #. module: account_followup #: view:account_followup.followup.line:0 @@ -64,7 +64,7 @@ msgstr "Precisa de impressão" #. module: account_followup #: view:res.partner:0 msgid "⇾ Mark as Done" -msgstr "" +msgstr "⇾ Marcar como Feito" #. module: account_followup #: field:account_followup.followup.line,manual_action_note:0 @@ -81,7 +81,7 @@ msgstr "Empresa" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Data da Fatura" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Montante" @@ -133,7 +133,7 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "No Responsible" -msgstr "" +msgstr "Sem responsável" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line2 @@ -430,7 +430,7 @@ msgstr "Li." #. module: account_followup #: field:account_followup.print,email_conf:0 msgid "Send Email Confirmation" -msgstr "" +msgstr "Enviar Email de Confirmação" #. module: account_followup #: view:account_followup.stat:0 @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "Seguimentos" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -574,7 +574,7 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "Click to mark the action as done." -msgstr "" +msgstr "Clique para marcar a ação como feita." #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_action_followup_stat_follow @@ -704,7 +704,7 @@ msgid "unknown" msgstr "desconhecido" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -761,7 +761,7 @@ msgstr "Resumo" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,send_email:0 msgid "Send an Email" -msgstr "" +msgstr "Enviar um Email" #. module: account_followup #: field:account_followup.stat,credit:0 @@ -950,7 +950,7 @@ msgstr "Incluindo entradas diárias marcadas como litígio" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descrição" diff --git a/addons/account_followup/i18n/pt_BR.po b/addons/account_followup/i18n/pt_BR.po index d2ef1e8f6b8..b0b87080f11 100644 --- a/addons/account_followup/i18n/pt_BR.po +++ b/addons/account_followup/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Empresa" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Data da Fatura" @@ -119,7 +119,7 @@ msgstr "Enviar Cobranças" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Valor" @@ -592,7 +592,7 @@ msgid "Follow Ups" msgstr "Cobranças" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Email não enviado, por que o email do parceiro não está preenchido" @@ -859,7 +859,7 @@ msgid "unknown" msgstr "Desconhecido" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Relatórios de pagamentos em atraso impresso" @@ -1154,7 +1154,7 @@ msgstr "Incluindo os itens de diário marcados como em protesto" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descrição" diff --git a/addons/account_followup/i18n/ro.po b/addons/account_followup/i18n/ro.po index 96f220bd5e3..8136fe39961 100644 --- a/addons/account_followup/i18n/ro.po +++ b/addons/account_followup/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Companie" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Data Facturii" @@ -118,7 +118,7 @@ msgstr "Trimiteti Continuari" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Suma" @@ -592,7 +592,7 @@ msgid "Follow Ups" msgstr "Urmariri" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -862,7 +862,7 @@ msgid "unknown" msgstr "necunoscut(a)" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Raportul tiparit al platilor restante" @@ -1161,7 +1161,7 @@ msgstr "Inclusiv inregistrari in jurnal marcate ca litigiu" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descriere" diff --git a/addons/account_followup/i18n/ru.po b/addons/account_followup/i18n/ru.po index b57c8e4315e..a20266f19d9 100644 --- a/addons/account_followup/i18n/ru.po +++ b/addons/account_followup/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-01 05:16+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -54,12 +54,12 @@ msgstr "Дата следующего действия" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,manual_action:0 msgid "Manual Action" -msgstr "" +msgstr "Действие вручную" #. module: account_followup #: field:account_followup.sending.results,needprinting:0 msgid "Needs Printing" -msgstr "" +msgstr "Надо печатать" #. module: account_followup #: view:res.partner:0 @@ -69,7 +69,7 @@ msgstr "⇾ отметить как сделанное" #. module: account_followup #: field:account_followup.followup.line,manual_action_note:0 msgid "Action To Do" -msgstr "" +msgstr "Действие для выполнения" #. module: account_followup #: field:account_followup.followup,company_id:0 @@ -81,7 +81,7 @@ msgstr "Компания" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Дата счета-фактуры" @@ -99,12 +99,12 @@ msgstr "%(user_signature)s" #. module: account_followup #: view:account_followup.followup.line:0 msgid "days overdue, do the following actions:" -msgstr "" +msgstr "дней просрочки, выполните следующие действия:" #. module: account_followup #: view:account_followup.followup.line:0 msgid "Follow-up Steps" -msgstr "" +msgstr "Шаги по напоминаниям" #. module: account_followup #: field:account_followup.print,email_body:0 @@ -118,7 +118,7 @@ msgstr "Послать напоминания" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Сумма" @@ -269,7 +269,7 @@ msgstr "Контрагенты" #. module: account_followup #: sql_constraint:account_followup.followup:0 msgid "Only one follow-up per company is allowed" -msgstr "" +msgstr "Возможно только одно напоминание на компанию" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:254 @@ -280,7 +280,7 @@ msgstr "Напоминание о счетах" #. module: account_followup #: help:account_followup.followup.line,send_letter:0 msgid "When processing, it will print a letter" -msgstr "" +msgstr "При обработке, печатается письмо" #. module: account_followup #: field:res.partner,payment_earliest_due_date:0 @@ -295,12 +295,12 @@ msgstr "Не судебное" #. module: account_followup #: view:account_followup.print:0 msgid "Send emails and generate letters" -msgstr "" +msgstr "Отправлять электронную почту и создавать письма" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_customer_followup msgid "Manual Follow-Ups" -msgstr "" +msgstr "Напоминание вручную" #. module: account_followup #: view:account_followup.followup.line:0 @@ -356,17 +356,17 @@ msgstr "Дебет" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat msgid "Follow-up Statistics" -msgstr "" +msgstr "Статистика напоминаний" #. module: account_followup #: view:res.partner:0 msgid "Send Overdue Email" -msgstr "" +msgstr "Отправить письмо о просрочке" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup_line msgid "Follow-up Criteria" -msgstr "" +msgstr "Критерии напоминания" #. module: account_followup #: help:account_followup.followup.line,sequence:0 @@ -382,7 +382,7 @@ msgstr " будет отправлен" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": User's Company Name" -msgstr "" +msgstr ": название компании пользователя" #. module: account_followup #: view:account_followup.followup.line:0 @@ -393,7 +393,7 @@ msgstr "Отправить письмо" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_definition_form msgid "Payment Follow-ups" -msgstr "" +msgstr "Напоминания о платежах" #. module: account_followup #: field:account_followup.followup.line,delay:0 @@ -414,12 +414,12 @@ msgstr "Последние дальнейшие действия" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_manual_reconcile_followup msgid "Reconcile Invoices & Payments" -msgstr "" +msgstr "Сверка счетов и оплат" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_s msgid "Do Manual Follow-Ups" -msgstr "" +msgstr "Выполнить напоминания вручную" #. module: account_followup #: report:account_followup.followup.print:0 @@ -429,7 +429,7 @@ msgstr "" #. module: account_followup #: field:account_followup.print,email_conf:0 msgid "Send Email Confirmation" -msgstr "" +msgstr "Отправить e-mail подтверждение" #. module: account_followup #: view:account_followup.stat:0 @@ -439,7 +439,7 @@ msgstr "" #. module: account_followup #: field:account_followup.stat.by.partner,date_followup:0 msgid "Latest follow-up" -msgstr "" +msgstr "Последнее напоминание" #. module: account_followup #: field:account_followup.print,partner_lang:0 @@ -450,12 +450,12 @@ msgstr "Послать эл. письмо на языке контрагента #: code:addons/account_followup/wizard/account_followup_print.py:169 #, python-format msgid " email(s) sent" -msgstr "" +msgstr " эл. письма отправлены" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_print msgid "Print Follow-up & Send Mail to Customers" -msgstr "" +msgstr "Печать напоминания и отправка эл. писем заказчикам" #. module: account_followup #: field:account_followup.followup.line,description:0 @@ -471,7 +471,7 @@ msgstr "Кто угодно" #. module: account_followup #: help:account_followup.followup.line,send_email:0 msgid "When processing, it will send an email" -msgstr "" +msgstr "При обработке будет отправлено эл. письмо" #. module: account_followup #: view:account_followup.stat.by.partner:0 @@ -481,7 +481,7 @@ msgstr "Напомнить контрагенту" #. module: account_followup #: view:res.partner:0 msgid "Print Overdue Payments" -msgstr "" +msgstr "Печать просроченных платежей" #. module: account_followup #: field:account_followup.followup.line,followup_id:0 @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Дальнейшие действия" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -538,12 +538,12 @@ msgstr "" #. module: account_followup #: view:account_followup.followup:0 msgid "Search Follow-up" -msgstr "" +msgstr "Поиск напоминания" #. module: account_followup #: view:res.partner:0 msgid "Account Move line" -msgstr "" +msgstr "Движение по счету" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:237 @@ -571,12 +571,12 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "Click to mark the action as done." -msgstr "" +msgstr "Нажмите , чтобы отметить действие как выполненное." #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_action_followup_stat_follow msgid "Follow-Ups Analysis" -msgstr "" +msgstr "Анализ напоминаний" #. module: account_followup #: help:res.partner,payment_next_action_date:0 @@ -607,7 +607,7 @@ msgstr "Дата отправки напоминания" #: view:res.partner:0 #: field:res.partner,payment_responsible_id:0 msgid "Follow-up Responsible" -msgstr "" +msgstr "Ответственный за напоминания" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level2 @@ -653,7 +653,7 @@ msgstr "Документ: ведомость по счету заказчика" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_menu msgid "Follow-up Levels" -msgstr "" +msgstr "Уровни напоминаний" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line4 @@ -680,7 +680,7 @@ msgstr "" #. module: account_followup #: field:res.partner,payment_amount_due:0 msgid "Amount Due" -msgstr "" +msgstr "Сумма долга" #. module: account_followup #: field:account.move.line,followup_date:0 @@ -690,16 +690,16 @@ msgstr "Последние дальнейшие действия" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Download Letters" -msgstr "" +msgstr "Загрузка писем" #. module: account_followup #: field:account_followup.print,company_id:0 #: field:res.partner,unreconciled_aml_ids:0 msgid "unknown" -msgstr "" +msgstr "неизвестный" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -740,12 +740,12 @@ msgstr "Элементы журнала" #. module: account_followup #: report:account_followup.followup.print:0 msgid "Total:" -msgstr "" +msgstr "Итого:" #. module: account_followup #: field:account_followup.followup.line,email_template_id:0 msgid "Email Template" -msgstr "" +msgstr "Шаблон письма" #. module: account_followup #: field:account_followup.print,summary:0 @@ -756,7 +756,7 @@ msgstr "Сводка" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,send_email:0 msgid "Send an Email" -msgstr "" +msgstr "Послать эл.письмо" #. module: account_followup #: field:account_followup.stat,credit:0 @@ -779,7 +779,7 @@ msgstr "" #: view:account_followup.stat:0 #: field:res.partner,latest_followup_date:0 msgid "Latest Follow-up Date" -msgstr "" +msgstr "Дата последнего напоминания" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_default @@ -829,12 +829,12 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "My Follow-ups" -msgstr "" +msgstr "Мои напоминания" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(company_name)s" -msgstr "" +msgstr "%(company_name)s" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line1 @@ -890,7 +890,7 @@ msgstr "Отменить" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Close" -msgstr "" +msgstr "Закрыть" #. module: account_followup #: view:account_followup.stat:0 @@ -917,12 +917,12 @@ msgstr "" #: model:ir.ui.menu,name:account_followup.menu_finance_followup #: view:res.partner:0 msgid "Payment Follow-up" -msgstr "" +msgstr "Напоминание об оплате" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": Current Date" -msgstr "" +msgstr ": Текущая дата" #. module: account_followup #: view:account_followup.print:0 @@ -935,17 +935,17 @@ msgstr "" #. module: account_followup #: field:account_followup.followup.line,name:0 msgid "Follow-Up Action" -msgstr "" +msgstr "Действие по напоминанию" #. module: account_followup #: view:account_followup.stat:0 msgid "Including journal entries marked as a litigation" -msgstr "" +msgstr "Включая проводки журнала, отмеченные как судебные" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Описание" @@ -953,7 +953,7 @@ msgstr "Описание" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Summary of actions" -msgstr "" +msgstr "Резюме действий" #. module: account_followup #: report:account_followup.followup.print:0 @@ -963,7 +963,7 @@ msgstr "Ссылка" #. module: account_followup #: view:account_followup.followup.line:0 msgid "After" -msgstr "" +msgstr "После" #. module: account_followup #: view:account_followup.stat:0 @@ -973,7 +973,7 @@ msgstr "Этот финансовый год" #. module: account_followup #: field:res.partner,latest_followup_level_id_without_lit:0 msgid "Latest Follow-up Level without litigation" -msgstr "" +msgstr "Последний уровень напоминания до суда" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_manual_reconcile_receivable @@ -992,7 +992,7 @@ msgstr "Партнерские проводки" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up lines" -msgstr "" +msgstr "Позиции напоминания" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line3 @@ -1049,7 +1049,7 @@ msgstr "Название" #. module: account_followup #: field:res.partner,latest_followup_level_id:0 msgid "Latest Follow-up Level" -msgstr "" +msgstr "Последний уровень напоминания" #. module: account_followup #: field:account_followup.stat,date_move:0 @@ -1060,7 +1060,7 @@ msgstr "Первый шаг" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat_by_partner msgid "Follow-up Statistics by Partner" -msgstr "" +msgstr "Статистика напоминаний по партнеру" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:172 @@ -1076,7 +1076,7 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "Customer Followup" -msgstr "" +msgstr "Напоминание заказчику" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_followup_definition_form @@ -1107,7 +1107,7 @@ msgstr "" #. module: account_followup #: view:account_followup.print:0 msgid "Send follow-ups" -msgstr "" +msgstr "Отправить напоминания" #. module: account_followup #: view:account.move.line:0 @@ -1150,17 +1150,17 @@ msgstr "" #. module: account_followup #: field:account_followup.print,test_print:0 msgid "Test Print" -msgstr "" +msgstr "Пробная печать" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": User Name" -msgstr "" +msgstr ": имя пользователя" #. module: account_followup #: view:res.partner:0 msgid "Accounting" -msgstr "" +msgstr "Учёт" #. module: account_followup #: field:account_followup.stat,blocked:0 diff --git a/addons/account_followup/i18n/sl.po b/addons/account_followup/i18n/sl.po index f2317d159a1..9cfb0168dcc 100644 --- a/addons/account_followup/i18n/sl.po +++ b/addons/account_followup/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Družba" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Datum računa" @@ -118,7 +118,7 @@ msgstr "Pošlji opomine" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Znesek" @@ -560,7 +560,7 @@ msgid "Follow Ups" msgstr "Opomini" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Email ni bil poslan,ker partner nima izpolnjen email naslov" @@ -816,7 +816,7 @@ msgid "unknown" msgstr "neznano" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Izpisano poročilo zapadlih plačil" @@ -1106,7 +1106,7 @@ msgstr "Dnevnik spornih postavk" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Opis" diff --git a/addons/account_followup/i18n/sq.po b/addons/account_followup/i18n/sq.po index d0065c04831..d0a11a6acbf 100644 --- a/addons/account_followup/i18n/sq.po +++ b/addons/account_followup/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "" diff --git a/addons/account_followup/i18n/sr.po b/addons/account_followup/i18n/sr.po index a6ab47df33b..d1274c6f498 100644 --- a/addons/account_followup/i18n/sr.po +++ b/addons/account_followup/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Preduzeće" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Datum računa" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "Praćenja" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -702,7 +702,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -948,7 +948,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Opis" diff --git a/addons/account_followup/i18n/sr@latin.po b/addons/account_followup/i18n/sr@latin.po index db9b57fca03..2665b683579 100644 --- a/addons/account_followup/i18n/sr@latin.po +++ b/addons/account_followup/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Preduzeće" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Datum fakture" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "Praćenja" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -701,7 +701,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -947,7 +947,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Opis" diff --git a/addons/account_followup/i18n/sv.po b/addons/account_followup/i18n/sv.po index c409a296386..aafb6678b4b 100644 --- a/addons/account_followup/i18n/sv.po +++ b/addons/account_followup/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Företag" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fakturadatum" @@ -118,7 +118,7 @@ msgstr "Skicka uppföljningar" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Belopp" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Uppföljning" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -702,7 +702,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -948,7 +948,7 @@ msgstr "Inkluderade verifikat märkta som tvistiga" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Beskrivning" diff --git a/addons/account_followup/i18n/tlh.po b/addons/account_followup/i18n/tlh.po index 6e40aaf4eba..858aef6cef7 100644 --- a/addons/account_followup/i18n/tlh.po +++ b/addons/account_followup/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "" diff --git a/addons/account_followup/i18n/tr.po b/addons/account_followup/i18n/tr.po index c6eadc0e05c..35233a0234f 100644 --- a/addons/account_followup/i18n/tr.po +++ b/addons/account_followup/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -27,7 +27,7 @@ msgstr "${user.company_id.name} Ödeme Anımsatıcı" #. module: account_followup #: help:res.partner,latest_followup_level_id:0 msgid "The maximum follow-up level" -msgstr "Enyüksek takip düzeyi" +msgstr "Enyüksek izleme düzeyi" #. module: account_followup #: view:account_followup.stat:0 @@ -38,7 +38,7 @@ msgstr "Gruplandır..." #. module: account_followup #: field:account_followup.print,followup_id:0 msgid "Follow-Up" -msgstr "Takip" +msgstr "İzleme" #. module: account_followup #: view:account_followup.followup.line:0 @@ -81,7 +81,7 @@ msgstr "Şirket" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fatura Tarihi" @@ -104,7 +104,7 @@ msgstr "vadesi geçenler, aşağıdaki işlemleri yapın:" #. module: account_followup #: view:account_followup.followup.line:0 msgid "Follow-up Steps" -msgstr "Takip Adımları" +msgstr "İzleme Adımları" #. module: account_followup #: field:account_followup.print,email_body:0 @@ -114,11 +114,11 @@ msgstr "Eposta Gövdesi" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_print msgid "Send Follow-Ups" -msgstr "Takipleri Gönder" +msgstr "İzlemeleri Gönder" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Tutar" @@ -129,7 +129,7 @@ msgid "" "This is the next action to be taken. It will automatically be set when the " "partner gets a follow-up level that requires a manual action. " msgstr "" -"Bu yapılması gereken sonraki eylemdir. İş Ortağının takip düzeyi elle eylem " +"Bu yapılması gereken sonraki eylemdir. İş Ortağının izleme düzeyi elle eylem " "gerektirir duruma geldiğinde otomatik olarak ayarlanır. " #. module: account_followup @@ -223,7 +223,6 @@ msgstr "" " Bizim hatamız istisna olmak üzere, aşağıdaki tutar ödenmemiş durumdadır. " "Önümüzdeki 8 gün içinde bu ödemeyi gerçekleştirmek için lütfen gerekli " "önlemleri alınız.\n" -"\n" "Bu yazımız gönderilmeden önce bu ödemeyi yaptıysanız lütfen bu yazımızı " "dikkate almayınız. Muhasebe bölümümüzle iletişime geçmekte lütfen tereddüt " "etmeyiniz. \n" @@ -276,7 +275,7 @@ msgstr "Bir Sorumlu Ata" #: field:account_followup.followup,followup_line:0 #: view:res.partner:0 msgid "Follow-up" -msgstr "Takip" +msgstr "İzleme" #. module: account_followup #: report:account_followup.followup.print:0 @@ -311,9 +310,9 @@ msgstr "" "tarihinin \n" " üzerinden geçecek belirli bir gün sayısı ile " "başlatılacak \n" -" takip düzeyleri içinde toplanmıştır. Aynı müşteri " +" izleme düzeyleri içinde toplanmıştır. Aynı müşteri " "için \n" -" vadesi geçen başka faturalar da varsa ençok geciken " +" vadesi geçen başka faturalar da varsa en çok geciken " "\n" " faturaya ait eylemler gerçekleştirilecektir." @@ -330,7 +329,7 @@ msgstr "İş Ortakları" #. module: account_followup #: sql_constraint:account_followup.followup:0 msgid "Only one follow-up per company is allowed" -msgstr "Her firma için yalnız bir takipe izin verilir" +msgstr "Her firma için yalnız bir izlemeye izin verilir" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:254 @@ -361,7 +360,7 @@ msgstr "Epostalar gönder ve mektuplar oluştur" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_customer_followup msgid "Manual Follow-Ups" -msgstr "Elle Takip" +msgstr "Elle İzleme" #. module: account_followup #: view:account_followup.followup.line:0 @@ -449,7 +448,7 @@ msgstr "Borç" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat msgid "Follow-up Statistics" -msgstr "Takip İstatistikleri" +msgstr "İzleme İstatistikleri" #. module: account_followup #: view:res.partner:0 @@ -459,12 +458,12 @@ msgstr "Vade Geçmesi Epostası Gönder" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup_line msgid "Follow-up Criteria" -msgstr "Takip Kriteri" +msgstr "İzleme Kriteri" #. module: account_followup #: help:account_followup.followup.line,sequence:0 msgid "Gives the sequence order when displaying a list of follow-up lines." -msgstr "Takip kalemleri görüntüleme sıralamasını verir." +msgstr "İzleme kalemleri görüntüleme sıralamasını verir." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:166 @@ -486,7 +485,7 @@ msgstr "Bir Mektup Gönder" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_definition_form msgid "Payment Follow-ups" -msgstr "Ödeme Takipleri" +msgstr "Ödeme İzlemeleri" #. module: account_followup #: field:account_followup.followup.line,delay:0 @@ -497,12 +496,12 @@ msgstr "Vade Tarihleri" #: field:account.move.line,followup_line_id:0 #: view:account_followup.stat:0 msgid "Follow-up Level" -msgstr "Takip Seviyesi" +msgstr "İzleme Düzeyi" #. module: account_followup #: field:account_followup.stat,date_followup:0 msgid "Latest followup" -msgstr "Son İzleme" +msgstr "En son İzleme" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_manual_reconcile_followup @@ -512,7 +511,7 @@ msgstr "Faturaları ve Ödemeleri Uzlaştır" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_s msgid "Do Manual Follow-Ups" -msgstr "Elle Takip Yap" +msgstr "Elle İzleme Yap" #. module: account_followup #: report:account_followup.followup.print:0 @@ -527,12 +526,12 @@ msgstr "Eposta Onayı Gönder" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up Entries with period in current year" -msgstr "Geçerli yıl içindeki dönemin Takip Kayıtları" +msgstr "Geçerli yıl içindeki dönemin İzleme Kayıtları" #. module: account_followup #: field:account_followup.stat.by.partner,date_followup:0 msgid "Latest follow-up" -msgstr "Enson Takip" +msgstr "Enson İzleme" #. module: account_followup #: field:account_followup.print,partner_lang:0 @@ -548,7 +547,7 @@ msgstr " eposta(lar) gönderildi" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_print msgid "Print Follow-up & Send Mail to Customers" -msgstr "Müşterilere Takip Yazdır & Posta Gönder" +msgstr "Müşterilere İzleme Yazdır & Posta Gönder" #. module: account_followup #: field:account_followup.followup.line,description:0 @@ -583,7 +582,7 @@ msgid "Follow Ups" msgstr "İzlemeler" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Eposta gönderilemedi çünkü iş ortağı eposta adresi yazılmamış" @@ -591,7 +590,7 @@ msgstr "Eposta gönderilemedi çünkü iş ortağı eposta adresi yazılmamış" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup msgid "Account Follow-up" -msgstr "Hesap Takip" +msgstr "Hesap İzleme" #. module: account_followup #: help:res.partner,payment_responsible_id:0 @@ -635,7 +634,7 @@ msgstr "Mektup ve Eposta Gönder" #. module: account_followup #: view:account_followup.followup:0 msgid "Search Follow-up" -msgstr "Takip Ara" +msgstr "İzleme Ara" #. module: account_followup #: view:res.partner:0 @@ -659,13 +658,13 @@ msgid "" "If not specified by the latest follow-up level, it will send from the " "default email template" msgstr "" -"Son takip düzeyinde belirlenmediyse varsayılan eposta şablonundan " +"Son izleme düzeyinde belirlenmediyse varsayılan eposta şablonundan " "gönderilecektir" #. module: account_followup #: sql_constraint:account_followup.followup.line:0 msgid "Days of the follow-up levels must be different" -msgstr "Takip düzeyi günleri farklı olmalı" +msgstr "İzleme düzeyi günleri farklı olmalı" #. module: account_followup #: view:res.partner:0 @@ -675,7 +674,7 @@ msgstr "Eylemi yapıldı olarak işaretlemek için tıklayın" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_action_followup_stat_follow msgid "Follow-Ups Analysis" -msgstr "Takip Analizi" +msgstr "İzleme Analizi" #. module: account_followup #: help:res.partner,payment_next_action_date:0 @@ -685,31 +684,31 @@ msgid "" "action. Can be practical to set manually e.g. to see if he keeps his " "promises." msgstr "" -"Bu elle takip gerektiğinde olur . İş ortağı elle eylem gerektirecek izleme " -"düzeyine geldiğinde tarih geçerli tarihe ayarlanacaktır. Elle ayarlama " -"kullanışlı olabilir, örn. sözünü tutup tutmadığını görmek için." +"Bu elle izleme gerektirdiğinde olur . İş ortağı elle eylem gerektirecek " +"izleme düzeyine geldiğinde tarih geçerli tarihe ayarlanacaktır. Elle " +"ayarlama kullanışlı olabilir, örn. sözünü tutup tutmadığını görmek için." #. module: account_followup #: view:res.partner:0 msgid "Print overdue payments report independent of follow-up line" -msgstr "Takip kalemlerinden ayrı olarak vadesi geçen ödemeler raporu yazdır" +msgstr "İzleme kalemlerinden ayrı olarak vadesi geçen ödemeler raporu yazdır" #. module: account_followup #: help:account_followup.print,date:0 msgid "" "This field allow you to select a forecast date to plan your follow-ups" -msgstr "Bu alan takiplerinize öngörü planı yapmanızı sağlar." +msgstr "Bu alan izlemelerinizin öngörü planını yapmanızı sağlar." #. module: account_followup #: field:account_followup.print,date:0 msgid "Follow-up Sending Date" -msgstr "Takip Gönderim Tarihi" +msgstr "İzleme Gönderim Tarihi" #. module: account_followup #: view:res.partner:0 #: field:res.partner,payment_responsible_id:0 msgid "Follow-up Responsible" -msgstr "Takip Sorumlusu" +msgstr "İzleme Sorumlusu" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level2 @@ -785,7 +784,7 @@ msgstr "Belge: Müşteri hesap özeti" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_menu msgid "Follow-up Levels" -msgstr "Takip Düzeyleri" +msgstr "İzleme Düzeyleri" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line4 @@ -833,7 +832,7 @@ msgstr "Ödenecek Tutar" #. module: account_followup #: field:account.move.line,followup_date:0 msgid "Latest Follow-up" -msgstr "Son Takip" +msgstr "En son İzleme" #. module: account_followup #: view:account_followup.sending.results:0 @@ -847,7 +846,7 @@ msgid "unknown" msgstr "bilinmeyen" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Yazdırılmış vadesi geçmiş ödemeler raporu" @@ -870,9 +869,9 @@ msgid "" "actions." msgstr "" "Aşağıda bu müşteriye ait işlemler geçmişi\n" -" vardır. Sonraki takip eylemlerinin dışında " +" vardır. Sonraki izleme eylemlerinin dışında " "tutmak için\n" -" \"Takip Yok\"u işaretleyebilirsiniz." +" \"İzleme Yok\"u işaretleyebilirsiniz." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:171 @@ -929,13 +928,13 @@ msgstr "Vadesi Geçmiş Tutar" msgid "" "The maximum follow-up level without taking into account the account move " "lines with litigation" -msgstr "Bir ihtilaf gerektirmeyecek en yüksek takip düzeyi." +msgstr "Bir ihtilaf gerektirmeyecek en yüksek izleme düzeyi." #. module: account_followup #: view:account_followup.stat:0 #: field:res.partner,latest_followup_date:0 msgid "Latest Follow-up Date" -msgstr "Enson Takip Tarihi" +msgstr "Enson İzleme Tarihi" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_default @@ -980,7 +979,7 @@ msgstr "" "önlemleri alınız.\n" "Bu yazımız gönderilmeden önce bu ödemeyi yaptıysanız lütfen bu yazımızı " "dikkate almayınız. Muhasebe bölümümüzle iletişime geçmekte lütfen tereddüt " -"etmeyiniz.\n" +"etmeyiniz. \n" "

\n" "
\n" "Saygılarımızla,\n" @@ -1012,7 +1011,7 @@ msgstr "Ödeme Bildirimi" #. module: account_followup #: view:res.partner:0 msgid "My Follow-ups" -msgstr "Takiplerim" +msgstr "İzlemelerim" #. module: account_followup #: view:account_followup.followup.line:0 @@ -1068,7 +1067,7 @@ msgstr "%s iş ortağının hiç borcu yoktur ve eylem gereksizdir" #. module: account_followup #: model:ir.actions.report.xml,name:account_followup.account_followup_followup_report msgid "Follow-up Report" -msgstr "Takip Raporu" +msgstr "İzleme Raporu" #. module: account_followup #: view:res.partner:0 @@ -1097,7 +1096,7 @@ msgstr "İhtilaf" #. module: account_followup #: field:account_followup.stat.by.partner,max_followup_id:0 msgid "Max Follow Up Level" -msgstr "Enüst İzleme Seviyesi" +msgstr "Enüst İzleme Düzeyi" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:171 @@ -1114,7 +1113,7 @@ msgstr "Sorumlu" #: model:ir.ui.menu,name:account_followup.menu_finance_followup #: view:res.partner:0 msgid "Payment Follow-up" -msgstr "Ödeme Takibi" +msgstr "Ödeme İzlemesi" #. module: account_followup #: view:account_followup.followup.line:0 @@ -1128,7 +1127,7 @@ msgid "" " set the manual actions per customer, according to " "the follow-up levels defined." msgstr "" -"Bu eylem, tanımlanan takip düzeylerine göre takip epostaları,\n" +"Bu eylem, tanımlanan izleme düzeylerine göre izleme epostaları,\n" " basılı mektuplar gönderecektir ve her müşteri için " "elle eylemler \n" " ayarlayacaktır." @@ -1136,7 +1135,7 @@ msgstr "" #. module: account_followup #: field:account_followup.followup.line,name:0 msgid "Follow-Up Action" -msgstr "Takip Eylemi" +msgstr "İzleme Eylemi" #. module: account_followup #: view:account_followup.stat:0 @@ -1146,7 +1145,7 @@ msgstr "Davalı olarak işaretli günlük girişlerini içerir" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Açıklama" @@ -1174,7 +1173,7 @@ msgstr "Bu Mali Yıl" #. module: account_followup #: field:res.partner,latest_followup_level_id_without_lit:0 msgid "Latest Follow-up Level without litigation" -msgstr "İhtilafsız Enson Takip Düzeyi" +msgstr "İhtilafsız Enson İzleme Düzeyi" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_manual_reconcile_receivable @@ -1197,7 +1196,7 @@ msgstr "İş Ortağı kayıtları" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up lines" -msgstr "Takip kalemleri" +msgstr "İzleme kalemleri" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line3 @@ -1254,7 +1253,7 @@ msgid "" "installed\n" " using to top right icon." msgstr "" -"Buraya takip düzeyine uygun olarak\n" +"Buraya izleme düzeyine uygun olarak\n" " bilgilendirme mektubunu yazın. Aşağıdaki\n" " metindeki anahtar kelimeleri kullanabilirsiniz. " "Üst\n" @@ -1266,7 +1265,7 @@ msgstr "" #: view:account_followup.stat:0 #: model:ir.actions.act_window,name:account_followup.action_followup_stat msgid "Follow-ups Sent" -msgstr "Gönderilen Takipler" +msgstr "Gönderilen İzlemeler" #. module: account_followup #: field:account_followup.followup,name:0 @@ -1276,7 +1275,7 @@ msgstr "Adı" #. module: account_followup #: field:res.partner,latest_followup_level_id:0 msgid "Latest Follow-up Level" -msgstr "Enson Takip Düzeyi" +msgstr "Enson İzleme Düzeyi" #. module: account_followup #: field:account_followup.stat,date_move:0 @@ -1287,7 +1286,7 @@ msgstr "İlk Hareket" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat_by_partner msgid "Follow-up Statistics by Partner" -msgstr "İş Ortağına göre Takip İstatistikleri" +msgstr "İş Ortağına göre İzleme İstatistikleri" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:172 @@ -1320,7 +1319,7 @@ msgid "" " " msgstr "" "

\n" -" Takip düzeylerini ve ilişkili eylemlerini tanımlamak için " +" İzleme düzeylerini ve ilişkili eylemlerini tanımlamak için " "tıklayın.\n" "

\n" " Her adım için yapılması gereken eylemleri ve gecikme " @@ -1334,7 +1333,7 @@ msgstr "" #: code:addons/account_followup/wizard/account_followup_print.py:166 #, python-format msgid "Follow-up letter of " -msgstr "Bunun takip mektubu " +msgstr "Bunun izleme mektubu " #. module: account_followup #: view:res.partner:0 @@ -1344,7 +1343,7 @@ msgstr "Bu" #. module: account_followup #: view:account_followup.print:0 msgid "Send follow-ups" -msgstr "Takip gönder" +msgstr "İzleme gönder" #. module: account_followup #: view:account.move.line:0 @@ -1359,7 +1358,7 @@ msgstr "Sıra No" #. module: account_followup #: view:res.partner:0 msgid "Follow-ups To Do" -msgstr "Yapılacak Takipler" +msgstr "Yapılacak İzlemeler" #. module: account_followup #: report:account_followup.followup.print:0 @@ -1384,7 +1383,7 @@ msgstr "" #. module: account_followup #: help:res.partner,latest_followup_date:0 msgid "Latest date that the follow-up level of the partner was changed" -msgstr "İş Ortağının takip düzeyinin değiştirildiği enson tarih" +msgstr "İş Ortağının izleme düzeyinin değiştirildiği enson tarih" #. module: account_followup #: field:account_followup.print,test_print:0 diff --git a/addons/account_followup/i18n/uk.po b/addons/account_followup/i18n/uk.po index 568999316af..633ec9d3ef8 100644 --- a/addons/account_followup/i18n/uk.po +++ b/addons/account_followup/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Компанія" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Послідовності дій" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Опис" diff --git a/addons/account_followup/i18n/vi.po b/addons/account_followup/i18n/vi.po index 594a0ae6c05..a6d2e182176 100644 --- a/addons/account_followup/i18n/vi.po +++ b/addons/account_followup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Công ty" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Ngày Hóa đơn" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Mô tả" diff --git a/addons/account_followup/i18n/zh_CN.po b/addons/account_followup/i18n/zh_CN.po index eaf33ff4734..b365f3a7988 100644 --- a/addons/account_followup/i18n/zh_CN.po +++ b/addons/account_followup/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "公司" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "发票日期" @@ -94,7 +94,7 @@ msgstr "电子邮件主题" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(user_signature)s" -msgstr "" +msgstr "%(user_signature)s" #. module: account_followup #: view:account_followup.followup.line:0 @@ -118,7 +118,7 @@ msgstr "发送催款" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "金额" @@ -133,7 +133,7 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "No Responsible" -msgstr "" +msgstr "没有负责任的" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line2 @@ -219,7 +219,7 @@ msgstr ":伙伴名称" #. module: account_followup #: field:account_followup.followup.line,manual_action_responsible_id:0 msgid "Assign a Responsible" -msgstr "" +msgstr "指定负责人员" #. module: account_followup #: view:account_followup.followup:0 @@ -269,7 +269,7 @@ msgstr "业务伙伴列表" #. module: account_followup #: sql_constraint:account_followup.followup:0 msgid "Only one follow-up per company is allowed" -msgstr "" +msgstr "每个公司只允许一个催款单" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:254 @@ -398,7 +398,7 @@ msgstr "" #. module: account_followup #: field:account_followup.followup.line,delay:0 msgid "Due Days" -msgstr "" +msgstr "截止天数" #. module: account_followup #: field:account.move.line,followup_line_id:0 @@ -414,12 +414,12 @@ msgstr "最近的催款" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_manual_reconcile_followup msgid "Reconcile Invoices & Payments" -msgstr "" +msgstr "核销发票和付款单" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_s msgid "Do Manual Follow-Ups" -msgstr "" +msgstr "手工催款" #. module: account_followup #: report:account_followup.followup.print:0 @@ -450,7 +450,7 @@ msgstr "用业务伙伴的语言发电子邮件" #: code:addons/account_followup/wizard/account_followup_print.py:169 #, python-format msgid " email(s) sent" -msgstr "" +msgstr " 发出邮件" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_print @@ -466,12 +466,12 @@ msgstr "已打印消息" #: code:addons/account_followup/wizard/account_followup_print.py:155 #, python-format msgid "Anybody" -msgstr "" +msgstr "任何人" #. module: account_followup #: help:account_followup.followup.line,send_email:0 msgid "When processing, it will send an email" -msgstr "" +msgstr "处理时,将发出一个email" #. module: account_followup #: view:account_followup.stat.by.partner:0 @@ -481,7 +481,7 @@ msgstr "提醒合作伙伴" #. module: account_followup #: view:res.partner:0 msgid "Print Overdue Payments" -msgstr "" +msgstr "打印逾期支付" #. module: account_followup #: field:account_followup.followup.line,followup_id:0 @@ -490,10 +490,10 @@ msgid "Follow Ups" msgstr "催款" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" -msgstr "" +msgstr "邮件未发出,因为合作伙伴的Email地址没填写" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup @@ -505,7 +505,7 @@ msgstr "催款" msgid "" "Optionally you can assign a user to this field, which will make him " "responsible for the action." -msgstr "" +msgstr "你可以随意指定一个用户到这个字段,将使他负责这个动作" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_sending_results @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "包含有争议的凭证行" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "说明" diff --git a/addons/account_followup/i18n/zh_TW.po b/addons/account_followup/i18n/zh_TW.po index 50e929c4b79..26495b60a14 100644 --- a/addons/account_followup/i18n/zh_TW.po +++ b/addons/account_followup/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "公司" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "發票日期" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "金額" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "催款" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -701,7 +701,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -947,7 +947,7 @@ msgstr "包括訴訟標記的帳簿分錄" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "說明" diff --git a/addons/account_followup/report/account_followup_report.xml b/addons/account_followup/report/account_followup_report.xml index b7c38e89f5e..7f9ea48010b 100644 --- a/addons/account_followup/report/account_followup_report.xml +++ b/addons/account_followup/report/account_followup_report.xml @@ -50,7 +50,7 @@ - + diff --git a/addons/account_followup/wizard/account_followup_print.py b/addons/account_followup/wizard/account_followup_print.py index c14b5c071f6..00ecab7b860 100644 --- a/addons/account_followup/wizard/account_followup_print.py +++ b/addons/account_followup/wizard/account_followup_print.py @@ -50,9 +50,9 @@ class account_followup_stat_by_partner(osv.osv): # to send him follow-ups separately . An assumption that the number of companies will not # reach 10 000 records is made, what should be enough for a time. cr.execute(""" - create or replace view account_followup_stat_by_partner as ( + create view account_followup_stat_by_partner as ( SELECT - l.partner_id * 10000 + l.company_id as id, + l.partner_id * 10000::bigint + l.company_id as id, l.partner_id AS partner_id, min(l.date) AS date_move, max(l.date) AS date_move_last, @@ -67,11 +67,10 @@ class account_followup_stat_by_partner(osv.osv): a.active AND a.type = 'receivable' AND l.reconcile_id is NULL AND - l.partner_id IS NOT NULL AND - (l.blocked = False) + l.partner_id IS NOT NULL GROUP BY l.partner_id, l.company_id - )""") #Blocked is to take into account litigation + )""") class account_followup_sending_results(osv.osv_memory): diff --git a/addons/account_payment/account_payment_view.xml b/addons/account_payment/account_payment_view.xml index aa52d1d443e..982de455063 100644 --- a/addons/account_payment/account_payment_view.xml +++ b/addons/account_payment/account_payment_view.xml @@ -79,7 +79,7 @@ - + diff --git a/addons/account_payment/i18n/am.po b/addons/account_payment/i18n/am.po index 8fd61969110..825fee9e9be 100644 --- a/addons/account_payment/i18n/am.po +++ b/addons/account_payment/i18n/am.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ar.po b/addons/account_payment/i18n/ar.po index 129285d2d01..13d3cef27e6 100644 --- a/addons/account_payment/i18n/ar.po +++ b/addons/account_payment/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/bg.po b/addons/account_payment/i18n/bg.po index 190cce18c5f..fcd602b11fd 100644 --- a/addons/account_payment/i18n/bg.po +++ b/addons/account_payment/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/bs.po b/addons/account_payment/i18n/bs.po index c7e3077fbec..23b76160848 100644 --- a/addons/account_payment/i18n/bs.po +++ b/addons/account_payment/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ca.po b/addons/account_payment/i18n/ca.po index b85ce630619..a96342ba5b3 100644 --- a/addons/account_payment/i18n/ca.po +++ b/addons/account_payment/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/cs.po b/addons/account_payment/i18n/cs.po index 1f5cdd54ed0..4f49caeadb0 100644 --- a/addons/account_payment/i18n/cs.po +++ b/addons/account_payment/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -32,23 +32,23 @@ msgstr "" #. module: account_payment #: field:payment.line,currency:0 msgid "Partner Currency" -msgstr "" +msgstr "Měna protistrany" #. module: account_payment #: view:payment.order:0 msgid "Set to draft" -msgstr "Uložit jako návrh" +msgstr "Uložit jako koncept" #. module: account_payment #: help:payment.order,mode:0 msgid "Select the Payment Mode to be applied." -msgstr "" +msgstr "Zvolte platební metodu, která se má použít." #. module: account_payment #: view:payment.mode:0 #: view:payment.order:0 msgid "Group By..." -msgstr "" +msgstr "Seskupit podle..." #. module: account_payment #: field:payment.order,line_ids:0 @@ -74,7 +74,7 @@ msgstr "" #: field:payment.mode,company_id:0 #: field:payment.order,company_id:0 msgid "Company" -msgstr "" +msgstr "Společnost" #. module: account_payment #: model:res.groups,name:account_payment.group_account_payment diff --git a/addons/account_payment/i18n/da.po b/addons/account_payment/i18n/da.po index 3e1ff5011bb..0368cf10a57 100644 --- a/addons/account_payment/i18n/da.po +++ b/addons/account_payment/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/de.po b/addons/account_payment/i18n/de.po index 600c52876c6..ff90e8b98f7 100644 --- a/addons/account_payment/i18n/de.po +++ b/addons/account_payment/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/el.po b/addons/account_payment/i18n/el.po index 7b4f0596033..6419bceec42 100644 --- a/addons/account_payment/i18n/el.po +++ b/addons/account_payment/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/en_GB.po b/addons/account_payment/i18n/en_GB.po index 71700f79289..1a4a1d3590f 100644 --- a/addons/account_payment/i18n/en_GB.po +++ b/addons/account_payment/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es.po b/addons/account_payment/i18n/es.po index b86f24ed658..eecfeb77d97 100644 --- a/addons/account_payment/i18n/es.po +++ b/addons/account_payment/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_AR.po b/addons/account_payment/i18n/es_AR.po index 7fb69b50f9b..4d92dd50615 100644 --- a/addons/account_payment/i18n/es_AR.po +++ b/addons/account_payment/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_CL.po b/addons/account_payment/i18n/es_CL.po index 585519b067e..05b81b4b774 100644 --- a/addons/account_payment/i18n/es_CL.po +++ b/addons/account_payment/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_CR.po b/addons/account_payment/i18n/es_CR.po index 1d557fddb15..a9e6cc71eca 100644 --- a/addons/account_payment/i18n/es_CR.po +++ b/addons/account_payment/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: account_payment diff --git a/addons/account_payment/i18n/es_EC.po b/addons/account_payment/i18n/es_EC.po index 8451c52d09e..acf9f80fe50 100644 --- a/addons/account_payment/i18n/es_EC.po +++ b/addons/account_payment/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_PY.po b/addons/account_payment/i18n/es_PY.po index 69ec01e455f..4911be7ff40 100644 --- a/addons/account_payment/i18n/es_PY.po +++ b/addons/account_payment/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/et.po b/addons/account_payment/i18n/et.po index e94b2732ebc..e38be0d8489 100644 --- a/addons/account_payment/i18n/et.po +++ b/addons/account_payment/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fa.po b/addons/account_payment/i18n/fa.po index 35e735be625..5b5a0a4dc71 100644 --- a/addons/account_payment/i18n/fa.po +++ b/addons/account_payment/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fi.po b/addons/account_payment/i18n/fi.po index 21c1eb488d1..7316d991300 100644 --- a/addons/account_payment/i18n/fi.po +++ b/addons/account_payment/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fr.po b/addons/account_payment/i18n/fr.po index d4b4dae0eba..272eb6cf8b3 100644 --- a/addons/account_payment/i18n/fr.po +++ b/addons/account_payment/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #~ msgid "Total debit" #~ msgstr "Débit total" diff --git a/addons/account_payment/i18n/gl.po b/addons/account_payment/i18n/gl.po index c885d181557..3a0b11c667f 100644 --- a/addons/account_payment/i18n/gl.po +++ b/addons/account_payment/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hi.po b/addons/account_payment/i18n/hi.po index 13942a37dba..2238c392fd4 100644 --- a/addons/account_payment/i18n/hi.po +++ b/addons/account_payment/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hr.po b/addons/account_payment/i18n/hr.po index eb9f92a7f8f..b91101139f8 100644 --- a/addons/account_payment/i18n/hr.po +++ b/addons/account_payment/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hu.po b/addons/account_payment/i18n/hu.po index 9bfe4215880..806715d470f 100644 --- a/addons/account_payment/i18n/hu.po +++ b/addons/account_payment/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-27 04:36+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -233,7 +233,7 @@ msgstr "Struktúrált" #. module: account_payment #: view:account.bank.statement:0 msgid "Import Payment Lines" -msgstr "Utalási sorok betöltése, importálása" +msgstr "Átutalási sorok importálása" #. module: account_payment #: view:payment.line:0 diff --git a/addons/account_payment/i18n/id.po b/addons/account_payment/i18n/id.po index 7d5c3e49d81..26bf5c40850 100644 --- a/addons/account_payment/i18n/id.po +++ b/addons/account_payment/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/it.po b/addons/account_payment/i18n/it.po index 6f9ae609688..ebd00922541 100644 --- a/addons/account_payment/i18n/it.po +++ b/addons/account_payment/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-18 18: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:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ja.po b/addons/account_payment/i18n/ja.po index 69b0e5a799f..b5a447a2281 100644 --- a/addons/account_payment/i18n/ja.po +++ b/addons/account_payment/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ko.po b/addons/account_payment/i18n/ko.po index 5637d35f689..56677490f4f 100644 --- a/addons/account_payment/i18n/ko.po +++ b/addons/account_payment/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/lt.po b/addons/account_payment/i18n/lt.po index 46431d36f07..530387c4221 100644 --- a/addons/account_payment/i18n/lt.po +++ b/addons/account_payment/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -183,7 +183,7 @@ msgstr "" #. module: account_payment #: view:payment.line:0 msgid "Amount Total" -msgstr "" +msgstr "Viso" #. module: account_payment #: help:payment.order,state:0 diff --git a/addons/account_payment/i18n/lv.po b/addons/account_payment/i18n/lv.po index 0c36de0a6f1..c82e6d7d4bc 100644 --- a/addons/account_payment/i18n/lv.po +++ b/addons/account_payment/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/mk.po b/addons/account_payment/i18n/mk.po index 5ff6085f296..b83136dbe93 100644 --- a/addons/account_payment/i18n/mk.po +++ b/addons/account_payment/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -29,6 +29,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да креирате налог за плаќање.\n" +"

\n" +" Налогот за плаќање е барање за плаќање од вашата компанија " +"за \n" +" плаќање на фактура на добавувач или за поврат на купувач.\n" +"

\n" +" " #. module: account_payment #: field:payment.line,currency:0 @@ -43,7 +51,7 @@ msgstr "Постави на нацрт" #. module: account_payment #: help:payment.order,mode:0 msgid "Select the Payment Mode to be applied." -msgstr "" +msgstr "Изберете режим на плаќање кој ќе биде применет." #. module: account_payment #: view:payment.mode:0 @@ -61,7 +69,7 @@ msgstr "Ставки од уплата" #: field:payment.line,info_owner:0 #: view:payment.order:0 msgid "Owner Account" -msgstr "" +msgstr "Сопственик на сметка" #. module: account_payment #: help:account.invoice,amount_to_pay:0 @@ -69,6 +77,8 @@ msgid "" "The amount which should be paid at the current date\n" "minus the amount which is already in payment order" msgstr "" +"Износ кој треба да биде платен на тековниот датум \n" +"минус износот кој е веќе во налогот за плаќање" #. module: account_payment #: field:payment.line,company_id:0 @@ -80,7 +90,7 @@ msgstr "Компанија" #. module: account_payment #: model:res.groups,name:account_payment.group_account_payment msgid "Accounting / Payments" -msgstr "Сметководство/Уплати" +msgstr "Сметководство / Уплати" #. module: account_payment #: selection:payment.line,state:0 @@ -91,23 +101,23 @@ msgstr "Бесплатно" #: view:payment.order.create:0 #: field:payment.order.create,entries:0 msgid "Entries" -msgstr "Записи" +msgstr "Внесови" #. module: account_payment #: report:payment.order:0 msgid "Used Account" -msgstr "" +msgstr "Употребена сметка" #. module: account_payment #: field:payment.line,ml_maturity_date:0 #: field:payment.order.create,duedate:0 msgid "Due Date" -msgstr "Крајна дата" +msgstr "Краен датум" #. module: account_payment #: view:payment.order.create:0 msgid "_Add to payment order" -msgstr "" +msgstr "_Додади на налог за плаќање" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_account_payment_populate_statement @@ -122,6 +132,8 @@ msgid "" "You cannot cancel an invoice which has already been imported in a payment " "order. Remove it from the following payment order : %s." msgstr "" +"Не може да откажете фактура која е веќе импортирана во налог за плаќање.\n" +"Отстранете ја од следниов налог за плаќање : %s." #. module: account_payment #: code:addons/account_payment/account_invoice.py:43 @@ -149,7 +161,7 @@ msgstr "Откажано" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_order_tree_new msgid "New Payment Order" -msgstr "" +msgstr "Нов налог за плаќање" #. module: account_payment #: report:payment.order:0 @@ -160,18 +172,18 @@ msgstr "Референца" #. module: account_payment #: sql_constraint:payment.line:0 msgid "The payment line name must be unique!" -msgstr "" +msgstr "Името на ставката за плаќање мора да биде уникатно!" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_order_tree #: model:ir.ui.menu,name:account_payment.menu_action_payment_order_form msgid "Payment Orders" -msgstr "" +msgstr "Налози за плаќање" #. module: account_payment #: selection:payment.order,date_prefered:0 msgid "Directly" -msgstr "Дирекно" +msgstr "Директно" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_line_form @@ -184,7 +196,7 @@ msgstr "Ставка од уплата" #. module: account_payment #: view:payment.line:0 msgid "Amount Total" -msgstr "Износ вкупно" +msgstr "Вкупен износ" #. module: account_payment #: help:payment.order,state:0 @@ -193,6 +205,9 @@ msgid "" " Once the bank is confirmed the status is set to 'Confirmed'.\n" " Then the order is paid the status is 'Done'." msgstr "" +"Кога налогот е поставен статусот е 'Нацрт'.\n" +" Откако банката ќе го одобри стстусот се подесува на 'Потврдено'.\n" +" Кога налогот е платен статусот е 'Завршено'." #. module: account_payment #: view:payment.order:0 @@ -203,12 +218,12 @@ msgstr "Потврдено" #. module: account_payment #: help:payment.line,ml_date_created:0 msgid "Invoice Effective Date" -msgstr "" +msgstr "Датум на доспевање на фактурата" #. module: account_payment #: report:payment.order:0 msgid "Execution Type" -msgstr "" +msgstr "Тип на извршување" #. module: account_payment #: selection:payment.line,state:0 @@ -239,12 +254,12 @@ msgstr "Начин на плаќање" #. module: account_payment #: field:payment.line,ml_date_created:0 msgid "Effective Date" -msgstr "Ефективен датум" +msgstr "Датум на доспевање" #. module: account_payment #: field:payment.line,ml_inv_ref:0 msgid "Invoice Ref." -msgstr "" +msgstr "Реф. на фактурата" #. module: account_payment #: help:payment.order,date_prefered:0 @@ -253,6 +268,9 @@ msgid "" "by you.'Directly' stands for the direct execution.'Due date' stands for the " "scheduled date of execution." msgstr "" +"Изберете опција за Налогот за плаќање: 'Фиксно' за датумот кој е назначен од " +"Вас. 'Директно' за директно извршување. 'Краен датум' за закажаниот датум за " +"извршување." #. module: account_payment #: field:payment.order,date_created:0 @@ -262,7 +280,7 @@ msgstr "Датум на креирање" #. module: account_payment #: help:payment.mode,journal:0 msgid "Bank or Cash Journal for the Payment Mode" -msgstr "" +msgstr "Дневник Банка или Готовина за режимот на плаќање" #. module: account_payment #: selection:payment.order,date_prefered:0 @@ -273,17 +291,17 @@ msgstr "Фиксен датум" #: field:payment.line,info_partner:0 #: view:payment.order:0 msgid "Destination Account" -msgstr "Одредишно конто" +msgstr "Одредишна сметка" #. module: account_payment #: view:payment.line:0 msgid "Desitination Account" -msgstr "Одредишно конто" +msgstr "Одредишна сметка" #. module: account_payment #: view:payment.order:0 msgid "Search Payment Orders" -msgstr "" +msgstr "Барај налози за плаќање" #. module: account_payment #: field:payment.line,create_date:0 @@ -293,17 +311,17 @@ msgstr "Креирано" #. module: account_payment #: view:payment.order:0 msgid "Select Invoices to Pay" -msgstr "" +msgstr "Избери фактури за плаќање" #. module: account_payment #: view:payment.line:0 msgid "Currency Amount Total" -msgstr "" +msgstr "Вкупен износ на валута" #. module: account_payment #: view:payment.order:0 msgid "Make Payments" -msgstr "Изврши уплата" +msgstr "Изврши уплати" #. module: account_payment #: field:payment.line,state:0 @@ -320,7 +338,7 @@ msgstr "Партнер" #. module: account_payment #: field:payment.line,bank_statement_line_id:0 msgid "Bank statement line" -msgstr "Ставка од извод" +msgstr "Ставка од банкарски извод" #. module: account_payment #: selection:payment.order,date_prefered:0 @@ -353,6 +371,8 @@ msgid "" "If no payment date is specified, the bank will treat this payment line " "directly" msgstr "" +"Доколку не е назначен датум на плаќање, банката ќе ја третира оваа ставка за " +"уплата директно" #. module: account_payment #: model:ir.model,name:account_payment.model_account_payment_populate_statement @@ -363,12 +383,12 @@ msgstr "" #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "There is no partner defined on the entry line." -msgstr "" +msgstr "Нема дефинирано партнер за оваа ставка на внесот." #. module: account_payment #: help:payment.mode,name:0 msgid "Mode of Payment" -msgstr "" +msgstr "Режим на плаќање" #. module: account_payment #: report:payment.order:0 @@ -383,7 +403,7 @@ msgstr "Тип на плаќање" #. module: account_payment #: help:payment.line,amount_currency:0 msgid "Payment amount in the partner currency" -msgstr "" +msgstr "Износ на уплата во валута на партнерот" #. module: account_payment #: view:payment.order:0 @@ -416,16 +436,17 @@ msgstr "" #: help:payment.order,date_scheduled:0 msgid "Select a date if you have chosen Preferred Date to be fixed." msgstr "" +"Изберете датум доколку сте избрале Преферираниот датум да биде фиксен." #. module: account_payment #: field:account.payment.populate.statement,lines:0 msgid "Payment Lines" -msgstr "Стафки од уплата" +msgstr "Ставки од уплата" #. module: account_payment #: model:ir.model,name:account_payment.model_account_move_line msgid "Journal Items" -msgstr "Ставки во картица" +msgstr "Ставки во дневник" #. module: account_payment #: help:payment.line,move_line_id:0 @@ -462,7 +483,7 @@ msgstr "Датум на извршување" #. module: account_payment #: view:account.payment.populate.statement:0 msgid "ADD" -msgstr "" +msgstr "ADD" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_create_payment_order @@ -492,7 +513,7 @@ msgstr "" #. module: account_payment #: report:payment.order:0 msgid "Invoice Ref" -msgstr "Реф на вактура" +msgstr "Реф на фактура" #. module: account_payment #: field:payment.line,name:0 @@ -502,7 +523,7 @@ msgstr "Вашата референца" #. module: account_payment #: view:payment.order:0 msgid "Payment order" -msgstr "Налог за уплата" +msgstr "Налог за плаќање" #. module: account_payment #: view:payment.line:0 @@ -536,7 +557,7 @@ msgstr "Откажи" #. module: account_payment #: field:payment.line,bank_id:0 msgid "Destination Bank Account" -msgstr "" +msgstr "Сметка на одредишна банка" #. module: account_payment #: view:payment.line:0 @@ -554,22 +575,22 @@ msgstr "Налог за плаќање" #. module: account_payment #: help:payment.line,amount:0 msgid "Payment amount in the company currency" -msgstr "" +msgstr "Износ на уплата во валута на компанијата" #. module: account_payment #: view:payment.order.create:0 msgid "Search Payment lines" -msgstr "" +msgstr "Барај ставки од уплата" #. module: account_payment #: field:payment.line,amount_currency:0 msgid "Amount in Partner Currency" -msgstr "" +msgstr "Износ во валута на партнерот" #. module: account_payment #: field:payment.line,communication2:0 msgid "Communication 2" -msgstr "" +msgstr "Комуникација 2" #. module: account_payment #: field:payment.order,date_scheduled:0 @@ -613,12 +634,12 @@ msgstr "Плаќање" #. module: account_payment #: report:payment.order:0 msgid "Payment Order / Payment" -msgstr "Налог за уплата/Уплата" +msgstr "Налог за плаќање / Плаќање" #. module: account_payment #: field:payment.line,move_line_id:0 msgid "Entry line" -msgstr "Стафка" +msgstr "Ставка на внес" #. module: account_payment #: help:payment.line,communication:0 @@ -641,7 +662,7 @@ msgstr "Банкарска сметка" #: view:payment.line:0 #: view:payment.order:0 msgid "Entry Information" -msgstr "" +msgstr "Информација за внес" #. module: account_payment #: model:ir.model,name:account_payment.model_payment_order_create @@ -679,4 +700,4 @@ msgstr "или" #. module: account_payment #: help:payment.mode,bank_id:0 msgid "Bank Account for the Payment Mode" -msgstr "" +msgstr "Банкарска сметка за режимот на плаќање" diff --git a/addons/account_payment/i18n/mn.po b/addons/account_payment/i18n/mn.po index 94005639e2a..22eaa451295 100644 --- a/addons/account_payment/i18n/mn.po +++ b/addons/account_payment/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -178,7 +178,7 @@ msgstr "Төлбөрийн мөр дахин давтагдах ёсгүй!" #: model:ir.actions.act_window,name:account_payment.action_payment_order_tree #: model:ir.ui.menu,name:account_payment.menu_action_payment_order_form msgid "Payment Orders" -msgstr "Төлбөрийн баримт" +msgstr "Төлбөрийн захиалга" #. module: account_payment #: selection:payment.order,date_prefered:0 diff --git a/addons/account_payment/i18n/nb.po b/addons/account_payment/i18n/nb.po index 7209f6dd72d..e7ffd770fe8 100644 --- a/addons/account_payment/i18n/nb.po +++ b/addons/account_payment/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nl.po b/addons/account_payment/i18n/nl.po index 854eda95696..266aeeadad2 100644 --- a/addons/account_payment/i18n/nl.po +++ b/addons/account_payment/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-12 11:33+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:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -444,7 +444,7 @@ msgstr "Betalingsregels" #. module: account_payment #: model:ir.model,name:account_payment.model_account_move_line msgid "Journal Items" -msgstr "Boekingen" +msgstr "Boekingsregels" #. module: account_payment #: help:payment.line,move_line_id:0 @@ -583,7 +583,7 @@ msgstr "Zoek betalingen" #. module: account_payment #: field:payment.line,amount_currency:0 msgid "Amount in Partner Currency" -msgstr "Bedrag in relatie's valuta" +msgstr "Bedrag in valuta v/d relatie" #. module: account_payment #: field:payment.line,communication2:0 diff --git a/addons/account_payment/i18n/nl_BE.po b/addons/account_payment/i18n/nl_BE.po index 8b7f1263ffd..4e337c31ae0 100644 --- a/addons/account_payment/i18n/nl_BE.po +++ b/addons/account_payment/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/oc.po b/addons/account_payment/i18n/oc.po index 5f904eb907d..db087476d6c 100644 --- a/addons/account_payment/i18n/oc.po +++ b/addons/account_payment/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pl.po b/addons/account_payment/i18n/pl.po index 949993a2819..3a0426526b7 100644 --- a/addons/account_payment/i18n/pl.po +++ b/addons/account_payment/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pt.po b/addons/account_payment/i18n/pt.po index 05862b11fb9..e4a00b9c8e6 100644 --- a/addons/account_payment/i18n/pt.po +++ b/addons/account_payment/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pt_BR.po b/addons/account_payment/i18n/pt_BR.po index 25de1343d0a..a05eeb21e5f 100644 --- a/addons/account_payment/i18n/pt_BR.po +++ b/addons/account_payment/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ro.po b/addons/account_payment/i18n/ro.po index 24894fd0792..2577dfd4207 100644 --- a/addons/account_payment/i18n/ro.po +++ b/addons/account_payment/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ru.po b/addons/account_payment/i18n/ru.po index 2123498e3bd..143a3304bb9 100644 --- a/addons/account_payment/i18n/ru.po +++ b/addons/account_payment/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sl.po b/addons/account_payment/i18n/sl.po index 394d85542b0..5db816f2709 100644 --- a/addons/account_payment/i18n/sl.po +++ b/addons/account_payment/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sq.po b/addons/account_payment/i18n/sq.po index 9cb9aeeea71..d2cb0e38f3a 100644 --- a/addons/account_payment/i18n/sq.po +++ b/addons/account_payment/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sr.po b/addons/account_payment/i18n/sr.po index ea67ccbb86c..05424a843dd 100644 --- a/addons/account_payment/i18n/sr.po +++ b/addons/account_payment/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sr@latin.po b/addons/account_payment/i18n/sr@latin.po index 425ab04ac55..e512c34038f 100644 --- a/addons/account_payment/i18n/sr@latin.po +++ b/addons/account_payment/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sv.po b/addons/account_payment/i18n/sv.po index 9ec14ce1022..e4a5a1db496 100644 --- a/addons/account_payment/i18n/sv.po +++ b/addons/account_payment/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/tlh.po b/addons/account_payment/i18n/tlh.po index 2b9a232ad0d..dbe06f09e21 100644 --- a/addons/account_payment/i18n/tlh.po +++ b/addons/account_payment/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/tr.po b/addons/account_payment/i18n/tr.po index b895415a1ee..d581c975c97 100644 --- a/addons/account_payment/i18n/tr.po +++ b/addons/account_payment/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -129,8 +129,8 @@ msgid "" "You cannot cancel an invoice which has already been imported in a payment " "order. Remove it from the following payment order : %s." msgstr "" -"Ödeme emri içine aktarılan bir faturayı iptal edemezsiniz.\r\n" -"faturayı ödeme emrinden çıkart: %s." +"Ödeme emrine aktarılan bir faturayı iptal edemezsiniz.\r\n" +"Bu faturayı aşağıdaki ödeme emrinden çıkart: %s." #. module: account_payment #: code:addons/account_payment/account_invoice.py:43 diff --git a/addons/account_payment/i18n/uk.po b/addons/account_payment/i18n/uk.po index 6a80b9bbf13..a3f8b9289df 100644 --- a/addons/account_payment/i18n/uk.po +++ b/addons/account_payment/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/vi.po b/addons/account_payment/i18n/vi.po index 5dba538ba7a..d51956f3ad3 100644 --- a/addons/account_payment/i18n/vi.po +++ b/addons/account_payment/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/zh_CN.po b/addons/account_payment/i18n/zh_CN.po index c5ef90562c1..69078614182 100644 --- a/addons/account_payment/i18n/zh_CN.po +++ b/addons/account_payment/i18n/zh_CN.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-27 10:37+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \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:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/zh_TW.po b/addons/account_payment/i18n/zh_TW.po index a1df089aa02..5c206a238c1 100644 --- a/addons/account_payment/i18n/zh_TW.po +++ b/addons/account_payment/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_sequence/i18n/ar.po b/addons/account_sequence/i18n/ar.po index 0c06417692c..e60513db9db 100644 --- a/addons/account_sequence/i18n/ar.po +++ b/addons/account_sequence/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/bg.po b/addons/account_sequence/i18n/bg.po index e7af967b3c0..93b6fbe62cc 100644 --- a/addons/account_sequence/i18n/bg.po +++ b/addons/account_sequence/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/bs.po b/addons/account_sequence/i18n/bs.po new file mode 100644 index 00000000000..3837814c91a --- /dev/null +++ b/addons/account_sequence/i18n/bs.po @@ -0,0 +1,155 @@ +# 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:05+0000\n" +"PO-Revision-Date: 2013-10-29 21:08+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-10-30 05:16+0000\n" +"X-Generator: Launchpad (build 16820)\n" + +#. module: account_sequence +#: view:account.sequence.installer:0 +#: model:ir.actions.act_window,name:account_sequence.action_account_seq_installer +msgid "Account Sequence Application Configuration" +msgstr "Konfiguracija primjene računovodstvenih sekvenci" + +#. module: account_sequence +#: help:account.move,internal_sequence_number:0 +#: help:account.move.line,internal_sequence_number:0 +msgid "Internal Sequence Number" +msgstr "Broj internih sekvenci" + +#. module: account_sequence +#: help:account.sequence.installer,number_next:0 +msgid "Next number of this sequence" +msgstr "Sljedeći broj ove sekvence" + +#. module: account_sequence +#: field:account.sequence.installer,number_next:0 +msgid "Next Number" +msgstr "Sljedeći broj" + +#. module: account_sequence +#: field:account.sequence.installer,number_increment:0 +msgid "Increment Number" +msgstr "Broj uvećanja" + +#. module: account_sequence +#: help:account.sequence.installer,number_increment:0 +msgid "The next number of the sequence will be incremented by this number" +msgstr "Sljedeći broj sekvence će biti uvećan za ovaj broj" + +#. module: account_sequence +#: view:account.sequence.installer:0 +msgid "Configure Your Account Sequence Application" +msgstr "Konfigurišite primjenu vaših sekvenci računovodstva" + +#. module: account_sequence +#: view:account.sequence.installer:0 +msgid "Configure" +msgstr "Konfiguriši" + +#. module: account_sequence +#: help:account.sequence.installer,suffix:0 +msgid "Suffix value of the record for the sequence" +msgstr "Sufiks (poslije brojača) za ovu sekvencu" + +#. module: account_sequence +#: field:account.sequence.installer,company_id:0 +msgid "Company" +msgstr "Kompanija" + +#. module: account_sequence +#: field:account.sequence.installer,padding:0 +msgid "Number padding" +msgstr "Dužina cifre" + +#. module: account_sequence +#: model:ir.model,name:account_sequence.model_account_move_line +msgid "Journal Items" +msgstr "Stavke dnevnika" + +#. module: account_sequence +#: field:account.move,internal_sequence_number:0 +#: field:account.move.line,internal_sequence_number:0 +msgid "Internal Number" +msgstr "Interni broj" + +#. module: account_sequence +#: help:account.sequence.installer,padding:0 +msgid "" +"OpenERP will automatically adds some '0' on the left of the 'Next Number' to " +"get the required padding size." +msgstr "" +"OpenERP će automatski dodati nekoliko '0' sa lijeve strane 'Sljedećeg broja' " +"da bi se dobio odgovarajuća dužina broja" + +#. module: account_sequence +#: field:account.sequence.installer,name:0 +msgid "Name" +msgstr "Naziv" + +#. module: account_sequence +#: field:account.journal,internal_sequence_id:0 +msgid "Internal Sequence" +msgstr "Interna sekvenca" + +#. module: account_sequence +#: help:account.sequence.installer,prefix:0 +msgid "Prefix value of the record for the sequence" +msgstr "Prefiks vrijednost zapisa za sekvencu" + +#. module: account_sequence +#: model:ir.model,name:account_sequence.model_account_move +msgid "Account Entry" +msgstr "Računovodstveni zapis" + +#. module: account_sequence +#: field:account.sequence.installer,suffix:0 +msgid "Suffix" +msgstr "Sufiks" + +#. module: account_sequence +#: view:account.sequence.installer:0 +msgid "title" +msgstr "naslov" + +#. module: account_sequence +#: field:account.sequence.installer,prefix:0 +msgid "Prefix" +msgstr "Prefiks" + +#. module: account_sequence +#: help:account.journal,internal_sequence_id:0 +msgid "" +"This sequence will be used to maintain the internal number for the journal " +"entries related to this journal." +msgstr "" +"Ova sekvenca će se koristiti za održavanje internog broja za dnevničke " +"zapise povezane sa ovim dnevnikom." + +#. module: account_sequence +#: model:ir.model,name:account_sequence.model_account_sequence_installer +msgid "account.sequence.installer" +msgstr "" + +#. module: account_sequence +#: model:ir.model,name:account_sequence.model_account_journal +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_sequence +#: view:account.sequence.installer:0 +msgid "You can enhance the Account Sequence Application by installing ." +msgstr "" +"Možete da unapredite primjenu računovodstvenih sekvenci instaliranjem." diff --git a/addons/account_sequence/i18n/ca.po b/addons/account_sequence/i18n/ca.po index 30898d35bf6..24364a62c97 100644 --- a/addons/account_sequence/i18n/ca.po +++ b/addons/account_sequence/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/cs.po b/addons/account_sequence/i18n/cs.po index 480e6f5ff6b..8982f40aafb 100644 --- a/addons/account_sequence/i18n/cs.po +++ b/addons/account_sequence/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/da.po b/addons/account_sequence/i18n/da.po index 42d464ad61a..5fa9f0b53b1 100644 --- a/addons/account_sequence/i18n/da.po +++ b/addons/account_sequence/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/de.po b/addons/account_sequence/i18n/de.po index 6b791bfc622..633766055f8 100644 --- a/addons/account_sequence/i18n/de.po +++ b/addons/account_sequence/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/el.po b/addons/account_sequence/i18n/el.po index c15be4f9cfd..5dfc97528cf 100644 --- a/addons/account_sequence/i18n/el.po +++ b/addons/account_sequence/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/en_GB.po b/addons/account_sequence/i18n/en_GB.po index bf7439640b3..4dedf232e96 100644 --- a/addons/account_sequence/i18n/en_GB.po +++ b/addons/account_sequence/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es.po b/addons/account_sequence/i18n/es.po index 6fce2892620..358a617c0dd 100644 --- a/addons/account_sequence/i18n/es.po +++ b/addons/account_sequence/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es_CR.po b/addons/account_sequence/i18n/es_CR.po index 7288d0fa81f..ab5d4156790 100644 --- a/addons/account_sequence/i18n/es_CR.po +++ b/addons/account_sequence/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: es\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/es_EC.po b/addons/account_sequence/i18n/es_EC.po index c1941a4ba70..53c9a0babf3 100644 --- a/addons/account_sequence/i18n/es_EC.po +++ b/addons/account_sequence/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es_PY.po b/addons/account_sequence/i18n/es_PY.po index 938a532d9c5..e5fe5280a29 100644 --- a/addons/account_sequence/i18n/es_PY.po +++ b/addons/account_sequence/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/fa.po b/addons/account_sequence/i18n/fa.po index d549cc03d83..9d7bc025f0a 100644 --- a/addons/account_sequence/i18n/fa.po +++ b/addons/account_sequence/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/fr.po b/addons/account_sequence/i18n/fr.po index 436cdc48684..0c2e1f81425 100644 --- a/addons/account_sequence/i18n/fr.po +++ b/addons/account_sequence/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/gl.po b/addons/account_sequence/i18n/gl.po index d868fac0711..6701d384c54 100644 --- a/addons/account_sequence/i18n/gl.po +++ b/addons/account_sequence/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/hr.po b/addons/account_sequence/i18n/hr.po index 176491b09f6..9d7a63f97a3 100644 --- a/addons/account_sequence/i18n/hr.po +++ b/addons/account_sequence/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/hu.po b/addons/account_sequence/i18n/hu.po index 27f107b7bd6..a32e9e8c359 100644 --- a/addons/account_sequence/i18n/hu.po +++ b/addons/account_sequence/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/id.po b/addons/account_sequence/i18n/id.po index 5828dd35f4c..e0ab3a8bf70 100644 --- a/addons/account_sequence/i18n/id.po +++ b/addons/account_sequence/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/it.po b/addons/account_sequence/i18n/it.po index 060cbb28ce1..3d7ef278dc4 100644 --- a/addons/account_sequence/i18n/it.po +++ b/addons/account_sequence/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ja.po b/addons/account_sequence/i18n/ja.po index ee4d49ef41b..5d261d8970b 100644 --- a/addons/account_sequence/i18n/ja.po +++ b/addons/account_sequence/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/lv.po b/addons/account_sequence/i18n/lv.po index 79e7b6dc322..8ace09925a6 100644 --- a/addons/account_sequence/i18n/lv.po +++ b/addons/account_sequence/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/mk.po b/addons/account_sequence/i18n/mk.po index ed2ecc175be..80522085545 100644 --- a/addons/account_sequence/i18n/mk.po +++ b/addons/account_sequence/i18n/mk.po @@ -14,20 +14,20 @@ msgstr "" "MIME-Version: 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:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 #: model:ir.actions.act_window,name:account_sequence.action_account_seq_installer msgid "Account Sequence Application Configuration" -msgstr "" +msgstr "Конфигурирање на апликацијата за секвенца на сметка" #. module: account_sequence #: help:account.move,internal_sequence_number:0 #: help:account.move.line,internal_sequence_number:0 msgid "Internal Sequence Number" -msgstr "" +msgstr "Број на внатрешна секвенца" #. module: account_sequence #: help:account.sequence.installer,number_next:0 @@ -52,7 +52,7 @@ msgstr "Следниот број од секвенцата ќе биде зго #. module: account_sequence #: view:account.sequence.installer:0 msgid "Configure Your Account Sequence Application" -msgstr "" +msgstr "Конфигурирајте ја апликацијата за секвенцата на вашата сметка" #. module: account_sequence #: view:account.sequence.installer:0 @@ -72,12 +72,12 @@ msgstr "Компанија" #. module: account_sequence #: field:account.sequence.installer,padding:0 msgid "Number padding" -msgstr "" +msgstr "Дополнување на број" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_move_line msgid "Journal Items" -msgstr "Ставки во картица" +msgstr "Ставки во дневник" #. module: account_sequence #: field:account.move,internal_sequence_number:0 @@ -110,7 +110,7 @@ msgstr "" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_move msgid "Account Entry" -msgstr "Запис на конто" +msgstr "Внес на сметка" #. module: account_sequence #: field:account.sequence.installer,suffix:0 @@ -133,6 +133,8 @@ msgid "" "This sequence will be used to maintain the internal number for the journal " "entries related to this journal." msgstr "" +"Оваа секвенца ќе се користи за да се одржува внатрешниот број за записите на " +"дневникот поврзани со овој дневник." #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_sequence_installer @@ -148,3 +150,5 @@ msgstr "Дневник" #: view:account.sequence.installer:0 msgid "You can enhance the Account Sequence Application by installing ." msgstr "" +"Можете да ја подобрите апликацијата за секвенцата на сметката преку " +"инсталирање." diff --git a/addons/account_sequence/i18n/mn.po b/addons/account_sequence/i18n/mn.po index 368ed342f93..5513939cfa0 100644 --- a/addons/account_sequence/i18n/mn.po +++ b/addons/account_sequence/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 @@ -27,7 +27,7 @@ msgstr "" #: help:account.move,internal_sequence_number:0 #: help:account.move.line,internal_sequence_number:0 msgid "Internal Sequence Number" -msgstr "" +msgstr "Дотоод Дарааллын Дугаар" #. module: account_sequence #: help:account.sequence.installer,number_next:0 @@ -83,7 +83,7 @@ msgstr "" #: field:account.move,internal_sequence_number:0 #: field:account.move.line,internal_sequence_number:0 msgid "Internal Number" -msgstr "" +msgstr "Дотоод дугаар" #. module: account_sequence #: help:account.sequence.installer,padding:0 @@ -100,7 +100,7 @@ msgstr "" #. module: account_sequence #: field:account.journal,internal_sequence_id:0 msgid "Internal Sequence" -msgstr "" +msgstr "Дотоод дараалал" #. module: account_sequence #: help:account.sequence.installer,prefix:0 diff --git a/addons/account_sequence/i18n/nb.po b/addons/account_sequence/i18n/nb.po index c96a43a86c1..072cb075694 100644 --- a/addons/account_sequence/i18n/nb.po +++ b/addons/account_sequence/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nl.po b/addons/account_sequence/i18n/nl.po index 096dc7284c7..961907fcb9b 100644 --- a/addons/account_sequence/i18n/nl.po +++ b/addons/account_sequence/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-01 16: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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 @@ -77,7 +77,7 @@ msgstr "Nummer verspringing" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_move_line msgid "Journal Items" -msgstr "Boekingen" +msgstr "Boekingsregels" #. module: account_sequence #: field:account.move,internal_sequence_number:0 diff --git a/addons/account_sequence/i18n/nl_BE.po b/addons/account_sequence/i18n/nl_BE.po index 58d707ee477..16ef6cddee9 100644 --- a/addons/account_sequence/i18n/nl_BE.po +++ b/addons/account_sequence/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/pl.po b/addons/account_sequence/i18n/pl.po index d4f5c3ee7aa..224c3a14d5f 100644 --- a/addons/account_sequence/i18n/pl.po +++ b/addons/account_sequence/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 @@ -122,7 +122,7 @@ msgstr "Sufiks" #. module: account_sequence #: view:account.sequence.installer:0 msgid "title" -msgstr "" +msgstr "tytuł" #. module: account_sequence #: field:account.sequence.installer,prefix:0 diff --git a/addons/account_sequence/i18n/pt.po b/addons/account_sequence/i18n/pt.po index 0cd6990533a..2f4f67da276 100644 --- a/addons/account_sequence/i18n/pt.po +++ b/addons/account_sequence/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/pt_BR.po b/addons/account_sequence/i18n/pt_BR.po index 22636cf9e8f..12eb5eecc4b 100644 --- a/addons/account_sequence/i18n/pt_BR.po +++ b/addons/account_sequence/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ro.po b/addons/account_sequence/i18n/ro.po index d9df352872c..35e56565792 100644 --- a/addons/account_sequence/i18n/ro.po +++ b/addons/account_sequence/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ru.po b/addons/account_sequence/i18n/ru.po index 5c041748b31..bd6a02c2d34 100644 --- a/addons/account_sequence/i18n/ru.po +++ b/addons/account_sequence/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sl.po b/addons/account_sequence/i18n/sl.po index 9464d9b2553..279818e2067 100644 --- a/addons/account_sequence/i18n/sl.po +++ b/addons/account_sequence/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sq.po b/addons/account_sequence/i18n/sq.po index e0460b08b28..32d62c3c40c 100644 --- a/addons/account_sequence/i18n/sq.po +++ b/addons/account_sequence/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sr@latin.po b/addons/account_sequence/i18n/sr@latin.po index be3b460209f..fdd171e9148 100644 --- a/addons/account_sequence/i18n/sr@latin.po +++ b/addons/account_sequence/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sv.po b/addons/account_sequence/i18n/sv.po index da3ce321fde..e6fdf5dcc25 100644 --- a/addons/account_sequence/i18n/sv.po +++ b/addons/account_sequence/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/tr.po b/addons/account_sequence/i18n/tr.po index 83a26eeefa9..efb4647bcd3 100644 --- a/addons/account_sequence/i18n/tr.po +++ b/addons/account_sequence/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/vi.po b/addons/account_sequence/i18n/vi.po index 132ad7e7026..abc0e9aee46 100644 --- a/addons/account_sequence/i18n/vi.po +++ b/addons/account_sequence/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/zh_CN.po b/addons/account_sequence/i18n/zh_CN.po index d38db61e87e..490d9c40db5 100644 --- a/addons/account_sequence/i18n/zh_CN.po +++ b/addons/account_sequence/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 07:24+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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/zh_TW.po b/addons/account_sequence/i18n/zh_TW.po index a64047e614a..62db82f3100 100644 --- a/addons/account_sequence/i18n/zh_TW.po +++ b/addons/account_sequence/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_test/i18n/ar.po b/addons/account_test/i18n/ar.po index 164ab18e362..778823d7c10 100644 --- a/addons/account_test/i18n/ar.po +++ b/addons/account_test/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/cs.po b/addons/account_test/i18n/cs.po index 82c85a734dd..63fc81052be 100644 --- a/addons/account_test/i18n/cs.po +++ b/addons/account_test/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/en_GB.po b/addons/account_test/i18n/en_GB.po index cdc49d79f7c..22a2e2ed855 100644 --- a/addons/account_test/i18n/en_GB.po +++ b/addons/account_test/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/es.po b/addons/account_test/i18n/es.po index c02014b8113..4df28ad40eb 100644 --- a/addons/account_test/i18n/es.po +++ b/addons/account_test/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/fr.po b/addons/account_test/i18n/fr.po index 8e8f4c9c6b1..7065c87dd26 100644 --- a/addons/account_test/i18n/fr.po +++ b/addons/account_test/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 @@ -47,6 +47,32 @@ msgid "" " cr.execute(sql)\n" " result = cr.dictfetchall()" msgstr "" +"Le code devrait définir une variable nommée 'result' avec pour valeur le " +"résultat de votre test, et de type liste ou\n" +"dictionnaire. Si 'result' est une liste vide, alors le test fut réussi. " +"Autrement il essaiera\n" +"de traduire et d'imprimer le contenu de 'result'.\n" +"\n" +"Si le 'result' de votre test est un dictionnaire, vous pouvez définir une " +"variable nommée 'column_order' pour indiquer\n" +"dans quel ordre vous voulez imprimer le contenu de 'result'.\n" +"\n" +"En cas de besoin, vous pouvez aussi utiliser les variables suivantes dans " +"votre code:\n" +" * cr: curseur de base de données\n" +" * uid: ID de l'utilisateur actuel\n" +"\n" +"Dans tous les cas, le code doit être des déclarations python correctes avec " +"une indentation correcte (si besoin).\n" +"\n" +"Exemple: \n" +" sql = '''SELECT id, name, ref, date\n" +" FROM account_move_line \n" +" WHERE account_id IN (SELECT id FROM account_account WHERE type " +"= 'view')\n" +" '''\n" +" cr.execute(sql)\n" +" result = cr.dictfetchall()" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_02 @@ -74,12 +100,12 @@ msgstr "Nom du test" #. module: account_test #: report:account.test.assert.print:0 msgid "Accouting tests on" -msgstr "" +msgstr "Comptabilité - Tests en cours" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_01 msgid "Test 1: General balance" -msgstr "" +msgstr "Test 1: Solde global" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_06 @@ -101,7 +127,7 @@ msgstr "Tests" #. module: account_test #: field:accounting.assert.test,desc:0 msgid "Test Description" -msgstr "" +msgstr "Description du test" #. module: account_test #: view:accounting.assert.test:0 @@ -123,13 +149,13 @@ msgstr "" #: model:ir.actions.report.xml,name:account_test.account_assert_test_report #: model:ir.ui.menu,name:account_test.menu_action_license msgid "Accounting Tests" -msgstr "" +msgstr "Tests (Comptabilité)" #. module: account_test #: code:addons/account_test/report/account_test_report.py:74 #, python-format msgid "The test was passed successfully" -msgstr "" +msgstr "Le test a été effectué avec succès." #. module: account_test #: field:accounting.assert.test,active:0 @@ -155,7 +181,7 @@ msgstr "" #. module: account_test #: field:accounting.assert.test,code_exec:0 msgid "Python code" -msgstr "" +msgstr "Source python" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_07 @@ -205,6 +231,8 @@ msgid "" "Check if the balance of the new opened fiscal year matches with last year's " "balance" msgstr "" +"Vérifier si le solde du dernier exercice comptable ouvert correspond au " +"solde de l'exercice précédent" #. module: account_test #: view:accounting.assert.test:0 @@ -219,11 +247,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquer pour créer un test (Comptabilité).\n" +"

\n" +" " #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_01 msgid "Check the balance: Debit sum = Credit sum" -msgstr "" +msgstr "Vérifier le solde : Débit total = Crédit total" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_08 diff --git a/addons/account_test/i18n/hr.po b/addons/account_test/i18n/hr.po index 275241481ad..e2b7618b1a7 100644 --- a/addons/account_test/i18n/hr.po +++ b/addons/account_test/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/hu.po b/addons/account_test/i18n/hu.po index b2d8eb81feb..464b201346b 100644 --- a/addons/account_test/i18n/hu.po +++ b/addons/account_test/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-03 05:26+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/it.po b/addons/account_test/i18n/it.po index 63fa483a331..b5d38b63eba 100644 --- a/addons/account_test/i18n/it.po +++ b/addons/account_test/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/mk.po b/addons/account_test/i18n/mk.po index d43db78b079..f8b9099ed8c 100644 --- a/addons/account_test/i18n/mk.po +++ b/addons/account_test/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 @@ -59,7 +59,7 @@ msgid "" "Check that reconciled invoice for Sales/Purchases has reconciled entries for " "Payable and Receivable Accounts" msgstr "" -"Означете дека порамнетата фактура за Продажби/Набавки има порамнети записи " +"Означете дека порамнетата фактура за Продажби/Набавки има порамнети внесови " "за Сметките Плаќања и Побарувања" #. module: account_test @@ -78,7 +78,7 @@ msgstr "Име на тест" #. module: account_test #: report:account.test.assert.print:0 msgid "Accouting tests on" -msgstr "" +msgstr "Сметководствени тестови на" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_01 @@ -115,12 +115,12 @@ msgstr "Опис" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_06_1 msgid "Check that there's no move for any account with « View » account type" -msgstr "" +msgstr "Означете дека нема движење за сметка со тип на сметка « Приказ »" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_08 msgid "Test 9 : Accounts and partners on account moves" -msgstr "" +msgstr "Тест 9: Сметки и партнери на движења на сметка" #. module: account_test #: model:ir.actions.act_window,name:account_test.action_accounting_assert @@ -178,7 +178,7 @@ msgstr "Тест 8: Заклучно салдо на банкарски изво #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_03 msgid "Test 3: Movement lines" -msgstr "" +msgstr "Тест 3: Ставки на движење" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_05_2 @@ -227,6 +227,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да креирате Сметководствен Тест.\n" +"

\n" +" " #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_01 @@ -237,13 +241,14 @@ msgstr "Провери го салдото: Сума на задолжување #: model:accounting.assert.test,desc:account_test.account_test_08 msgid "Check that general accounts and partners on account moves are active" msgstr "" +"Означете дека општите сметки и партнерите на движењата на сметката се активни" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_06_1 msgid "Test 7: « View  » account type" -msgstr "" +msgstr "Тест 7: Тип на сметка « Приказ  »" #. module: account_test #: view:accounting.assert.test:0 msgid "Code Help" -msgstr "" +msgstr "Код Помош" diff --git a/addons/account_test/i18n/mn.po b/addons/account_test/i18n/mn.po index 97b33c00beb..91379e84555 100644 --- a/addons/account_test/i18n/mn.po +++ b/addons/account_test/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/nb.po b/addons/account_test/i18n/nb.po index e3535a79897..0c80fbb2903 100644 --- a/addons/account_test/i18n/nb.po +++ b/addons/account_test/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/nl.po b/addons/account_test/i18n/nl.po index 9b6fd444d5c..cd021dd9ab8 100644 --- a/addons/account_test/i18n/nl.po +++ b/addons/account_test/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/pt.po b/addons/account_test/i18n/pt.po index 7ffb7b9a90c..80edfca63d8 100644 --- a/addons/account_test/i18n/pt.po +++ b/addons/account_test/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 @@ -101,7 +101,7 @@ msgstr "Testes" #. module: account_test #: field:accounting.assert.test,desc:0 msgid "Test Description" -msgstr "" +msgstr "Descrição do teste" #. module: account_test #: view:accounting.assert.test:0 @@ -129,7 +129,7 @@ msgstr "" #: code:addons/account_test/report/account_test_report.py:74 #, python-format msgid "The test was passed successfully" -msgstr "" +msgstr "O teste passou com êxito" #. module: account_test #: field:accounting.assert.test,active:0 diff --git a/addons/account_test/i18n/pt_BR.po b/addons/account_test/i18n/pt_BR.po index 52cc90db120..797d6b6ab19 100644 --- a/addons/account_test/i18n/pt_BR.po +++ b/addons/account_test/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/ro.po b/addons/account_test/i18n/ro.po index e637e781eb4..cfa26cfe5f9 100644 --- a/addons/account_test/i18n/ro.po +++ b/addons/account_test/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 @@ -85,8 +85,8 @@ msgid "" "Check that reconciled invoice for Sales/Purchases has reconciled entries for " "Payable and Receivable Accounts" msgstr "" -"Verificati daca factura reconciliata pentru Vanzari/Achizitii a reconciliat " -"inregistrarile pentru Conturile de Plati si de Incasari" +"Verificați dacă factura reconciliată pentru Vânzări/Achiziții a reconciliat " +"înregistrarile pentru Conturile de Plăți și de Încasări" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_03 diff --git a/addons/account_test/i18n/ru.po b/addons/account_test/i18n/ru.po index d36d83d2e99..f24a0d63c25 100644 --- a/addons/account_test/i18n/ru.po +++ b/addons/account_test/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-06 05:21+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/sl.po b/addons/account_test/i18n/sl.po index 7467cbbcb6e..a840afa5357 100644 --- a/addons/account_test/i18n/sl.po +++ b/addons/account_test/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/tr.po b/addons/account_test/i18n/tr.po index 8fa008c73cd..5916ead89c9 100644 --- a/addons/account_test/i18n/tr.po +++ b/addons/account_test/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/zh_CN.po b/addons/account_test/i18n/zh_CN.po index 081320aa24a..67aeab3353e 100644 --- a/addons/account_test/i18n/zh_CN.po +++ b/addons/account_test/i18n/zh_CN.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-03-21 19:22+0000\n" -"Last-Translator: Liuming \n" +"PO-Revision-Date: 2013-09-24 02:46+0000\n" +"Last-Translator: DWXXX \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-22 04:57+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-25 05:28+0000\n" +"X-Generator: Launchpad (build 16771)\n" #. module: account_test #: view:accounting.assert.test:0 @@ -106,7 +106,7 @@ msgstr "" #. module: account_test #: view:accounting.assert.test:0 msgid "Description" -msgstr "" +msgstr "描述" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_06_1 @@ -123,13 +123,13 @@ msgstr "" #: model:ir.actions.report.xml,name:account_test.account_assert_test_report #: model:ir.ui.menu,name:account_test.menu_action_license msgid "Accounting Tests" -msgstr "" +msgstr "帐户测试" #. module: account_test #: code:addons/account_test/report/account_test_report.py:74 #, python-format msgid "The test was passed successfully" -msgstr "" +msgstr "测试通过" #. module: account_test #: field:accounting.assert.test,active:0 @@ -155,7 +155,7 @@ msgstr "" #. module: account_test #: field:accounting.assert.test,code_exec:0 msgid "Python code" -msgstr "" +msgstr "Python代码" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_07 @@ -209,7 +209,7 @@ msgstr "" #. module: account_test #: view:accounting.assert.test:0 msgid "Python Code" -msgstr "" +msgstr "Python代码" #. module: account_test #: model:ir.actions.act_window,help:account_test.action_accounting_assert diff --git a/addons/account_voucher/__openerp__.py b/addons/account_voucher/__openerp__.py index a043b15a518..0659e4f4bae 100644 --- a/addons/account_voucher/__openerp__.py +++ b/addons/account_voucher/__openerp__.py @@ -61,6 +61,7 @@ This module manages: 'account_voucher_data.xml', ], 'test' : [ + 'test/account_voucher_users.yml', 'test/case5_suppl_usd_usd.yml', 'test/account_voucher.yml', 'test/sales_receipt.yml', diff --git a/addons/account_voucher/account_voucher_view.xml b/addons/account_voucher/account_voucher_view.xml index 4674d62b6a0..41d3c6fc1f6 100644 --- a/addons/account_voucher/account_voucher_view.xml +++ b/addons/account_voucher/account_voucher_view.xml @@ -130,7 +130,7 @@ - + diff --git a/addons/account_voucher/i18n/ar.po b/addons/account_voucher/i18n/ar.po index f5229846c3e..2f825a14e31 100644 --- a/addons/account_voucher/i18n/ar.po +++ b/addons/account_voucher/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "إلغاء" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "احصائيات القسيمة" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "عنصر يومية" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "خطأ!" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "ملغي" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "ضريبة" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "إستيراد فواتير" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "استلام" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "فترة" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "مورد" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "مدين" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "دفع الفاتورة" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "لا يوجد قانون قاعدة الحساب و قانون ضريبة الحساب!" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "للمراجعة" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "تغيير" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "شهر" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "العملة" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "خطأ في الإعدادات!" @@ -733,7 +734,7 @@ msgid "October" msgstr "أكتوبر" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -813,7 +814,7 @@ msgid "Previous Payments ?" msgstr "المدفوعات السابقة؟" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -845,7 +846,7 @@ msgid "Active" msgstr "نشط" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "الرجاء تعريف تسلسل لليومية" @@ -973,7 +974,7 @@ msgid "Journal Items" msgstr "عناصر اليومية" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1182,7 +1183,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1245,8 +1246,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "اعدادات غير كافية" diff --git a/addons/account_voucher/i18n/bg.po b/addons/account_voucher/i18n/bg.po index 40067995db1..5b1c368105d 100644 --- a/addons/account_voucher/i18n/bg.po +++ b/addons/account_voucher/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Отписване" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "Статистика за ваучери" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "Артикул от дневник" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "Отказани" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "Данък" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "Импортиране на фактури" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "Период" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Доставчик" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "Дебит" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "Плащане на фактура" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "За преглед" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "Месец" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Валута" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -731,7 +732,7 @@ msgid "October" msgstr "Октомври" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -811,7 +812,7 @@ msgid "Previous Payments ?" msgstr "Предишни плащания" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +844,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -971,7 +972,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1180,7 +1181,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1243,8 +1244,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/bs.po b/addons/account_voucher/i18n/bs.po index d4be7c9d091..309995cd43e 100644 --- a/addons/account_voucher/i18n/bs.po +++ b/addons/account_voucher/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -731,7 +732,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -811,7 +812,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +844,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -971,7 +972,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1180,7 +1181,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1243,8 +1244,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/ca.po b/addons/account_voucher/i18n/ca.po index 828ef6e25ac..b4c52af180c 100644 --- a/addons/account_voucher/i18n/ca.po +++ b/addons/account_voucher/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Desajust" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Estadístiques de comprovants" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "Anotació comptable" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "Cancel·lat" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -294,7 +294,7 @@ msgid "Tax" msgstr "Impost" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -345,7 +345,7 @@ msgid "Import Invoices" msgstr "Importa les factures" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -364,7 +364,7 @@ msgid "Receipt" msgstr "Rebut" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -385,7 +385,7 @@ msgstr "Període" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Proveïdor" @@ -406,7 +406,7 @@ msgid "Debit" msgstr "Deure" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -512,7 +512,7 @@ msgid "Pay Invoice" msgstr "Paga factura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "No codi base comptable i codi d'impost comptable!" @@ -566,15 +566,15 @@ msgid "To Review" msgstr "Per revisa" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -628,6 +628,7 @@ msgstr "Mes" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Divisa" @@ -671,7 +672,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -734,7 +735,7 @@ msgid "October" msgstr "Octubre" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -814,7 +815,7 @@ msgid "Previous Payments ?" msgstr "Pagaments previs?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -846,7 +847,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -974,7 +975,7 @@ msgid "Journal Items" msgstr "Apunts comptables" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1183,7 +1184,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1246,8 +1247,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/cs.po b/addons/account_voucher/i18n/cs.po index 5b253a3fe7e..64e24b57748 100644 --- a/addons/account_voucher/i18n/cs.po +++ b/addons/account_voucher/i18n/cs.po @@ -13,45 +13,45 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 msgid "Reconciliation" -msgstr "" +msgstr "Vyrovnání" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" -msgstr "" +msgstr "Odpis" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Ref" -msgstr "" +msgstr "Var. symb. platby" #. module: account_voucher #: view:account.voucher:0 msgid "Total Amount" -msgstr "" +msgstr "Celková částka" #. module: account_voucher #: view:account.voucher:0 msgid "Open Customer Journal Entries" -msgstr "" +msgstr "Otevřít položky deníku zákazníka" #. module: account_voucher #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Group By..." -msgstr "" +msgstr "Seskupit podle..." #. module: account_voucher #: help:account.voucher,writeoff_amount:0 @@ -63,19 +63,19 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(Aktualizovat)" #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.act_pay_bills msgid "Bill Payment" -msgstr "" +msgstr "Vyúčtovat platbu" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 #: model:ir.actions.act_window,name:account_voucher.action_view_account_statement_from_invoice_lines msgid "Import Entries" -msgstr "" +msgstr "Importovat záznamy" #. module: account_voucher #: view:account.voucher:0 @@ -85,43 +85,43 @@ msgstr "" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "March" -msgstr "" +msgstr "Březen" #. module: account_voucher #: field:account.voucher,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepřečtené zprávy" #. module: account_voucher #: view:account.voucher:0 msgid "Pay Bill" -msgstr "" +msgstr "Uhradit účet" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure you want to cancel this receipt?" -msgstr "" +msgstr "Opravdu chcete zrušit tuto účtenku?" #. module: account_voucher #: view:account.voucher:0 msgid "Set to Draft" -msgstr "" +msgstr "Uložit jako koncept" #. module: account_voucher #: help:account.voucher,reference:0 msgid "Transaction reference number." -msgstr "" +msgstr "Variabilní symbol transakce." #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by year of Invoice Date" -msgstr "" +msgstr "Seskupit podle roku fakturačního data" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Obchodník" #. module: account_voucher #: view:account.voucher:0 @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -139,13 +139,13 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Validate" -msgstr "" +msgstr "Schválit" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payments" -msgstr "" +msgstr "Platby dodavatelů" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -167,14 +167,14 @@ msgstr "" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 msgid "Counterpart Account" -msgstr "" +msgstr "Odpovídající účet" #. module: account_voucher #: field:account.voucher,account_id:0 #: field:account.voucher.line,account_id:0 #: field:sale.receipt.report,account_id:0 msgid "Account" -msgstr "" +msgstr "Účet" #. module: account_voucher #: field:account.voucher,line_dr_ids:0 @@ -184,7 +184,7 @@ msgstr "" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 msgid "Ok" -msgstr "" +msgstr "OK" #. module: account_voucher #: field:account.voucher.line,reconcile:0 @@ -197,59 +197,59 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,date_due:0 msgid "Due Date" -msgstr "" +msgstr "Splatnost" #. module: account_voucher #: field:account.voucher,narration:0 msgid "Notes" -msgstr "" +msgstr "Poznámky" #. module: account_voucher #: field:account.voucher,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Zprávy" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "" +msgstr "Nákupní účtenky" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 msgid "Journal Item" -msgstr "" +msgstr "Položka deníku" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" -msgstr "" +msgstr "Chyba!" #. module: account_voucher #: field:account.voucher.line,amount:0 msgid "Amount" -msgstr "" +msgstr "Částka" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Options" -msgstr "" +msgstr "Možnosti platby" #. module: account_voucher #: view:account.voucher:0 msgid "Other Information" -msgstr "" +msgstr "Jiné informace" #. module: account_voucher #: selection:account.voucher,state:0 #: selection:sale.receipt.report,state:0 msgid "Cancelled" -msgstr "" +msgstr "Zrušeno" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -267,44 +267,51 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknět pro vytvoření prodejní účtenky.\n" +"

\n" +" Jakmile je účtenka potvrzena, můžete zaznamenat platbu\n" +" zákazníka spojenou s touto účtenkou.\n" +"

\n" +" " #. module: account_voucher #: help:account.voucher,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Pokud je zaškrtnuto, nové zprávy vyžadují vaši pozornost." #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "" +msgstr "Řádek bankovního výpisu" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,day:0 msgid "Day" -msgstr "" +msgstr "Den" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,tax_id:0 msgid "Tax" -msgstr "" +msgstr "DPH" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Neplatná akce!" #. module: account_voucher #: field:account.voucher,comment:0 msgid "Counterpart Comment" -msgstr "" +msgstr "Odpovídající komentář" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 msgid "Analytic Account" -msgstr "" +msgstr "Analytický účet" #. module: account_voucher #: help:account.voucher,message_summary:0 @@ -312,6 +319,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 záznamy o komunikaci (počet zpráv, …). Tento souhrn je přímo v HTML " +"formátu aby mohl být vložen do zobrazení kanban." #. module: account_voucher #: view:account.voucher:0 @@ -321,12 +330,12 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Information" -msgstr "" +msgstr "Platební údaje" #. module: account_voucher #: view:account.voucher:0 msgid "(update)" -msgstr "" +msgstr "(aktualizovat)" #. module: account_voucher #: view:account.voucher:0 @@ -334,15 +343,15 @@ msgstr "" #: view:sale.receipt.report:0 #: selection:sale.receipt.report,state:0 msgid "Draft" -msgstr "" +msgstr "Koncept" #. module: account_voucher #: view:account.bank.statement:0 msgid "Import Invoices" -msgstr "" +msgstr "Importovat faktury" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -358,10 +367,10 @@ msgstr "" #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Receipt" -msgstr "" +msgstr "Účtenka" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -378,14 +387,14 @@ msgstr "" #: view:account.voucher:0 #: field:account.voucher,period_id:0 msgid "Period" -msgstr "" +msgstr "Období" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" -msgstr "" +msgstr "Dodavatel" #. module: account_voucher #: view:account.voucher:0 @@ -395,7 +404,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Sledující" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -403,7 +412,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -418,12 +427,12 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,type:0 msgid "Type" -msgstr "" +msgstr "Druh" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Pro-forma Vouchers" -msgstr "" +msgstr "Proforma účtenky" #. module: account_voucher #: view:account.voucher:0 @@ -446,7 +455,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Open Supplier Journal Entries" -msgstr "" +msgstr "Otevřít položky deníku dodavatele" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_review_voucher_list @@ -456,7 +465,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,name:0 msgid "Memo" -msgstr "" +msgstr "Poznámka" #. module: account_voucher #: view:account.voucher:0 @@ -471,12 +480,12 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Information" -msgstr "" +msgstr "Údaje dokladu" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "July" -msgstr "" +msgstr "Červenec" #. module: account_voucher #: help:account.voucher,state:0 @@ -494,22 +503,22 @@ msgstr "" #. module: account_voucher #: field:account.voucher,writeoff_amount:0 msgid "Difference Amount" -msgstr "" +msgstr "Částa rozdílu" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,due_delay:0 msgid "Avg. Due Delay" -msgstr "" +msgstr "Průměrné zpozdění po splatnosti" #. module: account_voucher #: code:addons/account_voucher/invoice.py:34 #, python-format msgid "Pay Invoice" -msgstr "" +msgstr "Uhradit fakturu" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -517,7 +526,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,tax_amount:0 msgid "Tax Amount" -msgstr "" +msgstr "DPH" #. module: account_voucher #: view:sale.receipt.report:0 @@ -549,29 +558,29 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Paid Amount" -msgstr "" +msgstr "Částka uhrazená" #. module: account_voucher #: field:account.voucher,payment_option:0 msgid "Payment Difference" -msgstr "" +msgstr "Rozdíl platby" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,audit:0 msgid "To Review" -msgstr "" +msgstr "Ke kontrole" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -599,35 +608,36 @@ msgstr "" #. module: account_voucher #: view:account.invoice:0 msgid "Register Payment" -msgstr "" +msgstr "Zaznamenat platbu" #. module: account_voucher #: field:account.statement.from.invoice.lines,line_ids:0 msgid "Invoices" -msgstr "" +msgstr "Faktury" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "December" -msgstr "" +msgstr "Prosinec" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by month of Invoice Date" -msgstr "" +msgstr "Skupina podle měsíce data faktury" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,month:0 msgid "Month" -msgstr "" +msgstr "Měsíc" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Měna" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -655,7 +665,7 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,company_id:0 msgid "Company" -msgstr "" +msgstr "Společnost" #. module: account_voucher #: help:account.voucher,paid:0 @@ -668,22 +678,22 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" -msgstr "" +msgstr "Chyba nastavení!" #. module: account_voucher #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Draft Vouchers" -msgstr "" +msgstr "Koncepty účtenek" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,price_total_tax:0 msgid "Total With Tax" -msgstr "" +msgstr "Celkem s DPH" #. module: account_voucher #: view:account.voucher:0 @@ -695,7 +705,7 @@ msgstr "" #: field:account.voucher,state:0 #: view:sale.receipt.report:0 msgid "Status" -msgstr "" +msgstr "Stav" #. module: account_voucher #: view:account.voucher:0 @@ -706,17 +716,17 @@ msgstr "" #: view:account.statement.from.invoice.lines:0 #: view:account.voucher:0 msgid "or" -msgstr "" +msgstr "nebo" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "August" -msgstr "" +msgstr "Srpen" #. module: account_voucher #: view:account.voucher:0 msgid "Validate Payment" -msgstr "" +msgstr "Ověřit platbu" #. module: account_voucher #: help:account.voucher,audit:0 @@ -724,22 +734,24 @@ msgid "" "Check this box if you are unsure of that journal entry and if you want to " "note it as 'to be reviewed' by an accounting expert." msgstr "" +"Zaškrtněte toto pole, pokud si nejste jisti záznamem deníku a chcete jej " +"označit jako 'ke kontrole' účetním odborníkem." #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "October" -msgstr "" +msgstr "Říjen" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" -msgstr "" +msgstr "Prosím aktivujte posloupnost zvoleného deníku!" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "June" -msgstr "" +msgstr "Červen" #. module: account_voucher #: field:account.voucher,payment_rate_currency_id:0 @@ -749,45 +761,45 @@ msgstr "" #. module: account_voucher #: field:account.voucher,paid:0 msgid "Paid" -msgstr "" +msgstr "Uhrazeno" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "Prodejní účtenky" #. module: account_voucher #: field:account.voucher,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Sleduje" #. module: account_voucher #: field:account.voucher,analytic_id:0 msgid "Write-Off Analytic Account" -msgstr "" +msgstr "Analytický účet odpisů" #. module: account_voucher #: field:account.voucher,date:0 #: field:account.voucher.line,date_original:0 #: field:sale.receipt.report,date:0 msgid "Date" -msgstr "" +msgstr "Datum" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "November" -msgstr "" +msgstr "Listopad" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Rozšířené filtry…" #. module: account_voucher #: field:account.voucher,paid_amount_in_company_currency:0 msgid "Paid Amount in Company Currency" -msgstr "" +msgstr "Uhrazená částka v měně společnosti" #. module: account_voucher #: field:account.bank.statement.line,amount_reconciled:0 @@ -798,7 +810,7 @@ msgstr "" #: selection:account.voucher,pay_now:0 #: selection:sale.receipt.report,pay_now:0 msgid "Pay Directly" -msgstr "" +msgstr "Uhrazeno přímo" #. module: account_voucher #: field:account.voucher.line,type:0 @@ -808,18 +820,18 @@ msgstr "" #. module: account_voucher #: field:account.voucher,pre_line:0 msgid "Previous Payments ?" -msgstr "" +msgstr "Předchozí platby?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." -msgstr "" +msgstr "Faktura, kterou chcete uhradit, již není platná." #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "January" -msgstr "" +msgstr "Leden" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -830,63 +842,63 @@ msgstr "" #. module: account_voucher #: model:ir.model,name:account_voucher.model_res_company msgid "Companies" -msgstr "" +msgstr "Společnosti" #. module: account_voucher #: field:account.voucher,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Souhrn" #. module: account_voucher #: field:account.voucher,active:0 msgid "Active" -msgstr "" +msgstr "Aktivní" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." -msgstr "" +msgstr "Prosím určete posloupnost deníku." #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.act_pay_voucher #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "" +msgstr "Platby zákazníka" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "" +msgstr "Analýza prodejních účtenek" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by Invoice Date" -msgstr "" +msgstr "Seskupit podle fakturačního data" #. module: account_voucher #: view:account.voucher:0 msgid "Post" -msgstr "" +msgstr "Příspěvek" #. module: account_voucher #: view:account.voucher:0 msgid "Invoices and outstanding transactions" -msgstr "" +msgstr "Faktury a nevyřízené transakce" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,price_total:0 msgid "Total Without Tax" -msgstr "" +msgstr "Celkem bez DPH" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Date" -msgstr "" +msgstr "Datum dokladu" #. module: account_voucher #: view:account.voucher:0 @@ -902,7 +914,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,number:0 msgid "Number" -msgstr "" +msgstr "Číslo" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -912,22 +924,22 @@ msgstr "" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement msgid "Bank Statement" -msgstr "" +msgstr "Výpis z bankovního účtu" #. module: account_voucher #: view:account.bank.statement:0 msgid "onchange_amount(amount)" -msgstr "" +msgstr "onchange_amount(amount)" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "September" -msgstr "" +msgstr "Září" #. module: account_voucher #: view:account.voucher:0 msgid "Sales Information" -msgstr "" +msgstr "Údaje prodeje" #. module: account_voucher #: view:account.voucher:0 @@ -939,7 +951,7 @@ msgstr "" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_invoice msgid "Invoice" -msgstr "" +msgstr "Faktura" #. module: account_voucher #: view:account.voucher:0 @@ -950,48 +962,48 @@ msgstr "" #: view:account.statement.from.invoice.lines:0 #: view:account.voucher:0 msgid "Cancel" -msgstr "" +msgstr "Zrušit" #. module: account_voucher #: model:ir.actions.client,name:account_voucher.action_client_invoice_menu msgid "Open Invoicing Menu" -msgstr "" +msgstr "Otevřít nabídku fakturace" #. module: account_voucher #: selection:account.voucher,state:0 #: view:sale.receipt.report:0 #: selection:sale.receipt.report,state:0 msgid "Pro-forma" -msgstr "" +msgstr "Proforma" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,move_ids:0 msgid "Journal Items" -msgstr "" +msgstr "Položky deníku" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." -msgstr "" +msgstr "Prosím určete výchozí účty má dáti/dal deníku \"%s\"." #. module: account_voucher #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Purchase" -msgstr "" +msgstr "Nákup" #. module: account_voucher #: view:account.invoice:0 #: view:account.voucher:0 msgid "Pay" -msgstr "" +msgstr "Uhradit" #. module: account_voucher #: view:account.voucher:0 msgid "Currency Options" -msgstr "" +msgstr "Možnosti měny" #. module: account_voucher #: help:account.voucher,payment_option:0 @@ -1023,22 +1035,22 @@ msgstr "" #. module: account_voucher #: field:account.voucher,payment_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "Směnný kurz" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Method" -msgstr "" +msgstr "Způsob platby" #. module: account_voucher #: field:account.voucher.line,name:0 msgid "Description" -msgstr "" +msgstr "Popis" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "May" -msgstr "" +msgstr "Květen" #. module: account_voucher #: view:account.voucher:0 @@ -1051,12 +1063,12 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,journal_id:0 msgid "Journal" -msgstr "" +msgstr "Deník" #. module: account_voucher #: view:account.voucher:0 msgid "Internal Notes" -msgstr "" +msgstr "Interní poznámky" #. module: account_voucher #: view:account.voucher:0 @@ -1067,12 +1079,12 @@ msgstr "" #. module: account_voucher #: field:account.voucher.line,amount_original:0 msgid "Original Amount" -msgstr "" +msgstr "Původní částka" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Receipt" -msgstr "" +msgstr "Nákupní účtenka" #. module: account_voucher #: help:account.voucher,payment_rate:0 @@ -1088,7 +1100,7 @@ msgstr "" #: field:sale.receipt.report,pay_now:0 #: selection:sale.receipt.report,type:0 msgid "Payment" -msgstr "" +msgstr "Platba" #. module: account_voucher #: view:account.voucher:0 @@ -1101,28 +1113,28 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Customer" -msgstr "" +msgstr "Zákazník" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "February" -msgstr "" +msgstr "Únor" #. module: account_voucher #: view:account.voucher:0 msgid "Supplier Invoices and Outstanding transactions" -msgstr "" +msgstr "Faktury dodavatelů a nevyřízené transakce" #. module: account_voucher #: field:account.voucher,reference:0 msgid "Ref #" -msgstr "" +msgstr "Zn. #" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,year:0 msgid "Year" -msgstr "" +msgstr "Rok" #. module: account_voucher #: field:account.config.settings,income_currency_exchange_account_id:0 @@ -1134,12 +1146,12 @@ msgstr "" #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Sale" -msgstr "" +msgstr "Prodej" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "April" -msgstr "" +msgstr "Duben" #. module: account_voucher #: help:account.voucher,tax_id:0 @@ -1149,28 +1161,28 @@ msgstr "" #. module: account_voucher #: field:account.voucher,type:0 msgid "Default Type" -msgstr "" +msgstr "Výchozí druh" #. module: account_voucher #: help:account.voucher,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Zprávy a historie komunikace" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines msgid "Entries by Statement from Invoices" -msgstr "" +msgstr "Položky podle vyúčtování z faktur" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,amount:0 msgid "Total" -msgstr "" +msgstr "Celkem" #. module: account_voucher #: field:account.voucher,move_id:0 msgid "Account Entry" -msgstr "" +msgstr "Účetní záznam" #. module: account_voucher #: constraint:account.bank.statement.line:0 @@ -1180,7 +1192,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1193,12 +1205,12 @@ msgstr "" #. module: account_voucher #: model:mail.message.subtype,name:account_voucher.mt_voucher_state_change msgid "Status Change" -msgstr "" +msgstr "Změna stavu" #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Keep Open" -msgstr "" +msgstr "Ponechat otevřené" #. module: account_voucher #: field:account.voucher,line_ids:0 @@ -1211,17 +1223,17 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,delay_to_pay:0 msgid "Avg. Delay To Pay" -msgstr "" +msgstr "Průměrné zpoždění úhrady" #. module: account_voucher #: field:account.voucher.line,untax_amount:0 msgid "Untax Amount" -msgstr "" +msgstr "Částka bez DPH" #. module: account_voucher #: model:ir.model,name:account_voucher.model_sale_receipt_report msgid "Sales Receipt Statistics" -msgstr "" +msgstr "Statistiky prodejních účtenek" #. module: account_voucher #: view:account.voucher:0 @@ -1230,7 +1242,7 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Partner" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 @@ -1243,11 +1255,11 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" -msgstr "" +msgstr "Nedostatečné nastavení!" #. module: account_voucher #: help:account.voucher,active:0 @@ -1256,3 +1268,6 @@ msgid "" "inactive, which allow to hide the customer/supplier payment while the bank " "statement isn't confirmed." msgstr "" + +#~ msgid "Sales Receipt" +#~ msgstr "Účtenka" diff --git a/addons/account_voucher/i18n/da.po b/addons/account_voucher/i18n/da.po index 76c18f883c6..fedcfad1889 100644 --- a/addons/account_voucher/i18n/da.po +++ b/addons/account_voucher/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/de.po b/addons/account_voucher/i18n/de.po index c61bb01483b..e69c132e593 100644 --- a/addons/account_voucher/i18n/de.po +++ b/addons/account_voucher/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Abschreibung" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Statistik Zahlungsbelege" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -231,8 +231,8 @@ msgid "Journal Item" msgstr "Journal Buchung" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Fehler !" @@ -259,7 +259,7 @@ msgid "Cancelled" msgstr "Abgebrochen" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -311,7 +311,7 @@ msgid "Tax" msgstr "Steuer" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Diese Aktion ist fehlerhaft !" @@ -365,7 +365,7 @@ msgid "Import Invoices" msgstr "Importiere Rechnungen" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Falsche Belegzeile" @@ -384,7 +384,7 @@ msgid "Receipt" msgstr "Zahlungsbestätigung" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -408,7 +408,7 @@ msgstr "Periode" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Lieferant" @@ -429,7 +429,7 @@ msgid "Debit" msgstr "Konto belasten (Soll)" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Es ist nicht möglich das Journal zu ändern !" @@ -551,7 +551,7 @@ msgid "Pay Invoice" msgstr "Zahle Rechnung" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Kein Steuerfinanzkonto und Steuerkonto definiert!" @@ -596,7 +596,7 @@ msgstr "" #: field:account.config.settings,expense_currency_exchange_account_id:0 #: field:res.company,expense_currency_exchange_account_id:0 msgid "Loss Exchange Rate Account" -msgstr "Kursverlust Konto" +msgstr "Konto für Kursaufwendungen" #. module: account_voucher #: view:account.voucher:0 @@ -615,15 +615,15 @@ msgid "To Review" msgstr "Zu Prüfen" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "Ändern" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -682,6 +682,7 @@ msgstr "Monat" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Währung" @@ -725,7 +726,7 @@ msgid "Reconcile Payment Balance" msgstr "OP-Ausgleich Saldo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Konfigurationsfehler !" @@ -790,7 +791,7 @@ msgid "October" msgstr "Oktober" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Bitte aktivieren Sie die Nummernfolge für das gewählte Journal !" @@ -870,7 +871,7 @@ msgid "Previous Payments ?" msgstr "Vorherige Zahlungen?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "Die Rechnung, die bezahlt werden soll, ist inzwischen ungültig." @@ -902,7 +903,7 @@ msgid "Active" msgstr "Aktiv" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Bitte definieren Sie eine Nummernfolge für dieses Journal." @@ -1030,7 +1031,7 @@ msgid "Journal Items" msgstr "Buchungsjournale" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1202,7 +1203,7 @@ msgstr "Jahr" #: field:account.config.settings,income_currency_exchange_account_id:0 #: field:res.company,income_currency_exchange_account_id:0 msgid "Gain Exchange Rate Account" -msgstr "Kursverlust Konto" +msgstr "Konto für Kurserträge" #. module: account_voucher #: selection:account.voucher,type:0 @@ -1256,7 +1257,7 @@ msgstr "" "Bankauszug." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Offene oder bezahlte Belege können nicht storniert werden" @@ -1319,8 +1320,8 @@ msgid "Status changed" msgstr "Status wurde geändert" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Unzureichende Konfiguration !" diff --git a/addons/account_voucher/i18n/el.po b/addons/account_voucher/i18n/el.po index f2793dd33e0..5bbf7166a58 100644 --- a/addons/account_voucher/i18n/el.po +++ b/addons/account_voucher/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Παραγραφή" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "Στοιχείο Ημερολογίου" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "Ακυρώθηκε" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "Φόρος" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "Εισαγωγή Τιμολογίων" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "Απόδειξη" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "Περίοδος" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Πριμηθευτής" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "Χρέωση" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "Τιμολόγιο Πληρωμής" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "Για Επισκόπηση" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "Μήνας" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Νόμισμα" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "Οκτώβριος" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "Προηγούμενες Πληρωμές ;" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "Στοιχεία Ημερολογίου" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/en_GB.po b/addons/account_voucher/i18n/en_GB.po index 426bcd8b2f7..5103474d1ea 100644 --- a/addons/account_voucher/i18n/en_GB.po +++ b/addons/account_voucher/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Write-Off" @@ -132,7 +132,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -224,8 +224,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -252,7 +252,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -294,7 +294,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -345,7 +345,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -364,7 +364,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -385,7 +385,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -406,7 +406,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -512,7 +512,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -566,15 +566,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -628,6 +628,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -671,7 +672,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -734,7 +735,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -814,7 +815,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -846,7 +847,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -974,7 +975,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1183,7 +1184,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1246,8 +1247,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/es.po b/addons/account_voucher/i18n/es.po index 8fec335419f..6d5cdd5885a 100644 --- a/addons/account_voucher/i18n/es.po +++ b/addons/account_voucher/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "Parámetros de configuración contable" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Desajuste" @@ -131,7 +131,7 @@ msgid "Voucher Statistics" msgstr "Estadísticas de comprobantes" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -232,8 +232,8 @@ msgid "Journal Item" msgstr "Apunte contable" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "¡Error!" @@ -260,7 +260,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -312,7 +312,7 @@ msgid "Tax" msgstr "Impuesto" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "¡Acción no válida!" @@ -365,7 +365,7 @@ msgid "Import Invoices" msgstr "Importar facturas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Línea de comprobante errónea" @@ -384,7 +384,7 @@ msgid "Receipt" msgstr "Recibo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -408,7 +408,7 @@ msgstr "Período" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Proveedor" @@ -429,7 +429,7 @@ msgid "Debit" msgstr "Debe" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "¡Imposible cambiar el diario!" @@ -549,7 +549,7 @@ msgid "Pay Invoice" msgstr "Pagar factura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "¡No código base contable y código impuesto contable!" @@ -611,15 +611,15 @@ msgid "To Review" msgstr "A revisar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "cambio" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -677,6 +677,7 @@ msgstr "Mes" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Dinero corriente" @@ -720,7 +721,7 @@ msgid "Reconcile Payment Balance" msgstr "Conciliar saldo del pago" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "¡Error de configuración!" @@ -785,7 +786,7 @@ msgid "October" msgstr "Octubre" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "¡Active por favor la secuencia del diario seleccionado!" @@ -865,7 +866,7 @@ msgid "Previous Payments ?" msgstr "¿Pagos previos?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "La factura que iba a pagar ya no es válida." @@ -897,7 +898,7 @@ msgid "Active" msgstr "Activo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Por favor defina una secuencia en el diario." @@ -1025,7 +1026,7 @@ msgid "Journal Items" msgstr "Apuntes contables" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1251,7 +1252,7 @@ msgstr "" "El importe del comprobante debe ser el mismo que el de la línea del extracto." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "No se pueden borrar comprobantes que ya están abiertos o pagados." @@ -1314,8 +1315,8 @@ msgid "Status changed" msgstr "Estado cambiado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "¡Configuraciín insuficiente!" diff --git a/addons/account_voucher/i18n/es_AR.po b/addons/account_voucher/i18n/es_AR.po index 266168bd33d..923dd1e57e6 100644 --- a/addons/account_voucher/i18n/es_AR.po +++ b/addons/account_voucher/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "Período" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "Debe" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Moneda" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -731,7 +732,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -811,7 +812,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +844,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -971,7 +972,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1180,7 +1181,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1243,8 +1244,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/es_CR.po b/addons/account_voucher/i18n/es_CR.po index 14ace8540e9..f920bbc4189 100644 --- a/addons/account_voucher/i18n/es_CR.po +++ b/addons/account_voucher/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: account_voucher @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Desajuste" @@ -132,7 +132,7 @@ msgid "Voucher Statistics" msgstr "Estadísticas de comprobantes" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -224,8 +224,8 @@ msgid "Journal Item" msgstr "Apunte contable" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -252,7 +252,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -296,7 +296,7 @@ msgid "Tax" msgstr "Impuesto" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -347,7 +347,7 @@ msgid "Import Invoices" msgstr "Importar facturas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -366,7 +366,7 @@ msgid "Receipt" msgstr "Recibo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -387,7 +387,7 @@ msgstr "Período" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Proveedor" @@ -408,7 +408,7 @@ msgid "Debit" msgstr "Debe" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -514,7 +514,7 @@ msgid "Pay Invoice" msgstr "Pagar factura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "¡No código base contable y código impuesto contable!" @@ -568,15 +568,15 @@ msgid "To Review" msgstr "A revisar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "cambio" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -632,6 +632,7 @@ msgstr "Mes" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Dinero corriente" @@ -675,7 +676,7 @@ msgid "Reconcile Payment Balance" msgstr "Pago del saldo de conciliación" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -740,7 +741,7 @@ msgid "October" msgstr "Octubre" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -820,7 +821,7 @@ msgid "Previous Payments ?" msgstr "¿Pagos previos?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -852,7 +853,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -980,7 +981,7 @@ msgid "Journal Items" msgstr "Apuntes contables" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1195,7 +1196,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1258,8 +1259,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/es_EC.po b/addons/account_voucher/i18n/es_EC.po index c1faa2ae30c..769cd93de32 100644 --- a/addons/account_voucher/i18n/es_EC.po +++ b/addons/account_voucher/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Ajuste" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "Estadísticas de Comprobantes" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "Items de Diario" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -293,7 +293,7 @@ msgid "Tax" msgstr "Impuesto" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -344,7 +344,7 @@ msgid "Import Invoices" msgstr "Importar Facturas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -363,7 +363,7 @@ msgid "Receipt" msgstr "Recibo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -384,7 +384,7 @@ msgstr "Período" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Proveedor" @@ -405,7 +405,7 @@ msgid "Debit" msgstr "Debe" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -511,7 +511,7 @@ msgid "Pay Invoice" msgstr "Pagar Factura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "No hay cuenta base ni cuenta de impuesto" @@ -565,15 +565,15 @@ msgid "To Review" msgstr "A revisar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "cambio" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -627,6 +627,7 @@ msgstr "Mes" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Dinero corriente" @@ -670,7 +671,7 @@ msgid "Reconcile Payment Balance" msgstr "Conciliar Saldo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -735,7 +736,7 @@ msgid "October" msgstr "Octubre" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -815,7 +816,7 @@ msgid "Previous Payments ?" msgstr "Pagos Previos ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -847,7 +848,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -975,7 +976,7 @@ msgid "Journal Items" msgstr "Items de Diario" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1189,7 +1190,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1252,8 +1253,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/es_PY.po b/addons/account_voucher/i18n/es_PY.po index 50b923abc09..72bf81c375d 100644 --- a/addons/account_voucher/i18n/es_PY.po +++ b/addons/account_voucher/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Cancelar Dividas" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Estadísticas de comprobantes" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "Registro diario" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -294,7 +294,7 @@ msgid "Tax" msgstr "Impuestos" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -345,7 +345,7 @@ msgid "Import Invoices" msgstr "Importar facturas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -364,7 +364,7 @@ msgid "Receipt" msgstr "Recibo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -385,7 +385,7 @@ msgstr "Periodo" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Proveedor" @@ -406,7 +406,7 @@ msgid "Debit" msgstr "Débito" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -512,7 +512,7 @@ msgid "Pay Invoice" msgstr "Pagar factura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "¡No código base contable y código impuesto contable!" @@ -566,15 +566,15 @@ msgid "To Review" msgstr "A revisar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -628,6 +628,7 @@ msgstr "Mes" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Moneda" @@ -671,7 +672,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -734,7 +735,7 @@ msgid "October" msgstr "Octubre" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -814,7 +815,7 @@ msgid "Previous Payments ?" msgstr "¿Pagos previos?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -846,7 +847,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -974,7 +975,7 @@ msgid "Journal Items" msgstr "Registros del diario" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1183,7 +1184,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1246,8 +1247,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/et.po b/addons/account_voucher/i18n/et.po index 787f2184858..2983f9f97dd 100644 --- a/addons/account_voucher/i18n/et.po +++ b/addons/account_voucher/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #~ msgid "Bank Receipt Voucher" #~ msgstr "Panga sissetulekuorder" @@ -42,7 +42,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Mahakandmine" @@ -144,7 +144,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -236,8 +236,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -264,7 +264,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -306,7 +306,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -357,7 +357,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -376,7 +376,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -397,7 +397,7 @@ msgstr "Periood" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -418,7 +418,7 @@ msgid "Debit" msgstr "Deebet" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -524,7 +524,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -578,15 +578,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -640,6 +640,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuuta" @@ -683,7 +684,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -746,7 +747,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -826,7 +827,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -858,7 +859,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -986,7 +987,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1195,7 +1196,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1258,8 +1259,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/fa.po b/addons/account_voucher/i18n/fa.po index 66dae12e4cd..9bff4c92196 100644 --- a/addons/account_voucher/i18n/fa.po +++ b/addons/account_voucher/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/fr.po b/addons/account_voucher/i18n/fr.po index e4919f7c687..9055b6fa255 100644 --- a/addons/account_voucher/i18n/fr.po +++ b/addons/account_voucher/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Ajustement" @@ -132,7 +132,7 @@ msgid "Voucher Statistics" msgstr "Statistiques des justificatifs comptables" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -233,8 +233,8 @@ msgid "Journal Item" msgstr "Écriture comptable" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Erreur !" @@ -261,7 +261,7 @@ msgid "Cancelled" msgstr "Annulé" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -313,7 +313,7 @@ msgid "Tax" msgstr "Taxe" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Action invalide !" @@ -366,7 +366,7 @@ msgid "Import Invoices" msgstr "Importer les factures" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Ligne de justificatif incorrecte" @@ -385,7 +385,7 @@ msgid "Receipt" msgstr "Reçu" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -409,7 +409,7 @@ msgstr "Période" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Fournisseur" @@ -430,7 +430,7 @@ msgid "Debit" msgstr "Débit" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Impossible de changer de journal !" @@ -536,7 +536,7 @@ msgid "Pay Invoice" msgstr "Payer la facture" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Aucun code comptable de base et aucun code comptable de taxe !" @@ -590,15 +590,15 @@ msgid "To Review" msgstr "À vérifier" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "modifier" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -657,6 +657,7 @@ msgstr "Mois" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Devise" @@ -700,7 +701,7 @@ msgid "Reconcile Payment Balance" msgstr "Lettrer la balance de paiement" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Erreur de configuration !" @@ -765,7 +766,7 @@ msgid "October" msgstr "Octobre" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Veuillez activer la sequence du journal sélectionné" @@ -845,7 +846,7 @@ msgid "Previous Payments ?" msgstr "Règlements précédents ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "La facture que vous voulez payer n'est plus valide." @@ -877,7 +878,7 @@ msgid "Active" msgstr "Actif" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Veuillez définir une séquence sur ce journal" @@ -1005,7 +1006,7 @@ msgid "Journal Items" msgstr "Ècritures comptable" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1224,7 +1225,7 @@ msgstr "" "Le montant du règlement doit être le même que sur la ligne du relevé bancaire" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Impossible de supprimer des règlements à l'état ouvert ou payé" @@ -1287,8 +1288,8 @@ msgid "Status changed" msgstr "Statut changé" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Configuration insuffisante !" diff --git a/addons/account_voucher/i18n/gl.po b/addons/account_voucher/i18n/gl.po index 2be40946ee3..80ba35f321f 100644 --- a/addons/account_voucher/i18n/gl.po +++ b/addons/account_voucher/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Desaxuste" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Estatísticas de comprobantes" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "Rexistro diario" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "Anulado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -294,7 +294,7 @@ msgid "Tax" msgstr "Imposto" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -345,7 +345,7 @@ msgid "Import Invoices" msgstr "Importar facturas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -364,7 +364,7 @@ msgid "Receipt" msgstr "Recibo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -385,7 +385,7 @@ msgstr "Período" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Provedor" @@ -406,7 +406,7 @@ msgid "Debit" msgstr "Débito" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -512,7 +512,7 @@ msgid "Pay Invoice" msgstr "Pagar factura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Non código base contable nin código imposto contable!" @@ -566,15 +566,15 @@ msgid "To Review" msgstr "A revisar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -628,6 +628,7 @@ msgstr "Mes" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Divisa" @@ -671,7 +672,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -734,7 +735,7 @@ msgid "October" msgstr "Outubro" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -814,7 +815,7 @@ msgid "Previous Payments ?" msgstr "Pagamentos previos?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -846,7 +847,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -974,7 +975,7 @@ msgid "Journal Items" msgstr "Elementos do Diario" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1183,7 +1184,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1246,8 +1247,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/gu.po b/addons/account_voucher/i18n/gu.po index effc88bf54b..6c525e4f257 100644 --- a/addons/account_voucher/i18n/gu.po +++ b/addons/account_voucher/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "રદ થયેલ" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "અવધિ" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "ઉધાર" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "મહિનો" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "ચલણ" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "ઑક્ટોબર" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/hi.po b/addons/account_voucher/i18n/hi.po index 7226233f625..5da77889346 100644 --- a/addons/account_voucher/i18n/hi.po +++ b/addons/account_voucher/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "प्रदायक" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/hr.po b/addons/account_voucher/i18n/hr.po index 6e16eb61f49..3e2a6363e08 100644 --- a/addons/account_voucher/i18n/hr.po +++ b/addons/account_voucher/i18n/hr.po @@ -13,13 +13,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:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 msgid "Reconciliation" -msgstr "" +msgstr "Zatvaranje" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Otpis" @@ -63,7 +63,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(Ažuriraj)" #. module: account_voucher #: view:account.voucher:0 @@ -90,7 +90,7 @@ msgstr "Ožujak" #. module: account_voucher #: field:account.voucher,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepročitane poruke" #. module: account_voucher #: view:account.voucher:0 @@ -100,7 +100,7 @@ msgstr "Plati račun" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure you want to cancel this receipt?" -msgstr "" +msgstr "Jeste li sigurni da želite otkazati ovu potvrdu?" #. module: account_voucher #: view:account.voucher:0 @@ -110,18 +110,18 @@ msgstr "Postavi na nacrt" #. module: account_voucher #: help:account.voucher,reference:0 msgid "Transaction reference number." -msgstr "Transaction reference number." +msgstr "Referentni broj transakcije" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by year of Invoice Date" -msgstr "" +msgstr "Grupiraj po godini izdavanja računa" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Prodavač" #. module: account_voucher #: view:account.voucher:0 @@ -129,12 +129,12 @@ msgid "Voucher Statistics" msgstr "Statistike vaučera" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " "lines!" -msgstr "" +msgstr "Ne možete mijenjati dnevnik jer imate zatvorene neke stavke!" #. module: account_voucher #: view:account.voucher:0 @@ -145,7 +145,7 @@ msgstr "Potvrdi" #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payments" -msgstr "" +msgstr "Plaćanja dobavljaču" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -167,7 +167,7 @@ msgstr "Traži vaučere" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 msgid "Counterpart Account" -msgstr "" +msgstr "Protukonto" #. module: account_voucher #: field:account.voucher,account_id:0 @@ -189,7 +189,7 @@ msgstr "U redu" #. module: account_voucher #: field:account.voucher.line,reconcile:0 msgid "Full Reconcile" -msgstr "" +msgstr "Kompletno zatvaranje" #. module: account_voucher #: field:account.voucher,date_due:0 @@ -207,13 +207,13 @@ msgstr "Bilješke" #. module: account_voucher #: field:account.voucher,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Poruke" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "" +msgstr "Potvrde kupovine" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 @@ -221,16 +221,16 @@ msgid "Journal Item" msgstr "Stavka dnevnika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" -msgstr "" +msgstr "Greška!" #. module: account_voucher #: field:account.voucher.line,amount:0 msgid "Amount" -msgstr "" +msgstr "Iznos" #. module: account_voucher #: view:account.voucher:0 @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "Otkazani" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -271,7 +271,7 @@ msgstr "" #. module: account_voucher #: help:account.voucher,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jednom odabrano, nove poruke zahtijevaju vašu pažnju." #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement_line @@ -291,15 +291,15 @@ msgid "Tax" msgstr "Porez" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Neispravna akcija!" #. module: account_voucher #: field:account.voucher,comment:0 msgid "Counterpart Comment" -msgstr "" +msgstr "Komentar protustavke" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 @@ -312,21 +312,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 "" +"Sadrži sažetak konverzacije (broj poruka..). Ovaj sažetak je u html formatu " +"da bi mogao biti ubačen u kanban pogled." #. module: account_voucher #: view:account.voucher:0 msgid "Total Allocation" -msgstr "" +msgstr "Puna alokacija" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Information" -msgstr "Informacije uplate" +msgstr "Informacije o plaćanju" #. module: account_voucher #: view:account.voucher:0 msgid "(update)" -msgstr "" +msgstr "(ažuriraj)" #. module: account_voucher #: view:account.voucher:0 @@ -342,26 +344,26 @@ msgid "Import Invoices" msgstr "Uvoz računa" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" -msgstr "" +msgstr "Kriva stavka vaučera" #. module: account_voucher #: selection:account.voucher,pay_now:0 #: selection:sale.receipt.report,pay_now:0 msgid "Pay Later or Group Funds" -msgstr "Pay Later or Group Funds" +msgstr "Plati kasnije ili grupna sredstva" #. module: account_voucher #: view:account.voucher:0 #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Receipt" -msgstr "Receipt" +msgstr "Potvrda" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +384,7 @@ msgstr "Period" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Dobavljač" @@ -395,7 +397,7 @@ msgstr "Vaučer dobavljača" #. module: account_voucher #: field:account.voucher,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Pratitelji" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -403,10 +405,10 @@ msgid "Debit" msgstr "Duguje" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" -msgstr "" +msgstr "Nije moguće promijenti dnevnik !" #. module: account_voucher #: view:sale.receipt.report:0 @@ -423,7 +425,7 @@ msgstr "Vrsta" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Pro-forma Vouchers" -msgstr "" +msgstr "Proforma vaučer" #. module: account_voucher #: view:account.voucher:0 @@ -446,7 +448,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Open Supplier Journal Entries" -msgstr "Otvori temeljnice dobavljača" +msgstr "Otvori zapise dnevnika dobavljača" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_review_voucher_list @@ -461,17 +463,17 @@ msgstr "Memo" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile and cancel this record ?" -msgstr "" +msgstr "Jeste li sigurni da želite razvezati i otkazati ovaj zapis?" #. module: account_voucher #: field:account.voucher,is_multi_currency:0 msgid "Multi Currency Voucher" -msgstr "" +msgstr "Viševalutni vaučer" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Information" -msgstr "Bill Information" +msgstr "Podaci o plaćanju" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -494,7 +496,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,writeoff_amount:0 msgid "Difference Amount" -msgstr "" +msgstr "Iznos razlike" #. module: account_voucher #: view:sale.receipt.report:0 @@ -509,10 +511,10 @@ msgid "Pay Invoice" msgstr "Plaćanje" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" -msgstr "" +msgstr "Nema konta osnovice i poreza!" #. module: account_voucher #: field:account.voucher,tax_amount:0 @@ -522,7 +524,7 @@ msgstr "Iznos poreza" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Validated Vouchers" -msgstr "" +msgstr "Potvrđeni vaučeri" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_receipt @@ -544,7 +546,7 @@ msgstr "" #: field:account.config.settings,expense_currency_exchange_account_id:0 #: field:res.company,expense_currency_exchange_account_id:0 msgid "Loss Exchange Rate Account" -msgstr "" +msgstr "Konto tečajnih razlika" #. module: account_voucher #: view:account.voucher:0 @@ -563,21 +565,23 @@ msgid "To Review" msgstr "Za provjeru" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" -msgstr "" +msgstr "promijeni" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " "settings, to manage automatically the booking of accounting entries related " "to differences between exchange rates." msgstr "" +"Kako bi automatski knjižili stavke temeljnice vezane za ralike tečaja, " +"trebate konfigurirati 'konto tečanih razlika' u postavkama konta." #. module: account_voucher #: view:account.voucher:0 @@ -599,7 +603,7 @@ msgstr "" #. module: account_voucher #: view:account.invoice:0 msgid "Register Payment" -msgstr "" +msgstr "Registriraj plaćanje" #. module: account_voucher #: field:account.statement.from.invoice.lines,line_ids:0 @@ -614,7 +618,7 @@ msgstr "Prosinac" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by month of Invoice Date" -msgstr "" +msgstr "Grupiraj po mjesecu računa" #. module: account_voucher #: view:sale.receipt.report:0 @@ -625,6 +629,7 @@ msgstr "Mjesec" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta" @@ -632,17 +637,17 @@ msgstr "Valuta" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 msgid "Payable and Receivables" -msgstr "Payable and Receivables" +msgstr "Obveze i potraživanja" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Payment" -msgstr "" +msgstr "Plaćanje vaučerom" #. module: account_voucher #: field:sale.receipt.report,state:0 msgid "Voucher Status" -msgstr "" +msgstr "Status vaučera" #. module: account_voucher #: view:account.voucher:0 @@ -655,12 +660,12 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,company_id:0 msgid "Company" -msgstr "Organizacija" +msgstr "Tvrtka" #. module: account_voucher #: help:account.voucher,paid:0 msgid "The Voucher has been totally paid." -msgstr "" +msgstr "Vaučer je plaćen u potpunosti" #. module: account_voucher #: selection:account.voucher,payment_option:0 @@ -668,16 +673,16 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" -msgstr "" +msgstr "Greška kod konfiguracije!" #. module: account_voucher #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Draft Vouchers" -msgstr "" +msgstr "Vaučeri u nacrtu" #. module: account_voucher #: view:sale.receipt.report:0 @@ -688,25 +693,25 @@ msgstr "Ukupno s porezom" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Voucher" -msgstr "" +msgstr "Vaučer nabave" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,state:0 #: view:sale.receipt.report:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: account_voucher #: view:account.voucher:0 msgid "Allocation" -msgstr "" +msgstr "Raspodjela" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 #: view:account.voucher:0 msgid "or" -msgstr "" +msgstr "ili" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -716,7 +721,7 @@ msgstr "Kolovoz" #. module: account_voucher #: view:account.voucher:0 msgid "Validate Payment" -msgstr "" +msgstr "Potvrdi plaćanje" #. module: account_voucher #: help:account.voucher,audit:0 @@ -724,6 +729,8 @@ msgid "" "Check this box if you are unsure of that journal entry and if you want to " "note it as 'to be reviewed' by an accounting expert." msgstr "" +"Označite \"za provjeru\" kada niste sigurni da li je knjiženje ispravno i " +"kada je potrebno ekspertno mišljenje." #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -731,10 +738,10 @@ msgid "October" msgstr "Listopad" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" -msgstr "" +msgstr "Molimo aktivirajte sekvencu odabrnog dnevnika!" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -749,7 +756,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,paid:0 msgid "Paid" -msgstr "" +msgstr "Plaćeno" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt @@ -760,12 +767,12 @@ msgstr "" #. module: account_voucher #: field:account.voucher,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Je pratitelj" #. module: account_voucher #: field:account.voucher,analytic_id:0 msgid "Write-Off Analytic Account" -msgstr "Write-Off Analytic Account" +msgstr "Analitički konto otpisa iznosa" #. module: account_voucher #: field:account.voucher,date:0 @@ -787,7 +794,7 @@ msgstr "Prošireni filtri..." #. module: account_voucher #: field:account.voucher,paid_amount_in_company_currency:0 msgid "Paid Amount in Company Currency" -msgstr "" +msgstr "Plaćeni iznosu u valuti tvrtke" #. module: account_voucher #: field:account.bank.statement.line,amount_reconciled:0 @@ -798,7 +805,7 @@ msgstr "Zatvoreni iznos" #: selection:account.voucher,pay_now:0 #: selection:sale.receipt.report,pay_now:0 msgid "Pay Directly" -msgstr "Pay Directly" +msgstr "Plati direktno" #. module: account_voucher #: field:account.voucher.line,type:0 @@ -811,7 +818,7 @@ msgid "Previous Payments ?" msgstr "Predhodna plaćanja ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -830,30 +837,30 @@ msgstr "Dnevnik vaučera" #. module: account_voucher #: model:ir.model,name:account_voucher.model_res_company msgid "Companies" -msgstr "" +msgstr "Tvrtke" #. module: account_voucher #: field:account.voucher,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Sažetak" #. module: account_voucher #: field:account.voucher,active:0 msgid "Active" -msgstr "" +msgstr "Aktivan" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." -msgstr "" +msgstr "Molimo definirajte sekvencu na dnevniku." #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.act_pay_voucher #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "" +msgstr "Plaćanja kupaca" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all @@ -865,12 +872,12 @@ msgstr "" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by Invoice Date" -msgstr "" +msgstr "Grupiraj po datumu računa" #. module: account_voucher #: view:account.voucher:0 msgid "Post" -msgstr "Post" +msgstr "Objava" #. module: account_voucher #: view:account.voucher:0 @@ -955,14 +962,14 @@ msgstr "Odustani" #. module: account_voucher #: model:ir.actions.client,name:account_voucher.action_client_invoice_menu msgid "Open Invoicing Menu" -msgstr "" +msgstr "Otvori menu računa" #. module: account_voucher #: selection:account.voucher,state:0 #: view:sale.receipt.report:0 #: selection:sale.receipt.report,state:0 msgid "Pro-forma" -msgstr "Pro-forma" +msgstr "Predračun" #. module: account_voucher #: view:account.voucher:0 @@ -971,10 +978,11 @@ msgid "Journal Items" msgstr "Stavke glavne knjige" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" +"Milimo definirajte standarda potražna/dugovna konta na dnevniku \"%s\"." #. module: account_voucher #: selection:account.voucher,type:0 @@ -986,12 +994,12 @@ msgstr "Nabava" #: view:account.invoice:0 #: view:account.voucher:0 msgid "Pay" -msgstr "Pay" +msgstr "Platiti" #. module: account_voucher #: view:account.voucher:0 msgid "Currency Options" -msgstr "" +msgstr "Opcije valute" #. module: account_voucher #: help:account.voucher,payment_option:0 @@ -1023,7 +1031,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,payment_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "Tečaj" #. module: account_voucher #: view:account.voucher:0 @@ -1144,7 +1152,7 @@ msgstr "Travanj" #. module: account_voucher #: help:account.voucher,tax_id:0 msgid "Only for tax excluded from price" -msgstr "" +msgstr "Samo za porez koji nije u cijeni" #. module: account_voucher #: field:account.voucher,type:0 @@ -1154,7 +1162,7 @@ msgstr "Uobičajeni tip" #. module: account_voucher #: help:account.voucher,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Poruke i povijest komunikacije" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines @@ -1180,7 +1188,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1188,12 +1196,12 @@ msgstr "" #. module: account_voucher #: help:account.voucher,date:0 msgid "Effective date for accounting entries" -msgstr "Effective date for accounting entries" +msgstr "" #. module: account_voucher #: model:mail.message.subtype,name:account_voucher.mt_voucher_state_change msgid "Status Change" -msgstr "" +msgstr "Promjena statusa" #. module: account_voucher #: selection:account.voucher,payment_option:0 @@ -1243,11 +1251,11 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" -msgstr "" +msgstr "Nedostatna konfiguracija!" #. module: account_voucher #: help:account.voucher,active:0 diff --git a/addons/account_voucher/i18n/hu.po b/addons/account_voucher/i18n/hu.po index 1a50a813042..16ae25074db 100644 --- a/addons/account_voucher/i18n/hu.po +++ b/addons/account_voucher/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-05 05:37+0000\n" -"X-Generator: Launchpad (build 16550)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Különbözet leírása" @@ -131,7 +131,7 @@ msgid "Voucher Statistics" msgstr "Nyugta statisztika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -234,8 +234,8 @@ msgid "Journal Item" msgstr "Könyvelési tételsor" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Hiba!" @@ -262,7 +262,7 @@ msgid "Cancelled" msgstr "Érvénytelenített" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -313,7 +313,7 @@ msgid "Tax" msgstr "ÁFA" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Érvénytelen lépés!" @@ -366,7 +366,7 @@ msgid "Import Invoices" msgstr "Számlák importálása" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Nem megfelelő nyugta sor" @@ -385,7 +385,7 @@ msgid "Receipt" msgstr "Bevételi bizonylat" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -409,7 +409,7 @@ msgstr "Időszak" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Szállító" @@ -430,7 +430,7 @@ msgid "Debit" msgstr "Tartozik" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Naplót nem lehet megváltoztatni !" @@ -551,7 +551,7 @@ msgid "Pay Invoice" msgstr "Számla kifizetése" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Nincs adóalapgyűjtő kód és adógyűjtő kód!" @@ -617,15 +617,15 @@ msgid "To Review" msgstr "Ellenőrizendő" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "módosítás" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -684,6 +684,7 @@ msgstr "Hónap" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Pénznem" @@ -727,7 +728,7 @@ msgid "Reconcile Payment Balance" msgstr "Fizetési egyenleg párosítás" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Beállítási hiba!" @@ -792,7 +793,7 @@ msgid "October" msgstr "Október" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Kérem a sorozat aktiválását a kiválasztott naplóra !" @@ -872,7 +873,7 @@ msgid "Previous Payments ?" msgstr "Előző kifizetések ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "A kifizetni kívánt számla már nem érvényes." @@ -904,7 +905,7 @@ msgid "Active" msgstr "Aktív" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Kérem egy sorozat meghatározását a naplón." @@ -1032,7 +1033,7 @@ msgid "Journal Items" msgstr "Könyvelési tételsorok" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1259,7 +1260,7 @@ msgstr "" "szerepel." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1324,8 +1325,8 @@ msgid "Status changed" msgstr "Állapot megváltozott" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Nem megfelelő beállítás!" diff --git a/addons/account_voucher/i18n/id.po b/addons/account_voucher/i18n/id.po index ab7c31a1f52..102c73c256e 100644 --- a/addons/account_voucher/i18n/id.po +++ b/addons/account_voucher/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "Debit" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -731,7 +732,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -811,7 +812,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +844,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -971,7 +972,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1180,7 +1181,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1243,8 +1244,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/it.po b/addons/account_voucher/i18n/it.po index 8a4145856fa..71a6436b66d 100644 --- a/addons/account_voucher/i18n/it.po +++ b/addons/account_voucher/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Storno" @@ -131,7 +131,7 @@ msgid "Voucher Statistics" msgstr "Statistiche Voucher" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -234,8 +234,8 @@ msgid "Journal Item" msgstr "Voce sezionale" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Errore!" @@ -262,7 +262,7 @@ msgid "Cancelled" msgstr "Annullato" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -313,7 +313,7 @@ msgid "Tax" msgstr "Tassa" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Azione non valida!" @@ -366,7 +366,7 @@ msgid "Import Invoices" msgstr "Importa fatture" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Linea voucher errata" @@ -385,7 +385,7 @@ msgid "Receipt" msgstr "Ricevuta" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -409,7 +409,7 @@ msgstr "Periodo" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Fornitore" @@ -430,7 +430,7 @@ msgid "Debit" msgstr "Debito" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Impossibile cambiare il sezionale !" @@ -544,7 +544,7 @@ msgid "Pay Invoice" msgstr "Paga fattura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Mancano Codici di conto di mastro e Codici di conto imposta!" @@ -608,15 +608,15 @@ msgid "To Review" msgstr "Da rivedere" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "cambia" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -673,6 +673,7 @@ msgstr "Mese" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta" @@ -716,7 +717,7 @@ msgid "Reconcile Payment Balance" msgstr "Rinconcilia saldo pagamento" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Errore di configurazione!" @@ -781,7 +782,7 @@ msgid "October" msgstr "Ottobre" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Si prega di attivare la sequenza del sezionale selezionato!" @@ -861,7 +862,7 @@ msgid "Previous Payments ?" msgstr "Pagamenti precedenti ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "La fattura che si sta tentando di pagare non è più valida." @@ -893,7 +894,7 @@ msgid "Active" msgstr "Attivo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "E' necessario definire una sequenza per il sezionale." @@ -1021,7 +1022,7 @@ msgid "Journal Items" msgstr "Voci sezionale" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1250,7 +1251,7 @@ msgstr "" "dichiarazione." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Non è possibile eliminare voucher(s) che sono già aperti o pagati." @@ -1313,8 +1314,8 @@ msgid "Status changed" msgstr "Stato cambiato" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Configurazione Insufficiente!" diff --git a/addons/account_voucher/i18n/ja.po b/addons/account_voucher/i18n/ja.po index a23129dcec2..376089beae5 100644 --- a/addons/account_voucher/i18n/ja.po +++ b/addons/account_voucher/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "償却" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "バウチャー統計" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "仕訳帳項目" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "キャンセル済" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "税金" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "請求書インポート" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "レシート" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "期間" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "仕入先" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "借方" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "請求書支払" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "アカウント基本コードとアカウント税金コードがありません。" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "レビュー" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "変更" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "月" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "通貨" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "消し込み支払残高" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "10月" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "以前の支払ですか?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "仕訳帳項目" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1183,7 +1184,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1246,8 +1247,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/ko.po b/addons/account_voucher/i18n/ko.po index ecc6045a5b5..94970bdde25 100644 --- a/addons/account_voucher/i18n/ko.po +++ b/addons/account_voucher/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "기간" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "차변" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "통화" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/lt.po b/addons/account_voucher/i18n/lt.po index b930f9ad1aa..34d6b837910 100644 --- a/addons/account_voucher/i18n/lt.po +++ b/addons/account_voucher/i18n/lt.po @@ -8,18 +8,18 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-11-29 13:01+0000\n" -"Last-Translator: Andrius Preimantas \n" +"Last-Translator: Andrius Preimantas @ hbee \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:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 msgid "Reconciliation" -msgstr "" +msgstr "Sudengimas" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Nurašymas" @@ -35,12 +35,12 @@ msgstr "Nurašymas" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Ref" -msgstr "Mokėjimo nuoroda" +msgstr "Apmokėjimo numeris" #. module: account_voucher #: view:account.voucher:0 msgid "Total Amount" -msgstr "" +msgstr "Iš viso" #. module: account_voucher #: view:account.voucher:0 @@ -59,11 +59,12 @@ msgid "" "Computed as the difference between the amount stated in the voucher and the " "sum of allocation on the voucher lines." msgstr "" +"Paskaičiuotas skirtumas tarp sumokėtos bei eilutėse paskirstytos sumos." #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(Atnaujinti)" #. module: account_voucher #: view:account.voucher:0 @@ -75,12 +76,12 @@ msgstr "" #: view:account.statement.from.invoice.lines:0 #: model:ir.actions.act_window,name:account_voucher.action_view_account_statement_from_invoice_lines msgid "Import Entries" -msgstr "" +msgstr "Įkelti DK įrašus" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Entry" -msgstr "" +msgstr "Apskaitos dokumento įrašai" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -90,7 +91,7 @@ msgstr "Kovas" #. module: account_voucher #: field:account.voucher,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Neperžiūrėtos žinutės" #. module: account_voucher #: view:account.voucher:0 @@ -100,28 +101,28 @@ msgstr "Apmokėti sąskaitą" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure you want to cancel this receipt?" -msgstr "" +msgstr "Ar tikrai norite atšaukti šį kvitą?" #. module: account_voucher #: view:account.voucher:0 msgid "Set to Draft" -msgstr "Nustatyti kaip juodraštį" +msgstr "Atstatyti į juodraštį" #. module: account_voucher #: help:account.voucher,reference:0 msgid "Transaction reference number." -msgstr "" +msgstr "Apmokėjimo numeris." #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by year of Invoice Date" -msgstr "" +msgstr "S/F išrašymo metai" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Pardavėjas" #. module: account_voucher #: view:account.voucher:0 @@ -129,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Kvito statistika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -145,7 +146,7 @@ msgstr "Patvirtinti" #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payments" -msgstr "" +msgstr "Mokėjimai tiekėjams" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -158,6 +159,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad įvestumėte pirkimo kvitą. \n" +"

\n" +" Patvirtinus pirkimo kvitą, galima įvesti mokėjimą tiekėjui,\n" +" susijusį su šiuo kvitu.\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 @@ -167,7 +175,7 @@ msgstr "Ieškoti kvito" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 msgid "Counterpart Account" -msgstr "" +msgstr "Nurašymo sąskaita" #. module: account_voucher #: field:account.voucher,account_id:0 @@ -179,17 +187,17 @@ msgstr "Sąskaita" #. module: account_voucher #: field:account.voucher,line_dr_ids:0 msgid "Debits" -msgstr "" +msgstr "Debetavimas" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 msgid "Ok" -msgstr "OK" +msgstr "Gerai" #. module: account_voucher #: field:account.voucher.line,reconcile:0 msgid "Full Reconcile" -msgstr "Pilnas sugretinimas" +msgstr "Pilnas sudengimas" #. module: account_voucher #: field:account.voucher,date_due:0 @@ -207,25 +215,25 @@ msgstr "Pastabos" #. module: account_voucher #: field:account.voucher,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Pranešimai" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "" +msgstr "Pirkimo kvitai" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 msgid "Journal Item" -msgstr "" +msgstr "DK įrašas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" -msgstr "" +msgstr "Klaida!" #. module: account_voucher #: field:account.voucher.line,amount:0 @@ -249,7 +257,7 @@ msgid "Cancelled" msgstr "Atšauktas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -267,11 +275,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte pardavimo kvitą.\n" +"

\n" +" Patvirtinus pardavimo kvitą galima įvesti pirkėjo mokėjimą, " +"\n" +" susijusį su šiuo kvitu.\n" +"

\n" +" " #. module: account_voucher #: help:account.voucher,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: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement_line @@ -282,24 +298,24 @@ msgstr "Banko sąskaitos išrašo eilutė" #: view:sale.receipt.report:0 #: field:sale.receipt.report,day:0 msgid "Day" -msgstr "Diena" +msgstr "Data" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,tax_id:0 msgid "Tax" -msgstr "Mokestis" +msgstr "Mokesčiai" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Klaidingas veiksmas!" #. module: account_voucher #: field:account.voucher,comment:0 msgid "Counterpart Comment" -msgstr "" +msgstr "Nurašymo paaiškinimas" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 @@ -312,6 +328,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: account_voucher #: view:account.voucher:0 @@ -321,12 +339,12 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Information" -msgstr "Mokėjimo informacija" +msgstr "Mokėjimo duomenys" #. module: account_voucher #: view:account.voucher:0 msgid "(update)" -msgstr "" +msgstr "(atnaujinti)" #. module: account_voucher #: view:account.voucher:0 @@ -342,7 +360,7 @@ msgid "Import Invoices" msgstr "Įkelti S/F" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -351,17 +369,17 @@ msgstr "" #: selection:account.voucher,pay_now:0 #: selection:sale.receipt.report,pay_now:0 msgid "Pay Later or Group Funds" -msgstr "" +msgstr "Mokėti vėliau arba bendras apmokėjimas" #. module: account_voucher #: view:account.voucher:0 #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Receipt" -msgstr "" +msgstr "Kvitas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +400,7 @@ msgstr "Periodas" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Tiekėjas" @@ -395,7 +413,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Prenumeratoriai" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -403,7 +421,7 @@ msgid "Debit" msgstr "Debetas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -412,7 +430,7 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,nbr:0 msgid "# of Voucher Lines" -msgstr "" +msgstr "# eilučių" #. module: account_voucher #: view:sale.receipt.report:0 @@ -423,7 +441,7 @@ msgstr "Tipas" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Pro-forma Vouchers" -msgstr "" +msgstr "Išankstiniai kvitai" #. module: account_voucher #: view:account.voucher:0 @@ -442,6 +460,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte mokėjimą tiekėjui.\n" +"

\n" +" OpenERP pagalba jūs galėsite paprasčiau sekti atliekamus " +"mokėjimus bei skolas tiekėjams.\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 @@ -456,12 +481,12 @@ msgstr "" #. module: account_voucher #: field:account.voucher,name:0 msgid "Memo" -msgstr "" +msgstr "Atmintinė" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile and cancel this record ?" -msgstr "" +msgstr "Ar tikrai norite panaikinti sudengimą ir atšaukti šį įrašą?" #. module: account_voucher #: field:account.voucher,is_multi_currency:0 @@ -471,12 +496,12 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Information" -msgstr "Sąskaitos informacija" +msgstr "Kvito duomenys" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "July" -msgstr "" +msgstr "Liepa" #. module: account_voucher #: help:account.voucher,state:0 @@ -494,13 +519,13 @@ msgstr "" #. module: account_voucher #: field:account.voucher,writeoff_amount:0 msgid "Difference Amount" -msgstr "" +msgstr "Nesutampanti suma" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,due_delay:0 msgid "Avg. Due Delay" -msgstr "" +msgstr "Vid. apmokėjimo terminas" #. module: account_voucher #: code:addons/account_voucher/invoice.py:34 @@ -509,7 +534,7 @@ msgid "Pay Invoice" msgstr "Apmokėti sąskaitą" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -517,12 +542,12 @@ msgstr "" #. module: account_voucher #: field:account.voucher,tax_amount:0 msgid "Tax Amount" -msgstr "" +msgstr "Mokesčių suma" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Validated Vouchers" -msgstr "" +msgstr "Užregistruoti kvitai" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_receipt @@ -539,6 +564,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad užregistruotumėte apmokėjimą. \n" +"

\n" +" Įveskite pirkėją, pasirinkite mokėjimo būdą ir tuomet\n" +" galėsite sukurti mokėjimo įrašus rankiniu būdu arba OpenERP\n" +" pasiūlys automatinį mokėjimo sudengimą su neapmokėta S/F ar\n" +" pardavimo kvitu.\n" +"

\n" +" " #. module: account_voucher #: field:account.config.settings,expense_currency_exchange_account_id:0 @@ -549,29 +583,29 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Paid Amount" -msgstr "" +msgstr "Sumokėta suma" #. module: account_voucher #: field:account.voucher,payment_option:0 msgid "Payment Difference" -msgstr "" +msgstr "Mokėjimo nesutapimas" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,audit:0 msgid "To Review" -msgstr "" +msgstr "Peržiūrėti" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -599,32 +633,33 @@ msgstr "" #. module: account_voucher #: view:account.invoice:0 msgid "Register Payment" -msgstr "" +msgstr "Užregistruoti mokėjimą" #. module: account_voucher #: field:account.statement.from.invoice.lines,line_ids:0 msgid "Invoices" -msgstr "" +msgstr "Sąskaitos faktūros" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "December" -msgstr "" +msgstr "Gruodis" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by month of Invoice Date" -msgstr "" +msgstr "S/F išrašymo mėnuo" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,month:0 msgid "Month" -msgstr "" +msgstr "Mėnuo" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valiuta" @@ -632,7 +667,7 @@ msgstr "Valiuta" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 msgid "Payable and Receivables" -msgstr "" +msgstr "Mokamos ir gautinos sumos" #. module: account_voucher #: view:account.voucher:0 @@ -665,10 +700,10 @@ msgstr "" #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Reconcile Payment Balance" -msgstr "" +msgstr "Sudengti mokėjimo likutį" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -677,13 +712,13 @@ msgstr "" #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Draft Vouchers" -msgstr "" +msgstr "Dokumento juodraštis" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,price_total_tax:0 msgid "Total With Tax" -msgstr "" +msgstr "Iš viso" #. module: account_voucher #: view:account.voucher:0 @@ -695,23 +730,23 @@ msgstr "" #: field:account.voucher,state:0 #: view:sale.receipt.report:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: account_voucher #: view:account.voucher:0 msgid "Allocation" -msgstr "" +msgstr "Paskirstymas" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 #: view:account.voucher:0 msgid "or" -msgstr "" +msgstr "arba" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "August" -msgstr "" +msgstr "Rugpjūtis" #. module: account_voucher #: view:account.voucher:0 @@ -728,10 +763,10 @@ msgstr "" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "October" -msgstr "" +msgstr "Spalis" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -739,7 +774,7 @@ msgstr "" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "June" -msgstr "" +msgstr "Birželis" #. module: account_voucher #: field:account.voucher,payment_rate_currency_id:0 @@ -749,23 +784,23 @@ msgstr "" #. module: account_voucher #: field:account.voucher,paid:0 msgid "Paid" -msgstr "" +msgstr "Apmokėta" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "Pardavimo kvitai" #. module: account_voucher #: field:account.voucher,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ar prenumeratorius" #. module: account_voucher #: field:account.voucher,analytic_id:0 msgid "Write-Off Analytic Account" -msgstr "" +msgstr "Nurašymo analitinė sąskaita" #. module: account_voucher #: field:account.voucher,date:0 @@ -777,12 +812,12 @@ msgstr "Data" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "November" -msgstr "" +msgstr "Lapkritis" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Išplėstiniai filtrai..." #. module: account_voucher #: field:account.voucher,paid_amount_in_company_currency:0 @@ -798,7 +833,7 @@ msgstr "" #: selection:account.voucher,pay_now:0 #: selection:sale.receipt.report,pay_now:0 msgid "Pay Directly" -msgstr "" +msgstr "Mokėti iškart" #. module: account_voucher #: field:account.voucher.line,type:0 @@ -811,7 +846,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -819,31 +854,31 @@ msgstr "" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "January" -msgstr "" +msgstr "Sausis" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_voucher_list #: model:ir.ui.menu,name:account_voucher.menu_encode_entries_by_voucher msgid "Journal Vouchers" -msgstr "Žurnalo kvitai" +msgstr "Apskaitos dokumentai" #. module: account_voucher #: model:ir.model,name:account_voucher.model_res_company msgid "Companies" -msgstr "" +msgstr "Įmonės" #. module: account_voucher #: field:account.voucher,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Santrauka" #. module: account_voucher #: field:account.voucher,active:0 msgid "Active" -msgstr "" +msgstr "Aktyvus" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -853,24 +888,24 @@ msgstr "" #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "" +msgstr "Pirkėjo mokėjimai" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "" +msgstr "Pardavimo kvitų analizė" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by Invoice Date" -msgstr "" +msgstr "S/F išrašymo data" #. module: account_voucher #: view:account.voucher:0 msgid "Post" -msgstr "" +msgstr "Registruoti" #. module: account_voucher #: view:account.voucher:0 @@ -881,17 +916,17 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,price_total:0 msgid "Total Without Tax" -msgstr "" +msgstr "Iš viso be mokesčių" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Date" -msgstr "Sąskaitos data" +msgstr "Kvito data" #. module: account_voucher #: view:account.voucher:0 msgid "Unreconcile" -msgstr "Panaikinti sugretinimą" +msgstr "Panaikinti sudengimą" #. module: account_voucher #: view:account.voucher:0 @@ -912,7 +947,7 @@ msgstr "Kreditas" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement msgid "Bank Statement" -msgstr "" +msgstr "Banko sąskaitos išrašas" #. module: account_voucher #: view:account.bank.statement:0 @@ -922,12 +957,12 @@ msgstr "" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "September" -msgstr "" +msgstr "Rugsėjis" #. module: account_voucher #: view:account.voucher:0 msgid "Sales Information" -msgstr "" +msgstr "Pardavimo informacija" #. module: account_voucher #: view:account.voucher:0 @@ -939,7 +974,7 @@ msgstr "Kvitas" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_invoice msgid "Invoice" -msgstr "" +msgstr "Sąskaita-faktūra" #. module: account_voucher #: view:account.voucher:0 @@ -968,10 +1003,10 @@ msgstr "Išankstinė sąskaita" #: view:account.voucher:0 #: field:account.voucher,move_ids:0 msgid "Journal Items" -msgstr "" +msgstr "DK įrašai" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -980,13 +1015,13 @@ msgstr "" #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Purchase" -msgstr "" +msgstr "Pirkimai" #. module: account_voucher #: view:account.invoice:0 #: view:account.voucher:0 msgid "Pay" -msgstr "" +msgstr "Mokėti" #. module: account_voucher #: view:account.voucher:0 @@ -1001,6 +1036,9 @@ msgid "" "either choose to keep open this difference on the partner's account, or " "reconcile it with the payment(s)" msgstr "" +"Pasirinkite ką daryti su susidariusiu skirtumu tarp sumokėtos bei " +"paskirstytos sumos. Galima pasirinkti, kad likutis liktų kontakto balanse, " +"arba sudengti su kitu mokėjimu (-ais)." #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_sale_receipt_report_all @@ -1018,17 +1056,17 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Posted Vouchers" -msgstr "" +msgstr "Užregistruotas dokumentas" #. module: account_voucher #: field:account.voucher,payment_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "Valiutos kursas" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Method" -msgstr "" +msgstr "Mokėjimo būdas" #. module: account_voucher #: field:account.voucher.line,name:0 @@ -1038,7 +1076,7 @@ msgstr "Aprašymas" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "May" -msgstr "" +msgstr "Gegužė" #. module: account_voucher #: view:account.voucher:0 @@ -1056,23 +1094,23 @@ msgstr "Žurnalas" #. module: account_voucher #: view:account.voucher:0 msgid "Internal Notes" -msgstr "" +msgstr "Vidinės pastabos" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,line_cr_ids:0 msgid "Credits" -msgstr "" +msgstr "Kreditavimas" #. module: account_voucher #: field:account.voucher.line,amount_original:0 msgid "Original Amount" -msgstr "" +msgstr "Pirminė suma" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Receipt" -msgstr "Pirkimo kvitas" +msgstr "Pirkimo kvitai" #. module: account_voucher #: help:account.voucher,payment_rate:0 @@ -1088,7 +1126,7 @@ msgstr "" #: field:sale.receipt.report,pay_now:0 #: selection:sale.receipt.report,type:0 msgid "Payment" -msgstr "" +msgstr "Mokėjimas" #. module: account_voucher #: view:account.voucher:0 @@ -1101,12 +1139,12 @@ msgstr "Užregistruota" #. module: account_voucher #: view:account.voucher:0 msgid "Customer" -msgstr "" +msgstr "Pirkėjas" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "February" -msgstr "" +msgstr "Vasaris" #. module: account_voucher #: view:account.voucher:0 @@ -1116,13 +1154,13 @@ msgstr "" #. module: account_voucher #: field:account.voucher,reference:0 msgid "Ref #" -msgstr "Nuoroda" +msgstr "Nr #" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,year:0 msgid "Year" -msgstr "" +msgstr "Metai" #. module: account_voucher #: field:account.config.settings,income_currency_exchange_account_id:0 @@ -1139,22 +1177,22 @@ msgstr "Pardavimas" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "April" -msgstr "" +msgstr "Balandis" #. module: account_voucher #: help:account.voucher,tax_id:0 msgid "Only for tax excluded from price" -msgstr "" +msgstr "Tik tie mokesčiai, kurie neįtraukti į kainą" #. module: account_voucher #: field:account.voucher,type:0 msgid "Default Type" -msgstr "" +msgstr "Tipas" #. module: account_voucher #: help:account.voucher,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Žinučių ir pranešimų istorija" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines @@ -1165,7 +1203,7 @@ msgstr "" #: view:account.voucher:0 #: field:account.voucher,amount:0 msgid "Total" -msgstr "" +msgstr "Iš viso" #. module: account_voucher #: field:account.voucher,move_id:0 @@ -1180,7 +1218,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1188,7 +1226,7 @@ msgstr "" #. module: account_voucher #: help:account.voucher,date:0 msgid "Effective date for accounting entries" -msgstr "" +msgstr "DK įrašų įsigaliojimo data" #. module: account_voucher #: model:mail.message.subtype,name:account_voucher.mt_voucher_state_change @@ -1198,7 +1236,7 @@ msgstr "" #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Keep Open" -msgstr "" +msgstr "Palikti atvirą" #. module: account_voucher #: field:account.voucher,line_ids:0 @@ -1211,7 +1249,7 @@ msgstr "Kvito eilutės" #: view:sale.receipt.report:0 #: field:sale.receipt.report,delay_to_pay:0 msgid "Avg. Delay To Pay" -msgstr "" +msgstr "Vid. vėluojama apmokėti" #. module: account_voucher #: field:account.voucher.line,untax_amount:0 @@ -1235,7 +1273,7 @@ msgstr "Partneris" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 msgid "Open Balance" -msgstr "" +msgstr "Likutis" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change @@ -1243,8 +1281,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" @@ -1496,8 +1534,8 @@ msgstr "" #~ msgid "Sales Receipt Analysis" #~ msgstr "Pardavimo kvitų analizė" -#~ msgid "Sales Receipt" -#~ msgstr "Pardavimo kvitai" - #~ msgid "Supplier Payment" #~ msgstr "Mokėjimai tiekėjui" + +#~ msgid "Sales Receipt" +#~ msgstr "Pardavimo kvitas" diff --git a/addons/account_voucher/i18n/mk.po b/addons/account_voucher/i18n/mk.po index 1345aa5d6e7..83bf3eda22c 100644 --- a/addons/account_voucher/i18n/mk.po +++ b/addons/account_voucher/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Отпис" @@ -41,12 +41,12 @@ msgstr "Референтно плаќање" #. module: account_voucher #: view:account.voucher:0 msgid "Total Amount" -msgstr "Целосна Сума" +msgstr "Вкупен износ" #. module: account_voucher #: view:account.voucher:0 msgid "Open Customer Journal Entries" -msgstr "Отвори го внесот на записи на клиенти" +msgstr "Отвори внесови на Дневникот Купувач" #. module: account_voucher #: view:account.voucher:0 @@ -61,12 +61,12 @@ msgid "" "sum of allocation on the voucher lines." msgstr "" "Пресметано како разлика помеѓу сумата на ваучерот и сумата распределена на " -"линиите на ваучерот." +"ставките на ваучерот." #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "(Update)" +msgstr "(Ажурирај)" #. module: account_voucher #: view:account.voucher:0 @@ -78,7 +78,7 @@ msgstr "Плаќање Сметка" #: view:account.statement.from.invoice.lines:0 #: model:ir.actions.act_window,name:account_voucher.action_view_account_statement_from_invoice_lines msgid "Import Entries" -msgstr "Импортирај книжење" +msgstr "Импортирај внесови" #. module: account_voucher #: view:account.voucher:0 @@ -132,14 +132,14 @@ msgid "Voucher Statistics" msgstr "Статистика за ваучери" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " "lines!" msgstr "" -"Неможете да извршите промена на записот како што веќе порамнивте некоја од " -"состојбите!" +"Не можете да извршите промена на дневникот бидејќи веќе сте порамниле некои " +"од ставките на изводот!" #. module: account_voucher #: view:account.voucher:0 @@ -167,7 +167,7 @@ msgstr "" " Кликни за регистрирање на сметкопотврда. \n" "

\n" " Со потврдување на сметкопотврдата, може да се прибележи\n" -" плаќањето на досатавувачот врз база на сметката.\n" +" плаќањето на доставувачот врз база на сметката.\n" "

\n" " " @@ -230,11 +230,11 @@ msgstr "Сметкопотврди" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 msgid "Journal Item" -msgstr "Ставка од запис" +msgstr "Ставка од дневник" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Грешка!" @@ -261,7 +261,7 @@ msgid "Cancelled" msgstr "Откажано" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -312,7 +312,7 @@ msgid "Tax" msgstr "Данок" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Невалидна Постапка!" @@ -325,7 +325,7 @@ msgstr "Коментар за копијата" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: account_voucher #: help:account.voucher,message_summary:0 @@ -349,7 +349,7 @@ msgstr "Информација за плаќањето" #. module: account_voucher #: view:account.voucher:0 msgid "(update)" -msgstr "(update)" +msgstr "(ажурирај)" #. module: account_voucher #: view:account.voucher:0 @@ -362,13 +362,13 @@ msgstr "Нацрт" #. module: account_voucher #: view:account.bank.statement:0 msgid "Import Invoices" -msgstr "Импортирај фактури" +msgstr "Увези фактури" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" -msgstr "Погрешна линија на ваучер" +msgstr "Погрешна ставка на ваучер" #. module: account_voucher #: selection:account.voucher,pay_now:0 @@ -384,7 +384,7 @@ msgid "Receipt" msgstr "Потврда" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -392,13 +392,13 @@ msgid "" "to differences between exchange rates." msgstr "" "Треба да ја конфигурирате сметката за добивка во девизен курс, за автоматско " -"менаџирање на записите на сметката поврзани со разликите помеѓу девизните " +"управување со записите на сметката поврзани со разликите помеѓу девизните " "курсеви." #. module: account_voucher #: view:account.voucher:0 msgid "Sales Lines" -msgstr "Линии за продажба" +msgstr "Ставки за продажба" #. module: account_voucher #: view:account.voucher:0 @@ -408,7 +408,7 @@ msgstr "Период" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Добавувач" @@ -421,7 +421,7 @@ msgstr "Ваучер на добавувачот" #. module: account_voucher #: field:account.voucher,message_follower_ids:0 msgid "Followers" -msgstr "Следбеници" +msgstr "Пратители" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -429,10 +429,10 @@ msgid "Debit" msgstr "Задолжување" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" -msgstr "Неможе да се промени записникот !" +msgstr "Не може да се промени дневникот !" #. module: account_voucher #: view:sale.receipt.report:0 @@ -449,13 +449,13 @@ msgstr "Тип" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Pro-forma Vouchers" -msgstr "Про-Факрура Ваучери" +msgstr "Про-Фактура Ваучери" #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.act_journal_voucher_open msgid "Voucher Entries" -msgstr "Внес на ваучери" +msgstr "Внесови на ваучер" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_payment @@ -479,12 +479,12 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Open Supplier Journal Entries" -msgstr "Отвори го внесот на записи на добавувачи" +msgstr "Отвори ги внесовите на дневникот на добавувачот" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_review_voucher_list msgid "Vouchers Entries" -msgstr "Внес на ваучери" +msgstr "Внесови на ваучери" #. module: account_voucher #: field:account.voucher,name:0 @@ -494,7 +494,8 @@ msgstr "Мемо" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile and cancel this record ?" -msgstr "Сигурно ли сакате да го откажете порамнувањето и записот?" +msgstr "" +"Сигурно ли сакате да извршите отпорамнување и да го откажете записот?" #. module: account_voucher #: field:account.voucher,is_multi_currency:0 @@ -550,7 +551,7 @@ msgid "Pay Invoice" msgstr "Плати фактура" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Нема основен код и даночен код на сметката!" @@ -581,12 +582,12 @@ msgid "" " " msgstr "" "

\n" -" Клик за регистрирање на ново плаќање. \n" +" Кликнете за регистрирање на ново плаќање. \n" "

\n" -" Внесете го клиентот и начинот на плаќање и тогаш или\n" +" Внесете го купувачот и начинот на плаќање и потоа или\n" " рачно внесете го записот за плаќање или OpenERP ќе ви даде " "предлог\n" -" автоматско порамнување на плаќањето со \n" +" за автоматско порамнување на плаќањето со \n" " отворената сметка или фактура\n" "

\n" " " @@ -600,7 +601,7 @@ msgstr "Сметка за загуба во девизен курс" #. module: account_voucher #: view:account.voucher:0 msgid "Paid Amount" -msgstr "Платена сума" +msgstr "Платен износ" #. module: account_voucher #: field:account.voucher,payment_option:0 @@ -614,15 +615,15 @@ msgid "To Review" msgstr "За прегледување" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "промени" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -630,13 +631,13 @@ msgid "" "to differences between exchange rates." msgstr "" "Треба да ја конфигурирате сметката за загуба во девизен курс, за автоматско " -"менаџирање на записите на сметката поврзани со разликите помеѓу девизните " -"курсеви." +"менаџирање на сметководствените внесови поврзани со разликите помеѓу " +"девизните курсеви." #. module: account_voucher #: view:account.voucher:0 msgid "Expense Lines" -msgstr "Линија за трошоци" +msgstr "Ставки за трошоци" #. module: account_voucher #: view:account.voucher:0 @@ -681,6 +682,7 @@ msgstr "Месец" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Валута" @@ -716,7 +718,7 @@ msgstr "Компанија" #. module: account_voucher #: help:account.voucher,paid:0 msgid "The Voucher has been totally paid." -msgstr "Ваучерот е целосно исплатен." +msgstr "Ваучерот е целосно платен." #. module: account_voucher #: selection:account.voucher,payment_option:0 @@ -724,7 +726,7 @@ msgid "Reconcile Payment Balance" msgstr "Порамнување на платниот биланс" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Грешка во конфигурацијата !" @@ -744,7 +746,7 @@ msgstr "Вкупно со данок" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Voucher" -msgstr "Ваучер за купување" +msgstr "Ваучер за набавка" #. module: account_voucher #: view:account.voucher:0 @@ -780,7 +782,7 @@ msgid "" "Check this box if you are unsure of that journal entry and if you want to " "note it as 'to be reviewed' by an accounting expert." msgstr "" -"Штиклирајте доколку не сте сигурни за внесот во записникот и сакате да го " +"Штиклирајте доколку не сте сигурни за внесот во дневникот и сакате да го " "означите како 'да се прегледа' од страна на сметководствен експерт." #. module: account_voucher @@ -789,10 +791,10 @@ msgid "October" msgstr "Октомври" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" -msgstr "Ве молиме активирајте го редоследот на одбраниот запис !" +msgstr "Ве молиме активирајте ја секвенцата на одбраниот дневник !" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -818,7 +820,7 @@ msgstr "Потврди за продажба" #. module: account_voucher #: field:account.voucher,message_is_follower:0 msgid "Is a Follower" -msgstr "е следбеник" +msgstr "Пратител" #. module: account_voucher #: field:account.voucher,analytic_id:0 @@ -869,7 +871,7 @@ msgid "Previous Payments ?" msgstr "Претходни плаќања ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "Фактурата што сакате да ја платите не е веќе валидна." @@ -883,7 +885,7 @@ msgstr "Јануари" #: model:ir.actions.act_window,name:account_voucher.action_voucher_list #: model:ir.ui.menu,name:account_voucher.menu_encode_entries_by_voucher msgid "Journal Vouchers" -msgstr "Ваучери за записи" +msgstr "Ваучери за дневник" #. module: account_voucher #: model:ir.model,name:account_voucher.model_res_company @@ -901,17 +903,17 @@ msgid "Active" msgstr "Активен" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." -msgstr "Ве молиме дефинирајте го редоследот на записите" +msgstr "Ве молиме дефинирајте ја секвенцата на дневникот." #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.act_pay_voucher #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "Плаќања на клиентите" +msgstr "Плаќања на купувач" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all @@ -923,12 +925,12 @@ msgstr "Анализа на потврдите од продажбите" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by Invoice Date" -msgstr "Групирај по дата на фактура" +msgstr "Групирај по датум на фактура" #. module: account_voucher #: view:account.voucher:0 msgid "Post" -msgstr "Испрати" +msgstr "Објави" #. module: account_voucher #: view:account.voucher:0 @@ -939,12 +941,12 @@ msgstr "Фактури и неподмирени трансакции" #: view:sale.receipt.report:0 #: field:sale.receipt.report,price_total:0 msgid "Total Without Tax" -msgstr "Вкупно без данок" +msgstr "Даночна основа" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Date" -msgstr "Дата на сметка" +msgstr "Датум на сметка" #. module: account_voucher #: view:account.voucher:0 @@ -965,7 +967,7 @@ msgstr "Број" #. module: account_voucher #: selection:account.voucher.line,type:0 msgid "Credit" -msgstr "Кредит" +msgstr "Побарување" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement @@ -1002,7 +1004,7 @@ msgstr "Фактура" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Items" -msgstr "Елементи за ваучерот" +msgstr "Ставки на ваучерот" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -1013,7 +1015,7 @@ msgstr "Откажи" #. module: account_voucher #: model:ir.actions.client,name:account_voucher.action_client_invoice_menu msgid "Open Invoicing Menu" -msgstr "Отвори го менито за фактури" +msgstr "Отвори го менито Фактурирање" #. module: account_voucher #: selection:account.voucher,state:0 @@ -1026,20 +1028,20 @@ msgstr "Про-фактура" #: view:account.voucher:0 #: field:account.voucher,move_ids:0 msgid "Journal Items" -msgstr "Ставки во картица" +msgstr "Ставки во дневник" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" -"Ве молиме дефинирајте стандардна кредитна/дебитна сметка за записот \"%s\"." +"Ве молиме дефинирајте стандардни сметки побарува/задолжува за записот \"%s\"." #. module: account_voucher #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Purchase" -msgstr "Купување" +msgstr "Набавка" #. module: account_voucher #: view:account.invoice:0 @@ -1090,7 +1092,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Posted Vouchers" -msgstr "Испратени ваучери" +msgstr "Објавени ваучери" #. module: account_voucher #: field:account.voucher,payment_rate:0 @@ -1123,23 +1125,23 @@ msgstr "Потврда за продажба" #: view:sale.receipt.report:0 #: field:sale.receipt.report,journal_id:0 msgid "Journal" -msgstr "Запис" +msgstr "Дневник" #. module: account_voucher #: view:account.voucher:0 msgid "Internal Notes" -msgstr "Внатрешни забелешки" +msgstr "Внатрешни белешки" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,line_cr_ids:0 msgid "Credits" -msgstr "Кредити" +msgstr "Побарувања" #. module: account_voucher #: field:account.voucher.line,amount_original:0 msgid "Original Amount" -msgstr "Оригинална сума" +msgstr "Оригинален износ" #. module: account_voucher #: view:account.voucher:0 @@ -1170,12 +1172,12 @@ msgstr "Плаќање" #: view:sale.receipt.report:0 #: selection:sale.receipt.report,state:0 msgid "Posted" -msgstr "Пратено" +msgstr "Објавено" #. module: account_voucher #: view:account.voucher:0 msgid "Customer" -msgstr "Клиент" +msgstr "Купувач" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -1228,12 +1230,12 @@ msgstr "Стандарден тип" #. module: account_voucher #: help:account.voucher,message_ids:0 msgid "Messages and communication history" -msgstr "Пораки и историја на комуникација" +msgstr "Историја на пораки и комуникацијата" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines msgid "Entries by Statement from Invoices" -msgstr "Записи по изјава од фактури" +msgstr "Внесови пд извод од фактури" #. module: account_voucher #: view:account.voucher:0 @@ -1244,25 +1246,25 @@ msgstr "Вкупно" #. module: account_voucher #: field:account.voucher,move_id:0 msgid "Account Entry" -msgstr "Запис на сметка" +msgstr "Внес на сметка" #. module: account_voucher #: constraint:account.bank.statement.line:0 msgid "" "The amount of the voucher must be the same amount as the one on the " "statement line." -msgstr "Сумата на ваучерот мора да биде иста со сумата во изјавата." +msgstr "Сумата на ваучерот мора да биде иста со сумата во изводот." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." -msgstr "Неможете да избришете ваучер(и) кои се веќе отворени или платени." +msgstr "Не можете да избришете ваучер(и) кои се веќе отворени или платени." #. module: account_voucher #: help:account.voucher,date:0 msgid "Effective date for accounting entries" -msgstr "Дата на стапување во сила на сметководствените записи" +msgstr "Дата на доспевање на сметководствените внесови" #. module: account_voucher #: model:mail.message.subtype,name:account_voucher.mt_voucher_state_change @@ -1272,14 +1274,14 @@ msgstr "Промена на статус" #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Keep Open" -msgstr "Држи отворено" +msgstr "Остави отворено" #. module: account_voucher #: field:account.voucher,line_ids:0 #: view:account.voucher.line:0 #: model:ir.model,name:account_voucher.model_account_voucher_line msgid "Voucher Lines" -msgstr "Линии на ваучер" +msgstr "Ставки на ваучер" #. module: account_voucher #: view:sale.receipt.report:0 @@ -1290,7 +1292,7 @@ msgstr "Просечно доцнење на наплата" #. module: account_voucher #: field:account.voucher.line,untax_amount:0 msgid "Untax Amount" -msgstr "Обезданочување на сумата" +msgstr "Неданочен износ" #. module: account_voucher #: model:ir.model,name:account_voucher.model_sale_receipt_report @@ -1309,7 +1311,7 @@ msgstr "Партнер" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 msgid "Open Balance" -msgstr "Отворено биланс" +msgstr "Отвори салдо" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change @@ -1317,8 +1319,8 @@ msgid "Status changed" msgstr "Статусот е променет" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Недоволна конфигурација!" @@ -1330,6 +1332,9 @@ msgid "" "inactive, which allow to hide the customer/supplier payment while the bank " "statement isn't confirmed." msgstr "" -"Стандардно, Ваучерите за порамнување правени по нацрт банкарски извештаи се " -"неактивни, со што се дозволува криење на клиент/добавувач плаќањето додека " -"не се потврди изјавата на банката." +"Стандардно, Ваучерите за порамнување направени по нацрт банкарски изводи се " +"неактивни, со што се дозволува да се сокрие плаќањето на " +"купувачот/добавувачот додека не се потврди изводот на банката." + +#~ msgid "Sales Receipt" +#~ msgstr "Потврда за продажба" diff --git a/addons/account_voucher/i18n/mn.po b/addons/account_voucher/i18n/mn.po index 02c3a4a0c76..61c1b80b324 100644 --- a/addons/account_voucher/i18n/mn.po +++ b/addons/account_voucher/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,10 +28,10 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" -msgstr "Зөрүү" +msgstr "Хасалт" #. module: account_voucher #: view:account.voucher:0 @@ -103,7 +103,7 @@ msgstr "Тооцоо хийх" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure you want to cancel this receipt?" -msgstr "Та энэ талоныг хэрэгсэхгүй болгохдоо итгэлтэй байна уу?" +msgstr "Та энэ баримтыг цуцлахдаа итгэлтэй байна уу?" #. module: account_voucher #: view:account.voucher:0 @@ -124,7 +124,7 @@ msgstr "Нэхэмжилсэн Огнооны Жилээр нь Бүлэглэх #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesperson" -msgstr "Худалдагч" +msgstr "Борлуулалтын ажилтан" #. module: account_voucher #: view:account.voucher:0 @@ -132,7 +132,7 @@ msgid "Voucher Statistics" msgstr "Ваучерийн статистик" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -163,10 +163,9 @@ msgid "" " " msgstr "" "

\n" -" Худалдан авалтын талон үүсгэхээр бол дарна уу. \n" +" Худалдан авалтын баримт үүсгэхээр бол дарна уу. \n" "

\n" -" Худалдан авалтын талон батласан дараа холбогдох " -"нийлүүлэгчийн\n" +" Худалдан авалтын баримтыг батласан дараа нийлүүлэгчийн\n" " төлбөрийг хөтлөх боломжтой.\n" "

\n" " " @@ -179,7 +178,7 @@ msgstr "Ваучераар хайх" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 msgid "Counterpart Account" -msgstr "Гүйцээлтийн данс" +msgstr "Харьцах Данс" #. module: account_voucher #: field:account.voucher,account_id:0 @@ -201,7 +200,7 @@ msgstr "Тийм" #. module: account_voucher #: field:account.voucher.line,reconcile:0 msgid "Full Reconcile" -msgstr "Бүтэн гүйцээлт" +msgstr "Бүтэн тулгалт" #. module: account_voucher #: field:account.voucher,date_due:0 @@ -225,7 +224,7 @@ msgstr "Зурвасууд" #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "Худалдан авалтын талон" +msgstr "Худалдан авалтын баримт" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 @@ -233,8 +232,8 @@ msgid "Journal Item" msgstr "Журналын бичилт" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Алдаа!" @@ -261,7 +260,7 @@ msgid "Cancelled" msgstr "Цуцлагдсан" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -281,9 +280,9 @@ msgid "" " " msgstr "" "

\n" -" Борлуулалтын талон үүсгэхээр бол дарна уу.\n" +" Борлуулалтын баримт үүсгэхээр бол дарна уу.\n" "

\n" -" Борлуулалтын талон батлагдсан дараа холбогдох\n" +" Борлуулалтын баримт батлагдсан дараа холбогдох\n" " захиалагчийн төлбөрийг хөтлөх боломжтой.\n" "

\n" " " @@ -312,7 +311,7 @@ msgid "Tax" msgstr "Татвар" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Буруу Үйлдэл!" @@ -320,7 +319,7 @@ msgstr "Буруу Үйлдэл!" #. module: account_voucher #: field:account.voucher,comment:0 msgid "Counterpart Comment" -msgstr "Гүйцээлтийн тайлбар" +msgstr "Харьцах дансны тайлбар" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 @@ -365,7 +364,7 @@ msgid "Import Invoices" msgstr "Нэхэмжлэх Импортлох" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Буруу ваучерийн мөр" @@ -384,7 +383,7 @@ msgid "Receipt" msgstr "Талон" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -407,7 +406,7 @@ msgstr "Мөчлөг" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Нийлүүлэгч" @@ -428,7 +427,7 @@ msgid "Debit" msgstr "Дебит" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Журнал өөрчлөх боломжгүй!" @@ -550,7 +549,7 @@ msgid "Pay Invoice" msgstr "Төлбөрийн нэхэмжлэл" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Дансны Суурь код болон Дансны Татварын Код алга байна!" @@ -585,7 +584,7 @@ msgstr "" "

\n" " Захиалагч болон төлбөрийг сонгоод дараа нь\n" " гараараа төлбөрийг оруулна эсвэл OpenERP\n" -" автоматаар нээлттэй нэхэмжлэл юмуу борлуулалтын талонтай\n" +" автоматаар нээлттэй нэхэмжлэх эсвэл борлуулалтын баримттай\n" " тулгалт хийхийг санал болгоно.\n" "

\n" " " @@ -613,15 +612,15 @@ msgid "To Review" msgstr "Үзлэг хийх" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "зөрүү" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -679,6 +678,7 @@ msgstr "Сар" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Валют" @@ -722,7 +722,7 @@ msgid "Reconcile Payment Balance" msgstr "Төлбөрийн үлдэгдлийг гүйцээх" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Тохиргооны алдаа !" @@ -787,7 +787,7 @@ msgid "October" msgstr "10-р сар" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Сонгосон журналын дарааллыг идэвхжүүлнэ үү!" @@ -811,7 +811,7 @@ msgstr "Төлөгдсөн" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "Борлуулалтын талон" +msgstr "Борлуулалтын баримт" #. module: account_voucher #: field:account.voucher,message_is_follower:0 @@ -821,7 +821,7 @@ msgstr "Дагагч эсэх" #. module: account_voucher #: field:account.voucher,analytic_id:0 msgid "Write-Off Analytic Account" -msgstr "Хасагдуулгын Шинжилгээний Данс" +msgstr "Хасалтын Шинжилгээний Данс" #. module: account_voucher #: field:account.voucher,date:0 @@ -867,7 +867,7 @@ msgid "Previous Payments ?" msgstr "Өмнөх төлбөрүүд ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "Таны төлөх гэж буй нэхэмжлэл нь хүчингүй болсон байна" @@ -899,7 +899,7 @@ msgid "Active" msgstr "Идэвхтэй" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Энэ журналд дараалaл тодорхойлон уу." @@ -916,7 +916,7 @@ msgstr "Захиалагчийн төлбөр" #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "Борлуулалтын талоны шинжилгээ" +msgstr "Борлуулалтын баримтын шинжилгээ" #. module: account_voucher #: view:sale.receipt.report:0 @@ -947,7 +947,7 @@ msgstr "Тооцоо бодсон огноо" #. module: account_voucher #: view:account.voucher:0 msgid "Unreconcile" -msgstr "Гүйцээлтийг цуцлах" +msgstr "Тулгалтыг арилгах" #. module: account_voucher #: view:account.voucher:0 @@ -1018,7 +1018,7 @@ msgstr "Нэхэмжлэлийн Цэсийг Нээх" #: view:sale.receipt.report:0 #: selection:sale.receipt.report,state:0 msgid "Pro-forma" -msgstr "Урьтал" +msgstr "Урьдчилсан" #. module: account_voucher #: view:account.voucher:0 @@ -1027,7 +1027,7 @@ msgid "Journal Items" msgstr "Журналын бичилтүүд" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "Журналд үндсэн кредит/дебит дансаа тодорхойлно уу \"%s\"." @@ -1138,7 +1138,7 @@ msgstr "Жинхэнэ дүн" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Receipt" -msgstr "Худалдан авалтын талон" +msgstr "Худалдан авалтын баримт" #. module: account_voucher #: help:account.voucher,payment_rate:0 @@ -1248,7 +1248,7 @@ msgid "" msgstr "Ваучерийн үнийн дүн нь хуулгын мөр дээрх дүнтэй адил байх ёстой." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Нэгэнт нээчихсэн эсвэл төлөгдчихсөн ваучер устгагдах боломжгүй." @@ -1289,7 +1289,7 @@ msgstr "Татвар татахгүй дүн" #. module: account_voucher #: model:ir.model,name:account_voucher.model_sale_receipt_report msgid "Sales Receipt Statistics" -msgstr "Борлуулалтын талоны статистик" +msgstr "Борлуулалтын баримтын статистик" #. module: account_voucher #: view:account.voucher:0 @@ -1311,8 +1311,8 @@ msgid "Status changed" msgstr "Төлөв өөрчлөгдлөө" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Тохиргоо Дутуу байна!" diff --git a/addons/account_voucher/i18n/nb.po b/addons/account_voucher/i18n/nb.po index fad3cfe5853..d26bf1919f5 100644 --- a/addons/account_voucher/i18n/nb.po +++ b/addons/account_voucher/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "Konto.konfigurasjon.innstillinger." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Nedskrivning." @@ -132,7 +132,7 @@ msgid "Voucher Statistics" msgstr "Kupong statistikker." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -226,8 +226,8 @@ msgid "Journal Item" msgstr "Journal Elementer." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Feil!" @@ -254,7 +254,7 @@ msgid "Cancelled" msgstr "Kansellert." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -297,7 +297,7 @@ msgid "Tax" msgstr "Skatt." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Ugyldig handling!" @@ -348,7 +348,7 @@ msgid "Import Invoices" msgstr "Importer fakturaer." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -367,7 +367,7 @@ msgid "Receipt" msgstr "Kvittering." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -388,7 +388,7 @@ msgstr "Periode." #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Leverandør" @@ -409,7 +409,7 @@ msgid "Debit" msgstr "Debet." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Kan ikke endre journal!" @@ -515,7 +515,7 @@ msgid "Pay Invoice" msgstr "Betal faktura." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Ingen konto base kode og konto skatt kode." @@ -569,15 +569,15 @@ msgid "To Review" msgstr "Til gjennomgang." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "Endre." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -631,6 +631,7 @@ msgstr "Måned." #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta." @@ -674,7 +675,7 @@ msgid "Reconcile Payment Balance" msgstr "Avstemming betalings balanse." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Konfigurasjons feil!" @@ -737,7 +738,7 @@ msgid "October" msgstr "Oktober." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Vennligst aktiver sekvensen av den utvalgte journal!" @@ -817,7 +818,7 @@ msgid "Previous Payments ?" msgstr "Tidligere Betalinger ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -849,7 +850,7 @@ msgid "Active" msgstr "Aktiv." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Vennligst definere en sekvens på tidsskriftet." @@ -977,7 +978,7 @@ msgid "Journal Items" msgstr "Journal Elementer." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1188,7 +1189,7 @@ msgstr "" "Mengden av kupongen må være det samme beløp som den på uttalelse linje." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Kan ikke slette kupong(er) som allerede er åpnet eller betalt." @@ -1251,8 +1252,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/nl.po b/addons/account_voucher/i18n/nl.po index 9842be54abd..7a70d02b291 100644 --- a/addons/account_voucher/i18n/nl.po +++ b/addons/account_voucher/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-11-24 22:01+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:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,10 +27,10 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" -msgstr "Boek af" +msgstr "Afschrijving" #. module: account_voucher #: view:account.voucher:0 @@ -77,7 +77,7 @@ msgstr "Rekening betaling" #: view:account.statement.from.invoice.lines:0 #: model:ir.actions.act_window,name:account_voucher.action_view_account_statement_from_invoice_lines msgid "Import Entries" -msgstr "Importeer invoerregels" +msgstr "Importeer boekingen" #. module: account_voucher #: view:account.voucher:0 @@ -131,7 +131,7 @@ msgid "Voucher Statistics" msgstr "Betaalbewijs analyses" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -143,7 +143,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Validate" -msgstr "Valideren" +msgstr "Bevestigen" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment @@ -190,7 +190,7 @@ msgstr "Rekening" #. module: account_voucher #: field:account.voucher,line_dr_ids:0 msgid "Debits" -msgstr "Debet" +msgstr "Debet regels" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -229,11 +229,11 @@ msgstr "Aankoopbewijs" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 msgid "Journal Item" -msgstr "Journaal item" +msgstr "Boeking" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Fout!" @@ -260,7 +260,7 @@ msgid "Cancelled" msgstr "Geannuleerd" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -311,7 +311,7 @@ msgid "Tax" msgstr "Belasting" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Ongeldige actie!" @@ -365,7 +365,7 @@ msgid "Import Invoices" msgstr "Importeer facturen" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Verkeerde regel van het betaalbewijs" @@ -384,7 +384,7 @@ msgid "Receipt" msgstr "Betaalbewijs" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -408,7 +408,7 @@ msgstr "Periode" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Leverancier" @@ -429,7 +429,7 @@ msgid "Debit" msgstr "Debet" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Niet mogelijk om het dagboek te wijzigen!" @@ -551,7 +551,7 @@ msgid "Pay Invoice" msgstr "Betaling factuur" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Geen financiële rekening en fiscale rekening gedefinieerd!" @@ -564,7 +564,7 @@ msgstr "Belastingbedrag" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Validated Vouchers" -msgstr "Gevalideerde betaalbewijzen" +msgstr "Bevestigde betaalbewijzen" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_receipt @@ -615,15 +615,15 @@ msgid "To Review" msgstr "Na te kijken" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "wijziging" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -682,6 +682,7 @@ msgstr "Maand" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta" @@ -726,7 +727,7 @@ msgid "Reconcile Payment Balance" msgstr "Afletteren betalingsbalans" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Configuratiefout !" @@ -791,7 +792,7 @@ msgid "October" msgstr "oktober" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Activeer de reeks van het geselecteerde dagboek!" @@ -871,7 +872,7 @@ msgid "Previous Payments ?" msgstr "Vorige betalingen?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "De factuur die u wilt betalen is niet meer geldig." @@ -903,7 +904,7 @@ msgid "Active" msgstr "Actief" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Definieer een reeks voor dit dagboek." @@ -1028,10 +1029,10 @@ msgstr "Pro-forma" #: view:account.voucher:0 #: field:account.voucher,move_ids:0 msgid "Journal Items" -msgstr "Boekingen" +msgstr "Boekingsregels" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "Definieer standaard credit/debit rekeningen voor dit dagboek \"%s\"." @@ -1136,7 +1137,7 @@ msgstr "Interne notities" #: view:account.voucher:0 #: field:account.voucher,line_cr_ids:0 msgid "Credits" -msgstr "Credits" +msgstr "Credit regels" #. module: account_voucher #: field:account.voucher.line,amount_original:0 @@ -1256,7 +1257,7 @@ msgstr "" "afschriftregel." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1321,8 +1322,8 @@ msgid "Status changed" msgstr "Status veranderd" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Onvoldoende instellingen!" @@ -1623,9 +1624,6 @@ msgstr "" #~ msgid "Unreconcile entries" #~ msgstr "Maak afletteren ongedaan" -#~ msgid "Sales Receipt" -#~ msgstr "Verkoopbon" - #~ msgid "Write-Off Amount" #~ msgstr "Afschrijf bedrag" @@ -1799,3 +1797,6 @@ msgstr "" #~ msgid "Payment Terms" #~ msgstr "Betalingscondities" + +#~ msgid "Sales Receipt" +#~ msgstr "Betaalbewijs" diff --git a/addons/account_voucher/i18n/nl_BE.po b/addons/account_voucher/i18n/nl_BE.po index 04366df488e..6c248fba734 100644 --- a/addons/account_voucher/i18n/nl_BE.po +++ b/addons/account_voucher/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: nl\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/oc.po b/addons/account_voucher/i18n/oc.po index 962231d1e61..18ed1087bc5 100644 --- a/addons/account_voucher/i18n/oc.po +++ b/addons/account_voucher/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "Periòde" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "Debit" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Devisa" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/pl.po b/addons/account_voucher/i18n/pl.po index 422cfcaa50f..f0a1530efca 100644 --- a/addons/account_voucher/i18n/pl.po +++ b/addons/account_voucher/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Odpis" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Statystyka poleceń" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -146,7 +146,7 @@ msgstr "Zatwierdź" #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payments" -msgstr "Płatności od dostwców" +msgstr "Płatności od dostawców" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -230,8 +230,8 @@ msgid "Journal Item" msgstr "Pozycja zapisu dziennika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Błąd!" @@ -258,7 +258,7 @@ msgid "Cancelled" msgstr "Anulowano" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -308,7 +308,7 @@ msgid "Tax" msgstr "Podatek" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Niedozwolona akcja!" @@ -362,7 +362,7 @@ msgid "Import Invoices" msgstr "Importuj faktury" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Błędna pozycja rachunku" @@ -381,7 +381,7 @@ msgid "Receipt" msgstr "Rachunek" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -404,7 +404,7 @@ msgstr "Okres" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Dostawca" @@ -425,7 +425,7 @@ msgid "Debit" msgstr "Winien" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Nie można zmienić dziennika !" @@ -547,7 +547,7 @@ msgid "Pay Invoice" msgstr "Zapłać fakturę" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Brak rejestru podstawy i rejestru podatku !" @@ -611,15 +611,15 @@ msgid "To Review" msgstr "Do sprawdzenia" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "zmień" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -677,6 +677,7 @@ msgstr "Miesiąc" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Waluta" @@ -720,7 +721,7 @@ msgid "Reconcile Payment Balance" msgstr "Uzgodnij bilans płatności" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Błąd konfiguracji !" @@ -785,7 +786,7 @@ msgid "October" msgstr "Październik" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Aktywuj numerację wybranego dziennika !" @@ -865,7 +866,7 @@ msgid "Previous Payments ?" msgstr "Poprzednia płatność ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "Faktura, którą chcesz zapłacić, nie jest poprawna." @@ -897,7 +898,7 @@ msgid "Active" msgstr "Aktywne" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Zdefiniuj numerację w dzienniku" @@ -1025,7 +1026,7 @@ msgid "Journal Items" msgstr "Pozycje zapisów dziennika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "Zdefiniuj domyślne konta Winien/Ma w dzienniku \"%s\"." @@ -1244,7 +1245,7 @@ msgid "" msgstr "Kwota płatności musi być taka sama jak w pozycji wyciągu." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Nie mozna usuwać racunków/płatności, które są otwarte lub zapłacone." @@ -1307,8 +1308,8 @@ msgid "Status changed" msgstr "Stan zmieniono" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Niepełna konfiguracja!" diff --git a/addons/account_voucher/i18n/pt.po b/addons/account_voucher/i18n/pt.po index 6bb1a048d71..bee4dff38ad 100644 --- a/addons/account_voucher/i18n/pt.po +++ b/addons/account_voucher/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Eliminar" @@ -131,7 +131,7 @@ msgid "Voucher Statistics" msgstr "Estatísticas do voucher" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -223,8 +223,8 @@ msgid "Journal Item" msgstr "Item do Diário" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Erro!" @@ -251,7 +251,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -295,7 +295,7 @@ msgid "Tax" msgstr "Imposto" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Ação inválida!" @@ -346,7 +346,7 @@ msgid "Import Invoices" msgstr "Importar faturas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -365,7 +365,7 @@ msgid "Receipt" msgstr "Recibo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -386,7 +386,7 @@ msgstr "Período" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Fornecedor" @@ -407,7 +407,7 @@ msgid "Debit" msgstr "Débito" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -513,7 +513,7 @@ msgid "Pay Invoice" msgstr "Pagar fatura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Sem código da conta base e código da conta impostos" @@ -567,15 +567,15 @@ msgid "To Review" msgstr "Para rever" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "modificar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -605,7 +605,7 @@ msgstr "" #. module: account_voucher #: view:account.invoice:0 msgid "Register Payment" -msgstr "" +msgstr "Registar pagamento" #. module: account_voucher #: field:account.statement.from.invoice.lines,line_ids:0 @@ -631,6 +631,7 @@ msgstr "Mês" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Moeda" @@ -674,7 +675,7 @@ msgid "Reconcile Payment Balance" msgstr "Reconciliar Balanço de Pagamentos" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Erro de configuração!" @@ -739,7 +740,7 @@ msgid "October" msgstr "Outubro" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -763,7 +764,7 @@ msgstr "Pago" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "Recibos de venda" #. module: account_voucher #: field:account.voucher,message_is_follower:0 @@ -819,7 +820,7 @@ msgid "Previous Payments ?" msgstr "Pagamentos anteriores?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -851,7 +852,7 @@ msgid "Active" msgstr "Ativo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -979,7 +980,7 @@ msgid "Journal Items" msgstr "Items do Diário" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1193,7 +1194,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1256,8 +1257,8 @@ msgid "Status changed" msgstr "Estado alterado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Configuração incompleta!" diff --git a/addons/account_voucher/i18n/pt_BR.po b/addons/account_voucher/i18n/pt_BR.po index c2268b61e4c..e729414f06f 100644 --- a/addons/account_voucher/i18n/pt_BR.po +++ b/addons/account_voucher/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Ajuste" @@ -132,7 +132,7 @@ msgid "Voucher Statistics" msgstr "Estatísticas de Comprovantes" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -233,8 +233,8 @@ msgid "Journal Item" msgstr "Item de Diário" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Erro!" @@ -261,7 +261,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -312,7 +312,7 @@ msgid "Tax" msgstr "Imposto" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Ação Inválida!" @@ -366,7 +366,7 @@ msgid "Import Invoices" msgstr "Importar Faturas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Linha de comprovante errada" @@ -385,7 +385,7 @@ msgid "Receipt" msgstr "Recebido" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -409,7 +409,7 @@ msgstr "Período" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Fornecedor" @@ -430,7 +430,7 @@ msgid "Debit" msgstr "Débito" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Não é possível alterar o diário!" @@ -550,7 +550,7 @@ msgid "Pay Invoice" msgstr "Pagar Fatura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Sem conta para Base e Imposto!" @@ -614,15 +614,15 @@ msgid "To Review" msgstr "Para Revisar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "modificar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -681,6 +681,7 @@ msgstr "Mês" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Moeda" @@ -724,7 +725,7 @@ msgid "Reconcile Payment Balance" msgstr "Reconciliar o Balanço do Pagamento" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Erro de Configuração!" @@ -789,7 +790,7 @@ msgid "October" msgstr "Outubro" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Por favor ative a sequência no diário selecionado!" @@ -869,7 +870,7 @@ msgid "Previous Payments ?" msgstr "Pagamentos Anteriores?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "A fatura que você deseja pagar não é mais válida." @@ -901,7 +902,7 @@ msgid "Active" msgstr "Ativo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Por favor defina a sequência no diário." @@ -1029,7 +1030,7 @@ msgid "Journal Items" msgstr "Itens do Diário" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "Por favor defina a conta de crédito/débito padrão no diário \"%s\"." @@ -1254,7 +1255,7 @@ msgstr "" "demonstrativo." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Não é possivel excluir comprovante(s) que já foi aberto ou pago." @@ -1317,8 +1318,8 @@ msgid "Status changed" msgstr "Situação alterada" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Configurações Insuficientes!" diff --git a/addons/account_voucher/i18n/ro.po b/addons/account_voucher/i18n/ro.po index 8a8485eea37..f17d75ff65e 100644 --- a/addons/account_voucher/i18n/ro.po +++ b/addons/account_voucher/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "setari.config.cont" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Pierdere" @@ -131,7 +131,7 @@ msgid "Voucher Statistics" msgstr "Statistici voucher" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -234,8 +234,8 @@ msgid "Journal Item" msgstr "Element Jurnal" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Eroare!" @@ -262,7 +262,7 @@ msgid "Cancelled" msgstr "Anulat(a)" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -314,7 +314,7 @@ msgid "Tax" msgstr "Taxa" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Actiune Nevalida!" @@ -367,7 +367,7 @@ msgid "Import Invoices" msgstr "Importati Facturi" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Linie incorecta a voucher-ului" @@ -386,7 +386,7 @@ msgid "Receipt" msgstr "Chitanta" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -410,7 +410,7 @@ msgstr "Perioada" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Furnizor" @@ -431,7 +431,7 @@ msgid "Debit" msgstr "Debit" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Registrul nu a putut fi schimbat !" @@ -555,7 +555,7 @@ msgid "Pay Invoice" msgstr "Platiti Factura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -620,15 +620,15 @@ msgid "To Review" msgstr "De verificat" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "schimbati" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -687,6 +687,7 @@ msgstr "Luna" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Moneda" @@ -730,7 +731,7 @@ msgid "Reconcile Payment Balance" msgstr "Reconciliati Plata Sold" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Eroare de Configurare !" @@ -796,7 +797,7 @@ msgid "October" msgstr "Octombrie" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Va rugam sa activati secventa registrului selectat !" @@ -876,7 +877,7 @@ msgid "Previous Payments ?" msgstr "Plati anterioare ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "Factura pe care doriti sa o achitati nu mai este valabila." @@ -908,7 +909,7 @@ msgid "Active" msgstr "Activ(a)" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Va rugam sa definiti o secventa in registru." @@ -1036,7 +1037,7 @@ msgid "Journal Items" msgstr "Elementele Jurnalului" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1263,7 +1264,7 @@ msgstr "" "Valoarea voucher-ului trebuie sa fie acceasi ca si cea din linia extrasului." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Nu pot fi sterse voucherele care sunt deja deschise sau platite." @@ -1326,8 +1327,8 @@ msgid "Status changed" msgstr "Starea schimbata" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Configurare Insuficienta!" diff --git a/addons/account_voucher/i18n/ru.po b/addons/account_voucher/i18n/ru.po index 16e03d424ef..a047271ca0c 100644 --- a/addons/account_voucher/i18n/ru.po +++ b/addons/account_voucher/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-14 05:38+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sl.po b/addons/account_voucher/i18n/sl.po index 2e086000ffb..d2df474fffa 100644 --- a/addons/account_voucher/i18n/sl.po +++ b/addons/account_voucher/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Odpis" @@ -45,7 +45,7 @@ msgstr "Skupni znesek" #. module: account_voucher #: view:account.voucher:0 msgid "Open Customer Journal Entries" -msgstr "" +msgstr "Odprite vknjižbe kupcev" #. module: account_voucher #: view:account.voucher:0 @@ -59,6 +59,7 @@ msgid "" "Computed as the difference between the amount stated in the voucher and the " "sum of allocation on the voucher lines." msgstr "" +"Razlika med zneskom v glavi in vsemi razporejenimi zneski na postavkah." #. module: account_voucher #: view:account.voucher:0 @@ -69,7 +70,7 @@ msgstr "(Posodobi)" #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.act_pay_bills msgid "Bill Payment" -msgstr "" +msgstr "Plačevanje računov" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -80,7 +81,7 @@ msgstr "Uvozi vnose" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Entry" -msgstr "" +msgstr "Potrdilo o plačilu" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -95,12 +96,12 @@ msgstr "Neprebrana sporočila" #. module: account_voucher #: view:account.voucher:0 msgid "Pay Bill" -msgstr "" +msgstr "Plačilo računa" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure you want to cancel this receipt?" -msgstr "" +msgstr "Res želite preklicati to potrdilo o prevzemu?" #. module: account_voucher #: view:account.voucher:0 @@ -110,7 +111,7 @@ msgstr "Preklopi v pripravo" #. module: account_voucher #: help:account.voucher,reference:0 msgid "Transaction reference number." -msgstr "" +msgstr "Referenca transakcije" #. module: account_voucher #: view:sale.receipt.report:0 @@ -126,15 +127,16 @@ msgstr "Prodajalec" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Statistics" -msgstr "" +msgstr "Statistika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " "lines!" msgstr "" +"Ne morete spremeniti dnevnika , ker ste že uskladili nekatere postavke!" #. module: account_voucher #: view:account.voucher:0 @@ -158,16 +160,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Novo potrdilo o prevzemu\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 msgid "Search Vouchers" -msgstr "" +msgstr "Iskanje potrdil o plačilu" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 msgid "Counterpart Account" -msgstr "" +msgstr "Proti konto" #. module: account_voucher #: field:account.voucher,account_id:0 @@ -179,7 +185,7 @@ msgstr "Konto" #. module: account_voucher #: field:account.voucher,line_dr_ids:0 msgid "Debits" -msgstr "" +msgstr "Obremenitve" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -189,7 +195,7 @@ msgstr "V redu" #. module: account_voucher #: field:account.voucher.line,reconcile:0 msgid "Full Reconcile" -msgstr "" +msgstr "Polna uskladitev" #. module: account_voucher #: field:account.voucher,date_due:0 @@ -213,7 +219,7 @@ msgstr "Sporočila" #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "" +msgstr "Potrdila o prevzemu" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 @@ -221,8 +227,8 @@ msgid "Journal Item" msgstr "Postavka" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Napaka!" @@ -235,7 +241,7 @@ msgstr "Znesek" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Options" -msgstr "" +msgstr "Načini plačila" #. module: account_voucher #: view:account.voucher:0 @@ -249,11 +255,11 @@ msgid "Cancelled" msgstr "Preklicano" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" -msgstr "" +msgstr "Manjkajo nastavitve na davku '%s' !" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_sale_receipt @@ -267,6 +273,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Novo potrdilo o prodaji\n" +"

\n" +" " #. module: account_voucher #: help:account.voucher,message_unread:0 @@ -291,7 +301,7 @@ msgid "Tax" msgstr "Davek" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Napačno dejanje!" @@ -299,7 +309,7 @@ msgstr "Napačno dejanje!" #. module: account_voucher #: field:account.voucher,comment:0 msgid "Counterpart Comment" -msgstr "" +msgstr "Zaznamek - proti konto" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 @@ -316,12 +326,12 @@ msgstr "Povzetek (število sporočil,..)" #. module: account_voucher #: view:account.voucher:0 msgid "Total Allocation" -msgstr "" +msgstr "Skupaj" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Information" -msgstr "" +msgstr "Informacije o plačilu" #. module: account_voucher #: view:account.voucher:0 @@ -342,10 +352,10 @@ msgid "Import Invoices" msgstr "Uvoz računov" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" -msgstr "" +msgstr "Napačna postavka" #. module: account_voucher #: selection:account.voucher,pay_now:0 @@ -361,7 +371,7 @@ msgid "Receipt" msgstr "Prejemek" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -372,7 +382,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Sales Lines" -msgstr "" +msgstr "Postavke prodaje" #. module: account_voucher #: view:account.voucher:0 @@ -382,7 +392,7 @@ msgstr "Obdobje" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Dobavitelj" @@ -390,7 +400,7 @@ msgstr "Dobavitelj" #. module: account_voucher #: view:account.voucher:0 msgid "Supplier Voucher" -msgstr "" +msgstr "Potrdilo dobavitela" #. module: account_voucher #: field:account.voucher,message_follower_ids:0 @@ -403,16 +413,16 @@ msgid "Debit" msgstr "V breme" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" -msgstr "" +msgstr "Ni možno spremeniti dnevnika" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,nbr:0 msgid "# of Voucher Lines" -msgstr "" +msgstr "# postavk" #. module: account_voucher #: view:sale.receipt.report:0 @@ -423,13 +433,13 @@ msgstr "Tip" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Pro-forma Vouchers" -msgstr "" +msgstr "Pro-forma potrdila" #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.act_journal_voucher_open msgid "Voucher Entries" -msgstr "" +msgstr "Postavke" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_payment @@ -442,16 +452,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Novo plačilo dobavitelju\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 msgid "Open Supplier Journal Entries" -msgstr "" +msgstr "Odprite vknjižbe dobaviteljev" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_review_voucher_list msgid "Vouchers Entries" -msgstr "" +msgstr "Potrdila" #. module: account_voucher #: field:account.voucher,name:0 @@ -461,17 +475,17 @@ msgstr "Zapisek" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile and cancel this record ?" -msgstr "" +msgstr "Res želite preklicati ta zapis?" #. module: account_voucher #: field:account.voucher,is_multi_currency:0 msgid "Multi Currency Voucher" -msgstr "" +msgstr "Več valutno potrdilo" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Information" -msgstr "" +msgstr "Informacije o računu" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -506,10 +520,10 @@ msgstr "Povprečje zamud plačil" #: code:addons/account_voucher/invoice.py:34 #, python-format msgid "Pay Invoice" -msgstr "" +msgstr "Plačilo računa" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -522,7 +536,7 @@ msgstr "Znesek davka" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Validated Vouchers" -msgstr "" +msgstr "Potrjena potrdila" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_receipt @@ -539,6 +553,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Novo plačilo\n" +"

\n" +" " #. module: account_voucher #: field:account.config.settings,expense_currency_exchange_account_id:0 @@ -549,7 +567,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Paid Amount" -msgstr "" +msgstr "Plačani znesek" #. module: account_voucher #: field:account.voucher,payment_option:0 @@ -563,15 +581,15 @@ msgid "To Review" msgstr "Za pregled" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "spremeni" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +643,7 @@ msgstr "Mesec" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta" @@ -642,7 +661,7 @@ msgstr "" #. module: account_voucher #: field:sale.receipt.report,state:0 msgid "Voucher Status" -msgstr "" +msgstr "Status" #. module: account_voucher #: view:account.voucher:0 @@ -668,7 +687,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Napaka v nastavitvah!" @@ -677,7 +696,7 @@ msgstr "Napaka v nastavitvah!" #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Draft Vouchers" -msgstr "" +msgstr "Osnutki" #. module: account_voucher #: view:sale.receipt.report:0 @@ -688,7 +707,7 @@ msgstr "Skupaj z davkom" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Voucher" -msgstr "" +msgstr "Potrdila o nakupu" #. module: account_voucher #: view:account.voucher:0 @@ -716,7 +735,7 @@ msgstr "Avgust" #. module: account_voucher #: view:account.voucher:0 msgid "Validate Payment" -msgstr "" +msgstr "Potrditev plačila" #. module: account_voucher #: help:account.voucher,audit:0 @@ -733,7 +752,7 @@ msgid "October" msgstr "Oktober" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -757,7 +776,7 @@ msgstr "Plačano" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "Potrdila prodaje" #. module: account_voucher #: field:account.voucher,message_is_follower:0 @@ -813,7 +832,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -845,7 +864,7 @@ msgid "Active" msgstr "Aktivno" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Določite številčno zaporedje" @@ -855,7 +874,7 @@ msgstr "Določite številčno zaporedje" #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "" +msgstr "Plačila kupcev" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all @@ -872,7 +891,7 @@ msgstr "Združeno po datumu računa" #. module: account_voucher #: view:account.voucher:0 msgid "Post" -msgstr "" +msgstr "Vknjiži" #. module: account_voucher #: view:account.voucher:0 @@ -919,7 +938,7 @@ msgstr "Bančni izpisek" #. module: account_voucher #: view:account.bank.statement:0 msgid "onchange_amount(amount)" -msgstr "" +msgstr "onchange_amount(amount)" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -929,14 +948,14 @@ msgstr "September" #. module: account_voucher #: view:account.voucher:0 msgid "Sales Information" -msgstr "" +msgstr "Informacije prodaje" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher.line,voucher_id:0 #: model:res.request.link,name:account_voucher.req_link_voucher msgid "Voucher" -msgstr "" +msgstr "Potrdilo" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_invoice @@ -946,7 +965,7 @@ msgstr "Račun" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Items" -msgstr "" +msgstr "Postavke" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -957,7 +976,7 @@ msgstr "Prekliči" #. module: account_voucher #: model:ir.actions.client,name:account_voucher.action_client_invoice_menu msgid "Open Invoicing Menu" -msgstr "" +msgstr "Odprite meni računov" #. module: account_voucher #: selection:account.voucher,state:0 @@ -973,10 +992,11 @@ msgid "Journal Items" msgstr "Postavke" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" +"Določiti morate privzete debetne in kreditne konte na dnevniku \"%s\"." #. module: account_voucher #: selection:account.voucher,type:0 @@ -1020,7 +1040,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Posted Vouchers" -msgstr "" +msgstr "Knjižena potrdila" #. module: account_voucher #: field:account.voucher,payment_rate:0 @@ -1030,7 +1050,7 @@ msgstr "Menjalni tečaj" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Method" -msgstr "" +msgstr "Način plačila" #. module: account_voucher #: field:account.voucher.line,name:0 @@ -1064,7 +1084,7 @@ msgstr "Interni zaznamki" #: view:account.voucher:0 #: field:account.voucher,line_cr_ids:0 msgid "Credits" -msgstr "" +msgstr "V dobro" #. module: account_voucher #: field:account.voucher.line,amount_original:0 @@ -1074,7 +1094,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Receipt" -msgstr "" +msgstr "Potrdilo nabave" #. module: account_voucher #: help:account.voucher,payment_rate:0 @@ -1118,7 +1138,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,reference:0 msgid "Ref #" -msgstr "" +msgstr "Ref #" #. module: account_voucher #: view:sale.receipt.report:0 @@ -1151,7 +1171,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,type:0 msgid "Default Type" -msgstr "" +msgstr "Privzeta vrsta" #. module: account_voucher #: help:account.voucher,message_ids:0 @@ -1182,10 +1202,10 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." -msgstr "" +msgstr "Ni možno izbrisati odprtega ali plačanega potrdila." #. module: account_voucher #: help:account.voucher,date:0 @@ -1207,7 +1227,7 @@ msgstr "Obdrži odprto" #: view:account.voucher.line:0 #: model:ir.model,name:account_voucher.model_account_voucher_line msgid "Voucher Lines" -msgstr "" +msgstr "Postavke" #. module: account_voucher #: view:sale.receipt.report:0 @@ -1218,12 +1238,12 @@ msgstr "Pov. Zamuda Plačila" #. module: account_voucher #: field:account.voucher.line,untax_amount:0 msgid "Untax Amount" -msgstr "" +msgstr "Neto" #. module: account_voucher #: model:ir.model,name:account_voucher.model_sale_receipt_report msgid "Sales Receipt Statistics" -msgstr "" +msgstr "Statistika prodajnih potrdil" #. module: account_voucher #: view:account.voucher:0 @@ -1245,11 +1265,11 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" -msgstr "" +msgstr "Premalo nastavitev!" #. module: account_voucher #: help:account.voucher,active:0 @@ -1387,3 +1407,6 @@ msgstr "" #~ msgid "Closing Balance" #~ msgstr "Zaključno stanje" + +#~ msgid "Sales Receipt" +#~ msgstr "Potrdilo prodaje" diff --git a/addons/account_voucher/i18n/sq.po b/addons/account_voucher/i18n/sq.po index fee2048f7d1..e8def82c4ed 100644 --- a/addons/account_voucher/i18n/sq.po +++ b/addons/account_voucher/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/sr.po b/addons/account_voucher/i18n/sr.po index e2050d1867e..6620020f76b 100644 --- a/addons/account_voucher/i18n/sr.po +++ b/addons/account_voucher/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Statistike Vaucera" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "Stavka Dnevnika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "Otkazano" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "Porez" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "Uvezi Racune" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "Racun" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "Razdoblje" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Dobavljač" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "Duguje" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "Racun" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Nema bazne postavke naloga kao ni poreza za isti." @@ -564,15 +564,15 @@ msgid "To Review" msgstr "Pregledati" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "Predhodne Isplate" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "Sadrzaj Dnevnika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/sr@latin.po b/addons/account_voucher/i18n/sr@latin.po index f323748059d..0c00c869e0d 100644 --- a/addons/account_voucher/i18n/sr@latin.po +++ b/addons/account_voucher/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Statistike Vaucera" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "Stavka Dnevnika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "Otkazano" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "Porez" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "Uvezi Racune" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "Racun" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "Razdoblje" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Dobavljač" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "Duguje" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "Racun" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Nema bazne postavke naloga kao ni poreza za isti." @@ -564,15 +564,15 @@ msgid "To Review" msgstr "Pregledati" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "Predhodne Isplate" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "Sadrzaj Dnevnika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/sv.po b/addons/account_voucher/i18n/sv.po index e60032b7199..3f81046e70e 100644 --- a/addons/account_voucher/i18n/sv.po +++ b/addons/account_voucher/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Avskrivning" @@ -131,7 +131,7 @@ msgid "Voucher Statistics" msgstr "Verifikatstatistik" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -223,8 +223,8 @@ msgid "Journal Item" msgstr "Journalpost" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -251,7 +251,7 @@ msgid "Cancelled" msgstr "Avbruten" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -293,7 +293,7 @@ msgid "Tax" msgstr "Skatt" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -344,7 +344,7 @@ msgid "Import Invoices" msgstr "Importera fakturor" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -363,7 +363,7 @@ msgid "Receipt" msgstr "Kvitto" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -384,7 +384,7 @@ msgstr "Period" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Leverantör" @@ -405,7 +405,7 @@ msgid "Debit" msgstr "Debet" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -511,7 +511,7 @@ msgid "Pay Invoice" msgstr "Betala faktura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Ingen kontokod och skattekod" @@ -565,15 +565,15 @@ msgid "To Review" msgstr "Att godkänna" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "ändra" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -629,6 +629,7 @@ msgstr "Månad" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta" @@ -672,7 +673,7 @@ msgid "Reconcile Payment Balance" msgstr "Stäm av betalningsbalansen" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -737,7 +738,7 @@ msgid "October" msgstr "oktober" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -817,7 +818,7 @@ msgid "Previous Payments ?" msgstr "Tidigare betalningar ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -849,7 +850,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -977,7 +978,7 @@ msgid "Journal Items" msgstr "Journalrader" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1193,7 +1194,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1256,8 +1257,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/tlh.po b/addons/account_voucher/i18n/tlh.po index 6a686118ad4..f6c27d5f596 100644 --- a/addons/account_voucher/i18n/tlh.po +++ b/addons/account_voucher/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -731,7 +732,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -811,7 +812,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +844,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -971,7 +972,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1180,7 +1181,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1243,8 +1244,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/tr.po b/addons/account_voucher/i18n/tr.po index 9db7f1927f1..6e1f6ba3c4a 100644 --- a/addons/account_voucher/i18n/tr.po +++ b/addons/account_voucher/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Borç Silme" @@ -131,13 +131,13 @@ msgid "Voucher Statistics" msgstr "Fiş İstatistikleri" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " "lines!" msgstr "" -"Hali hazırda bazı kalemlerin uzlaşmasını yaptığınızdan dolay günlüğü " +"Hali hazırda bazı kalemlerin uzlaşmasını yaptığınızdan dolayı yevmiyeyi " "değiştiremezsiniz!" #. module: account_voucher @@ -232,8 +232,8 @@ msgid "Journal Item" msgstr "Yevmiye Kalemi" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Hata!" @@ -257,10 +257,10 @@ msgstr "Diğer Bilgiler" #: selection:account.voucher,state:0 #: selection:sale.receipt.report,state:0 msgid "Cancelled" -msgstr "İptal Edilmiş" +msgstr "İptal Edildi" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -311,10 +311,10 @@ msgid "Tax" msgstr "Vergi" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" -msgstr "Geçersiz Eylem!" +msgstr "Geçersiz İşlem!" #. module: account_voucher #: field:account.voucher,comment:0 @@ -364,7 +364,7 @@ msgid "Import Invoices" msgstr "Faturaları İçe aktar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Yanlış fiş kalemi" @@ -383,7 +383,7 @@ msgid "Receipt" msgstr "Makbuz" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -407,7 +407,7 @@ msgstr "Dönem" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Tedarikçi" @@ -428,10 +428,10 @@ msgid "Debit" msgstr "Borç" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" -msgstr "Günlük değştirelemiyor !" +msgstr "Yevmiye değştirelemiyor !" #. module: account_voucher #: view:sale.receipt.report:0 @@ -549,10 +549,10 @@ msgid "Pay Invoice" msgstr "Fatura Ödeme" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" -msgstr "Hesap kodu ve Vergi kodu yok !" +msgstr "Hesap kodu ve Vergi kodu yok!" #. module: account_voucher #: field:account.voucher,tax_amount:0 @@ -614,15 +614,15 @@ msgid "To Review" msgstr "İncelenecek" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "değiştir" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -680,6 +680,7 @@ msgstr "Ay" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Para Birimi" @@ -723,7 +724,7 @@ msgid "Reconcile Payment Balance" msgstr "Bakiye Ödemesini Uzlaştır" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Yapılandırma Hatası!" @@ -750,7 +751,7 @@ msgstr "Satınalma Fişi" #: field:account.voucher,state:0 #: view:sale.receipt.report:0 msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. module: account_voucher #: view:account.voucher:0 @@ -788,7 +789,7 @@ msgid "October" msgstr "Ekim" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Lütfen seçilen günlüğün seri numarasını etkinleştirin !" @@ -817,7 +818,7 @@ msgstr "Satış Makbuzları" #. module: account_voucher #: field:account.voucher,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçi mi" +msgstr "Bir İzleyicidir" #. module: account_voucher #: field:account.voucher,analytic_id:0 @@ -868,7 +869,7 @@ msgid "Previous Payments ?" msgstr "Öncek Ödemeler ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "Ödemek istediğiniz fatura artık geçerli değil." @@ -900,7 +901,7 @@ msgid "Active" msgstr "Etkin" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Günlük için lütfen bir seri no tanımlayın." @@ -1028,11 +1029,11 @@ msgid "Journal Items" msgstr "Yevmiye Kalemleri" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" -"Bu günlükte lütfen varsayılan alacak/borç hesaplarını tanımlayın - \"%s\"." +"Bu yevmiyede lütfen varsayılan alacak/borç hesaplarını tanımlayın - \"%s\"." #. module: account_voucher #: selection:account.voucher,type:0 @@ -1250,7 +1251,7 @@ msgid "" msgstr "Fişin tutarı hesap özeti kalemindeki ile aynı tutarda olmalı." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Hali hazırda açık ya da ödenmiş olan fiş(ler) silinemiyor." @@ -1300,7 +1301,7 @@ msgstr "Satış Makbuzları İstatistikleri" #: view:sale.receipt.report:0 #: field:sale.receipt.report,partner_id:0 msgid "Partner" -msgstr "Paydaş" +msgstr "İş Ortağı" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 @@ -1313,8 +1314,8 @@ msgid "Status changed" msgstr "Durum değişti" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Yetersiz Yapılandırma!" diff --git a/addons/account_voucher/i18n/uk.po b/addons/account_voucher/i18n/uk.po index 44c6ca3535f..699c57bae81 100644 --- a/addons/account_voucher/i18n/uk.po +++ b/addons/account_voucher/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -731,7 +732,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -811,7 +812,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +844,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -971,7 +972,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1180,7 +1181,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1243,8 +1244,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/vi.po b/addons/account_voucher/i18n/vi.po index 633285bf856..510596fedbe 100644 --- a/addons/account_voucher/i18n/vi.po +++ b/addons/account_voucher/i18n/vi.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:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 msgid "Reconciliation" -msgstr "" +msgstr "Đối soát" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Miễn bỏ" @@ -64,7 +64,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(Cập nhật)" #. module: account_voucher #: view:account.voucher:0 @@ -91,7 +91,7 @@ msgstr "Tháng Ba" #. module: account_voucher #: field:account.voucher,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Tin chưa đọc" #. module: account_voucher #: view:account.voucher:0 @@ -101,7 +101,7 @@ msgstr "Trả hoá đơn" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure you want to cancel this receipt?" -msgstr "" +msgstr "Bạn có chắc muốn hủy bỏ biên lai này?" #. module: account_voucher #: view:account.voucher:0 @@ -122,7 +122,7 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Nhân viên bán hàng" #. module: account_voucher #: view:account.voucher:0 @@ -130,12 +130,12 @@ msgid "Voucher Statistics" msgstr "Thống kê phiếu" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " "lines!" -msgstr "" +msgstr "Bạn không thể xóa nhật ký khi khi đã đối soát" #. module: account_voucher #: view:account.voucher:0 @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "Đã hủy bỏ" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "Thuế" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "Phiếu thu" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "Chu kỳ" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Nhà cung cấp" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "Bên nợ" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "Thanh toán hóa đơn" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "Tháng" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Loại tiền" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "Tháng Mười" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "Các thanh toán trước đây ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/zh_CN.po b/addons/account_voucher/i18n/zh_CN.po index e8ad42ee1ae..37ecb87235d 100644 --- a/addons/account_voucher/i18n/zh_CN.po +++ b/addons/account_voucher/i18n/zh_CN.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-11-29 10:48+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \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:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "补差额" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "凭证统计" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -145,7 +145,7 @@ msgstr "记账" #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payments" -msgstr "" +msgstr "供应商付款" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -213,7 +213,7 @@ msgstr "消息" #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "" +msgstr "采购收据" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "会计凭证行" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "错误!" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "已取消" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "税" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "非法的动作" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "导入发票" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "收据" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "会计期间" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "供应商" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "借方" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "支付发票" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "没有科目和税码!" @@ -539,6 +539,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Click to register a new payment.登记一笔付款 \n" +"

\n" +" 输入客户名称及其付款方式,然后手工创建一条付款记录,\n" +" 或者OpenERP会提醒您自动核销此笔付款,以关闭相应发\n" +" 票或销售收据。\n" +"

\n" +" " #. module: account_voucher #: field:account.config.settings,expense_currency_exchange_account_id:0 @@ -563,15 +571,15 @@ msgid "To Review" msgstr "待审查" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "改动" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +633,7 @@ msgstr "月份" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "币别" @@ -668,7 +677,7 @@ msgid "Reconcile Payment Balance" msgstr "核销付款余额" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "设置错误!" @@ -731,7 +740,7 @@ msgid "October" msgstr "10月" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "请激活选中分类账的 序列( sequence )。" @@ -755,7 +764,7 @@ msgstr "已付款" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "销售收据" #. module: account_voucher #: field:account.voucher,message_is_follower:0 @@ -811,7 +820,7 @@ msgid "Previous Payments ?" msgstr "预付款?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +852,7 @@ msgid "Active" msgstr "启用" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "请在分类账上定义一个序列( sequence )。" @@ -853,7 +862,7 @@ msgstr "请在分类账上定义一个序列( sequence )。" #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "" +msgstr "客户付款" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all @@ -971,7 +980,7 @@ msgid "Journal Items" msgstr "账簿明细" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "定义分类账 \"%s\" 的默认借方/贷方科目" @@ -1180,7 +1189,7 @@ msgid "" msgstr "单据的金额必须跟对账单其中一行金额相同。" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "不能删除已经开启或者支付的单据。" @@ -1243,8 +1252,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/zh_TW.po b/addons/account_voucher/i18n/zh_TW.po index 893d1749727..2c78874dd2b 100644 --- a/addons/account_voucher/i18n/zh_TW.po +++ b/addons/account_voucher/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "補差額" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "換領券統計" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "會計憑證行" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "取消" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "稅" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "匯入發票" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "收據" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "會計期間" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "供應商" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "借方" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "付款" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "沒有科目和稅碼!" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "待審查" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "變更" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "月份" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "貨幣" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "核銷付款餘額" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -731,7 +732,7 @@ msgid "October" msgstr "十月" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -811,7 +812,7 @@ msgid "Previous Payments ?" msgstr "預付款?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +844,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -971,7 +972,7 @@ msgid "Journal Items" msgstr "帳簿明細" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1180,7 +1181,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1243,8 +1244,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/report/account_voucher_sales_receipt_view.xml b/addons/account_voucher/report/account_voucher_sales_receipt_view.xml index e2be4939be8..d0f696c2f7e 100644 --- a/addons/account_voucher/report/account_voucher_sales_receipt_view.xml +++ b/addons/account_voucher/report/account_voucher_sales_receipt_view.xml @@ -63,7 +63,7 @@ - + diff --git a/addons/account_voucher/test/account_voucher.yml b/addons/account_voucher/test/account_voucher.yml index 2cd612affc7..46d3a6a0f5b 100644 --- a/addons/account_voucher/test/account_voucher.yml +++ b/addons/account_voucher/test/account_voucher.yml @@ -1,3 +1,9 @@ +- + I check the voucher module with user who is accountant. +- + !context + uid: 'res_users_account_voucher_user' + - In order to check account voucher module in OpenERP I create a customer voucher - diff --git a/addons/account_voucher/test/account_voucher_users.yml b/addons/account_voucher/test/account_voucher_users.yml new file mode 100644 index 00000000000..cb822ae4cef --- /dev/null +++ b/addons/account_voucher/test/account_voucher_users.yml @@ -0,0 +1,32 @@ +- + Create a user as 'Accountant for account voucher' +- + !record {model: res.users, id: res_users_account_voucher_user, view: False}: + company_id: base.main_company + name: Voucher Accountant + login: vacc + password: acc + email: accountant@yourcompany.com +- + I added groups to Accountant for account voucher. +- + !record {model: res.users, id: res_users_account_voucher_user}: + groups_id: + - base.group_partner_manager + - account.group_account_user +- + Create a user as 'Financial Manager for account voucher' +- + !record {model: res.users, id: res_users_account_voucher_manager, view: False}: + company_id: base.main_company + name: Financial Manager for voucher + login: fmv + password: fmv + email: finmanager@yourcompany.com +- + I added groups to Financial Manager for account voucher. +- + !record {model: res.users, id: res_users_account_voucher_manager}: + groups_id: + - base.group_partner_manager + - account.group_account_manager diff --git a/addons/account_voucher/test/case_eur_usd.yml b/addons/account_voucher/test/case_eur_usd.yml index 8dce677fd9a..825fae1d1af 100644 --- a/addons/account_voucher/test/case_eur_usd.yml +++ b/addons/account_voucher/test/case_eur_usd.yml @@ -1,4 +1,9 @@ ##YAML test on the account_voucher as depicted in this bug report: https://bugs.launchpad.net/openobject-addons/+bug/954155 +- + Only manager can create and take decision about bank and currency there I checkd this test with user who is finance manager. +- + !context + uid: 'res_users_account_voucher_manager' - In order to check the payment with multi-currency in OpenERP, I create an invoice in EUR and make payment in USD based on the currency rating. diff --git a/addons/account_voucher/test/sales_payment.yml b/addons/account_voucher/test/sales_payment.yml index 71e605d5651..3679c34dc52 100644 --- a/addons/account_voucher/test/sales_payment.yml +++ b/addons/account_voucher/test/sales_payment.yml @@ -1,3 +1,8 @@ +- + I test sales payment with user who is accountant. +- + !context + uid: 'res_users_account_voucher_user' - Create an invoice for the partner Seagate with amount 450.0 - diff --git a/addons/account_voucher/test/sales_receipt.yml b/addons/account_voucher/test/sales_receipt.yml index d27083b4513..e75eda2aac0 100644 --- a/addons/account_voucher/test/sales_receipt.yml +++ b/addons/account_voucher/test/sales_receipt.yml @@ -1,3 +1,8 @@ +- + Accountant can also be created receipt and validate it there for I checked it with that user who is accountant. +- + !context + uid: 'res_users_account_voucher_user' - Creating a Voucher Receipt for partner Seagate with amount 30000.0 - diff --git a/addons/account_voucher/voucher_payment_receipt_view.xml b/addons/account_voucher/voucher_payment_receipt_view.xml index 5d259772363..1169d5ef7c3 100644 --- a/addons/account_voucher/voucher_payment_receipt_view.xml +++ b/addons/account_voucher/voucher_payment_receipt_view.xml @@ -12,7 +12,7 @@ - + @@ -35,7 +35,7 @@ - + diff --git a/addons/account_voucher/voucher_sales_purchase_view.xml b/addons/account_voucher/voucher_sales_purchase_view.xml index dc732129803..e35061e1836 100644 --- a/addons/account_voucher/voucher_sales_purchase_view.xml +++ b/addons/account_voucher/voucher_sales_purchase_view.xml @@ -11,7 +11,7 @@ - + @@ -33,7 +33,7 @@ - + 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/i18n/ar.po b/addons/analytic_contract_hr_expense/i18n/ar.po index 1c1370ad3fc..0e87a8867cd 100644 --- a/addons/analytic_contract_hr_expense/i18n/ar.po +++ b/addons/analytic_contract_hr_expense/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "حسابات تحليلية" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "" diff --git a/addons/analytic_contract_hr_expense/i18n/cs.po b/addons/analytic_contract_hr_expense/i18n/cs.po index b57756bce0b..06ce4bf042c 100644 --- a/addons/analytic_contract_hr_expense/i18n/cs.po +++ b/addons/analytic_contract_hr_expense/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-01 05:06+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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "" diff --git a/addons/analytic_contract_hr_expense/i18n/de.po b/addons/analytic_contract_hr_expense/i18n/de.po index f8f1ad111c6..9656c2deb56 100644 --- a/addons/analytic_contract_hr_expense/i18n/de.po +++ b/addons/analytic_contract_hr_expense/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -39,13 +39,13 @@ msgid "Analytic Account" msgstr "Kostenstelle" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Spesen Abrechnung zu %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Spesen zu %s" diff --git a/addons/analytic_contract_hr_expense/i18n/en_GB.po b/addons/analytic_contract_hr_expense/i18n/en_GB.po index 47fa279deea..35133b06efc 100644 --- a/addons/analytic_contract_hr_expense/i18n/en_GB.po +++ b/addons/analytic_contract_hr_expense/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Analytic Account" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Expenses to Invoice of %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Expenses of %s" diff --git a/addons/analytic_contract_hr_expense/i18n/es.po b/addons/analytic_contract_hr_expense/i18n/es.po index bdad7830df4..2476936698f 100644 --- a/addons/analytic_contract_hr_expense/i18n/es.po +++ b/addons/analytic_contract_hr_expense/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Cuenta analítica" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Gastos a facturar de %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Gastos de %s" diff --git a/addons/analytic_contract_hr_expense/i18n/fr.po b/addons/analytic_contract_hr_expense/i18n/fr.po index 52ddf426a1c..374df74b7e4 100644 --- a/addons/analytic_contract_hr_expense/i18n/fr.po +++ b/addons/analytic_contract_hr_expense/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Compte Analytique" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "" diff --git a/addons/analytic_contract_hr_expense/i18n/hr.po b/addons/analytic_contract_hr_expense/i18n/hr.po index a29973ca7f2..c2d7a0ef2f6 100644 --- a/addons/analytic_contract_hr_expense/i18n/hr.po +++ b/addons/analytic_contract_hr_expense/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Analitički konto" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Troškovi %s" diff --git a/addons/analytic_contract_hr_expense/i18n/hu.po b/addons/analytic_contract_hr_expense/i18n/hu.po index f89f0239698..8a2cb9dc36b 100644 --- a/addons/analytic_contract_hr_expense/i18n/hu.po +++ b/addons/analytic_contract_hr_expense/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-21 04:38+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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Gyűjtő/elemző könyvelés" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Ennek számlázandó költségei %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Ennek költségei %s" diff --git a/addons/analytic_contract_hr_expense/i18n/it.po b/addons/analytic_contract_hr_expense/i18n/it.po index 7d096b4826e..ca8cb63abb8 100644 --- a/addons/analytic_contract_hr_expense/i18n/it.po +++ b/addons/analytic_contract_hr_expense/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Conto analitico" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Costi da Fatturare di %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Costi di %s" diff --git a/addons/analytic_contract_hr_expense/i18n/mk.po b/addons/analytic_contract_hr_expense/i18n/mk.po index 48c6c6b2985..c0f80b4a82c 100644 --- a/addons/analytic_contract_hr_expense/i18n/mk.po +++ b/addons/analytic_contract_hr_expense/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -35,16 +35,16 @@ msgstr "трошоци" #. module: analytic_contract_hr_expense #: model:ir.model,name:analytic_contract_hr_expense.model_account_analytic_account msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" -msgstr "Трошоци за фактурирање од %s" +msgstr "Трошоци за фактурирање на %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Трошоци на %s" diff --git a/addons/analytic_contract_hr_expense/i18n/mn.po b/addons/analytic_contract_hr_expense/i18n/mn.po index eedb509e38e..20ac8686d32 100644 --- a/addons/analytic_contract_hr_expense/i18n/mn.po +++ b/addons/analytic_contract_hr_expense/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Шинжилгээний Данс" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "%s-н нэхэмжлэх зардалууд" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "%s-н зардлууд" diff --git a/addons/analytic_contract_hr_expense/i18n/nb.po b/addons/analytic_contract_hr_expense/i18n/nb.po index c867b6b3760..8d3205a5106 100644 --- a/addons/analytic_contract_hr_expense/i18n/nb.po +++ b/addons/analytic_contract_hr_expense/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Analytisk konto." #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Utgifter til Faktura av% s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Utgifter av %s." diff --git a/addons/analytic_contract_hr_expense/i18n/nl.po b/addons/analytic_contract_hr_expense/i18n/nl.po index ea6dc151e10..a4514f9df12 100644 --- a/addons/analytic_contract_hr_expense/i18n/nl.po +++ b/addons/analytic_contract_hr_expense/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-29 15:10+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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -30,7 +30,7 @@ msgstr "Niets te factureren, aanmaken" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 msgid "expenses" -msgstr "uitgaven" +msgstr "declaraties" #. module: analytic_contract_hr_expense #: model:ir.model,name:analytic_contract_hr_expense.model_account_analytic_account @@ -38,16 +38,16 @@ msgid "Analytic Account" msgstr "Kostenplaats" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Uitgave te factureren van %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" -msgstr "Uitgaven van %s" +msgstr "Declaraties van %s" #. module: analytic_contract_hr_expense #: field:account.analytic.account,expense_invoiced:0 @@ -59,12 +59,12 @@ msgstr "onbekend" #. module: analytic_contract_hr_expense #: field:account.analytic.account,est_expenses:0 msgid "Estimation of Expenses to Invoice" -msgstr "Te verwachten uitgaven te factureren" +msgstr "Te verwachten declaraties te factureren" #. module: analytic_contract_hr_expense #: field:account.analytic.account,charge_expenses:0 msgid "Charge Expenses" -msgstr "Uitgaven doorberekenen" +msgstr "Declaraties doorberekenen" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/nl_BE.po b/addons/analytic_contract_hr_expense/i18n/nl_BE.po index 4bc0cc559e5..e1643d6de16 100644 --- a/addons/analytic_contract_hr_expense/i18n/nl_BE.po +++ b/addons/analytic_contract_hr_expense/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Analytische rekening" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Te factureren onkosten van %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Onkosten van %s" diff --git a/addons/analytic_contract_hr_expense/i18n/pl.po b/addons/analytic_contract_hr_expense/i18n/pl.po index c0cd04686b8..d372275b4a2 100644 --- a/addons/analytic_contract_hr_expense/i18n/pl.po +++ b/addons/analytic_contract_hr_expense/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Konto analityczne" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Wydatki do zafakturowania %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "" diff --git a/addons/analytic_contract_hr_expense/i18n/pt.po b/addons/analytic_contract_hr_expense/i18n/pt.po index 4d66e6c1f22..4f661524df1 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt.po +++ b/addons/analytic_contract_hr_expense/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Conta analítica" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Despesas de %s" diff --git a/addons/analytic_contract_hr_expense/i18n/pt_BR.po b/addons/analytic_contract_hr_expense/i18n/pt_BR.po index 4696b88cd27..2061f78b5d0 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt_BR.po +++ b/addons/analytic_contract_hr_expense/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -25,12 +25,12 @@ msgstr "ou visualizar" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 msgid "Nothing to invoice, create" -msgstr "Nada para faturar, crie." +msgstr "Não existe pedido para faturar, crie um" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 msgid "expenses" -msgstr "Despesas" +msgstr "despesas" #. module: analytic_contract_hr_expense #: model:ir.model,name:analytic_contract_hr_expense.model_account_analytic_account @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Conta Analítica" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Despesas para Faturar de %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Despesas de %s" @@ -54,7 +54,7 @@ msgstr "Despesas de %s" #: field:account.analytic.account,expense_to_invoice:0 #: field:account.analytic.account,remaining_expense:0 msgid "unknown" -msgstr "Desconhecido" +msgstr "desconhecido" #. module: analytic_contract_hr_expense #: field:account.analytic.account,est_expenses:0 @@ -64,7 +64,7 @@ msgstr "Estimativa de Despesas para Faturar" #. module: analytic_contract_hr_expense #: field:account.analytic.account,charge_expenses:0 msgid "Charge Expenses" -msgstr "Carga de Despesas" +msgstr "Cobrar Despesas" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/ro.po b/addons/analytic_contract_hr_expense/i18n/ro.po index 9a7d20db4c1..349b07a5346 100644 --- a/addons/analytic_contract_hr_expense/i18n/ro.po +++ b/addons/analytic_contract_hr_expense/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Cont Analitic" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Cheltuieli de Facturat de %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Cletuieli de %s" diff --git a/addons/analytic_contract_hr_expense/i18n/sl.po b/addons/analytic_contract_hr_expense/i18n/sl.po index bc9b1f4266b..507b1addf01 100644 --- a/addons/analytic_contract_hr_expense/i18n/sl.po +++ b/addons/analytic_contract_hr_expense/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Analitični konto" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Stroški za fakturiranje na %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Stroški na %s" diff --git a/addons/analytic_contract_hr_expense/i18n/tr.po b/addons/analytic_contract_hr_expense/i18n/tr.po index ac44ba8705c..c2b0837d4e3 100644 --- a/addons/analytic_contract_hr_expense/i18n/tr.po +++ b/addons/analytic_contract_hr_expense/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Analiz Hesabı" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "%s e ait Faturalanacak Giderler" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "%s e ait Giderler" diff --git a/addons/analytic_contract_hr_expense/i18n/zh_CN.po b/addons/analytic_contract_hr_expense/i18n/zh_CN.po index bcdd07cad9c..6ddef84ac23 100644 --- a/addons/analytic_contract_hr_expense/i18n/zh_CN.po +++ b/addons/analytic_contract_hr_expense/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-30 17:47+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: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "辅助核算项" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "%s的费用到发票" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "%s的费用" diff --git a/addons/analytic_user_function/analytic_user_function_view.xml b/addons/analytic_user_function/analytic_user_function_view.xml index 69e1add13bb..ca148175c5a 100644 --- a/addons/analytic_user_function/analytic_user_function_view.xml +++ b/addons/analytic_user_function/analytic_user_function_view.xml @@ -8,7 +8,7 @@ analytic.user.funct.grid - + @@ -22,7 +22,7 @@
- + @@ -124,7 +124,7 @@ - + diff --git a/addons/analytic_user_function/i18n/ar.po b/addons/analytic_user_function/i18n/ar.po index 65bfca4760d..b43ff2bfb20 100644 --- a/addons/analytic_user_function/i18n/ar.po +++ b/addons/analytic_user_function/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/bg.po b/addons/analytic_user_function/i18n/bg.po index ebe2ffe7fd0..9443827a156 100644 --- a/addons/analytic_user_function/i18n/bg.po +++ b/addons/analytic_user_function/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/bs.po b/addons/analytic_user_function/i18n/bs.po index 36cf66cbdba..53c070e61a2 100644 --- a/addons/analytic_user_function/i18n/bs.po +++ b/addons/analytic_user_function/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ca.po b/addons/analytic_user_function/i18n/ca.po index ef7a651fc81..e73f50cc4a9 100644 --- a/addons/analytic_user_function/i18n/ca.po +++ b/addons/analytic_user_function/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/cs.po b/addons/analytic_user_function/i18n/cs.po index 8eeb41c03ad..ad6dc4ec18d 100644 --- a/addons/analytic_user_function/i18n/cs.po +++ b/addons/analytic_user_function/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/da.po b/addons/analytic_user_function/i18n/da.po index 3c89078ee41..8b26fba6448 100644 --- a/addons/analytic_user_function/i18n/da.po +++ b/addons/analytic_user_function/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/de.po b/addons/analytic_user_function/i18n/de.po index 89df16151b0..be1413744ec 100644 --- a/addons/analytic_user_function/i18n/de.po +++ b/addons/analytic_user_function/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/el.po b/addons/analytic_user_function/i18n/el.po index a46747dd8c3..fde219b9288 100644 --- a/addons/analytic_user_function/i18n/el.po +++ b/addons/analytic_user_function/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/en_GB.po b/addons/analytic_user_function/i18n/en_GB.po index e1ee56cf8be..7a95022fd2d 100644 --- a/addons/analytic_user_function/i18n/en_GB.po +++ b/addons/analytic_user_function/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es.po b/addons/analytic_user_function/i18n/es.po index 7fe9fcde53c..fb474479d78 100644 --- a/addons/analytic_user_function/i18n/es.po +++ b/addons/analytic_user_function/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_AR.po b/addons/analytic_user_function/i18n/es_AR.po index 80e27ac2833..7c1cd5b73a9 100644 --- a/addons/analytic_user_function/i18n/es_AR.po +++ b/addons/analytic_user_function/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_CR.po b/addons/analytic_user_function/i18n/es_CR.po index 0b7b9acdd27..6de0374b9b2 100644 --- a/addons/analytic_user_function/i18n/es_CR.po +++ b/addons/analytic_user_function/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/es_EC.po b/addons/analytic_user_function/i18n/es_EC.po index 9f78cd760b3..87d8ecb0071 100644 --- a/addons/analytic_user_function/i18n/es_EC.po +++ b/addons/analytic_user_function/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_PY.po b/addons/analytic_user_function/i18n/es_PY.po index bcded963063..bed8b499b1d 100644 --- a/addons/analytic_user_function/i18n/es_PY.po +++ b/addons/analytic_user_function/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/et.po b/addons/analytic_user_function/i18n/et.po index 7746ce454e8..43208b203aa 100644 --- a/addons/analytic_user_function/i18n/et.po +++ b/addons/analytic_user_function/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fa.po b/addons/analytic_user_function/i18n/fa.po index 671dbd93a75..266de5c0330 100644 --- a/addons/analytic_user_function/i18n/fa.po +++ b/addons/analytic_user_function/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fi.po b/addons/analytic_user_function/i18n/fi.po index 57a5abd4efb..76080eca23c 100644 --- a/addons/analytic_user_function/i18n/fi.po +++ b/addons/analytic_user_function/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fr.po b/addons/analytic_user_function/i18n/fr.po index 365ed582f29..ed373ca2fc4 100644 --- a/addons/analytic_user_function/i18n/fr.po +++ b/addons/analytic_user_function/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line @@ -34,7 +34,7 @@ msgstr "" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid msgid "Price per User" -msgstr "" +msgstr "Prix par utilisateur" #. module: analytic_user_function #: field:analytic.user.funct.grid,price:0 @@ -44,7 +44,7 @@ msgstr "" #. module: analytic_user_function #: help:analytic.user.funct.grid,price:0 msgid "Price per hour for this user." -msgstr "" +msgstr "Prix horaire pour cet utilisateur." #. module: analytic_user_function #: field:analytic.user.funct.grid,account_id:0 @@ -78,6 +78,11 @@ msgid "" " of the default values when invoicing the " "customer." msgstr "" +"Définissez un service spécifique (p. ex. consultant supérieur)\n" +" et un prix pour certains utilisateurs pour " +"utiliser ces données plutôt\n" +" que les valeurs par défaut lors de la " +"facturation pour le client." #. module: analytic_user_function #: field:analytic.user.funct.grid,uom_id:0 diff --git a/addons/analytic_user_function/i18n/gl.po b/addons/analytic_user_function/i18n/gl.po index a3b9b8eafa1..bb007881241 100644 --- a/addons/analytic_user_function/i18n/gl.po +++ b/addons/analytic_user_function/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/gu.po b/addons/analytic_user_function/i18n/gu.po index ae9e0b9eccb..4898f0ece3b 100644 --- a/addons/analytic_user_function/i18n/gu.po +++ b/addons/analytic_user_function/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/hr.po b/addons/analytic_user_function/i18n/hr.po index dda6c010406..1c837ef83d3 100644 --- a/addons/analytic_user_function/i18n/hr.po +++ b/addons/analytic_user_function/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: hr\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/hu.po b/addons/analytic_user_function/i18n/hu.po index 64b7d6b3367..69b5e7c8f39 100644 --- a/addons/analytic_user_function/i18n/hu.po +++ b/addons/analytic_user_function/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-21 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/id.po b/addons/analytic_user_function/i18n/id.po index beb31058463..6d857697a3c 100644 --- a/addons/analytic_user_function/i18n/id.po +++ b/addons/analytic_user_function/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/it.po b/addons/analytic_user_function/i18n/it.po index f229b9f39e0..1748af12de3 100644 --- a/addons/analytic_user_function/i18n/it.po +++ b/addons/analytic_user_function/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ja.po b/addons/analytic_user_function/i18n/ja.po index 3133202d69c..0853e97282b 100644 --- a/addons/analytic_user_function/i18n/ja.po +++ b/addons/analytic_user_function/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ko.po b/addons/analytic_user_function/i18n/ko.po index 605f02d16c3..6acfc12b425 100644 --- a/addons/analytic_user_function/i18n/ko.po +++ b/addons/analytic_user_function/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/lt.po b/addons/analytic_user_function/i18n/lt.po index e6513377869..2cda917303d 100644 --- a/addons/analytic_user_function/i18n/lt.po +++ b/addons/analytic_user_function/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/mk.po b/addons/analytic_user_function/i18n/mk.po index efde700fc9d..485127634d0 100644 --- a/addons/analytic_user_function/i18n/mk.po +++ b/addons/analytic_user_function/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line @@ -51,7 +51,7 @@ msgstr "Цена по час за овој корисник" #: field:analytic.user.funct.grid,account_id:0 #: model:ir.model,name:analytic_user_function.model_account_analytic_account msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: analytic_user_function #: code:addons/analytic_user_function/analytic_user_function.py:106 @@ -95,12 +95,12 @@ msgstr "Единица мерка" #: code:addons/analytic_user_function/analytic_user_function.py:136 #, python-format msgid "There is no expense account define for this product: \"%s\" (id:%d)" -msgstr "Нема дефинирано конто трошоци за овој производ: \"%s\" (id>%d)" +msgstr "Нема дефинирано сметка трошоци за овој производ: \"%s\" (id>%d)" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_hr_analytic_timesheet msgid "Timesheet Line" -msgstr "Ставка на распоред" +msgstr "Ставка од временска таблица" #. module: analytic_user_function #: view:account.analytic.account:0 @@ -111,6 +111,12 @@ msgid "" " specific user. This allows to set invoicing\n" " conditions for a group of contracts." msgstr "" +"OpenERP рекурсивно ќе ги пребара сметките родител\n" +" за да провери дали одредени услови се дефинирани " +"за\n" +" одреден корисник. Ова овозможува да се подесат " +"условите\n" +" за фактурирање за група на договори." #. module: analytic_user_function #: field:analytic.user.funct.grid,user_id:0 diff --git a/addons/analytic_user_function/i18n/mn.po b/addons/analytic_user_function/i18n/mn.po index e0b427f9008..4ff075e5973 100644 --- a/addons/analytic_user_function/i18n/mn.po +++ b/addons/analytic_user_function/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line @@ -51,7 +51,7 @@ msgstr "" #: field:analytic.user.funct.grid,account_id:0 #: model:ir.model,name:analytic_user_function.model_account_analytic_account msgid "Analytic Account" -msgstr "Аналитик данс" +msgstr "Шинжилгээний Данс" #. module: analytic_user_function #: code:addons/analytic_user_function/analytic_user_function.py:106 diff --git a/addons/analytic_user_function/i18n/nb.po b/addons/analytic_user_function/i18n/nb.po index b297c1ee35e..9802875c590 100644 --- a/addons/analytic_user_function/i18n/nb.po +++ b/addons/analytic_user_function/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nl.po b/addons/analytic_user_function/i18n/nl.po index ca443202844..cd4c3c02a47 100644 --- a/addons/analytic_user_function/i18n/nl.po +++ b/addons/analytic_user_function/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-24 21:59+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:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nl_BE.po b/addons/analytic_user_function/i18n/nl_BE.po index fe831af2c7c..d5ba1531e7a 100644 --- a/addons/analytic_user_function/i18n/nl_BE.po +++ b/addons/analytic_user_function/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/oc.po b/addons/analytic_user_function/i18n/oc.po index 02a317e20de..c167aa25ed0 100644 --- a/addons/analytic_user_function/i18n/oc.po +++ b/addons/analytic_user_function/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pl.po b/addons/analytic_user_function/i18n/pl.po index 846585c458f..78b5d2cdde5 100644 --- a/addons/analytic_user_function/i18n/pl.po +++ b/addons/analytic_user_function/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pt.po b/addons/analytic_user_function/i18n/pt.po index d954fa19814..7215fe5a41c 100644 --- a/addons/analytic_user_function/i18n/pt.po +++ b/addons/analytic_user_function/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pt_BR.po b/addons/analytic_user_function/i18n/pt_BR.po index facdc8e5f45..4c03a5c73a7 100644 --- a/addons/analytic_user_function/i18n/pt_BR.po +++ b/addons/analytic_user_function/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ro.po b/addons/analytic_user_function/i18n/ro.po index f83d9a922c0..d0e93e4bc4d 100644 --- a/addons/analytic_user_function/i18n/ro.po +++ b/addons/analytic_user_function/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ru.po b/addons/analytic_user_function/i18n/ru.po index 9ad01901df4..1be4334790a 100644 --- a/addons/analytic_user_function/i18n/ru.po +++ b/addons/analytic_user_function/i18n/ru.po @@ -13,13 +13,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:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Позиция аналитики" #. module: analytic_user_function #: view:account.analytic.account:0 @@ -29,22 +29,22 @@ msgstr "" #. module: analytic_user_function #: field:analytic.user.funct.grid,product_id:0 msgid "Service" -msgstr "" +msgstr "Услуга" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid msgid "Price per User" -msgstr "" +msgstr "Цена по пользователю" #. module: analytic_user_function #: field:analytic.user.funct.grid,price:0 msgid "Price" -msgstr "" +msgstr "Цена" #. module: analytic_user_function #: help:analytic.user.funct.grid,price:0 msgid "Price per hour for this user." -msgstr "" +msgstr "Цена за час для этого пользователя" #. module: analytic_user_function #: field:analytic.user.funct.grid,account_id:0 @@ -57,12 +57,12 @@ msgstr "Счет аналитического учета" #: code:addons/analytic_user_function/analytic_user_function.py:135 #, python-format msgid "Error!" -msgstr "" +msgstr "Ошибка !" #. module: analytic_user_function #: view:analytic.user.funct.grid:0 msgid "Invoicing Data" -msgstr "" +msgstr "Данные выставления счетов" #. module: analytic_user_function #: field:account.analytic.account,user_product_ids:0 @@ -82,7 +82,7 @@ msgstr "" #. module: analytic_user_function #: field:analytic.user.funct.grid,uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Единица измерения" #. module: analytic_user_function #: code:addons/analytic_user_function/analytic_user_function.py:107 diff --git a/addons/analytic_user_function/i18n/sk.po b/addons/analytic_user_function/i18n/sk.po index 580a0708d79..d438db9e29b 100644 --- a/addons/analytic_user_function/i18n/sk.po +++ b/addons/analytic_user_function/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sl.po b/addons/analytic_user_function/i18n/sl.po index ee45c2db9b0..99caf0a0fdd 100644 --- a/addons/analytic_user_function/i18n/sl.po +++ b/addons/analytic_user_function/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sq.po b/addons/analytic_user_function/i18n/sq.po index 94abceed7f7..ff06da9b432 100644 --- a/addons/analytic_user_function/i18n/sq.po +++ b/addons/analytic_user_function/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sr.po b/addons/analytic_user_function/i18n/sr.po index 077f6bb2610..5639e27ae93 100644 --- a/addons/analytic_user_function/i18n/sr.po +++ b/addons/analytic_user_function/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sr@latin.po b/addons/analytic_user_function/i18n/sr@latin.po index b75d8643a37..7dab011536f 100644 --- a/addons/analytic_user_function/i18n/sr@latin.po +++ b/addons/analytic_user_function/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sv.po b/addons/analytic_user_function/i18n/sv.po index a6595f07898..38eac94c71c 100644 --- a/addons/analytic_user_function/i18n/sv.po +++ b/addons/analytic_user_function/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/tlh.po b/addons/analytic_user_function/i18n/tlh.po index e26dfe56187..444f19b9066 100644 --- a/addons/analytic_user_function/i18n/tlh.po +++ b/addons/analytic_user_function/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/tr.po b/addons/analytic_user_function/i18n/tr.po index 2ca12ace463..6670a3b5c5f 100644 --- a/addons/analytic_user_function/i18n/tr.po +++ b/addons/analytic_user_function/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/uk.po b/addons/analytic_user_function/i18n/uk.po index da1883881db..30a709dd99f 100644 --- a/addons/analytic_user_function/i18n/uk.po +++ b/addons/analytic_user_function/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/vi.po b/addons/analytic_user_function/i18n/vi.po index 6a07877a190..f2087ec08a4 100644 --- a/addons/analytic_user_function/i18n/vi.po +++ b/addons/analytic_user_function/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/zh_CN.po b/addons/analytic_user_function/i18n/zh_CN.po index fe1bd69ae4d..710a1a8c414 100644 --- a/addons/analytic_user_function/i18n/zh_CN.po +++ b/addons/analytic_user_function/i18n/zh_CN.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-29 14:18+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \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:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/zh_TW.po b/addons/analytic_user_function/i18n/zh_TW.po index 565603c4490..6509d7d0d99 100644 --- a/addons/analytic_user_function/i18n/zh_TW.po +++ b/addons/analytic_user_function/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/anonymization/i18n/ar.po b/addons/anonymization/i18n/ar.po index e645d6a7ae3..8d8ded79dac 100644 --- a/addons/anonymization/i18n/ar.po +++ b/addons/anonymization/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/bg.po b/addons/anonymization/i18n/bg.po index 437808adbb4..ed74919721f 100644 --- a/addons/anonymization/i18n/bg.po +++ b/addons/anonymization/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ca.po b/addons/anonymization/i18n/ca.po index 7998714bd0a..7f00132a6f5 100644 --- a/addons/anonymization/i18n/ca.po +++ b/addons/anonymization/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/cs.po b/addons/anonymization/i18n/cs.po index aa320cbba21..bdaa2e2c89b 100644 --- a/addons/anonymization/i18n/cs.po +++ b/addons/anonymization/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/da.po b/addons/anonymization/i18n/da.po index df0e6ed5764..192a0e64d4c 100644 --- a/addons/anonymization/i18n/da.po +++ b/addons/anonymization/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/de.po b/addons/anonymization/i18n/de.po index 77089696f7b..816e70ceb1f 100644 --- a/addons/anonymization/i18n/de.po +++ b/addons/anonymization/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -50,6 +50,9 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to create, write or delete fields." msgstr "" +"Die Datenbank Anonymisierung ist aktuell in einem Beta Stadium. Einige " +"Felder werden korrekt anonymisiert, andere hingegen nicht. Sie sollten das " +"Problem vor einer weiteren Bearbeitung oder Erstellung von Feldern lösen." #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 @@ -65,7 +68,7 @@ msgstr "Feld" #. module: anonymization #: selection:ir.model.fields.anonymization,state:0 msgid "New" -msgstr "" +msgstr "Neu" #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 @@ -84,6 +87,7 @@ msgid "" "Before executing the anonymization process, you should make a backup of your " "database." msgstr "" +"Vor der Anonymisierung der Datenbank sollten Sie ein Backup erstellen." #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 @@ -128,7 +132,7 @@ msgstr "unbekannt" #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Anonymized value is None. This cannot happens." -msgstr "" +msgstr "Es wurde keine Eintrag anonymisiert. Bitte prüfen Sie dieses." #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 @@ -166,6 +170,8 @@ msgid "" "Cannot anonymize fields of these types: binary, many2many, many2one, " "one2many, reference." msgstr "" +"Folgende Felder können nicht anonymisiert werden: Binärfelder, many2many, " +"many2one, one2many, Referenzen." #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 @@ -201,6 +207,8 @@ msgid "" "It is not possible to reverse the anonymization process without supplying " "the anonymization export file." msgstr "" +"Ohne die exportierte Datei ist es nicht möglich eine Anonymisierung " +"rückgängig zu machen." #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 @@ -221,6 +229,9 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to do anything." msgstr "" +"Die Datenbank Anonymisierung ist aktuell in einem Beta Stadium. Einige " +"Felder werden korrekt anonymisiert, andere hingegen nicht. Sie sollten das " +"Problem vor einer weiteren Bearbeitung oder Erstellung von Feldern lösen." #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 @@ -267,13 +278,16 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to do anything else." msgstr "" +"Die Datenbank Anonymisierung ist aktuell in einem Beta Stadium. Einige " +"Felder werden korrekt anonymisiert, andere hingegen nicht. Sie sollten das " +"Problem vor einer weiteren Bearbeitung oder Erstellung von Feldern lösen." #. module: anonymization #: code:addons/anonymization/anonymization.py:389 #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Error !" -msgstr "" +msgstr "Fehler !" #. module: anonymization #: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard @@ -306,6 +320,8 @@ msgstr "Begonnen" #, python-format msgid "The database is currently anonymized, you cannot anonymize it again." msgstr "" +"Die Datenbank ist bereits anonymisiert. Dieses kann nicht noch einmal " +"erfolgen." #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 diff --git a/addons/anonymization/i18n/en_GB.po b/addons/anonymization/i18n/en_GB.po index e0d0341fe4a..52e717ec5cb 100644 --- a/addons/anonymization/i18n/en_GB.po +++ b/addons/anonymization/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es.po b/addons/anonymization/i18n/es.po index 92ba2ea8f4a..14ef7a15b78 100644 --- a/addons/anonymization/i18n/es.po +++ b/addons/anonymization/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es_CR.po b/addons/anonymization/i18n/es_CR.po index ca140518028..1b0cb3c05ad 100644 --- a/addons/anonymization/i18n/es_CR.po +++ b/addons/anonymization/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: es\n" #. module: anonymization diff --git a/addons/anonymization/i18n/es_EC.po b/addons/anonymization/i18n/es_EC.po index 99c66c4656c..fa3215a385c 100644 --- a/addons/anonymization/i18n/es_EC.po +++ b/addons/anonymization/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es_PY.po b/addons/anonymization/i18n/es_PY.po index 4cfa7508849..444992615ff 100644 --- a/addons/anonymization/i18n/es_PY.po +++ b/addons/anonymization/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/et.po b/addons/anonymization/i18n/et.po index a024aa07aed..2090c53a1b1 100644 --- a/addons/anonymization/i18n/et.po +++ b/addons/anonymization/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fa.po b/addons/anonymization/i18n/fa.po index 24689d66460..4b737766efb 100644 --- a/addons/anonymization/i18n/fa.po +++ b/addons/anonymization/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fi.po b/addons/anonymization/i18n/fi.po index 444bb76bf33..5f7597e025b 100644 --- a/addons/anonymization/i18n/fi.po +++ b/addons/anonymization/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fr.po b/addons/anonymization/i18n/fr.po index d8e7fe60a78..6636f91309e 100644 --- a/addons/anonymization/i18n/fr.po +++ b/addons/anonymization/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/gl.po b/addons/anonymization/i18n/gl.po index 7f49a57c651..21ad78b074c 100644 --- a/addons/anonymization/i18n/gl.po +++ b/addons/anonymization/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/hr.po b/addons/anonymization/i18n/hr.po index 4e23b8a24f9..b615ec364c4 100644 --- a/addons/anonymization/i18n/hr.po +++ b/addons/anonymization/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/hu.po b/addons/anonymization/i18n/hu.po index bcaca33f351..8a017007656 100644 --- a/addons/anonymization/i18n/hu.po +++ b/addons/anonymization/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-21 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/it.po b/addons/anonymization/i18n/it.po index 262d93c8553..d7a8122a5a4 100644 --- a/addons/anonymization/i18n/it.po +++ b/addons/anonymization/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ja.po b/addons/anonymization/i18n/ja.po index b180c792996..824510d7f36 100644 --- a/addons/anonymization/i18n/ja.po +++ b/addons/anonymization/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/lv.po b/addons/anonymization/i18n/lv.po index fa83a046751..bf52a95945c 100644 --- a/addons/anonymization/i18n/lv.po +++ b/addons/anonymization/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/mk.po b/addons/anonymization/i18n/mk.po index face6d58f03..416bd2297c2 100644 --- a/addons/anonymization/i18n/mk.po +++ b/addons/anonymization/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -230,7 +230,7 @@ msgid "" msgstr "" "Анонимизацијата на базата на податоци моментално е во нестабилна состојба. " "Некои полиња се анонимизирани, некои не се. Пробајте да го решите овој " -"проблем пред да се обидете да направите билошто." +"проблем пред да се обидете да направите било што." #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 @@ -279,7 +279,7 @@ msgid "" msgstr "" "Анонимизацијата на базата на податоци моментално е во нестабилна состојба. " "Некои полиња се анонимизирани, некои не се. Пробајте да го решите овој " -"проблем пред да направите билошто друго." +"проблем пред да направите било што друго." #. module: anonymization #: code:addons/anonymization/anonymization.py:389 @@ -319,7 +319,7 @@ msgstr "Започнато" #, python-format msgid "The database is currently anonymized, you cannot anonymize it again." msgstr "" -"Базата на податоци е анонимизирана, неможете да ја анонимизирате повторно." +"Базата на податоци е анонимизирана, не можете да ја анонимизирате повторно." #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 diff --git a/addons/anonymization/i18n/mn.po b/addons/anonymization/i18n/mn.po index 40883533a7b..8077ae1f2da 100644 --- a/addons/anonymization/i18n/mn.po +++ b/addons/anonymization/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/nb.po b/addons/anonymization/i18n/nb.po index fcc1a7bf9d0..93c739fdbf1 100644 --- a/addons/anonymization/i18n/nb.po +++ b/addons/anonymization/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/nl.po b/addons/anonymization/i18n/nl.po index 259c815b450..e293ac0f270 100644 --- a/addons/anonymization/i18n/nl.po +++ b/addons/anonymization/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-01-18 20:01+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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/pl.po b/addons/anonymization/i18n/pl.po index b4a4115a64c..5103fc47098 100644 --- a/addons/anonymization/i18n/pl.po +++ b/addons/anonymization/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/pt.po b/addons/anonymization/i18n/pt.po index cffab8bc4c8..bf240290358 100644 --- a/addons/anonymization/i18n/pt.po +++ b/addons/anonymization/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/pt_BR.po b/addons/anonymization/i18n/pt_BR.po index 054f144f57b..cf676e5719c 100644 --- a/addons/anonymization/i18n/pt_BR.po +++ b/addons/anonymization/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ro.po b/addons/anonymization/i18n/ro.po index ff0bd723a93..8269097b1c2 100644 --- a/addons/anonymization/i18n/ro.po +++ b/addons/anonymization/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ru.po b/addons/anonymization/i18n/ru.po index 2ccf505d04e..e0f8f7661e0 100644 --- a/addons/anonymization/i18n/ru.po +++ b/addons/anonymization/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sl.po b/addons/anonymization/i18n/sl.po index 08ab0bbee15..bfbe098adfa 100644 --- a/addons/anonymization/i18n/sl.po +++ b/addons/anonymization/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sq.po b/addons/anonymization/i18n/sq.po index d7a7adc47e8..c98512514a7 100644 --- a/addons/anonymization/i18n/sq.po +++ b/addons/anonymization/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sr@latin.po b/addons/anonymization/i18n/sr@latin.po index b96d1f3ece2..88cb49286c5 100644 --- a/addons/anonymization/i18n/sr@latin.po +++ b/addons/anonymization/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sv.po b/addons/anonymization/i18n/sv.po index 311c9670129..9cf76b69963 100644 --- a/addons/anonymization/i18n/sv.po +++ b/addons/anonymization/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/tr.po b/addons/anonymization/i18n/tr.po index d3535db6f5e..2a243dd6fa6 100644 --- a/addons/anonymization/i18n/tr.po +++ b/addons/anonymization/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/zh_CN.po b/addons/anonymization/i18n/zh_CN.po index 4b23edef34a..a89e7de8b36 100644 --- a/addons/anonymization/i18n/zh_CN.po +++ b/addons/anonymization/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 06:50+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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -49,7 +49,7 @@ msgid "" "The database anonymization is currently in an unstable state. Some fields " "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to create, write or delete fields." -msgstr "" +msgstr "此数据库匿名化处于不稳定状态,有些字段已经匿名,有些没有。你在尝试进行创建、写入或者删除这些字段前,要解决这个问题。" #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 @@ -65,7 +65,7 @@ msgstr "字段" #. module: anonymization #: selection:ir.model.fields.anonymization,state:0 msgid "New" -msgstr "" +msgstr "新建" #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 @@ -83,7 +83,7 @@ msgstr "ir.model.fields.anonymization" msgid "" "Before executing the anonymization process, you should make a backup of your " "database." -msgstr "" +msgstr "在进行匿名化处理前,你需要给你的数据库做一个备份" #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 @@ -128,7 +128,7 @@ msgstr "状态" #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Anonymized value is None. This cannot happens." -msgstr "" +msgstr "待匿名的值是none,这不可以" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 @@ -163,7 +163,7 @@ msgstr "解除数据库隐藏" msgid "" "Cannot anonymize fields of these types: binary, many2many, many2one, " "one2many, reference." -msgstr "" +msgstr "不能匿名化这些字段类型: binary, many2many, many2one, one2many, reference." #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 @@ -198,7 +198,7 @@ msgstr "无隐藏" msgid "" "It is not possible to reverse the anonymization process without supplying " "the anonymization export file." -msgstr "" +msgstr "在没有提供匿名化导出文件前,不可能反转匿名化的进程。" #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 @@ -218,7 +218,7 @@ msgid "" "The database anonymization is currently in an unstable state. Some fields " "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to do anything." -msgstr "" +msgstr "数据库匿名化当时在不稳定的状态。 有些字段匿名了,有些没有。你在做任何操作前要解决这个问题。" #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 @@ -264,14 +264,14 @@ msgid "" "The database anonymization is currently in an unstable state. Some fields " "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to do anything else." -msgstr "" +msgstr "此数据库匿名化处于不稳定状态,有些字段已经匿名,有些没有。你在尝试进行其它任何操作前字段前,要解决这个问题。" #. module: anonymization #: code:addons/anonymization/anonymization.py:389 #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Error !" -msgstr "" +msgstr "错误!" #. module: anonymization #: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard @@ -303,7 +303,7 @@ msgstr "已开始" #: code:addons/anonymization/anonymization.py:389 #, python-format msgid "The database is currently anonymized, you cannot anonymize it again." -msgstr "" +msgstr "此数据库已经匿名化,你不能再次使其匿名。" #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 diff --git a/addons/anonymization/i18n/zh_TW.po b/addons/anonymization/i18n/zh_TW.po index d8973b2491c..eb9349b5df9 100644 --- a/addons/anonymization/i18n/zh_TW.po +++ b/addons/anonymization/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/association/i18n/ar.po b/addons/association/i18n/ar.po index ef806f96dab..5e9b72b3d13 100644 --- a/addons/association/i18n/ar.po +++ b/addons/association/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/bg.po b/addons/association/i18n/bg.po index 677c2073890..d5303404864 100644 --- a/addons/association/i18n/bg.po +++ b/addons/association/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/bs.po b/addons/association/i18n/bs.po index 6596b937f42..8e311934064 100644 --- a/addons/association/i18n/bs.po +++ b/addons/association/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ca.po b/addons/association/i18n/ca.po index ff3c05b400b..1a3e2ce987c 100644 --- a/addons/association/i18n/ca.po +++ b/addons/association/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/cs.po b/addons/association/i18n/cs.po index 1a4919c85b1..c03f819a541 100644 --- a/addons/association/i18n/cs.po +++ b/addons/association/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Language: Czech\n" #. module: association diff --git a/addons/association/i18n/da.po b/addons/association/i18n/da.po index 9abb6d6724d..31ffe667fae 100644 --- a/addons/association/i18n/da.po +++ b/addons/association/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/de.po b/addons/association/i18n/de.po index dd4da9b4d3d..c2e1acd3563 100644 --- a/addons/association/i18n/de.po +++ b/addons/association/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/el.po b/addons/association/i18n/el.po index 351020ff787..67ecf866c10 100644 --- a/addons/association/i18n/el.po +++ b/addons/association/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/en_GB.po b/addons/association/i18n/en_GB.po index de797c02bd8..4d23580e582 100644 --- a/addons/association/i18n/en_GB.po +++ b/addons/association/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es.po b/addons/association/i18n/es.po index a49e6b2f9da..0f93cff7fe9 100644 --- a/addons/association/i18n/es.po +++ b/addons/association/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es_CR.po b/addons/association/i18n/es_CR.po index 64180d9d582..010526cbd4f 100644 --- a/addons/association/i18n/es_CR.po +++ b/addons/association/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: association diff --git a/addons/association/i18n/es_EC.po b/addons/association/i18n/es_EC.po index b6ec1c6717b..5188b5f3ee9 100644 --- a/addons/association/i18n/es_EC.po +++ b/addons/association/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es_PY.po b/addons/association/i18n/es_PY.po index 35003c7729b..8e27ca194f7 100644 --- a/addons/association/i18n/es_PY.po +++ b/addons/association/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/et.po b/addons/association/i18n/et.po index acd5a1e302a..17cbf1e9f0e 100644 --- a/addons/association/i18n/et.po +++ b/addons/association/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fa.po b/addons/association/i18n/fa.po index 69237d2fc7a..17891643291 100644 --- a/addons/association/i18n/fa.po +++ b/addons/association/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fi.po b/addons/association/i18n/fi.po index bbff051bff7..7eef338821e 100644 --- a/addons/association/i18n/fi.po +++ b/addons/association/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fr.po b/addons/association/i18n/fr.po index 7e2168a1703..a18931fd0e6 100644 --- a/addons/association/i18n/fr.po +++ b/addons/association/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/gl.po b/addons/association/i18n/gl.po index b7fcd3d43c7..42885f3d136 100644 --- a/addons/association/i18n/gl.po +++ b/addons/association/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/gu.po b/addons/association/i18n/gu.po index 41a74d2b41c..2a13b4a1fd6 100644 --- a/addons/association/i18n/gu.po +++ b/addons/association/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/hr.po b/addons/association/i18n/hr.po index 147c83038c9..b71ab92168b 100644 --- a/addons/association/i18n/hr.po +++ b/addons/association/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/hu.po b/addons/association/i18n/hu.po index e35eb0d4f7b..7d9a7bd865f 100644 --- a/addons/association/i18n/hu.po +++ b/addons/association/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-21 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/id.po b/addons/association/i18n/id.po index 003e9a3ee89..1fc507e6633 100644 --- a/addons/association/i18n/id.po +++ b/addons/association/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/it.po b/addons/association/i18n/it.po index abf96f9fc29..c5cf9d921cd 100644 --- a/addons/association/i18n/it.po +++ b/addons/association/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2012-12-15 15:09+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:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ja.po b/addons/association/i18n/ja.po index f3f595d1591..3487a696246 100644 --- a/addons/association/i18n/ja.po +++ b/addons/association/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ko.po b/addons/association/i18n/ko.po index c1470c81d5f..4e8acbd6ae5 100644 --- a/addons/association/i18n/ko.po +++ b/addons/association/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lo.po b/addons/association/i18n/lo.po index aeed0968337..9693ed8197b 100644 --- a/addons/association/i18n/lo.po +++ b/addons/association/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lt.po b/addons/association/i18n/lt.po index ae6b1a2a603..e7497631ddf 100644 --- a/addons/association/i18n/lt.po +++ b/addons/association/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lv.po b/addons/association/i18n/lv.po index cb679d93348..f9fd24caa0c 100644 --- a/addons/association/i18n/lv.po +++ b/addons/association/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/mk.po b/addons/association/i18n/mk.po index 06e1c8089d0..e327e3d9bce 100644 --- a/addons/association/i18n/mk.po +++ b/addons/association/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 @@ -25,7 +25,7 @@ msgstr "Вики" #. module: association #: view:profile.association.config.install_modules_wizard:0 msgid "Event Management" -msgstr "Менаџмент на настан" +msgstr "Управување со настани" #. module: association #: field:profile.association.config.install_modules_wizard,project_gtd:0 @@ -88,7 +88,7 @@ msgstr "" #. module: association #: view:profile.association.config.install_modules_wizard:0 msgid "Resources Management" -msgstr "Менаџмент на ресурси" +msgstr "Управување со ресурсите" #. module: association #: model:ir.module.module,shortdesc:association.module_meta_information diff --git a/addons/association/i18n/mn.po b/addons/association/i18n/mn.po index eaf52added3..bd90c60c902 100644 --- a/addons/association/i18n/mn.po +++ b/addons/association/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/nb.po b/addons/association/i18n/nb.po index 7d880079828..3d28d53542c 100644 --- a/addons/association/i18n/nb.po +++ b/addons/association/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/nl.po b/addons/association/i18n/nl.po index 6e4a025b2de..ac2df0b98af 100644 --- a/addons/association/i18n/nl.po +++ b/addons/association/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pl.po b/addons/association/i18n/pl.po index 461263f84bc..433e619eec4 100644 --- a/addons/association/i18n/pl.po +++ b/addons/association/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pt.po b/addons/association/i18n/pt.po index fa4af10dc91..92ac2b97eb5 100644 --- a/addons/association/i18n/pt.po +++ b/addons/association/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pt_BR.po b/addons/association/i18n/pt_BR.po index 0a6a0054e05..9711295883c 100644 --- a/addons/association/i18n/pt_BR.po +++ b/addons/association/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ro.po b/addons/association/i18n/ro.po index df9c72eae30..863dc8f7740 100644 --- a/addons/association/i18n/ro.po +++ b/addons/association/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ru.po b/addons/association/i18n/ru.po index 46f3911f5dc..69233e09d32 100644 --- a/addons/association/i18n/ru.po +++ b/addons/association/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sl.po b/addons/association/i18n/sl.po index de8facc726b..f4d21c6a2cf 100644 --- a/addons/association/i18n/sl.po +++ b/addons/association/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 @@ -34,7 +34,7 @@ msgstr "Getting Things Done" #. module: association #: model:ir.module.module,description:association.module_meta_information msgid "This module is to create Profile for Associates" -msgstr "" +msgstr "Modul za profiliranje združenja" #. module: association #: field:profile.association.config.install_modules_wizard,progress:0 @@ -46,9 +46,7 @@ msgstr "Potek konfiguracije" msgid "" "Here are specific applications related to the Association Profile you " "selected." -msgstr "" -"Hier finden Sie die vorzunehmenden Einstellungen für das Profil " -"Mitgliederverwaltung." +msgstr "Specjofične aplikacije za vrsto združenje , ki ste ga izbrali" #. module: association #: view:profile.association.config.install_modules_wizard:0 @@ -58,7 +56,7 @@ msgstr "naziv" #. module: association #: help:profile.association.config.install_modules_wizard,event_project:0 msgid "Helps you to manage and organize your events." -msgstr "" +msgstr "Organizacija dogodkov" #. module: association #: field:profile.association.config.install_modules_wizard,config_logo:0 @@ -70,14 +68,14 @@ msgstr "Slika" msgid "" "Tracks and manages employee expenses, and can automatically re-invoice " "clients if the expenses are project-related." -msgstr "" +msgstr "Stroški zaposlenih" #. module: association #: help:profile.association.config.install_modules_wizard,project_gtd:0 msgid "" "GTD is a methodology to efficiently organise yourself and your tasks. This " "module fully integrates GTD principle with OpenERP's project management." -msgstr "" +msgstr "GTD je metoda učinkovitega izvajanja nalog" #. module: association #: view:profile.association.config.install_modules_wizard:0 @@ -87,32 +85,32 @@ msgstr "Upravljanje virov" #. module: association #: model:ir.module.module,shortdesc:association.module_meta_information msgid "Association profile" -msgstr "" +msgstr "Profil združenja" #. module: association #: field:profile.association.config.install_modules_wizard,hr_expense:0 msgid "Expenses Tracking" -msgstr "Sledenje izdatkov" +msgstr "Sledenje stroškov" #. module: association #: model:ir.actions.act_window,name:association.action_config_install_module #: view:profile.association.config.install_modules_wizard:0 msgid "Association Application Configuration" -msgstr "" +msgstr "Nastavitve združenja" #. module: association #: help:profile.association.config.install_modules_wizard,wiki:0 msgid "" "Lets you create wiki pages and page groups in order to keep track of " "business knowledge and share it with and between your employees." -msgstr "" +msgstr "Wiki" #. module: association #: help:profile.association.config.install_modules_wizard,project:0 msgid "" "Helps you manage your projects and tasks by tracking them, generating " "plannings, etc..." -msgstr "" +msgstr "Vodenje projektov" #. module: association #: model:ir.model,name:association.model_profile_association_config_install_modules_wizard @@ -133,4 +131,4 @@ msgstr "Upravljanje projektov" #. module: association #: view:profile.association.config.install_modules_wizard:0 msgid "Configure" -msgstr "" +msgstr "Nastavitve" diff --git a/addons/association/i18n/sq.po b/addons/association/i18n/sq.po index 5740146106f..c6655fe7369 100644 --- a/addons/association/i18n/sq.po +++ b/addons/association/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sr.po b/addons/association/i18n/sr.po index baee8972bae..05587f22377 100644 --- a/addons/association/i18n/sr.po +++ b/addons/association/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sr@latin.po b/addons/association/i18n/sr@latin.po index b4e74095808..c944fa434c5 100644 --- a/addons/association/i18n/sr@latin.po +++ b/addons/association/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sv.po b/addons/association/i18n/sv.po index 9bb3ce6e070..35cef82d04a 100644 --- a/addons/association/i18n/sv.po +++ b/addons/association/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/tlh.po b/addons/association/i18n/tlh.po index ae6b1a2a603..e7497631ddf 100644 --- a/addons/association/i18n/tlh.po +++ b/addons/association/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/tr.po b/addons/association/i18n/tr.po index 8948d0f8a87..633f05d5bdb 100644 --- a/addons/association/i18n/tr.po +++ b/addons/association/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/uk.po b/addons/association/i18n/uk.po index 20dfa105689..ac5c8e246c0 100644 --- a/addons/association/i18n/uk.po +++ b/addons/association/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/vi.po b/addons/association/i18n/vi.po index f7a90e3eb3f..8dda47d9b63 100644 --- a/addons/association/i18n/vi.po +++ b/addons/association/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/zh_CN.po b/addons/association/i18n/zh_CN.po index 7ffa42e4784..344102627e0 100644 --- a/addons/association/i18n/zh_CN.po +++ b/addons/association/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/zh_TW.po b/addons/association/i18n/zh_TW.po index dd21d9499fc..33566eec949 100644 --- a/addons/association/i18n/zh_TW.po +++ b/addons/association/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/audittrail/audittrail_view.xml b/addons/audittrail/audittrail_view.xml index 5d5bdcc6c21..5ea15ab557b 100644 --- a/addons/audittrail/audittrail_view.xml +++ b/addons/audittrail/audittrail_view.xml @@ -166,7 +166,7 @@ - + diff --git a/addons/audittrail/i18n/ar.po b/addons/audittrail/i18n/ar.po index ea3b7ab7ff0..62b8c9e9141 100644 --- a/addons/audittrail/i18n/ar.po +++ b/addons/audittrail/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/bg.po b/addons/audittrail/i18n/bg.po index a81c09f92f5..c591c91f0f4 100644 --- a/addons/audittrail/i18n/bg.po +++ b/addons/audittrail/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/bs.po b/addons/audittrail/i18n/bs.po index 0391b36ce63..001ac4a2988 100644 --- a/addons/audittrail/i18n/bs.po +++ b/addons/audittrail/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ca.po b/addons/audittrail/i18n/ca.po index fab2f0e05e7..3dbc431fd93 100644 --- a/addons/audittrail/i18n/ca.po +++ b/addons/audittrail/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/cs.po b/addons/audittrail/i18n/cs.po index 3198fe7372c..f10361638d0 100644 --- a/addons/audittrail/i18n/cs.po +++ b/addons/audittrail/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Language: Czech\n" #. module: audittrail diff --git a/addons/audittrail/i18n/da.po b/addons/audittrail/i18n/da.po index c691a151fcb..c1147a97c80 100644 --- a/addons/audittrail/i18n/da.po +++ b/addons/audittrail/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/de.po b/addons/audittrail/i18n/de.po index 3ed83b44042..f70a2a6e0c9 100644 --- a/addons/audittrail/i18n/de.po +++ b/addons/audittrail/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/el.po b/addons/audittrail/i18n/el.po index c2f93d6cf5f..7c1299ca925 100644 --- a/addons/audittrail/i18n/el.po +++ b/addons/audittrail/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es.po b/addons/audittrail/i18n/es.po index cfdeb6eb8e7..a8d10aaace0 100644 --- a/addons/audittrail/i18n/es.po +++ b/addons/audittrail/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_AR.po b/addons/audittrail/i18n/es_AR.po index 1b2453c62e0..d98d6f8a871 100644 --- a/addons/audittrail/i18n/es_AR.po +++ b/addons/audittrail/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_CR.po b/addons/audittrail/i18n/es_CR.po index 6a28a5110e2..df1b62efeb5 100644 --- a/addons/audittrail/i18n/es_CR.po +++ b/addons/audittrail/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: audittrail diff --git a/addons/audittrail/i18n/es_EC.po b/addons/audittrail/i18n/es_EC.po index 1bada12c848..c3321c89f1a 100644 --- a/addons/audittrail/i18n/es_EC.po +++ b/addons/audittrail/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_PY.po b/addons/audittrail/i18n/es_PY.po index b12bd9f498d..e7cf1e92c1e 100644 --- a/addons/audittrail/i18n/es_PY.po +++ b/addons/audittrail/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/et.po b/addons/audittrail/i18n/et.po index 1017b93ff52..44fa0ac45c5 100644 --- a/addons/audittrail/i18n/et.po +++ b/addons/audittrail/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa.po b/addons/audittrail/i18n/fa.po index 60b373f3165..ea1356225e3 100644 --- a/addons/audittrail/i18n/fa.po +++ b/addons/audittrail/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa_AF.po b/addons/audittrail/i18n/fa_AF.po index e7e83f65756..61ce7bab0c9 100644 --- a/addons/audittrail/i18n/fa_AF.po +++ b/addons/audittrail/i18n/fa_AF.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fi.po b/addons/audittrail/i18n/fi.po index 04a96bf96b2..a3ca7aab971 100644 --- a/addons/audittrail/i18n/fi.po +++ b/addons/audittrail/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fr.po b/addons/audittrail/i18n/fr.po index 49a53055c0a..652bfbfca19 100644 --- a/addons/audittrail/i18n/fr.po +++ b/addons/audittrail/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/gl.po b/addons/audittrail/i18n/gl.po index 04b9278b620..43818518e24 100644 --- a/addons/audittrail/i18n/gl.po +++ b/addons/audittrail/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/gu.po b/addons/audittrail/i18n/gu.po index 03c38da7288..ca79cd5aa0f 100644 --- a/addons/audittrail/i18n/gu.po +++ b/addons/audittrail/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hr.po b/addons/audittrail/i18n/hr.po index d8e53de28bd..27b0a67b077 100644 --- a/addons/audittrail/i18n/hr.po +++ b/addons/audittrail/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hu.po b/addons/audittrail/i18n/hu.po index e5bee742c5c..2a18fb6ec4c 100644 --- a/addons/audittrail/i18n/hu.po +++ b/addons/audittrail/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-21 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/id.po b/addons/audittrail/i18n/id.po index 4913197880f..185fb1927fd 100644 --- a/addons/audittrail/i18n/id.po +++ b/addons/audittrail/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/it.po b/addons/audittrail/i18n/it.po index 93430792b18..7d45cda396d 100644 --- a/addons/audittrail/i18n/it.po +++ b/addons/audittrail/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ja.po b/addons/audittrail/i18n/ja.po index f9031f5b46b..436fb0b0f66 100644 --- a/addons/audittrail/i18n/ja.po +++ b/addons/audittrail/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ko.po b/addons/audittrail/i18n/ko.po index fb0d26168ec..a0634eff906 100644 --- a/addons/audittrail/i18n/ko.po +++ b/addons/audittrail/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lt.po b/addons/audittrail/i18n/lt.po index d6cb48261d4..15ddb9e7fb2 100644 --- a/addons/audittrail/i18n/lt.po +++ b/addons/audittrail/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lv.po b/addons/audittrail/i18n/lv.po index f242bece9da..96edc3f28c1 100644 --- a/addons/audittrail/i18n/lv.po +++ b/addons/audittrail/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/mk.po b/addons/audittrail/i18n/mk.po index 213d0819ef4..0cb845bfae4 100644 --- a/addons/audittrail/i18n/mk.po +++ b/addons/audittrail/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:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 msgid "Old Value Text : " -msgstr "" +msgstr "Текст со стара врдност : " #. module: audittrail #: code:addons/audittrail/audittrail.py:76 @@ -69,7 +69,7 @@ msgstr "Статус" #: model:ir.actions.act_window,name:audittrail.action_audittrail_log_tree #: model:ir.ui.menu,name:audittrail.menu_audit_logs msgid "Audit Logs" -msgstr "" +msgstr "Логови за ревизија" #. module: audittrail #: view:audittrail.log:0 @@ -104,6 +104,8 @@ msgid "" "Select this if you want to keep track of read/open on any record of the " "object of this rule" msgstr "" +"Изберете доколку сакате да го следите читањето/отварањето на било кој запис " +"од објектот на ова правило" #. module: audittrail #: field:audittrail.log,method:0 @@ -136,6 +138,8 @@ msgid "" "Select this if you want to keep track of workflow on any record of the " "object of this rule" msgstr "" +"Означете доколку сакате да го следите работниот тек на било кој запис за " +"објектот на ова правило" #. module: audittrail #: field:audittrail.rule,user_id:0 @@ -167,7 +171,7 @@ msgstr "" #. module: audittrail #: view:audittrail.log:0 msgid "New Value Text: " -msgstr "" +msgstr "Текст со нова вредност: " #. module: audittrail #: view:audittrail.rule:0 @@ -223,12 +227,12 @@ msgstr "Ревизија" #. module: audittrail #: field:audittrail.rule,log_workflow:0 msgid "Log Workflow" -msgstr "" +msgstr "Лог РаботенТек" #. module: audittrail #: field:audittrail.rule,log_read:0 msgid "Log Reads" -msgstr "" +msgstr "Лог Читања" #. module: audittrail #: code:addons/audittrail/audittrail.py:77 @@ -257,6 +261,8 @@ msgid "" "Select this if you want to keep track of deletion on any record of the " "object of this rule" msgstr "" +"Означете доколку сакате да го следите бришењето на било кој запис за " +"објектот на ова правило" #. module: audittrail #: view:audittrail.log:0 @@ -292,7 +298,7 @@ msgstr "" #. module: audittrail #: field:audittrail.rule,log_unlink:0 msgid "Log Deletes" -msgstr "" +msgstr "Лог Бришеања" #. module: audittrail #: view:audittrail.log:0 @@ -313,7 +319,7 @@ msgstr "" #. module: audittrail #: field:audittrail.rule,log_write:0 msgid "Log Writes" -msgstr "" +msgstr "Лог Пишувања" #. module: audittrail #: view:audittrail.view.log:0 @@ -323,7 +329,7 @@ msgstr "Отвори логови" #. module: audittrail #: field:audittrail.log.line,new_value_text:0 msgid "New value Text" -msgstr "" +msgstr "Текст со нова вредност" #. module: audittrail #: field:audittrail.rule,name:0 @@ -373,7 +379,7 @@ msgstr "Нова вредност : " #. module: audittrail #: field:audittrail.log.line,old_value_text:0 msgid "Old value Text" -msgstr "" +msgstr "Текст со стара врдност" #. module: audittrail #: view:audittrail.view.log:0 @@ -398,7 +404,7 @@ msgstr "или" #. module: audittrail #: field:audittrail.rule,log_action:0 msgid "Log Action" -msgstr "" +msgstr "Лог Акција" #. module: audittrail #: help:audittrail.rule,log_create:0 @@ -406,3 +412,5 @@ msgid "" "Select this if you want to keep track of creation on any record of the " "object of this rule" msgstr "" +"Означете доколку сакате да го следите креирањето на било кој запис за " +"објектот на ова правило" diff --git a/addons/audittrail/i18n/mn.po b/addons/audittrail/i18n/mn.po index 13864acc5a6..d80f6955571 100644 --- a/addons/audittrail/i18n/mn.po +++ b/addons/audittrail/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nb.po b/addons/audittrail/i18n/nb.po index 7d42bf30516..87c23d5aaf0 100644 --- a/addons/audittrail/i18n/nb.po +++ b/addons/audittrail/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl.po b/addons/audittrail/i18n/nl.po index c1dc82974f6..39d33365e9b 100644 --- a/addons/audittrail/i18n/nl.po +++ b/addons/audittrail/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-24 18:09+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:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl_BE.po b/addons/audittrail/i18n/nl_BE.po index 49ff08aa5a8..68b5013cc6b 100644 --- a/addons/audittrail/i18n/nl_BE.po +++ b/addons/audittrail/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/oc.po b/addons/audittrail/i18n/oc.po index 9e8b8563095..bac63fe9a00 100644 --- a/addons/audittrail/i18n/oc.po +++ b/addons/audittrail/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pl.po b/addons/audittrail/i18n/pl.po index 40962a0f673..d5551694468 100644 --- a/addons/audittrail/i18n/pl.po +++ b/addons/audittrail/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt.po b/addons/audittrail/i18n/pt.po index c63a0d13488..36ff06e009d 100644 --- a/addons/audittrail/i18n/pt.po +++ b/addons/audittrail/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt_BR.po b/addons/audittrail/i18n/pt_BR.po index d6308eae940..5bf44918453 100644 --- a/addons/audittrail/i18n/pt_BR.po +++ b/addons/audittrail/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 @@ -500,3 +500,7 @@ msgstr "" #~ msgid "Subscribe" #~ msgstr "Assinar" + +#, python-format +#~ msgid "WARNING:audittrail is not part of the pool" +#~ msgstr "AVISO: AuditTrail não é parte do pool" diff --git a/addons/audittrail/i18n/ro.po b/addons/audittrail/i18n/ro.po index ddaad316240..b6da059c8b9 100644 --- a/addons/audittrail/i18n/ro.po +++ b/addons/audittrail/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ru.po b/addons/audittrail/i18n/ru.po index 44be5c84b9d..ba8a9cdca6b 100644 --- a/addons/audittrail/i18n/ru.po +++ b/addons/audittrail/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sl.po b/addons/audittrail/i18n/sl.po index 9a6209abf73..93ff4619339 100644 --- a/addons/audittrail/i18n/sl.po +++ b/addons/audittrail/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sq.po b/addons/audittrail/i18n/sq.po index 6e792b63c98..844e6d1934d 100644 --- a/addons/audittrail/i18n/sq.po +++ b/addons/audittrail/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sr@latin.po b/addons/audittrail/i18n/sr@latin.po index f8fc6cdf56a..bc0a801c634 100644 --- a/addons/audittrail/i18n/sr@latin.po +++ b/addons/audittrail/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sv.po b/addons/audittrail/i18n/sv.po index 22433c250ee..5fe6479b003 100644 --- a/addons/audittrail/i18n/sv.po +++ b/addons/audittrail/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tlh.po b/addons/audittrail/i18n/tlh.po index 3d0fc09013d..7ef88029a8e 100644 --- a/addons/audittrail/i18n/tlh.po +++ b/addons/audittrail/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tr.po b/addons/audittrail/i18n/tr.po index c69f461cbcc..1e42febd0d4 100644 --- a/addons/audittrail/i18n/tr.po +++ b/addons/audittrail/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 @@ -49,7 +49,7 @@ msgstr "'%s' Modeli yoktur..." #. module: audittrail #: view:audittrail.rule:0 msgid "Subscribed Rule" -msgstr "" +msgstr "Abone Kural" #. module: audittrail #: view:audittrail.rule:0 @@ -103,6 +103,8 @@ msgid "" "Select this if you want to keep track of read/open on any record of the " "object of this rule" msgstr "" +"Bu kuralın nesnenin herhangi bir kayıt üzerinde açık okuma / takip etmek " +"istiyorsanız bunu seçin" #. module: audittrail #: field:audittrail.log,method:0 @@ -112,22 +114,22 @@ msgstr "Yöntem" #. module: audittrail #: field:audittrail.view.log,from:0 msgid "Log From" -msgstr "" +msgstr "Günlüğünden" #. module: audittrail #: field:audittrail.log.line,log:0 msgid "Log ID" -msgstr "" +msgstr "Günlük ID" #. module: audittrail #: field:audittrail.log,res_id:0 msgid "Resource Id" -msgstr "" +msgstr "Kaynak Id" #. module: audittrail #: help:audittrail.rule,user_id:0 msgid "if User is not added then it will applicable for all users" -msgstr "" +msgstr "Kullanıcı ilave değilse o zaman tüm kullanıcılar için geçerli olacak" #. module: audittrail #: help:audittrail.rule,log_workflow:0 @@ -135,6 +137,8 @@ msgid "" "Select this if you want to keep track of workflow on any record of the " "object of this rule" msgstr "" +"Bu kuralın nesnenin herhangi bir kayıt iş akışı takip etmek istiyorsanız " +"bunu seçin" #. module: audittrail #: field:audittrail.rule,user_id:0 @@ -144,7 +148,7 @@ msgstr "Kullanıcılar" #. module: audittrail #: view:audittrail.log:0 msgid "Log Lines" -msgstr "" +msgstr "Günlük Saırları" #. module: audittrail #: view:audittrail.log:0 @@ -156,38 +160,38 @@ msgstr "Nesne" #. module: audittrail #: view:audittrail.rule:0 msgid "AuditTrail Rule" -msgstr "" +msgstr "Denetim Takip Kural" #. module: audittrail #: field:audittrail.view.log,to:0 msgid "Log To" -msgstr "" +msgstr "için Günlük" #. module: audittrail #: view:audittrail.log:0 msgid "New Value Text: " -msgstr "" +msgstr "Yeni Değer Yazı: " #. module: audittrail #: view:audittrail.rule:0 msgid "Search Audittrail Rule" -msgstr "" +msgstr "Arama Denetim Takip Kuralı" #. module: audittrail #: model:ir.actions.act_window,name:audittrail.action_audittrail_rule_tree #: model:ir.ui.menu,name:audittrail.menu_action_audittrail_rule_tree msgid "Audit Rules" -msgstr "" +msgstr "Denetim Kuralları" #. module: audittrail #: view:audittrail.log:0 msgid "Old Value : " -msgstr "" +msgstr "Eski Değer: " #. module: audittrail #: field:audittrail.log,name:0 msgid "Resource Name" -msgstr "" +msgstr "Kaynak Adı" #. module: audittrail #: view:audittrail.log:0 @@ -201,42 +205,46 @@ msgid "" "Select this if you want to keep track of modification on any record of the " "object of this rule" msgstr "" +"Bu kuralın nesnenin herhangi bir kayıt üzerinde değişiklik izlemek " +"istiyorsanız bunu seçin" #. module: audittrail #: view:audittrail.rule:0 msgid "AuditTrail Rules" msgstr "" +"Bu kuralın nesnenin herhangi bir kayıt üzerinde değişiklik izlemek " +"istiyorsanız bunu seçin" #. module: audittrail #: help:audittrail.rule,object_id:0 msgid "Select object for which you want to generate log." -msgstr "" +msgstr "Günlük oluşturmak istediğiniz nesneyi seçin." #. module: audittrail #: model:ir.ui.menu,name:audittrail.menu_audit msgid "Audit" -msgstr "" +msgstr "Denetim" #. module: audittrail #: field:audittrail.rule,log_workflow:0 msgid "Log Workflow" -msgstr "" +msgstr "İş Akışı Günlüğü" #. module: audittrail #: field:audittrail.rule,log_read:0 msgid "Log Reads" -msgstr "" +msgstr "Günlük Okumaları" #. module: audittrail #: code:addons/audittrail/audittrail.py:77 #, python-format msgid "Change audittrail depends -- Setting rule as DRAFT" -msgstr "" +msgstr "Değişim denetim izi bağlıdır - TASLAK olarak ayarlama kural" #. module: audittrail #: field:audittrail.log,line_ids:0 msgid "Log lines" -msgstr "" +msgstr "Günlük satırları" #. module: audittrail #: field:audittrail.log.line,field_id:0 @@ -246,7 +254,7 @@ msgstr "Alanlar" #. module: audittrail #: field:audittrail.rule,log_create:0 msgid "Log Creates" -msgstr "" +msgstr "Günlük Oluştur" #. module: audittrail #: help:audittrail.rule,log_unlink:0 @@ -254,6 +262,8 @@ msgid "" "Select this if you want to keep track of deletion on any record of the " "object of this rule" msgstr "" +"Bu kuralın nesnenin herhangi bir kayıt silinmek takip etmek istiyorsanız " +"bunu seçin" #. module: audittrail #: view:audittrail.log:0 @@ -264,17 +274,19 @@ msgstr "Kullanıcı" #. module: audittrail #: field:audittrail.rule,action_id:0 msgid "Action ID" -msgstr "" +msgstr "İşlem ID" #. module: audittrail #: view:audittrail.rule:0 msgid "Users (if User is not added then it will applicable for all users)" msgstr "" +"Kullanıcılar (Kullanıcı ilave değilse o zaman tüm kullanıcılar için geçerli " +"olacak)" #. module: audittrail #: view:audittrail.rule:0 msgid "UnSubscribe" -msgstr "" +msgstr "ÜyeliktenÇık" #. module: audittrail #: sql_constraint:audittrail.rule:0 @@ -282,42 +294,44 @@ msgid "" "There is already a rule defined on this object\n" " You cannot define another: please edit the existing one." msgstr "" +"Bu objeye zaten bir kural tanımlanmış\n" +" Başka bir tane tanımlayamazsınız: lütfen varolanı düzenleyin." #. module: audittrail #: field:audittrail.rule,log_unlink:0 msgid "Log Deletes" -msgstr "" +msgstr "Günlük Sil" #. module: audittrail #: view:audittrail.log:0 #: view:audittrail.rule:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: audittrail #: field:audittrail.log.line,field_description:0 msgid "Field Description" -msgstr "" +msgstr "Alan Açıklaması" #. module: audittrail #: view:audittrail.log:0 msgid "Search Audittrail Log" -msgstr "" +msgstr "Arama Denetim Takip Günlük" #. module: audittrail #: field:audittrail.rule,log_write:0 msgid "Log Writes" -msgstr "" +msgstr "Günlük Yazıları" #. module: audittrail #: view:audittrail.view.log:0 msgid "Open Logs" -msgstr "" +msgstr "Günlükleri Aç" #. module: audittrail #: field:audittrail.log.line,new_value_text:0 msgid "New value Text" -msgstr "" +msgstr "Yeni değeri Yaz" #. module: audittrail #: field:audittrail.rule,name:0 @@ -327,45 +341,45 @@ msgstr "Kural Adı" #. module: audittrail #: field:audittrail.log.line,new_value:0 msgid "New Value" -msgstr "" +msgstr "Yeni Değer" #. module: audittrail #: code:addons/audittrail/audittrail.py:223 #, python-format msgid "'%s' field does not exist in '%s' model" -msgstr "" +msgstr "'% s' alan '% s' modelinde yok" #. module: audittrail #: view:audittrail.log:0 msgid "AuditTrail Logs" -msgstr "" +msgstr "Denetim Takip Günlükleri" #. module: audittrail #: view:audittrail.rule:0 msgid "Draft Rule" -msgstr "" +msgstr "Taslak Kural" #. module: audittrail #: view:audittrail.log:0 #: model:ir.model,name:audittrail.model_audittrail_log msgid "Audittrail Log" -msgstr "" +msgstr "Denetim Takip Günlüğü" #. module: audittrail #: help:audittrail.rule,log_action:0 msgid "" "Select this if you want to keep track of actions on the object of this rule" -msgstr "" +msgstr "Bu kuralın nesne eylemleri takip etmek istiyorsanız bunu seçin" #. module: audittrail #: view:audittrail.log:0 msgid "New Value : " -msgstr "" +msgstr "Yeni Değer: " #. module: audittrail #: field:audittrail.log.line,old_value_text:0 msgid "Old value Text" -msgstr "" +msgstr "Eski değer Yazı" #. module: audittrail #: view:audittrail.view.log:0 @@ -375,22 +389,22 @@ msgstr "İptal" #. module: audittrail #: model:ir.model,name:audittrail.model_audittrail_view_log msgid "View Log" -msgstr "" +msgstr "Günlüğü Göster" #. module: audittrail #: model:ir.model,name:audittrail.model_audittrail_log_line msgid "Log Line" -msgstr "" +msgstr "Günlük Satırı" #. module: audittrail #: view:audittrail.view.log:0 msgid "or" -msgstr "" +msgstr "veya" #. module: audittrail #: field:audittrail.rule,log_action:0 msgid "Log Action" -msgstr "" +msgstr "Günlük İşlemei" #. module: audittrail #: help:audittrail.rule,log_create:0 @@ -398,6 +412,8 @@ msgid "" "Select this if you want to keep track of creation on any record of the " "object of this rule" msgstr "" +"Bu kuralın nesnenin herhangi bir kayıt oluşturma takip etmek istiyorsanız " +"bunu seçin" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Görüntüleme mimarisi için Geçersiz XML" diff --git a/addons/audittrail/i18n/uk.po b/addons/audittrail/i18n/uk.po index e61b7ba2e3c..7ca5621d6be 100644 --- a/addons/audittrail/i18n/uk.po +++ b/addons/audittrail/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/vi.po b/addons/audittrail/i18n/vi.po index ba8557f1570..5a4595c9425 100644 --- a/addons/audittrail/i18n/vi.po +++ b/addons/audittrail/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_CN.po b/addons/audittrail/i18n/zh_CN.po index 37de643ff07..924e536955d 100644 --- a/addons/audittrail/i18n/zh_CN.po +++ b/addons/audittrail/i18n/zh_CN.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 06:31+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \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:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_TW.po b/addons/audittrail/i18n/zh_TW.po index 41fb0dfaf05..455c0be07d1 100644 --- a/addons/audittrail/i18n/zh_TW.po +++ b/addons/audittrail/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/auth_crypt/i18n/ar.po b/addons/auth_crypt/i18n/ar.po index 20c85828671..4e44b5b25dc 100644 --- a/addons/auth_crypt/i18n/ar.po +++ b/addons/auth_crypt/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/cs.po b/addons/auth_crypt/i18n/cs.po index 0ae0746fbdb..df6547f6529 100644 --- a/addons/auth_crypt/i18n/cs.po +++ b/addons/auth_crypt/i18n/cs.po @@ -14,15 +14,15 @@ 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-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 msgid "Encrypted Password" -msgstr "" +msgstr "Šifrované heslo" #. module: auth_crypt #: model:ir.model,name:auth_crypt.model_res_users msgid "Users" -msgstr "" +msgstr "Uživatelé" diff --git a/addons/auth_crypt/i18n/da.po b/addons/auth_crypt/i18n/da.po index 4710a5ffaa5..d1e0d789d87 100644 --- a/addons/auth_crypt/i18n/da.po +++ b/addons/auth_crypt/i18n/da.po @@ -1,23 +1,28 @@ # Danish translation for openobject-addons -# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2012. +# FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-01-27 08:38+0000\n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-09-15 20:07+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2013-09-16 05:42+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "Krypteret kodeord" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users msgid "Users" -msgstr "" +msgstr "Brugere" diff --git a/addons/auth_crypt/i18n/de.po b/addons/auth_crypt/i18n/de.po index af9d0dc9593..aa166e12ac4 100644 --- a/addons/auth_crypt/i18n/de.po +++ b/addons/auth_crypt/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/en_GB.po b/addons/auth_crypt/i18n/en_GB.po index c0485b1c311..8a74f09ae23 100644 --- a/addons/auth_crypt/i18n/en_GB.po +++ b/addons/auth_crypt/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/es.po b/addons/auth_crypt/i18n/es.po index 7fdea1f7378..49c7869c264 100644 --- a/addons/auth_crypt/i18n/es.po +++ b/addons/auth_crypt/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/et.po b/addons/auth_crypt/i18n/et.po index a634e17faa5..cbe529a053d 100644 --- a/addons/auth_crypt/i18n/et.po +++ b/addons/auth_crypt/i18n/et.po @@ -1,30 +1,28 @@ # Estonian translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. +# FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2011-10-10 19:33+0000\n" -"Last-Translator: Aare Vesi \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-10-09 14:40+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2013-10-10 04:41+0000\n" +"X-Generator: Launchpad (build 16799)\n" -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" +msgstr "Krüpteeritud Parool" + +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users msgid "Users" -msgstr "" - -#, python-format -#~ msgid "Error" -#~ msgstr "Viga" - -#~ msgid "res.users" -#~ msgstr "res.users" +msgstr "Kasutajad" diff --git a/addons/auth_crypt/i18n/fr.po b/addons/auth_crypt/i18n/fr.po index 61cba43afc7..13cd70bfff9 100644 --- a/addons/auth_crypt/i18n/fr.po +++ b/addons/auth_crypt/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/hr.po b/addons/auth_crypt/i18n/hr.po index 1e8876f7380..42728e25736 100644 --- a/addons/auth_crypt/i18n/hr.po +++ b/addons/auth_crypt/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/hu.po b/addons/auth_crypt/i18n/hu.po index 03b51f265ac..71781f9c1ec 100644 --- a/addons/auth_crypt/i18n/hu.po +++ b/addons/auth_crypt/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/it.po b/addons/auth_crypt/i18n/it.po index 93f3591299c..cb8f18ea8f5 100644 --- a/addons/auth_crypt/i18n/it.po +++ b/addons/auth_crypt/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/lt.po b/addons/auth_crypt/i18n/lt.po index 03f0bd5249f..4d4d9d97b28 100644 --- a/addons/auth_crypt/i18n/lt.po +++ b/addons/auth_crypt/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-25 05:20+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/mk.po b/addons/auth_crypt/i18n/mk.po index a346737eb9f..00e4dabc668 100644 --- a/addons/auth_crypt/i18n/mk.po +++ b/addons/auth_crypt/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/mn.po b/addons/auth_crypt/i18n/mn.po index 98dbc7d35e9..dd1665f22c0 100644 --- a/addons/auth_crypt/i18n/mn.po +++ b/addons/auth_crypt/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/nl.po b/addons/auth_crypt/i18n/nl.po index dda3179df82..370cceb443c 100644 --- a/addons/auth_crypt/i18n/nl.po +++ b/addons/auth_crypt/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/nl_BE.po b/addons/auth_crypt/i18n/nl_BE.po index abb65c8700f..ffc1cd9a4ec 100644 --- a/addons/auth_crypt/i18n/nl_BE.po +++ b/addons/auth_crypt/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/pt.po b/addons/auth_crypt/i18n/pt.po index 795848e2325..7ed3a5af67e 100644 --- a/addons/auth_crypt/i18n/pt.po +++ b/addons/auth_crypt/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/pt_BR.po b/addons/auth_crypt/i18n/pt_BR.po index bbedd2d126f..36e4faae693 100644 --- a/addons/auth_crypt/i18n/pt_BR.po +++ b/addons/auth_crypt/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/ro.po b/addons/auth_crypt/i18n/ro.po index 7f89ec57075..5a1a238d939 100644 --- a/addons/auth_crypt/i18n/ro.po +++ b/addons/auth_crypt/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/ru.po b/addons/auth_crypt/i18n/ru.po index 305f7aa682e..a5e77c32e69 100644 --- a/addons/auth_crypt/i18n/ru.po +++ b/addons/auth_crypt/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/sl.po b/addons/auth_crypt/i18n/sl.po index ebdf1a2a12e..a06627ca1c5 100644 --- a/addons/auth_crypt/i18n/sl.po +++ b/addons/auth_crypt/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/sv.po b/addons/auth_crypt/i18n/sv.po index 09d8ac04aa1..2b35ad91039 100644 --- a/addons/auth_crypt/i18n/sv.po +++ b/addons/auth_crypt/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/tr.po b/addons/auth_crypt/i18n/tr.po index 365173412d0..781fea35a46 100644 --- a/addons/auth_crypt/i18n/tr.po +++ b/addons/auth_crypt/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/zh_CN.po b/addons/auth_crypt/i18n/zh_CN.po index c387c7ea6d9..b3cf6f40a02 100644 --- a/addons/auth_crypt/i18n/zh_CN.po +++ b/addons/auth_crypt/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_ldap/i18n/ar.po b/addons/auth_ldap/i18n/ar.po index cd79abd6065..42eb035d60a 100644 --- a/addons/auth_ldap/i18n/ar.po +++ b/addons/auth_ldap/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/bg.po b/addons/auth_ldap/i18n/bg.po index 415c141680f..38e5d4f1aba 100644 --- a/addons/auth_ldap/i18n/bg.po +++ b/addons/auth_ldap/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ca.po b/addons/auth_ldap/i18n/ca.po index 7d91ebe249a..013f459b094 100644 --- a/addons/auth_ldap/i18n/ca.po +++ b/addons/auth_ldap/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/cs.po b/addons/auth_ldap/i18n/cs.po index 539c923450d..4a85cadb195 100644 --- a/addons/auth_ldap/i18n/cs.po +++ b/addons/auth_ldap/i18n/cs.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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 msgid "Template User" -msgstr "" +msgstr "Šablona uživatele" #. module: auth_ldap #: help:res.company.ldap,ldap_tls:0 @@ -29,32 +29,35 @@ msgid "" "option requires a server with STARTTLS enabled, otherwise all authentication " "attempts will fail." msgstr "" +"Vyžádat si zabezpečné šifrování TLS/SSL při připojování k serveru LDAP. Tato " +"možnost vyžaduje aby měl server zapnuté SARTTLS, jinak všechny požadavky " +"selžou." #. module: auth_ldap #: view:res.company:0 #: view:res.company.ldap:0 msgid "LDAP Configuration" -msgstr "" +msgstr "Nastavení LDAP" #. module: auth_ldap #: field:res.company.ldap,ldap_binddn:0 msgid "LDAP binddn" -msgstr "" +msgstr "LDAP binddn" #. module: auth_ldap #: field:res.company.ldap,company:0 msgid "Company" -msgstr "" +msgstr "Společnost" #. module: auth_ldap #: field:res.company.ldap,ldap_server:0 msgid "LDAP Server address" -msgstr "" +msgstr "Adresa serveru LDAP" #. module: auth_ldap #: field:res.company.ldap,ldap_server_port:0 msgid "LDAP Server port" -msgstr "" +msgstr "Port serveru LDAP" #. module: auth_ldap #: help:res.company.ldap,create_user:0 @@ -62,46 +65,48 @@ msgid "" "Automatically create local user accounts for new users authenticating via " "LDAP" msgstr "" +"Automaticky vytvořit místní uživatelské účty pro nové uživatele přihlašující " +"se přes LDAP" #. module: auth_ldap #: field:res.company.ldap,ldap_base:0 msgid "LDAP base" -msgstr "" +msgstr "LDAP base" #. module: auth_ldap #: view:res.company.ldap:0 msgid "User Information" -msgstr "" +msgstr "Informace o uživateli" #. module: auth_ldap #: field:res.company.ldap,ldap_password:0 msgid "LDAP password" -msgstr "" +msgstr "Heslo LDAP" #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_company msgid "Companies" -msgstr "" +msgstr "Společnosti" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Process Parameter" -msgstr "" +msgstr "Parametr procesu" #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_company_ldap msgid "res.company.ldap" -msgstr "" +msgstr "res.company.ldap" #. module: auth_ldap #: help:res.company.ldap,user:0 msgid "User to copy when creating new users" -msgstr "" +msgstr "Uživatel pro zkopírování při vytváření nových uživatelů" #. module: auth_ldap #: field:res.company.ldap,ldap_tls:0 msgid "Use TLS" -msgstr "" +msgstr "Použít TLS" #. module: auth_ldap #: field:res.company.ldap,sequence:0 @@ -111,17 +116,17 @@ msgstr "" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Login Information" -msgstr "" +msgstr "Přihlašovací údaje" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Server Information" -msgstr "" +msgstr "Údaje serveru" #. module: auth_ldap #: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer msgid "Setup your LDAP Server" -msgstr "" +msgstr "Nastavte váš server LDAP" #. module: auth_ldap #: view:res.company:0 @@ -135,6 +140,8 @@ msgid "" "The password of the user account on the LDAP server that is used to query " "the directory." msgstr "" +"Heslo uživatelského účtu na serveru LDAP, které se používá při dotazování " +"adresáře." #. module: auth_ldap #: help:res.company.ldap,ldap_binddn:0 @@ -142,18 +149,20 @@ msgid "" "The user account on the LDAP server that is used to query the directory. " "Leave empty to connect anonymously." msgstr "" +"Uživatelský účet na serveru LDAP, který se používání při dotazování " +"adresáře. Ponechte prázdné pro anonymní připojování." #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_users msgid "Users" -msgstr "" +msgstr "Uživatelé" #. module: auth_ldap #: field:res.company.ldap,ldap_filter:0 msgid "LDAP filter" -msgstr "" +msgstr "Filtr LDAP" #. module: auth_ldap #: field:res.company.ldap,create_user:0 msgid "Create user" -msgstr "" +msgstr "Vytvořit uživatele" diff --git a/addons/auth_ldap/i18n/da.po b/addons/auth_ldap/i18n/da.po index e32aabd1b11..4ceba998a88 100644 --- a/addons/auth_ldap/i18n/da.po +++ b/addons/auth_ldap/i18n/da.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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 msgid "Template User" -msgstr "" +msgstr "Skabelon bruger" #. module: auth_ldap #: help:res.company.ldap,ldap_tls:0 @@ -29,112 +29,114 @@ msgid "" "option requires a server with STARTTLS enabled, otherwise all authentication " "attempts will fail." msgstr "" +"Kræv sikker TLS/SSL kryptering ved tilslutning til LDAP server. Denne option " +"kræver server med STARTTLS aktiveret, ellers fejler godkendelse." #. module: auth_ldap #: view:res.company:0 #: view:res.company.ldap:0 msgid "LDAP Configuration" -msgstr "" +msgstr "LDAP konfiguration" #. module: auth_ldap #: field:res.company.ldap,ldap_binddn:0 msgid "LDAP binddn" -msgstr "" +msgstr "LDAP bind dn" #. module: auth_ldap #: field:res.company.ldap,company:0 msgid "Company" -msgstr "" +msgstr "Firma" #. module: auth_ldap #: field:res.company.ldap,ldap_server:0 msgid "LDAP Server address" -msgstr "" +msgstr "LDAP server adresse" #. module: auth_ldap #: field:res.company.ldap,ldap_server_port:0 msgid "LDAP Server port" -msgstr "" +msgstr "LDAP server port" #. module: auth_ldap #: help:res.company.ldap,create_user:0 msgid "" "Automatically create local user accounts for new users authenticating via " "LDAP" -msgstr "" +msgstr "Opretter automatisk ny lokal bruger når ny bruger logger på via LDAP" #. module: auth_ldap #: field:res.company.ldap,ldap_base:0 msgid "LDAP base" -msgstr "" +msgstr "LDAP base" #. module: auth_ldap #: view:res.company.ldap:0 msgid "User Information" -msgstr "" +msgstr "Brugerinformation" #. module: auth_ldap #: field:res.company.ldap,ldap_password:0 msgid "LDAP password" -msgstr "" +msgstr "LDAP kodeord" #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_company msgid "Companies" -msgstr "" +msgstr "Firmaer" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Process Parameter" -msgstr "" +msgstr "Proces parametre" #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_company_ldap msgid "res.company.ldap" -msgstr "" +msgstr "res.company.ldap" #. module: auth_ldap #: help:res.company.ldap,user:0 msgid "User to copy when creating new users" -msgstr "" +msgstr "Kopier fra bruger ved oprettelse af ny bruger" #. module: auth_ldap #: field:res.company.ldap,ldap_tls:0 msgid "Use TLS" -msgstr "" +msgstr "Brug TLS" #. module: auth_ldap #: field:res.company.ldap,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Rækkefølge" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Login Information" -msgstr "" +msgstr "Login-information" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Server Information" -msgstr "" +msgstr "Serverinformation" #. module: auth_ldap #: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer msgid "Setup your LDAP Server" -msgstr "" +msgstr "Opsætning LDAP server" #. module: auth_ldap #: view:res.company:0 #: field:res.company,ldaps:0 msgid "LDAP Parameters" -msgstr "" +msgstr "LDAP parametre" #. module: auth_ldap #: help:res.company.ldap,ldap_password:0 msgid "" "The password of the user account on the LDAP server that is used to query " "the directory." -msgstr "" +msgstr "Brugers kodeord på LDAP server, bruges ved søgning i directory" #. module: auth_ldap #: help:res.company.ldap,ldap_binddn:0 @@ -142,18 +144,20 @@ msgid "" "The user account on the LDAP server that is used to query the directory. " "Leave empty to connect anonymously." msgstr "" +"Bruger konto på LDAP server bruges ved søgning i directory. Hvis tomt logges " +"på anonymt." #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_users msgid "Users" -msgstr "" +msgstr "Brugere" #. module: auth_ldap #: field:res.company.ldap,ldap_filter:0 msgid "LDAP filter" -msgstr "" +msgstr "LDAP filter" #. module: auth_ldap #: field:res.company.ldap,create_user:0 msgid "Create user" -msgstr "" +msgstr "Opret bruger" diff --git a/addons/auth_ldap/i18n/de.po b/addons/auth_ldap/i18n/de.po index a969a2b6999..2dfade57d9b 100644 --- a/addons/auth_ldap/i18n/de.po +++ b/addons/auth_ldap/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/en_GB.po b/addons/auth_ldap/i18n/en_GB.po index 37ae682e455..3a97abd12dd 100644 --- a/addons/auth_ldap/i18n/en_GB.po +++ b/addons/auth_ldap/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/es.po b/addons/auth_ldap/i18n/es.po index 03307d8020c..64712ac648f 100644 --- a/addons/auth_ldap/i18n/es.po +++ b/addons/auth_ldap/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/es_CR.po b/addons/auth_ldap/i18n/es_CR.po index e7c79831362..3e230b80c3d 100644 --- a/addons/auth_ldap/i18n/es_CR.po +++ b/addons/auth_ldap/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: es\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/fi.po b/addons/auth_ldap/i18n/fi.po index 590814cced0..87fe921482e 100644 --- a/addons/auth_ldap/i18n/fi.po +++ b/addons/auth_ldap/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/fr.po b/addons/auth_ldap/i18n/fr.po index 9750136aff3..b641b53f5a9 100644 --- a/addons/auth_ldap/i18n/fr.po +++ b/addons/auth_ldap/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/gl.po b/addons/auth_ldap/i18n/gl.po index acfd919f853..82a8fb00581 100644 --- a/addons/auth_ldap/i18n/gl.po +++ b/addons/auth_ldap/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/hr.po b/addons/auth_ldap/i18n/hr.po index 5e7c393eb98..44f1d2c29f5 100644 --- a/addons/auth_ldap/i18n/hr.po +++ b/addons/auth_ldap/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/hu.po b/addons/auth_ldap/i18n/hu.po index 03c97b8b244..3f8a82f3cba 100644 --- a/addons/auth_ldap/i18n/hu.po +++ b/addons/auth_ldap/i18n/hu.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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 msgid "Template User" -msgstr "" +msgstr "Sablon felhasználó" #. module: auth_ldap #: help:res.company.ldap,ldap_tls:0 @@ -29,6 +29,9 @@ msgid "" "option requires a server with STARTTLS enabled, otherwise all authentication " "attempts will fail." msgstr "" +"Biztonságos TLS/SSL kódolás igénylése az LDAP szerverhez való " +"kapcsolódáshoz. Ez a lehetőség megkívánja szerveren a STARTTLS " +"bekapcsolását, egyéb esetben az összes hitelesítés sikertelen lesz." #. module: auth_ldap #: view:res.company:0 @@ -39,7 +42,7 @@ msgstr "LDAP konfiguráció" #. module: auth_ldap #: field:res.company.ldap,ldap_binddn:0 msgid "LDAP binddn" -msgstr "" +msgstr "LDAP binddn" #. module: auth_ldap #: field:res.company.ldap,company:0 @@ -62,6 +65,8 @@ msgid "" "Automatically create local user accounts for new users authenticating via " "LDAP" msgstr "" +"Automatikusan létrehozott helyi felhasználói fiók az LDAP által azonosított " +"új felhasználókhoz" #. module: auth_ldap #: field:res.company.ldap,ldap_base:0 @@ -71,7 +76,7 @@ msgstr "LDAP alap" #. module: auth_ldap #: view:res.company.ldap:0 msgid "User Information" -msgstr "" +msgstr "Felhasználói információk" #. module: auth_ldap #: field:res.company.ldap,ldap_password:0 @@ -86,7 +91,7 @@ msgstr "Vállalatok" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Process Parameter" -msgstr "" +msgstr "Feldolgozási paraméter" #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_company_ldap @@ -96,12 +101,12 @@ msgstr "res.company.ldap" #. module: auth_ldap #: help:res.company.ldap,user:0 msgid "User to copy when creating new users" -msgstr "" +msgstr "Új felhassználók létrehozásakor másolható felhasználó" #. module: auth_ldap #: field:res.company.ldap,ldap_tls:0 msgid "Use TLS" -msgstr "" +msgstr "TLS (titkosítás) használata" #. module: auth_ldap #: field:res.company.ldap,sequence:0 @@ -111,17 +116,17 @@ msgstr "Sorszám" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Login Information" -msgstr "" +msgstr "Bejelentkezési adatok" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Server Information" -msgstr "" +msgstr "Szerver információk" #. module: auth_ldap #: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer msgid "Setup your LDAP Server" -msgstr "" +msgstr "LDAP Szerver beállítása" #. module: auth_ldap #: view:res.company:0 @@ -135,6 +140,7 @@ msgid "" "The password of the user account on the LDAP server that is used to query " "the directory." msgstr "" +"Az LDAP szerveren lévő felhasználói fiók jelszava mellyel eléri a könyvtárát." #. module: auth_ldap #: help:res.company.ldap,ldap_binddn:0 @@ -142,11 +148,13 @@ msgid "" "The user account on the LDAP server that is used to query the directory. " "Leave empty to connect anonymously." msgstr "" +"Az LDAP szerveren lévő felhasználói fiók mellyel eléri a könyvtárát. Hagyja " +"üresen névtelken bejelentkezéshez." #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_users msgid "Users" -msgstr "" +msgstr "Felhasználók" #. module: auth_ldap #: field:res.company.ldap,ldap_filter:0 diff --git a/addons/auth_ldap/i18n/it.po b/addons/auth_ldap/i18n/it.po index fa89bdd610d..c7f5a1db006 100644 --- a/addons/auth_ldap/i18n/it.po +++ b/addons/auth_ldap/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ja.po b/addons/auth_ldap/i18n/ja.po index 69756b45e28..77c50fb9d82 100644 --- a/addons/auth_ldap/i18n/ja.po +++ b/addons/auth_ldap/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/mk.po b/addons/auth_ldap/i18n/mk.po index 7e0bb375468..efee6009bb8 100644 --- a/addons/auth_ldap/i18n/mk.po +++ b/addons/auth_ldap/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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 msgid "Template User" -msgstr "Нацрт корисник" +msgstr "Урнек корисник" #. module: auth_ldap #: help:res.company.ldap,ldap_tls:0 @@ -42,7 +42,7 @@ msgstr "LDAP конфигурација" #. module: auth_ldap #: field:res.company.ldap,ldap_binddn:0 msgid "LDAP binddn" -msgstr "LDAP спојување" +msgstr "LDAP binddn" #. module: auth_ldap #: field:res.company.ldap,company:0 @@ -101,7 +101,7 @@ msgstr "res.company.ldap" #. module: auth_ldap #: help:res.company.ldap,user:0 msgid "User to copy when creating new users" -msgstr "Корисник за копирање при креирање на нови корисници" +msgstr "Корисник за копирање кога се креираат нови корисници" #. module: auth_ldap #: field:res.company.ldap,ldap_tls:0 diff --git a/addons/auth_ldap/i18n/mn.po b/addons/auth_ldap/i18n/mn.po index bf79f5f54db..9c687e5fdcf 100644 --- a/addons/auth_ldap/i18n/mn.po +++ b/addons/auth_ldap/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/nb.po b/addons/auth_ldap/i18n/nb.po index 402237590ea..d07916bbbb9 100644 --- a/addons/auth_ldap/i18n/nb.po +++ b/addons/auth_ldap/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/nl.po b/addons/auth_ldap/i18n/nl.po index 500f3fe6f42..397438f646c 100644 --- a/addons/auth_ldap/i18n/nl.po +++ b/addons/auth_ldap/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-24 18:25+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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pl.po b/addons/auth_ldap/i18n/pl.po index c60fa3cc710..521eb4b7666 100644 --- a/addons/auth_ldap/i18n/pl.po +++ b/addons/auth_ldap/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pt.po b/addons/auth_ldap/i18n/pt.po index 63e896cfaf9..633942b24be 100644 --- a/addons/auth_ldap/i18n/pt.po +++ b/addons/auth_ldap/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pt_BR.po b/addons/auth_ldap/i18n/pt_BR.po index 1002a056ff6..3fca4014860 100644 --- a/addons/auth_ldap/i18n/pt_BR.po +++ b/addons/auth_ldap/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ro.po b/addons/auth_ldap/i18n/ro.po index ac1f58ebda2..1fb67fcd23e 100644 --- a/addons/auth_ldap/i18n/ro.po +++ b/addons/auth_ldap/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ru.po b/addons/auth_ldap/i18n/ru.po index 72ec1751701..b122bb8f38b 100644 --- a/addons/auth_ldap/i18n/ru.po +++ b/addons/auth_ldap/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/sl.po b/addons/auth_ldap/i18n/sl.po index bdf02f35cc6..2539dc96d97 100644 --- a/addons/auth_ldap/i18n/sl.po +++ b/addons/auth_ldap/i18n/sl.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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 msgid "Template User" -msgstr "" +msgstr "Predloga uporabnika" #. module: auth_ldap #: help:res.company.ldap,ldap_tls:0 @@ -29,17 +29,20 @@ msgid "" "option requires a server with STARTTLS enabled, otherwise all authentication " "attempts will fail." msgstr "" +"Request secure TLS/SSL encryption when connecting to the LDAP server. This " +"option requires a server with STARTTLS enabled, otherwise all authentication " +"attempts will fail." #. module: auth_ldap #: view:res.company:0 #: view:res.company.ldap:0 msgid "LDAP Configuration" -msgstr "" +msgstr "LDAP Configuration" #. module: auth_ldap #: field:res.company.ldap,ldap_binddn:0 msgid "LDAP binddn" -msgstr "" +msgstr "LDAP binddn" #. module: auth_ldap #: field:res.company.ldap,company:0 @@ -49,24 +52,24 @@ msgstr "Podjetje" #. module: auth_ldap #: field:res.company.ldap,ldap_server:0 msgid "LDAP Server address" -msgstr "" +msgstr "LDAP Server address" #. module: auth_ldap #: field:res.company.ldap,ldap_server_port:0 msgid "LDAP Server port" -msgstr "" +msgstr "LDAP Server port" #. module: auth_ldap #: help:res.company.ldap,create_user:0 msgid "" "Automatically create local user accounts for new users authenticating via " "LDAP" -msgstr "" +msgstr "Samodejno kreiranje novih uporabnikov preko LDAP avtorizacije" #. module: auth_ldap #: field:res.company.ldap,ldap_base:0 msgid "LDAP base" -msgstr "" +msgstr "LDAP base" #. module: auth_ldap #: view:res.company.ldap:0 @@ -76,7 +79,7 @@ msgstr "Informacije o uporabniku" #. module: auth_ldap #: field:res.company.ldap,ldap_password:0 msgid "LDAP password" -msgstr "" +msgstr "LDAP geslo" #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_company @@ -86,7 +89,7 @@ msgstr "Podjetja" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Process Parameter" -msgstr "" +msgstr "Parametri Procesa" #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_company_ldap @@ -96,12 +99,12 @@ msgstr "res.company.ldap" #. module: auth_ldap #: help:res.company.ldap,user:0 msgid "User to copy when creating new users" -msgstr "" +msgstr "LDAP uporabnik , ki bo uporabljen za kreiranje novega uporabnika" #. module: auth_ldap #: field:res.company.ldap,ldap_tls:0 msgid "Use TLS" -msgstr "" +msgstr "Use TLS" #. module: auth_ldap #: field:res.company.ldap,sequence:0 @@ -121,20 +124,20 @@ msgstr "Podrobnosti o strežniku" #. module: auth_ldap #: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer msgid "Setup your LDAP Server" -msgstr "" +msgstr "Setup your LDAP Server" #. module: auth_ldap #: view:res.company:0 #: field:res.company,ldaps:0 msgid "LDAP Parameters" -msgstr "" +msgstr "LDAP Parameters" #. module: auth_ldap #: help:res.company.ldap,ldap_password:0 msgid "" "The password of the user account on the LDAP server that is used to query " "the directory." -msgstr "" +msgstr "Geslo LDAP" #. module: auth_ldap #: help:res.company.ldap,ldap_binddn:0 @@ -142,6 +145,8 @@ msgid "" "The user account on the LDAP server that is used to query the directory. " "Leave empty to connect anonymously." msgstr "" +"The user account on the LDAP server that is used to query the directory. " +"Leave empty to connect anonymously." #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_users @@ -151,7 +156,7 @@ msgstr "Uporabniki" #. module: auth_ldap #: field:res.company.ldap,ldap_filter:0 msgid "LDAP filter" -msgstr "" +msgstr "LDAP filter" #. module: auth_ldap #: field:res.company.ldap,create_user:0 diff --git a/addons/auth_ldap/i18n/sv.po b/addons/auth_ldap/i18n/sv.po index 3be5e98d60a..a682421d75f 100644 --- a/addons/auth_ldap/i18n/sv.po +++ b/addons/auth_ldap/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/tr.po b/addons/auth_ldap/i18n/tr.po index da0aeca96a8..ba9d6597ae9 100644 --- a/addons/auth_ldap/i18n/tr.po +++ b/addons/auth_ldap/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/zh_CN.po b/addons/auth_ldap/i18n/zh_CN.po index 96091816cd8..ec1b1c87714 100644 --- a/addons/auth_ldap/i18n/zh_CN.po +++ b/addons/auth_ldap/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 07:07+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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_oauth/controllers/main.py b/addons/auth_oauth/controllers/main.py index 35a06871696..bedf32ae776 100644 --- a/addons/auth_oauth/controllers/main.py +++ b/addons/auth_oauth/controllers/main.py @@ -7,8 +7,8 @@ from werkzeug.exceptions import BadRequest import openerp from openerp import SUPERUSER_ID -import openerp.addons.web.http as http -from openerp.addons.web.http import request +from openerp import http +from openerp.http import request from openerp.addons.web.controllers.main import db_monodb, set_cookie_and_redirect, login_and_redirect from openerp.modules.registry import RegistryManager diff --git a/addons/auth_oauth/i18n/ar.po b/addons/auth_oauth/i18n/ar.po index 894a16f3691..61ae91d5902 100644 --- a/addons/auth_oauth/i18n/ar.po +++ b/addons/auth_oauth/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/cs.po b/addons/auth_oauth/i18n/cs.po index e607a08a7bd..87cdaf0ed10 100644 --- a/addons/auth_oauth/i18n/cs.po +++ b/addons/auth_oauth/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/de.po b/addons/auth_oauth/i18n/de.po index 44b8374db1f..c751733eb01 100644 --- a/addons/auth_oauth/i18n/de.po +++ b/addons/auth_oauth/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/en_GB.po b/addons/auth_oauth/i18n/en_GB.po index 91cb2d22f07..7dfe6ae60c8 100644 --- a/addons/auth_oauth/i18n/en_GB.po +++ b/addons/auth_oauth/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/es.po b/addons/auth_oauth/i18n/es.po index fa772abb467..6916ff91715 100644 --- a/addons/auth_oauth/i18n/es.po +++ b/addons/auth_oauth/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/fr.po b/addons/auth_oauth/i18n/fr.po index ee2e4f10d64..9b8fdaf9af4 100644 --- a/addons/auth_oauth/i18n/fr.po +++ b/addons/auth_oauth/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/hr.po b/addons/auth_oauth/i18n/hr.po index 1c8f67d872d..76fb8b209d6 100644 --- a/addons/auth_oauth/i18n/hr.po +++ b/addons/auth_oauth/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/hu.po b/addons/auth_oauth/i18n/hu.po index 5a5c102afaf..613f04cfea8 100644 --- a/addons/auth_oauth/i18n/hu.po +++ b/addons/auth_oauth/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 @@ -122,14 +122,14 @@ msgstr "" #. module: auth_oauth #: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider msgid "Providers" -msgstr "" +msgstr "Szolgáltatók" #. module: auth_oauth #: field:base.config.settings,auth_oauth_google_enabled:0 msgid "Allow users to sign in with Google" -msgstr "" +msgstr "Engedélyezze a felhasználók Google bejelentkezését" #. module: auth_oauth #: field:auth.oauth.provider,enabled:0 msgid "Allowed" -msgstr "" +msgstr "Engedélyezett" diff --git a/addons/auth_oauth/i18n/it.po b/addons/auth_oauth/i18n/it.po index 022067ebe7e..67b0aa28a66 100644 --- a/addons/auth_oauth/i18n/it.po +++ b/addons/auth_oauth/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/mk.po b/addons/auth_oauth/i18n/mk.po index 4a9b5c250d7..db46371ebe6 100644 --- a/addons/auth_oauth/i18n/mk.po +++ b/addons/auth_oauth/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 @@ -102,12 +102,12 @@ msgstr "Овозможува корисниците да се најавуваа #. module: auth_oauth #: sql_constraint:res.users:0 msgid "OAuth UID must be unique per provider" -msgstr "OAuth UID must be unique per provider" +msgstr "OAuth UID мора да биде уникатно по провајдер" #. module: auth_oauth #: help:res.users,oauth_uid:0 msgid "Oauth Provider user_id" -msgstr "Oauth Provider user_id" +msgstr "Oauth Провајдер user_id" #. module: auth_oauth #: field:auth.oauth.provider,data_endpoint:0 @@ -117,7 +117,7 @@ msgstr "URL на податоци" #. module: auth_oauth #: view:auth.oauth.provider:0 msgid "arch" -msgstr "" +msgstr "arch" #. module: auth_oauth #: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider diff --git a/addons/auth_oauth/i18n/nb.po b/addons/auth_oauth/i18n/nb.po index 4dad4c278eb..b466a546bc6 100644 --- a/addons/auth_oauth/i18n/nb.po +++ b/addons/auth_oauth/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/nl.po b/addons/auth_oauth/i18n/nl.po index 3f5969f2edb..5b8c4c9b070 100644 --- a/addons/auth_oauth/i18n/nl.po +++ b/addons/auth_oauth/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-30 19:36+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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 @@ -40,7 +40,7 @@ msgstr "Provider name" #. module: auth_oauth #: field:auth.oauth.provider,scope:0 msgid "Scope" -msgstr "Beriek" +msgstr "Bereik" #. module: auth_oauth #: field:res.users,oauth_provider_id:0 diff --git a/addons/auth_oauth/i18n/pl.po b/addons/auth_oauth/i18n/pl.po index a3724decd38..4c737e97d90 100644 --- a/addons/auth_oauth/i18n/pl.po +++ b/addons/auth_oauth/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/pt.po b/addons/auth_oauth/i18n/pt.po index 67c57a0060a..dfd6730a978 100644 --- a/addons/auth_oauth/i18n/pt.po +++ b/addons/auth_oauth/i18n/pt.po @@ -14,18 +14,18 @@ msgstr "" "MIME-Version: 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" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 msgid "Validation URL" -msgstr "" +msgstr "Endereço de validação" #. module: auth_oauth #: field:auth.oauth.provider,auth_endpoint:0 msgid "Authentication URL" -msgstr "" +msgstr "Endereço de autenticação" #. module: auth_oauth #: model:ir.model,name:auth_oauth.model_base_config_settings diff --git a/addons/auth_oauth/i18n/pt_BR.po b/addons/auth_oauth/i18n/pt_BR.po index fbf4df163d2..40f7a526513 100644 --- a/addons/auth_oauth/i18n/pt_BR.po +++ b/addons/auth_oauth/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/ro.po b/addons/auth_oauth/i18n/ro.po index cc08fcef3c0..eff198c2bf8 100644 --- a/addons/auth_oauth/i18n/ro.po +++ b/addons/auth_oauth/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/sl.po b/addons/auth_oauth/i18n/sl.po index 87fa798eb3a..2eb548d228c 100644 --- a/addons/auth_oauth/i18n/sl.po +++ b/addons/auth_oauth/i18n/sl.po @@ -14,18 +14,18 @@ msgstr "" "MIME-Version: 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" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 msgid "Validation URL" -msgstr "" +msgstr "Validation URL" #. module: auth_oauth #: field:auth.oauth.provider,auth_endpoint:0 msgid "Authentication URL" -msgstr "" +msgstr "Authentication URL" #. module: auth_oauth #: model:ir.model,name:auth_oauth.model_base_config_settings @@ -35,7 +35,7 @@ msgstr "base.config.settings" #. module: auth_oauth #: field:auth.oauth.provider,name:0 msgid "Provider name" -msgstr "" +msgstr "Ime ponudnika" #. module: auth_oauth #: field:auth.oauth.provider,scope:0 @@ -45,12 +45,12 @@ msgstr "Obseg" #. module: auth_oauth #: field:res.users,oauth_provider_id:0 msgid "OAuth Provider" -msgstr "" +msgstr "OAuth Provider" #. module: auth_oauth #: field:auth.oauth.provider,css_class:0 msgid "CSS class" -msgstr "" +msgstr "CSS class" #. module: auth_oauth #: field:auth.oauth.provider,body:0 @@ -70,66 +70,66 @@ msgstr "neznano" #. module: auth_oauth #: field:res.users,oauth_access_token:0 msgid "OAuth Access Token" -msgstr "" +msgstr "OAuth Access Token" #. module: auth_oauth #: field:auth.oauth.provider,client_id:0 #: field:base.config.settings,auth_oauth_facebook_client_id:0 #: field:base.config.settings,auth_oauth_google_client_id:0 msgid "Client ID" -msgstr "" +msgstr "Client ID" #. module: auth_oauth #: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers msgid "OAuth Providers" -msgstr "" +msgstr "OAuth Providers" #. module: auth_oauth #: model:ir.model,name:auth_oauth.model_auth_oauth_provider msgid "OAuth2 provider" -msgstr "" +msgstr "OAuth2 provider" #. module: auth_oauth #: field:res.users,oauth_uid:0 msgid "OAuth User ID" -msgstr "" +msgstr "OAuth User ID" #. module: auth_oauth #: field:base.config.settings,auth_oauth_facebook_enabled:0 msgid "Allow users to sign in with Facebook" -msgstr "" +msgstr "Dovolite prijavo preko Facebook-a" #. module: auth_oauth #: sql_constraint:res.users:0 msgid "OAuth UID must be unique per provider" -msgstr "" +msgstr "OAuth UID mora biti edinstven na ponudnika" #. module: auth_oauth #: help:res.users,oauth_uid:0 msgid "Oauth Provider user_id" -msgstr "" +msgstr "Oauth Provider user_id" #. module: auth_oauth #: field:auth.oauth.provider,data_endpoint:0 msgid "Data URL" -msgstr "" +msgstr "Data URL" #. module: auth_oauth #: view:auth.oauth.provider:0 msgid "arch" -msgstr "" +msgstr "arch" #. module: auth_oauth #: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider msgid "Providers" -msgstr "" +msgstr "Ponudniki" #. module: auth_oauth #: field:base.config.settings,auth_oauth_google_enabled:0 msgid "Allow users to sign in with Google" -msgstr "" +msgstr "Dovolite prijavo preko Google-a" #. module: auth_oauth #: field:auth.oauth.provider,enabled:0 msgid "Allowed" -msgstr "" +msgstr "Dovoljeno" diff --git a/addons/auth_oauth/i18n/sv.po b/addons/auth_oauth/i18n/sv.po index c3d9ed591eb..fa67182b9d8 100644 --- a/addons/auth_oauth/i18n/sv.po +++ b/addons/auth_oauth/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/tr.po b/addons/auth_oauth/i18n/tr.po index 7faa18ccebf..674bd4578d3 100644 --- a/addons/auth_oauth/i18n/tr.po +++ b/addons/auth_oauth/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 04:57+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 @@ -45,7 +45,7 @@ msgstr "Kapsam" #. module: auth_oauth #: field:res.users,oauth_provider_id:0 msgid "OAuth Provider" -msgstr "" +msgstr "OAuth Sağlayıcı" #. module: auth_oauth #: field:auth.oauth.provider,css_class:0 @@ -70,29 +70,29 @@ msgstr "bilinmeyen" #. module: auth_oauth #: field:res.users,oauth_access_token:0 msgid "OAuth Access Token" -msgstr "" +msgstr "Oauth Erişim Jetonu" #. module: auth_oauth #: field:auth.oauth.provider,client_id:0 #: field:base.config.settings,auth_oauth_facebook_client_id:0 #: field:base.config.settings,auth_oauth_google_client_id:0 msgid "Client ID" -msgstr "" +msgstr "İstemci ID" #. module: auth_oauth #: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers msgid "OAuth Providers" -msgstr "" +msgstr "OAuth Sağlayıcılar" #. module: auth_oauth #: model:ir.model,name:auth_oauth.model_auth_oauth_provider msgid "OAuth2 provider" -msgstr "" +msgstr "OAuth2 Sağlayıcı" #. module: auth_oauth #: field:res.users,oauth_uid:0 msgid "OAuth User ID" -msgstr "" +msgstr "OAuth Kullanıcı ID" #. module: auth_oauth #: field:base.config.settings,auth_oauth_facebook_enabled:0 @@ -102,12 +102,12 @@ msgstr "Kullanıcılara Facebook ile oturum için izin ver" #. module: auth_oauth #: sql_constraint:res.users:0 msgid "OAuth UID must be unique per provider" -msgstr "" +msgstr "OAuth UID sağlayıcı başına benzersiz olmalıdır" #. module: auth_oauth #: help:res.users,oauth_uid:0 msgid "Oauth Provider user_id" -msgstr "" +msgstr "Oauth Sağlayıcı user_id" #. module: auth_oauth #: field:auth.oauth.provider,data_endpoint:0 @@ -127,7 +127,7 @@ msgstr "Sağlayıcılar" #. module: auth_oauth #: field:base.config.settings,auth_oauth_google_enabled:0 msgid "Allow users to sign in with Google" -msgstr "" +msgstr "Kullanıcıların Google ile oturum açmaya izin ver" #. module: auth_oauth #: field:auth.oauth.provider,enabled:0 diff --git a/addons/auth_oauth/i18n/zh_CN.po b/addons/auth_oauth/i18n/zh_CN.po index 2d96549aa94..470406daa78 100644 --- a/addons/auth_oauth/i18n/zh_CN.po +++ b/addons/auth_oauth/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 14:27+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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth_signup/i18n/cs.po b/addons/auth_oauth_signup/i18n/cs.po index 6351d6c056c..bc14fdcc9c9 100644 --- a/addons/auth_oauth_signup/i18n/cs.po +++ b/addons/auth_oauth_signup/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/da.po b/addons/auth_oauth_signup/i18n/da.po new file mode 100644 index 00000000000..b6a7a5605b6 --- /dev/null +++ b/addons/auth_oauth_signup/i18n/da.po @@ -0,0 +1,23 @@ +# Danish 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:05+0000\n" +"PO-Revision-Date: 2013-09-15 20:08+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Danish \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-16 05:42+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "Bruger" diff --git a/addons/auth_oauth_signup/i18n/de.po b/addons/auth_oauth_signup/i18n/de.po index 0c1313d0bfc..c0ef206aa29 100644 --- a/addons/auth_oauth_signup/i18n/de.po +++ b/addons/auth_oauth_signup/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/en_GB.po b/addons/auth_oauth_signup/i18n/en_GB.po index 6ff8b2f2816..c385ac2ac3b 100644 --- a/addons/auth_oauth_signup/i18n/en_GB.po +++ b/addons/auth_oauth_signup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/es.po b/addons/auth_oauth_signup/i18n/es.po index 03407ccfe6c..f44c1af0d01 100644 --- a/addons/auth_oauth_signup/i18n/es.po +++ b/addons/auth_oauth_signup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/et.po b/addons/auth_oauth_signup/i18n/et.po new file mode 100644 index 00000000000..2d159250cff --- /dev/null +++ b/addons/auth_oauth_signup/i18n/et.po @@ -0,0 +1,23 @@ +# Estonian 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:05+0000\n" +"PO-Revision-Date: 2013-10-09 14:34+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Estonian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-10-10 04:41+0000\n" +"X-Generator: Launchpad (build 16799)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "Kasutajad" diff --git a/addons/auth_oauth_signup/i18n/fr.po b/addons/auth_oauth_signup/i18n/fr.po index 702a71e4753..efabb50a6a7 100644 --- a/addons/auth_oauth_signup/i18n/fr.po +++ b/addons/auth_oauth_signup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/hr.po b/addons/auth_oauth_signup/i18n/hr.po index 67701415754..45eb5a7721c 100644 --- a/addons/auth_oauth_signup/i18n/hr.po +++ b/addons/auth_oauth_signup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/hu.po b/addons/auth_oauth_signup/i18n/hu.po index c0f8c00557a..306987c3b79 100644 --- a/addons/auth_oauth_signup/i18n/hu.po +++ b/addons/auth_oauth_signup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/it.po b/addons/auth_oauth_signup/i18n/it.po index 834ce412899..9f09379a0a2 100644 --- a/addons/auth_oauth_signup/i18n/it.po +++ b/addons/auth_oauth_signup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/lt.po b/addons/auth_oauth_signup/i18n/lt.po index 27fb83e6a4f..0f0d27667e6 100644 --- a/addons/auth_oauth_signup/i18n/lt.po +++ b/addons/auth_oauth_signup/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-25 05:20+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/mk.po b/addons/auth_oauth_signup/i18n/mk.po index 038c132f534..8c0142cb754 100644 --- a/addons/auth_oauth_signup/i18n/mk.po +++ b/addons/auth_oauth_signup/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/mn.po b/addons/auth_oauth_signup/i18n/mn.po index 54dd78c7337..7d8c23eaf16 100644 --- a/addons/auth_oauth_signup/i18n/mn.po +++ b/addons/auth_oauth_signup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/nl.po b/addons/auth_oauth_signup/i18n/nl.po index b3342a61737..feef8a96bb6 100644 --- a/addons/auth_oauth_signup/i18n/nl.po +++ b/addons/auth_oauth_signup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/nl_BE.po b/addons/auth_oauth_signup/i18n/nl_BE.po index 04d5034d029..3fb7b3a15d2 100644 --- a/addons/auth_oauth_signup/i18n/nl_BE.po +++ b/addons/auth_oauth_signup/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/pt.po b/addons/auth_oauth_signup/i18n/pt.po index 4ccfbbde324..96a976650e4 100644 --- a/addons/auth_oauth_signup/i18n/pt.po +++ b/addons/auth_oauth_signup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/pt_BR.po b/addons/auth_oauth_signup/i18n/pt_BR.po index 616b375e9ca..0b5905b299a 100644 --- a/addons/auth_oauth_signup/i18n/pt_BR.po +++ b/addons/auth_oauth_signup/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/ro.po b/addons/auth_oauth_signup/i18n/ro.po index 95c00b28097..12611d379e0 100644 --- a/addons/auth_oauth_signup/i18n/ro.po +++ b/addons/auth_oauth_signup/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/ru.po b/addons/auth_oauth_signup/i18n/ru.po index ca78920bc72..e094d4af2b4 100644 --- a/addons/auth_oauth_signup/i18n/ru.po +++ b/addons/auth_oauth_signup/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/sl.po b/addons/auth_oauth_signup/i18n/sl.po index 59c1a2c2dfb..02cdf9d2b5e 100644 --- a/addons/auth_oauth_signup/i18n/sl.po +++ b/addons/auth_oauth_signup/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/sv.po b/addons/auth_oauth_signup/i18n/sv.po index 9ae4f6ae63b..8888a776c01 100644 --- a/addons/auth_oauth_signup/i18n/sv.po +++ b/addons/auth_oauth_signup/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/tr.po b/addons/auth_oauth_signup/i18n/tr.po index f7066474cc0..8f3282da978 100644 --- a/addons/auth_oauth_signup/i18n/tr.po +++ b/addons/auth_oauth_signup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/vi.po b/addons/auth_oauth_signup/i18n/vi.po index bdc3eff5b8d..25ed41120ce 100644 --- a/addons/auth_oauth_signup/i18n/vi.po +++ b/addons/auth_oauth_signup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/zh_CN.po b/addons/auth_oauth_signup/i18n/zh_CN.po index 40f6fa0b60c..834713a3bc9 100644 --- a/addons/auth_oauth_signup/i18n/zh_CN.po +++ b/addons/auth_oauth_signup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/zh_TW.po b/addons/auth_oauth_signup/i18n/zh_TW.po index 47281890fe8..fe734809d06 100644 --- a/addons/auth_oauth_signup/i18n/zh_TW.po +++ b/addons/auth_oauth_signup/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_openid/controllers/main.py b/addons/auth_openid/controllers/main.py index a4ef1bfa07b..534d1b01a9c 100644 --- a/addons/auth_openid/controllers/main.py +++ b/addons/auth_openid/controllers/main.py @@ -38,8 +38,8 @@ import openerp from openerp import SUPERUSER_ID from openerp.modules.registry import RegistryManager from openerp.addons.web.controllers.main import login_and_redirect, set_cookie_and_redirect -import openerp.addons.web.http as http -from openerp.addons.web.http import request +import openerp.http as http +from openerp.http import request from .. import utils diff --git a/addons/auth_openid/i18n/ar.po b/addons/auth_openid/i18n/ar.po index 16dbdd0de86..c78dc5aded7 100644 --- a/addons/auth_openid/i18n/ar.po +++ b/addons/auth_openid/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/cs.po b/addons/auth_openid/i18n/cs.po index 071ee7ea210..03820405b1c 100644 --- a/addons/auth_openid/i18n/cs.po +++ b/addons/auth_openid/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/de.po b/addons/auth_openid/i18n/de.po index 3264432953e..8b1d4a2a71f 100644 --- a/addons/auth_openid/i18n/de.po +++ b/addons/auth_openid/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/en_GB.po b/addons/auth_openid/i18n/en_GB.po index bc40672e80c..6085f718422 100644 --- a/addons/auth_openid/i18n/en_GB.po +++ b/addons/auth_openid/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/es.po b/addons/auth_openid/i18n/es.po index afaf22e3ccf..26391d40137 100644 --- a/addons/auth_openid/i18n/es.po +++ b/addons/auth_openid/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/es_CR.po b/addons/auth_openid/i18n/es_CR.po index cacb19c39b7..a9d5e9996f5 100644 --- a/addons/auth_openid/i18n/es_CR.po +++ b/addons/auth_openid/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fi.po b/addons/auth_openid/i18n/fi.po index ae90908c3fd..33f5f4e7e1b 100644 --- a/addons/auth_openid/i18n/fi.po +++ b/addons/auth_openid/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fr.po b/addons/auth_openid/i18n/fr.po index f0aff08a410..97c786ce7fa 100644 --- a/addons/auth_openid/i18n/fr.po +++ b/addons/auth_openid/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/gu.po b/addons/auth_openid/i18n/gu.po index 42ca0d92c0e..95d76e76fe8 100644 --- a/addons/auth_openid/i18n/gu.po +++ b/addons/auth_openid/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/hr.po b/addons/auth_openid/i18n/hr.po index 532877a2f36..e7315a1089b 100644 --- a/addons/auth_openid/i18n/hr.po +++ b/addons/auth_openid/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/hu.po b/addons/auth_openid/i18n/hu.po index 356f7180f8c..88bc5dea023 100644 --- a/addons/auth_openid/i18n/hu.po +++ b/addons/auth_openid/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 04:42+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: auth_openid #. openerp-web @@ -58,7 +58,7 @@ msgstr "Launchpad/Kiadásiszerk" #. module: auth_openid #: help:res.users,openid_email:0 msgid "Used for disambiguation in case of a shared OpenID URL" -msgstr "" +msgstr "Kétértelműség elkerülésére használja a megosztott OpenID URL esetén" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/it.po b/addons/auth_openid/i18n/it.po index 1a3a21406e8..3ddb7c17e04 100644 --- a/addons/auth_openid/i18n/it.po +++ b/addons/auth_openid/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ja.po b/addons/auth_openid/i18n/ja.po index 7885c01f309..c89f0a8c5b1 100644 --- a/addons/auth_openid/i18n/ja.po +++ b/addons/auth_openid/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/mk.po b/addons/auth_openid/i18n/mk.po index 2ff735697bc..5eb91c4d3e1 100644 --- a/addons/auth_openid/i18n/mk.po +++ b/addons/auth_openid/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/mn.po b/addons/auth_openid/i18n/mn.po index 6953e0299ba..4b1ff23c705 100644 --- a/addons/auth_openid/i18n/mn.po +++ b/addons/auth_openid/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nb.po b/addons/auth_openid/i18n/nb.po index eb1da5fb79b..9773b30031a 100644 --- a/addons/auth_openid/i18n/nb.po +++ b/addons/auth_openid/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nl.po b/addons/auth_openid/i18n/nl.po index 944a4e67c05..02b63593c81 100644 --- a/addons/auth_openid/i18n/nl.po +++ b/addons/auth_openid/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-24 18:23+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: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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pl.po b/addons/auth_openid/i18n/pl.po index 5bb8923e0e2..22e7c13d120 100644 --- a/addons/auth_openid/i18n/pl.po +++ b/addons/auth_openid/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pt.po b/addons/auth_openid/i18n/pt.po index b42f2acb5a2..46cc490d432 100644 --- a/addons/auth_openid/i18n/pt.po +++ b/addons/auth_openid/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pt_BR.po b/addons/auth_openid/i18n/pt_BR.po index f0bb4f39be4..0890561aa17 100644 --- a/addons/auth_openid/i18n/pt_BR.po +++ b/addons/auth_openid/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ro.po b/addons/auth_openid/i18n/ro.po index 0d046d0d3f2..90aee09cfb6 100644 --- a/addons/auth_openid/i18n/ro.po +++ b/addons/auth_openid/i18n/ro.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-18 07:05+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: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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ru.po b/addons/auth_openid/i18n/ru.po index 68b36626056..dae69ef2bf2 100644 --- a/addons/auth_openid/i18n/ru.po +++ b/addons/auth_openid/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-29 05:37+0000\n" -"X-Generator: Launchpad (build 16640)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sk.po b/addons/auth_openid/i18n/sk.po index 82e8ad0576f..26cd64ba454 100644 --- a/addons/auth_openid/i18n/sk.po +++ b/addons/auth_openid/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sl.po b/addons/auth_openid/i18n/sl.po index 429aea160fd..ad7314b1885 100644 --- a/addons/auth_openid/i18n/sl.po +++ b/addons/auth_openid/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sr@latin.po b/addons/auth_openid/i18n/sr@latin.po index 585d0b02b65..59c14c63bcd 100644 --- a/addons/auth_openid/i18n/sr@latin.po +++ b/addons/auth_openid/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sv.po b/addons/auth_openid/i18n/sv.po index 3b50f574f6c..b1bd39f55ee 100644 --- a/addons/auth_openid/i18n/sv.po +++ b/addons/auth_openid/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/tr.po b/addons/auth_openid/i18n/tr.po index 898406b2c5d..84f9eafbc4c 100644 --- a/addons/auth_openid/i18n/tr.po +++ b/addons/auth_openid/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/vi.po b/addons/auth_openid/i18n/vi.po index d1040420132..7f5e450f5c0 100644 --- a/addons/auth_openid/i18n/vi.po +++ b/addons/auth_openid/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/zh_CN.po b/addons/auth_openid/i18n/zh_CN.po index 26b3de855c6..88bd9feb08a 100644 --- a/addons/auth_openid/i18n/zh_CN.po +++ b/addons/auth_openid/i18n/zh_CN.po @@ -9,20 +9,20 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-24 15:15+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: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: auth_openid #. openerp-web #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 #, python-format msgid "Username" -msgstr "用户名" +msgstr "登陆" #. module: auth_openid #. openerp-web diff --git a/addons/auth_signup/auth_signup_data.xml b/addons/auth_signup/auth_signup_data.xml index 31e3b61a9f6..1b4e3e05502 100644 --- a/addons/auth_signup/auth_signup_data.xml +++ b/addons/auth_signup/auth_signup_data.xml @@ -22,7 +22,7 @@ Reset Password - ]]> + ]]> ${object.email} Password reset OpenERP Enterprise Connection - ]]> + ]]> ${object.email} diff --git a/addons/auth_signup/controllers/main.py b/addons/auth_signup/controllers/main.py index e42dc64151f..a778cbcf061 100644 --- a/addons/auth_signup/controllers/main.py +++ b/addons/auth_signup/controllers/main.py @@ -21,10 +21,10 @@ import logging import openerp +from openerp import http +from openerp.http import request from openerp.modules.registry import RegistryManager from ..res_users import SignupError -import openerp.addons.web.http as http -from openerp.addons.web.http import request _logger = logging.getLogger(__name__) diff --git a/addons/auth_signup/i18n/ar.po b/addons/auth_signup/i18n/ar.po index 5cbdac95faa..f7d8adf730d 100644 --- a/addons/auth_signup/i18n/ar.po +++ b/addons/auth_signup/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "السماح لمستخدمين خارجيين بالتسجيل" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "أكّد كلمة المرور" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "" @@ -70,7 +70,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -82,8 +82,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "تسجيل" @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "" @@ -136,7 +136,7 @@ msgstr "رابط التسجيل" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "" @@ -147,7 +147,7 @@ msgid "Active" msgstr "نشط" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -170,7 +170,7 @@ msgstr "الاسم" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -199,7 +199,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "تسجيل الدخول" @@ -211,35 +211,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "" @@ -256,7 +256,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "العودة للدخول" diff --git a/addons/auth_signup/i18n/cs.po b/addons/auth_signup/i18n/cs.po index ee9cf157cdd..15a66e29741 100644 --- a/addons/auth_signup/i18n/cs.po +++ b/addons/auth_signup/i18n/cs.po @@ -14,66 +14,66 @@ 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-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 msgid "Signup Token Type" -msgstr "" +msgstr "Druh přihlašovacího tokenu" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 msgid "Allow external users to sign up" -msgstr "" +msgstr "Umožnit registraci externím uživatelům" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" -msgstr "" +msgstr "Potvrzení hesla" #. module: auth_signup #: help:base.config.settings,auth_signup_uninvited:0 msgid "If unchecked, only invited users may sign up." -msgstr "" +msgstr "Pokud není zaškrtnuto, mohou se zaregistrovat jen pozvaní uživatelé." #. module: auth_signup #: model:ir.model,name:auth_signup.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." -msgstr "" +msgstr "Email se nepodařilo odeslat: uživatel nemá emailovou adresu" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" -msgstr "" +msgstr "Obnovit heslo" #. module: auth_signup #: field:base.config.settings,auth_signup_template_user_id:0 msgid "Template user for new users created through signup" -msgstr "" +msgstr "Šablona pro nové uživatele vytvořené při registraci" #. module: auth_signup #: model:email.template,subject:auth_signup.reset_password_email msgid "Password reset" -msgstr "" +msgstr "Heslo obnoveno" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." -msgstr "" +msgstr "Prosím zadejte heslo a potvďte jej" #. module: auth_signup #: view:res.users:0 @@ -82,11 +82,11 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" -msgstr "" +msgstr "Zaregistrovat se" #. module: auth_signup #: selection:res.users,state:0 @@ -102,7 +102,7 @@ msgstr "" #. module: auth_signup #: field:res.users,state:0 msgid "Status" -msgstr "" +msgstr "Stav" #. module: auth_signup #: model:email.template,body_html:auth_signup.reset_password_email @@ -116,30 +116,38 @@ msgid "" "\n" "

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

" msgstr "" - -#. module: auth_signup -#. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 -#, python-format -msgid "Please enter a name." -msgstr "" - -#. module: auth_signup -#: model:ir.model,name:auth_signup.model_res_users -msgid "Users" -msgstr "" - -#. module: auth_signup -#: field:res.partner,signup_url:0 -msgid "Signup URL" -msgstr "" +"\n" +"

Pro účet OpenERP spojený s tímto emailem byla vyžádána obnova hesla.

\n" +"\n" +"

Své heslo si můžete změnit otevřením tohoto odkazu.

\n" +"\n" +"

Poznámka: Pokud jste tento e-mail neočekávali, můžete jej bez obav " +"ignorovat.

" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format +msgid "Please enter a name." +msgstr "Prosím zadejte jméno." + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_users +msgid "Users" +msgstr "Uživatelé" + +#. module: auth_signup +#: field:res.partner,signup_url:0 +msgid "Signup URL" +msgstr "Registrační URL" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#, python-format msgid "Please enter a username." -msgstr "" +msgstr "Prosím zadejte uživatelské jméno." #. module: auth_signup #: selection:res.users,state:0 @@ -147,33 +155,35 @@ msgid "Active" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" "You can configure it under Settings/General Settings." msgstr "" +"Email se nepodařilo odeslat: není nastavený žádný odchozí poštovní server.\n" +"Můžete jej nastavit v Nastavení/Obecná nastavení" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 #, python-format msgid "Username" -msgstr "" +msgstr "Uživatelské jméno" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:8 #, python-format msgid "Name" -msgstr "" +msgstr "Jméno" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." -msgstr "" +msgstr "Prosím zadejte uživatelské jméno nebo emailovou adresu." #. module: auth_signup #: selection:res.users,state:0 @@ -185,64 +195,66 @@ msgstr "" #: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 #, python-format msgid "Username (Email)" -msgstr "" +msgstr "Uživatelské jméno (email)" #. module: auth_signup #: field:res.partner,signup_expiration:0 msgid "Signup Expiration" -msgstr "" +msgstr "Platnost registrace" #. module: auth_signup #: help:base.config.settings,auth_signup_reset_password:0 msgid "This allows users to trigger a password reset from the Login page." msgstr "" +"Tato volba umožní aby si uživatelé mohli vyžádat obnovu hesla z přihlašovací " +"stránky." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" -msgstr "" +msgstr "Přihlásit se" #. module: auth_signup #: field:res.partner,signup_valid:0 msgid "Signup Token is Valid" -msgstr "" +msgstr "Přihlašovací token je platný" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" -msgstr "" +msgstr "Neplatný registrační token" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." -msgstr "" +msgstr "Hesla se neshodují; prosím zadejte je znovu" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" -msgstr "" +msgstr "Žádná databáze nebyla vybrána!" #. module: auth_signup #: view:res.users:0 @@ -252,14 +264,14 @@ msgstr "" #. module: auth_signup #: field:base.config.settings,auth_signup_reset_password:0 msgid "Enable password reset from Login page" -msgstr "" +msgstr "Povolit obnovu hesla na přihlašovací stránce" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" -msgstr "" +msgstr "Zpět k přihlášení" #. module: auth_signup #. openerp-web @@ -271,9 +283,9 @@ msgstr "" #. module: auth_signup #: model:ir.model,name:auth_signup.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partner" #. module: auth_signup #: field:res.partner,signup_token:0 msgid "Signup Token" -msgstr "" +msgstr "Registrační token" diff --git a/addons/auth_signup/i18n/de.po b/addons/auth_signup/i18n/de.po index f9e69262b1b..6604555be6d 100644 --- a/addons/auth_signup/i18n/de.po +++ b/addons/auth_signup/i18n/de.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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 msgid "Signup Token Type" -msgstr "" +msgstr "Typ Anmelde Token" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -29,7 +29,7 @@ msgstr "Erlaube Login von externen Benutzern" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Passwort bestätigen" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Kann keine EMail senden, weil der Benutzer keine EMail Adresse hat" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Passwort zurücksetzen" @@ -70,7 +70,7 @@ msgstr "Passwort zurücksetzen" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Bitte ein Passwort eintragen und bestätigen" @@ -83,8 +83,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Anmelden" @@ -129,7 +129,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Bitte geben Sie einen Namen ein." @@ -146,7 +146,7 @@ msgstr "Registrierungs URL" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Bitte Benutzernamen eingeben." @@ -157,12 +157,15 @@ msgid "Active" msgstr "Aktiv" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" "You can configure it under Settings/General Settings." msgstr "" +"Kann Email nicht senden: Es wurde noch kein ausgehender EMail Server " +"konfiguriert.\n" +"Sie können dieses unter Einstellungen / Allgemeine Einstellungen nachholen." #. module: auth_signup #. openerp-web @@ -180,7 +183,7 @@ msgstr "Name" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Bitte Benutzername oder EMail Adresse eingeben" @@ -209,7 +212,7 @@ msgstr "Dies erlaubt Benutzern ein Zurücksetzen des Passwortes zu verlangen." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Login" @@ -221,35 +224,35 @@ msgstr "Anmeldungs Token ist gültig" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Login" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Anmeldungs Token ist ungültig" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Passworte stimmen nicht überein, bitte neu eingeben" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Keine Datenbank ausgewählt-" @@ -266,7 +269,7 @@ msgstr "Erlaube Passwort zurücksetzen von der Login-Seite" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Zurück zur Anmeldung" diff --git a/addons/auth_signup/i18n/en_GB.po b/addons/auth_signup/i18n/en_GB.po index 1189cfce720..5c515281ad5 100644 --- a/addons/auth_signup/i18n/en_GB.po +++ b/addons/auth_signup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Allow external users to sign up" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Confirm Password" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Cannot send email: user has no email address." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Reset password" @@ -70,7 +70,7 @@ msgstr "Password reset" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Please enter a password and confirm it." @@ -82,8 +82,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "" @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "" @@ -136,7 +136,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "" @@ -147,7 +147,7 @@ msgid "Active" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -170,7 +170,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -199,7 +199,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "" @@ -211,35 +211,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "" @@ -256,7 +256,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "" diff --git a/addons/auth_signup/i18n/es.po b/addons/auth_signup/i18n/es.po index 7c503ab0341..4aec53e708f 100644 --- a/addons/auth_signup/i18n/es.po +++ b/addons/auth_signup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Permitir ingresar a usuarios externos" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Confirmar contraseña" @@ -45,7 +45,7 @@ msgid "base.config.settings" msgstr "Parámetros de configuración base" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -54,8 +54,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Restablecer contraseña" @@ -73,7 +73,7 @@ msgstr "Restablecer contraseña" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Por favor introduzca una contraseña y confírmela." @@ -85,8 +85,8 @@ msgstr "Enviar un correo al usuario para restablecer su contraseña." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Registro" @@ -131,7 +131,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Por favor, introduzca un nombre." @@ -148,7 +148,7 @@ msgstr "URL de ingreso" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Por favor, introduzca un nombre de usuario." @@ -159,7 +159,7 @@ msgid "Active" msgstr "Activo" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -185,7 +185,7 @@ msgstr "Nombre" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -217,7 +217,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Iniciar sesión" @@ -229,35 +229,35 @@ msgstr "La palabra de ingreso es válida" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Inicio de sesión" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Palabra de ingreso no válida" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Las contraseñas no coinciden. Por favor vuelva a teclearlas." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "¡No se ha seleccionado ninguna base de datos!" @@ -276,7 +276,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Volver al Inicio de sesión" diff --git a/addons/auth_signup/i18n/es_CO.po b/addons/auth_signup/i18n/es_CO.po index eb590e320ac..73c4f7d6523 100644 --- a/addons/auth_signup/i18n/es_CO.po +++ b/addons/auth_signup/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 04:57+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Permitir ingreso a usuarios externos" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Confirmar Contraseña" @@ -45,7 +45,7 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -54,8 +54,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Restablecer contraseña" @@ -73,7 +73,7 @@ msgstr "Restablecer contraseña" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Por favor introduzca una contraseña y confírmela." @@ -85,8 +85,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Registro" @@ -130,7 +130,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Por favor, introduzca un nombre." @@ -147,7 +147,7 @@ msgstr "URL de Ingreso" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Por favor, introduzca un nombre de usuario." @@ -158,7 +158,7 @@ msgid "Active" msgstr "Activo(a)" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -184,7 +184,7 @@ msgstr "Nombre" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -216,7 +216,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Iniciar Sesión" @@ -228,35 +228,35 @@ msgstr "La Palabra de Ingreso es Válida" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Inicio de Sesión" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Palabra de ingreso no válida" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Las contraseñas no coinciden. Por favor vuelva a escribirlas." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "No se ha seleccionado ninguna base de datos!" @@ -275,7 +275,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Volver al Inicio de Sesión" diff --git a/addons/auth_signup/i18n/fr.po b/addons/auth_signup/i18n/fr.po index 25794543e01..3c2072a29bb 100644 --- a/addons/auth_signup/i18n/fr.po +++ b/addons/auth_signup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Autorise les utilisateurs externes à se connecter" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Confirmez le mot de passe" @@ -47,7 +47,7 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -55,8 +55,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Réinitialiser le mot de passe" @@ -74,7 +74,7 @@ msgstr "Réinitialisation du mot de passe" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Veuillez entrer un mot de passe et le confirmer" @@ -87,8 +87,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "S'inscrire" @@ -133,7 +133,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Veuillez entrer un nom." @@ -150,7 +150,7 @@ msgstr "Url d'authentification" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Merci de saisir votre nom d'utilisateur" @@ -161,7 +161,7 @@ msgid "Active" msgstr "Activer" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -187,7 +187,7 @@ msgstr "Nom" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Merci de saisir votre nom d'utilisateur ou une adresse email" @@ -218,7 +218,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Ouverture de session" @@ -230,35 +230,35 @@ msgstr "La session d'authentification est valide" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Identifiant" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "La session d'authentification est invalide" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Les mot des passes ne correspondent pas; merci de les resaisir." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Aucune base de données sélectionnée !" @@ -276,7 +276,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Retour à la fenêtre de connexion" diff --git a/addons/auth_signup/i18n/hr.po b/addons/auth_signup/i18n/hr.po index 58391e04b73..4a974b2b760 100644 --- a/addons/auth_signup/i18n/hr.po +++ b/addons/auth_signup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Dozvoli prijavu eksternim korisnicima" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Potvrdi lozinku" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Korisnik nema e-mail adresu." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Resetiraj lozinku" @@ -70,10 +70,10 @@ msgstr "Promjena lozinke" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." -msgstr "Molim upišite lozinku i potvrdu." +msgstr "Unesite loziniku i potvrdite unos" #. module: auth_signup #: view:res.users:0 @@ -82,8 +82,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "" @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Unesite ime" @@ -136,7 +136,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Upišite korisničko ime" @@ -147,7 +147,7 @@ msgid "Active" msgstr "Aktivan" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -170,7 +170,7 @@ msgstr "Naziv" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Upišite korisničko ime ili email adresu." @@ -199,7 +199,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Prijava" @@ -211,35 +211,35 @@ msgstr "Token prijave je ispravan" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Prijava" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Lozinke nisu iste, pokušajte ponovo." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nije odabrana baza podataka" @@ -256,7 +256,7 @@ msgstr "Omogući promjenu lozinke na stranici prijave" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Nazad na prijavu" diff --git a/addons/auth_signup/i18n/hu.po b/addons/auth_signup/i18n/hu.po index 91f76b57206..d23a16521ad 100644 --- a/addons/auth_signup/i18n/hu.po +++ b/addons/auth_signup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-21 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Külső felhasználók bejelentkezésének engedéjezése" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Jelszó megerõsítése" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Nem küldhető e-mail: a felhasználónak nincs e-mail címe." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Jelszó visszaállítása" @@ -70,7 +70,7 @@ msgstr "Jelszó visszaállítás" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Kérem adjon meg egy jelszót és erősítse meg." @@ -82,8 +82,8 @@ msgstr "Küldjön egy e-mailt a felhasználónak a jelszava visszaállításáho #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Regisztrál" @@ -128,7 +128,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Kérem adjon meg egy nevet." @@ -145,7 +145,7 @@ msgstr "Bejelentkezési URL elérési útvonal" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Kérjük, adja meg a felhasználónevet." @@ -156,7 +156,7 @@ msgid "Active" msgstr "Aktív" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -181,7 +181,7 @@ msgstr "Név" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Kérem adjon meg egy felhasználónevet vagy e-mail címet." @@ -212,7 +212,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Bejelentkezés" @@ -224,35 +224,35 @@ msgstr "Regisztrációs token érvényes" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Bejelentkezés" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Érvénytelen regisztrációs token" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "A jelszavak nem egyeznek, kérem ismételje meg." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nincs kiválasztott adatbázis!" @@ -269,7 +269,7 @@ msgstr "Jelszóváltoztató engedélyezése a belépési oldalról" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Vissza a bejelentkezéshez" diff --git a/addons/auth_signup/i18n/it.po b/addons/auth_signup/i18n/it.po index a3d2793f561..e902255d286 100644 --- a/addons/auth_signup/i18n/it.po +++ b/addons/auth_signup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,10 +29,10 @@ msgstr "Permetti a utenti esterni di autenticarsi" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" -msgstr "Conferma Password" +msgstr "Conferma la password" #. module: auth_signup #: help:base.config.settings,auth_signup_uninvited:0 @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Non è possibile inviare email: l'utente non ha l'indirizzo impostato" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Reimposta password" @@ -72,7 +72,7 @@ msgstr "Ripristino password" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Prego inserire una password e confermarla" @@ -84,8 +84,8 @@ msgstr "Invia una mail all'utente per (re)impostare la propria password" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Registrazione" @@ -130,7 +130,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Prego inserire un nome" @@ -147,7 +147,7 @@ msgstr "URL registrazione" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Prego inserire un username" @@ -158,7 +158,7 @@ msgid "Active" msgstr "Attivo" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -183,7 +183,7 @@ msgstr "Nome" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Prego inserire un nome utente e un indirizzo mail." @@ -214,7 +214,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Login" @@ -226,35 +226,35 @@ msgstr "Il token di registrazione è valido" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Login" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Il token di registrazione non è valido" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Le password non corrispondono; prego riscriverle." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nessun database selezionato!" @@ -271,7 +271,7 @@ msgstr "Abilita il reset della password dalla pagina di login" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Ritorno al Login" diff --git a/addons/auth_signup/i18n/lt.po b/addons/auth_signup/i18n/lt.po index 7ae419856e6..f766df522cb 100644 --- a/addons/auth_signup/i18n/lt.po +++ b/addons/auth_signup/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-30 05:29+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "" @@ -70,7 +70,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -82,8 +82,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "" @@ -102,7 +102,7 @@ msgstr "" #. module: auth_signup #: field:res.users,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: auth_signup #: model:email.template,body_html:auth_signup.reset_password_email @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "" @@ -127,7 +127,7 @@ msgstr "" #. module: auth_signup #: model:ir.model,name:auth_signup.model_res_users msgid "Users" -msgstr "" +msgstr "Naudotojai" #. module: auth_signup #: field:res.partner,signup_url:0 @@ -136,7 +136,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "" @@ -147,7 +147,7 @@ msgid "Active" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -159,18 +159,18 @@ msgstr "" #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 #, python-format msgid "Username" -msgstr "" +msgstr "Naudotojo vardas" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:8 #, python-format msgid "Name" -msgstr "" +msgstr "Pavadinimas" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -199,10 +199,10 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" -msgstr "" +msgstr "Prisijungti" #. module: auth_signup #: field:res.partner,signup_valid:0 @@ -211,35 +211,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" -msgstr "" +msgstr "Prisijungimas" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "" @@ -256,10 +256,10 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" -msgstr "" +msgstr "Grįžti į prisijungimo puslapį" #. module: auth_signup #. openerp-web @@ -271,7 +271,7 @@ msgstr "" #. module: auth_signup #: model:ir.model,name:auth_signup.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partneris" #. module: auth_signup #: field:res.partner,signup_token:0 diff --git a/addons/auth_signup/i18n/mk.po b/addons/auth_signup/i18n/mk.po index 7c284c562b0..e01e253d996 100644 --- a/addons/auth_signup/i18n/mk.po +++ b/addons/auth_signup/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Дозволи регистрација на надворешни кор #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Потврди лозинка" @@ -46,15 +46,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Неможе да се испрати e-mail: Корисникот нема e-mail адреса." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Ресетирај лозинка" @@ -62,7 +62,7 @@ msgstr "Ресетирај лозинка" #. module: auth_signup #: field:base.config.settings,auth_signup_template_user_id:0 msgid "Template user for new users created through signup" -msgstr "Шаблонски корисник за новите корисници креирани преку регистрација" +msgstr "Урнек корисник за новите корисници креирани преку регистрација" #. module: auth_signup #: model:email.template,subject:auth_signup.reset_password_email @@ -71,7 +71,7 @@ msgstr "Ресетирај лозинка" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Ве молиме внесете лозинка и потврдете ја." @@ -83,8 +83,8 @@ msgstr "Испрати e-mail до корисникот за (ре)сетира #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Регистрирај се" @@ -129,7 +129,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Ве молиме внесете име." @@ -146,7 +146,7 @@ msgstr "URL за регистрација" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Ве молиме внесете корисничко име." @@ -157,7 +157,7 @@ msgid "Active" msgstr "Активен" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -182,7 +182,7 @@ msgstr "Име" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Ве молиме внесете корисничко име или e-mail адреса." @@ -213,7 +213,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Најави се" @@ -225,35 +225,35 @@ msgstr "Токенот за регистрација е валиден" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Најавување" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Невалиден токен за регистрација" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Лозинките не се совпаѓаат; Внесете ги повторно." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Не е избрана база на податоци !" @@ -270,7 +270,7 @@ msgstr "Дозволи ресетирање на лозинка од стран #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Врати се на најава" diff --git a/addons/auth_signup/i18n/mn.po b/addons/auth_signup/i18n/mn.po index 256ea4ddd7f..83639779854 100644 --- a/addons/auth_signup/i18n/mn.po +++ b/addons/auth_signup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Гадаад хэрэглэгчид бүртгүүлэхийг зөвш #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Нууц үгийг баталгаажуулах" @@ -46,15 +46,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Имэйлийг илгээх боломжгүй: хэрэглэгчид имэйл хаяг алга" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Нууц үгийг шинэчлэх" @@ -71,7 +71,7 @@ msgstr "Нууц үгийг шинэчлэх" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Нууц үгийг оруулж баталгаажуул" @@ -83,8 +83,8 @@ msgstr "Хэрэглэгчид нууц үгээ шинэчлэх имэйл и #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Бүртгүүлэх" @@ -129,7 +129,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Нэр оруулна уу." @@ -146,7 +146,7 @@ msgstr "Бүртгүүлэх URL" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Хэрэглэгчийн нэрийг оруулна уу" @@ -157,7 +157,7 @@ msgid "Active" msgstr "Идэвхтэй" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -182,7 +182,7 @@ msgstr "Нэр" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Хэрэглэгчийн нэр эсвэл имэйл хаягийг оруулна уу." @@ -211,7 +211,7 @@ msgstr "Энэ нь Нэвтрэх хуудаснаас нууц үгээ шин #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Нэвтрэх" @@ -223,35 +223,35 @@ msgstr "Бүртгүүлэх Жетон Хүчинтэй" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Нэвтрэх" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Бүртгүүлэх жетон хүчингүй" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Нууц үгүүд таарахгүй байна; дахин бичнэ үү." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Өгөгдлийн бааз сонгогдоогүй байна!" @@ -268,7 +268,7 @@ msgstr "Нэвтрэх хуудаснаас нууц үг шинэчлэхийг #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Дахин нэвтрэх" diff --git a/addons/auth_signup/i18n/nb.po b/addons/auth_signup/i18n/nb.po index 3a75fa2151b..1d76e0d2470 100644 --- a/addons/auth_signup/i18n/nb.po +++ b/addons/auth_signup/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Tillate eksterne brukere å registrere seg." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Bekreft passord." @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "Base.Konfigurasjon.Innstillinger." #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "" @@ -70,7 +70,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -82,8 +82,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Registrer deg." @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "" @@ -136,7 +136,7 @@ msgstr "Regitrer deg URL." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "" @@ -147,7 +147,7 @@ msgid "Active" msgstr "Aktiv." #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -170,7 +170,7 @@ msgstr "Navn." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -199,7 +199,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Logg inn." @@ -211,35 +211,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "" @@ -256,7 +256,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Tilbake til innlogging." diff --git a/addons/auth_signup/i18n/nl.po b/addons/auth_signup/i18n/nl.po index 54dff6f76db..66d04016498 100644 --- a/addons/auth_signup/i18n/nl.po +++ b/addons/auth_signup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Toestaan dat externe gebruikers inloggen" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Bevestig wachtwoord" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Kan e-mail niet versturen: gebruiker heeft geen e-mail adres." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Reset wachtwoord" @@ -71,7 +71,7 @@ msgstr "Reset wachtwoord" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Geef een wachtwoord in en bevestig deze." @@ -85,8 +85,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Aanmelden" @@ -131,7 +131,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Vul een naam in." @@ -148,7 +148,7 @@ msgstr "URL voor aanmelden" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Voer een gebruikersnaam in." @@ -159,15 +159,15 @@ msgid "Active" msgstr "Actief" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" "You can configure it under Settings/General Settings." msgstr "" -"Het is niet mogelijk om een e-mail te versturen: geen uitgaande e-mail " -"server ingesteld,\n" -"Het is mogelijk deze in te stellen bij: Instellingen > Algemene" +"Het is niet mogelijk om een e-mail te versturen: Er is nog geen uitgaande e-" +"mail server ingesteld,\n" +"Het is mogelijk deze in te stellen bij: Instellingen > Algemeen" #. module: auth_signup #. openerp-web @@ -185,7 +185,7 @@ msgstr "Naam" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Geef gebruikersnaam of e-mail adres in." @@ -216,7 +216,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Login" @@ -228,35 +228,35 @@ msgstr "Aanmeld token is geldig" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Login" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Aanmeld toekenning ongeldig" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Wachtwoorden komen niet overeen. Geef de wachtwoorden opnieuw in." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Geen database geselecteerd!" @@ -273,7 +273,7 @@ msgstr "Wachtwoord reset vanaf login pagina toestaan" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Terug naar login" diff --git a/addons/auth_signup/i18n/pl.po b/addons/auth_signup/i18n/pl.po index 28e2870a8c2..d41e140e448 100644 --- a/addons/auth_signup/i18n/pl.po +++ b/addons/auth_signup/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Pozwól na logowanie sie zewnętrznych użytkowników" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Potwierdź hasło" @@ -46,15 +46,15 @@ msgid "base.config.settings" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Wyczyść hasło" @@ -71,7 +71,7 @@ msgstr "Reset hasła" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Wprowadź hasło o potwierdź je" @@ -83,8 +83,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Rejestracja" @@ -120,7 +120,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Wprowadź nazwę" @@ -137,7 +137,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "" @@ -148,7 +148,7 @@ msgid "Active" msgstr "Aktywne" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -171,7 +171,7 @@ msgstr "Nazwa" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -200,7 +200,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "" @@ -212,35 +212,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Zaloguj się" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nie wybrano bazy !" @@ -257,7 +257,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Wróć do logowania" diff --git a/addons/auth_signup/i18n/pt.po b/addons/auth_signup/i18n/pt.po index 97470c16f45..72b33db6389 100644 --- a/addons/auth_signup/i18n/pt.po +++ b/addons/auth_signup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Repor senha" @@ -70,7 +70,7 @@ msgstr "Repor senha" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Por favor indique uma senha e confirme-a" @@ -82,8 +82,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "" @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "" @@ -136,7 +136,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Por favor introduza um nome de utilizador." @@ -147,7 +147,7 @@ msgid "Active" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -170,7 +170,7 @@ msgstr "Nome" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Por favor introduza um nome de utilizador ou endereço de email." @@ -185,7 +185,7 @@ msgstr "" #: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 #, python-format msgid "Username (Email)" -msgstr "" +msgstr "Nome de utilizador (Email)" #. module: auth_signup #: field:res.partner,signup_expiration:0 @@ -199,7 +199,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Iniciar sessão" @@ -211,35 +211,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Iniciar sessão" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nenhuma base de dados selecionada!" @@ -256,7 +256,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "" diff --git a/addons/auth_signup/i18n/pt_BR.po b/addons/auth_signup/i18n/pt_BR.po index e4b65c0dc8f..c14c68ad4c0 100644 --- a/addons/auth_signup/i18n/pt_BR.po +++ b/addons/auth_signup/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -30,7 +30,7 @@ msgstr "Permitir inscrição de usuários externos" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Confirmar Senha" @@ -46,7 +46,7 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -54,8 +54,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Redefinir Senha" @@ -72,7 +72,7 @@ msgstr "Redefinir Senha" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Por favor digite uma senha e sua confirmação." @@ -84,8 +84,8 @@ msgstr "Enviar um e-mail para o usuário para (re)definir sua senha." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Inscreva-se" @@ -129,7 +129,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Por favor, informe o nome" @@ -146,7 +146,7 @@ msgstr "URL de inscrição" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Por favor informe um nome de usuário" @@ -157,7 +157,7 @@ msgid "Active" msgstr "Ativo" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -182,7 +182,7 @@ msgstr "Nome" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Por favor informe um nome de usuário ou endereço de e-mail." @@ -213,7 +213,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Acessar" @@ -225,35 +225,35 @@ msgstr "Token de Inscrição é Válido" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Autenticação" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Token de inscrição inválido" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "As senhas não combinam; por favor redigite-as." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nenhuma base de dados selecionada !" @@ -270,7 +270,7 @@ msgstr "Habilitar redefinição de senha a partir da página de autenticação" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Voltar para a Página de Autenticação" diff --git a/addons/auth_signup/i18n/ro.po b/addons/auth_signup/i18n/ro.po index 82f2f972553..5205a40a7e8 100644 --- a/addons/auth_signup/i18n/ro.po +++ b/addons/auth_signup/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Permite utilizatorilor sa se inregistreze" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Confirma Parola" @@ -46,7 +46,7 @@ msgid "base.config.settings" msgstr "base.config.settings (setari.config.de_baza)" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -54,8 +54,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Reseteaza parola" @@ -73,7 +73,7 @@ msgstr "Parola resetata" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Va rugam sa introduceti o parola si sa o confirmati." @@ -85,8 +85,8 @@ msgstr "Trimiteti un email utilizatorului pentru a (re)seta parola." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Inregistrare" @@ -130,7 +130,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Va rugam sa introduceti un nume" @@ -147,7 +147,7 @@ msgstr "URL Inregistrare" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Va rugam sa introduceti un nume de utilizator." @@ -158,7 +158,7 @@ msgid "Active" msgstr "Activ(a)" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -184,7 +184,7 @@ msgstr "Nume" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Va rugam sa introduceti un nume de utilizator sau o adresa de email." @@ -215,7 +215,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Autentificare" @@ -227,35 +227,35 @@ msgstr "Simbolul de inregistrare este Valabil" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Autentificare" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Simbol de inregistrare nevalid" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Parolele nu se potrivesc; va rugam sa le scrieti din nou." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nu a fost selectata nicio baza de date !" @@ -272,7 +272,7 @@ msgstr "Activeaza resetarea parolei din pagina de autentificare" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Inapoi la Autentificare" diff --git a/addons/auth_signup/i18n/ru.po b/addons/auth_signup/i18n/ru.po index 639a1e9bc3c..092691d326c 100644 --- a/addons/auth_signup/i18n/ru.po +++ b/addons/auth_signup/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-28 05:17+0000\n" -"X-Generator: Launchpad (build 16640)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Разрешить регистрацию внешним пользов #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Подтвердите пароль" @@ -46,15 +46,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Невозможно отправить письмо: у пользователя нет эл. почты" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Сброс пароля" @@ -71,7 +71,7 @@ msgstr "Сброс пароля" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Пожалуйста, введите пароль и подтвердите его." @@ -84,8 +84,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Регистрация" @@ -130,7 +130,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Пожалуйста, введите имя" @@ -147,7 +147,7 @@ msgstr "URL регистрации" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Пожалуйста, введите имя пользователя." @@ -158,7 +158,7 @@ msgid "Active" msgstr "Активен" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -183,7 +183,7 @@ msgstr "Имя" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Пожалуйста, введите имя пользователя или адрес эл. почты." @@ -214,7 +214,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Вход" @@ -226,35 +226,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Вход" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Пароли не совпадают; пожалуйста, введите их заново." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Не выбрана база данных!" @@ -271,7 +271,7 @@ msgstr "Включить сброс пароля со страницы вход #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Вернуться к странице входа" diff --git a/addons/auth_signup/i18n/sl.po b/addons/auth_signup/i18n/sl.po index d547ca69084..77145ff7397 100644 --- a/addons/auth_signup/i18n/sl.po +++ b/addons/auth_signup/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Potrdite geslo" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Ponastavi geslo" @@ -70,7 +70,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -82,8 +82,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Prijava" @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Vnesite ime" @@ -136,7 +136,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "" @@ -147,7 +147,7 @@ msgid "Active" msgstr "Aktivno" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -170,7 +170,7 @@ msgstr "Ime" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -199,7 +199,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Prijava" @@ -211,35 +211,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Prijava" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nobena podatkovna zbirka ni izbrana!" @@ -256,7 +256,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Nazaj na prijavo" diff --git a/addons/auth_signup/i18n/tr.po b/addons/auth_signup/i18n/tr.po index 3a78441e7f8..52f9713bd26 100644 --- a/addons/auth_signup/i18n/tr.po +++ b/addons/auth_signup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Parolayı Doğrula" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Eposta gönderilemiyor: kullanıcının eposta adresi yok." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Parolayı sıfırla" @@ -70,7 +70,7 @@ msgstr "Parola sıfırlandı" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -82,8 +82,8 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 #: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Üye Ol" @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Lütfen bir isim girin" @@ -136,7 +136,7 @@ msgstr "Kayıt URL" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Lütfen bir kullanıcı adı girin." @@ -147,7 +147,7 @@ msgid "Active" msgstr "Etkin" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -170,7 +170,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -199,7 +199,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "" @@ -211,35 +211,35 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 #: code:addons/auth_signup/static/src/js/auth_signup.js:111 #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #: code:addons/auth_signup/static/src/js/auth_signup.js:120 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:108 -#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "" @@ -256,7 +256,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "" diff --git a/addons/auth_signup/i18n/vi.po b/addons/auth_signup/i18n/vi.po index a79bbcb7bb4..15cd4ebfdd2 100644 --- a/addons/auth_signup/i18n/vi.po +++ b/addons/auth_signup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/zh_CN.po b/addons/auth_signup/i18n/zh_CN.po index 497b872997f..fa176258e25 100644 --- a/addons/auth_signup/i18n/zh_CN.po +++ b/addons/auth_signup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-03 05:14+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/zh_TW.po b/addons/auth_signup/i18n/zh_TW.po new file mode 100644 index 00000000000..b16d2be5abf --- /dev/null +++ b/addons/auth_signup/i18n/zh_TW.po @@ -0,0 +1,279 @@ +# 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:05+0000\n" +"PO-Revision-Date: 2013-09-19 09:40+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-09-20 05:38+0000\n" +"X-Generator: Launchpad (build 16765)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_uninvited:0 +msgid "Allow external users to sign up" +msgstr "允許外部使用者註冊" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 +#, python-format +msgid "Confirm Password" +msgstr "確認密碼" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_uninvited:0 +msgid "If unchecked, only invited users may sign up." +msgstr "如果未勾選,只有被邀請的使用者可以註冊" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_base_config_settings +msgid "base.config.settings" +msgstr "" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:266 +#, python-format +msgid "Cannot send email: user has no email address." +msgstr "無法送出email:使用者沒有email 地址" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 +#, python-format +msgid "Reset password" +msgstr "重設密碼" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_template_user_id:0 +msgid "Template user for new users created through signup" +msgstr "" + +#. module: auth_signup +#: model:email.template,subject:auth_signup.reset_password_email +msgid "Password reset" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#, python-format +msgid "Please enter a password and confirm it." +msgstr "" + +#. module: auth_signup +#: view:res.users:0 +msgid "Send an email to the user to (re)set their password." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 +#, python-format +msgid "Sign Up" +msgstr "" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "New" +msgstr "" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:258 +#, python-format +msgid "Mail sent to:" +msgstr "" + +#. module: auth_signup +#: field:res.users,state:0 +msgid "Status" +msgstr "" + +#. module: auth_signup +#: model:email.template,body_html:auth_signup.reset_password_email +msgid "" +"\n" +"

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

\n" +"\n" +"

You may change your password by following this link.

\n" +"\n" +"

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

" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#, python-format +msgid "Please enter a name." +msgstr "" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_signup +#: field:res.partner,signup_url:0 +msgid "Signup URL" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#, python-format +msgid "Please enter a username." +msgstr "" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Active" +msgstr "" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:270 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 +#, python-format +msgid "Username" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:8 +#, python-format +msgid "Name" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 +#, python-format +msgid "Please enter a username or email address." +msgstr "" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Resetting Password" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 +#, python-format +msgid "Username (Email)" +msgstr "" + +#. module: auth_signup +#: field:res.partner,signup_expiration:0 +msgid "Signup Expiration" +msgstr "" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_reset_password:0 +msgid "This allows users to trigger a password reset from the Login page." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 +#, python-format +msgid "Log in" +msgstr "" + +#. module: auth_signup +#: field:res.partner,signup_valid:0 +msgid "Signup Token is Valid" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 +#, python-format +msgid "Login" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 +#, python-format +msgid "Invalid signup token" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 +#, python-format +msgid "Passwords do not match; please retype them." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#, python-format +msgid "No database selected !" +msgstr "" + +#. module: auth_signup +#: view:res.users:0 +msgid "Reset Password" +msgstr "" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_reset_password:0 +msgid "Enable password reset from Login page" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 +#, python-format +msgid "Back to Login" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#, python-format +msgid "Sign up" +msgstr "" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_partner +msgid "Partner" +msgstr "" + +#. module: auth_signup +#: field:res.partner,signup_token:0 +msgid "Signup Token" +msgstr "" diff --git a/addons/base_action_rule/base_action_rule.py b/addons/base_action_rule/base_action_rule.py index 3497255fa76..59d61ba5b67 100644 --- a/addons/base_action_rule/base_action_rule.py +++ b/addons/base_action_rule/base_action_rule.py @@ -63,7 +63,10 @@ class base_action_rule(osv.osv): 'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of rules."), 'kind': fields.selection( - [('on_create', 'On Creation'), ('on_write', 'On Update'), ('on_time', 'Based on Timed Condition')], + [('on_create', 'On Creation'), + ('on_write', 'On Update'), + ('on_create_or_write', 'On Creation & Update'), + ('on_time', 'Based on Timed Condition')], string='When to Run'), 'trg_date_id': fields.many2one('ir.model.fields', string='Trigger Date', help="When should the condition be triggered. If present, will be checked by the scheduler. If empty, will be checked at creation and update.", @@ -97,9 +100,9 @@ class base_action_rule(osv.osv): def onchange_kind(self, cr, uid, ids, kind, context=None): clear_fields = [] - if kind == 'on_create': + if kind in ['on_create', 'on_create_or_write']: clear_fields = ['filter_pre_id', 'trg_date_id', 'trg_date_range', 'trg_date_range_type'] - elif kind == 'on_write': + elif kind in ['on_write', 'on_create_or_write']: clear_fields = ['trg_date_id', 'trg_date_range', 'trg_date_range_type'] elif kind == 'on_time': clear_fields = ['filter_pre_id'] @@ -156,7 +159,7 @@ class base_action_rule(osv.osv): new_id = old_create(cr, uid, vals, context=context) # retrieve the action rules to run on creation - action_dom = [('model', '=', model), ('kind', '=', 'on_create')] + action_dom = [('model', '=', model), ('kind', 'in', ['on_create', 'on_create_or_write'])] action_ids = self.search(cr, uid, action_dom, context=context) # check postconditions, and execute actions on the records that satisfy them @@ -180,7 +183,7 @@ class base_action_rule(osv.osv): ids = [ids] if isinstance(ids, (int, long, str)) else ids # retrieve the action rules to run on update - action_dom = [('model', '=', model), ('kind', '=', 'on_write')] + action_dom = [('model', '=', model), ('kind', 'in', ['on_write', 'on_create_or_write'])] action_ids = self.search(cr, uid, action_dom, context=context) actions = self.browse(cr, uid, action_ids, context=context) diff --git a/addons/base_action_rule/i18n/ar.po b/addons/base_action_rule/i18n/ar.po index a4377543f14..0f3a8fe4733 100644 --- a/addons/base_action_rule/i18n/ar.po +++ b/addons/base_action_rule/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/bg.po b/addons/base_action_rule/i18n/bg.po index a8c84dcc1b9..6a3d0ec1ea1 100644 --- a/addons/base_action_rule/i18n/bg.po +++ b/addons/base_action_rule/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/bs.po b/addons/base_action_rule/i18n/bs.po index 5a33cb2e294..495706093bc 100644 --- a/addons/base_action_rule/i18n/bs.po +++ b/addons/base_action_rule/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ca.po b/addons/base_action_rule/i18n/ca.po index 75950e58009..0c6e26d8e69 100644 --- a/addons/base_action_rule/i18n/ca.po +++ b/addons/base_action_rule/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/cs.po b/addons/base_action_rule/i18n/cs.po index 7a65d9336ff..4e8529dc39e 100644 --- a/addons/base_action_rule/i18n/cs.po +++ b/addons/base_action_rule/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/da.po b/addons/base_action_rule/i18n/da.po index a005c95b6a5..b4762dfe929 100644 --- a/addons/base_action_rule/i18n/da.po +++ b/addons/base_action_rule/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/de.po b/addons/base_action_rule/i18n/de.po index 22169c55da4..2dfbfbe1e58 100644 --- a/addons/base_action_rule/i18n/de.po +++ b/addons/base_action_rule/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/el.po b/addons/base_action_rule/i18n/el.po index 0619ff54faf..31c69898e20 100644 --- a/addons/base_action_rule/i18n/el.po +++ b/addons/base_action_rule/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es.po b/addons/base_action_rule/i18n/es.po index 5ba02307b45..5e0fbe8e3d0 100644 --- a/addons/base_action_rule/i18n/es.po +++ b/addons/base_action_rule/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es_CR.po b/addons/base_action_rule/i18n/es_CR.po index 7f0d6c8d016..bff6d4f924e 100644 --- a/addons/base_action_rule/i18n/es_CR.po +++ b/addons/base_action_rule/i18n/es_CR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: es\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/es_EC.po b/addons/base_action_rule/i18n/es_EC.po index 2216ea3ae1e..ae54caa1aa8 100644 --- a/addons/base_action_rule/i18n/es_EC.po +++ b/addons/base_action_rule/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es_PY.po b/addons/base_action_rule/i18n/es_PY.po index ff190b1f4bd..b2a92ac946b 100644 --- a/addons/base_action_rule/i18n/es_PY.po +++ b/addons/base_action_rule/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fa.po b/addons/base_action_rule/i18n/fa.po index e3062815dc5..d7169128557 100644 --- a/addons/base_action_rule/i18n/fa.po +++ b/addons/base_action_rule/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fi.po b/addons/base_action_rule/i18n/fi.po index e424734e526..da58c991ab7 100644 --- a/addons/base_action_rule/i18n/fi.po +++ b/addons/base_action_rule/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fr.po b/addons/base_action_rule/i18n/fr.po index affdadbcca2..91460ed7f43 100644 --- a/addons/base_action_rule/i18n/fr.po +++ b/addons/base_action_rule/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -76,12 +76,12 @@ msgstr "base.action.rule.lead.test" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Closed" -msgstr "" +msgstr "Fermé" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Nouveau" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 @@ -96,7 +96,7 @@ msgstr "Conditions" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "En attente" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/gl.po b/addons/base_action_rule/i18n/gl.po index bc9f72ecefd..2d4def189a5 100644 --- a/addons/base_action_rule/i18n/gl.po +++ b/addons/base_action_rule/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/gu.po b/addons/base_action_rule/i18n/gu.po index 034feda5723..9f49a611e2c 100644 --- a/addons/base_action_rule/i18n/gu.po +++ b/addons/base_action_rule/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/hr.po b/addons/base_action_rule/i18n/hr.po index 796e1ce2eba..2477940e4b3 100644 --- a/addons/base_action_rule/i18n/hr.po +++ b/addons/base_action_rule/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/hu.po b/addons/base_action_rule/i18n/hu.po index 475ef9a70ee..259399e7f36 100644 --- a/addons/base_action_rule/i18n/hu.po +++ b/addons/base_action_rule/i18n/hu.po @@ -13,13 +13,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:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "Folyamatban" #. module: base_action_rule #: view:base.action.rule:0 @@ -28,6 +28,9 @@ msgid "" "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" msgstr "" +"- Ugyanebben a \"Keresés\" nézetben, válassza ki a \"Jelenlegi szűrő " +"elmentése\" menüt, írja be a nevet (Pl: Létrehoz 01/01/2012) és adja hozzá a " +"\"Ossza meg az összes felhasználóval\" lehetőséget" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -37,7 +40,7 @@ msgstr "Műveleti előírások" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "Válasszon szűrőt vagy időzítőt mint lehetőséget." #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 @@ -47,17 +50,17 @@ msgstr "Felelős" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Példák: e-mail emlékeztetők, tárgyi szolgáltatás hívása, stb." #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "" +msgstr "Követők hozzáadása" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 msgid "Set Responsible" -msgstr "" +msgstr "Felelős beállítása" #. module: base_action_rule #: help:base.action.rule,trg_date_range:0 @@ -66,21 +69,24 @@ msgid "" "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." msgstr "" +"A emlékeztető dátumának késleltetése. Negatív számot is írhat ha az " +"emlékeztető kapcsolására az emlékeztető ideje előtt van szüksége, mint " +"emlékeztető küldése 15 perccel a találkozó előtt." #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test msgid "base.action.rule.lead.test" -msgstr "" +msgstr "base.action.rule.lead.test" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Closed" -msgstr "" +msgstr "Lezárt" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Új" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 @@ -95,17 +101,17 @@ msgstr "Feltételek" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "Függőben lévő" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 msgid "Status" -msgstr "" +msgstr "Állapot" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Szűró frissítése előtt" #. module: base_action_rule #: view:base.action.rule:0 @@ -117,6 +123,7 @@ msgstr "Műveleti előírások" msgid "" "If present, this condition must be satisfied after the update of the record." msgstr "" +"Ha létezik, ennek a feltételnek teljesülni kell a rekord frissítése után." #. module: base_action_rule #: view:base.action.rule:0 @@ -126,12 +133,12 @@ msgstr "Mezők módosítása" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "A szűrőnek ezért elérhetőnek kell lennie ezen az oldalon." #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Szűrő frissítése után" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -141,7 +148,7 @@ msgstr "Órák" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Új szűrő létrehozásához:" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -162,11 +169,15 @@ msgid "" "while the postcondition filter is checked after the modification. A " "precondition filter will therefore not work during a creation." msgstr "" +"Egy műveleti szabály beállított, ha létrehozza vagy módosítja a \"Vonatkozó " +"Dokumentum Modell\"-t. Az előszűrő feltétele beállítható a módosítást " +"megelőzően, ugyanakkor az utófeltétel szűrő a módosítás után állítható be. " +"Az előfeltétel szűrő ezért nem működik a létrehozáskor." #. module: base_action_rule #: view:base.action.rule:0 msgid "Filter Condition" -msgstr "" +msgstr "Feltételek szűrése" #. module: base_action_rule #: view:base.action.rule:0 @@ -175,6 +186,9 @@ msgid "" "in the \"Search\" view (Example of filter based on Leads/Opportunities: " "Creation Date \"is equal to\" 01/01/2012)" msgstr "" +"- Menjen a \"Vonatkozó Dokumentum Modell\" oldalra és állítsa be a szűrési " +"paramétereket a \"Keresés\" nézetben (Például a szűrő az " +"Érdeklődések/Lehetőségek alapján: Létrehozás dátuma \"egyenlő\" 01/01/2012)" #. module: base_action_rule #: field:base.action.rule,name:0 @@ -206,7 +220,7 @@ msgstr "Napok" #. module: base_action_rule #: view:base.action.rule:0 msgid "Timer" -msgstr "" +msgstr "Időzítő" #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 @@ -216,22 +230,22 @@ msgstr "Késedelem típusa" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Szerver műveletének futtatása" #. module: base_action_rule #: help:base.action.rule,active:0 msgid "When unchecked, the rule is hidden and will not be executed." -msgstr "" +msgstr "Ha nincs bejelölve, a szabály eltüntetett és nem végrehajtott." #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Megszakítva" #. module: base_action_rule #: field:base.action.rule,model:0 msgid "Model" -msgstr "" +msgstr "Modell" #. module: base_action_rule #: field:base.action.rule,last_run:0 @@ -246,13 +260,14 @@ msgstr "Percek" #. module: base_action_rule #: field:base.action.rule,model_id:0 msgid "Related Document Model" -msgstr "" +msgstr "Ide vonatkozó dokumentum modell" #. module: base_action_rule #: help:base.action.rule,filter_pre_id:0 msgid "" "If present, this condition must be satisfied before the update of the record." msgstr "" +"Ha létezik, ennek a feltételnek teljesülnie kell a rekord frissítése előtt." #. module: base_action_rule #: field:base.action.rule,sequence:0 @@ -280,6 +295,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új automatikus művelet szabály létrehozásához. \n" +"

\n" +" Használjon automatikus műveleteket automatikus művelet " +"indításához \n" +" különböző képernyőkön. Például: ha egy érdeklődést egy " +"felhasználó létrehozott akkor\n" +" az automatikusan egy csoporthoz lesz iktatva, vagy egy\n" +" lehetőség, mely függőben van 14 nap után is el fog indítani " +"\n" +" egy automatikus emlékeztető e-mailt.\n" +"

\n" +" " #. module: base_action_rule #: field:base.action.rule,create_date:0 @@ -289,7 +317,7 @@ msgstr "Dátum létrehozása" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Utolsó művelet" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 @@ -305,12 +333,12 @@ msgstr "Indítás dátuma" #: view:base.action.rule:0 #: field:base.action.rule,server_action_ids:0 msgid "Server Actions" -msgstr "" +msgstr "Szerver műveletek" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 msgid "Subject" -msgstr "" +msgstr "Tárgy" #~ msgid "" #~ "Check this if you want the rule to send an email to the responsible person." diff --git a/addons/base_action_rule/i18n/it.po b/addons/base_action_rule/i18n/it.po index e6fac54d83e..63808a578f4 100644 --- a/addons/base_action_rule/i18n/it.po +++ b/addons/base_action_rule/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ja.po b/addons/base_action_rule/i18n/ja.po index 4ba033d2293..575f30035d1 100644 --- a/addons/base_action_rule/i18n/ja.po +++ b/addons/base_action_rule/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/lt.po b/addons/base_action_rule/i18n/lt.po index 2795d1f3b8d..d0e17754958 100644 --- a/addons/base_action_rule/i18n/lt.po +++ b/addons/base_action_rule/i18n/lt.po @@ -9,18 +9,18 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:58+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:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "Vykdoma" #. module: base_action_rule #: view:base.action.rule:0 @@ -43,7 +43,7 @@ msgstr "" #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" -msgstr "Atsakingas" +msgstr "Atsakingas asmuo" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 @@ -76,12 +76,12 @@ msgstr "" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Closed" -msgstr "" +msgstr "Uždaryta" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Naujas" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 @@ -96,12 +96,12 @@ msgstr "Sąlygos" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "Laukianti" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 @@ -191,7 +191,7 @@ msgstr "Automatiniai veiksmai" #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." -msgstr "Suteikia eilės tvarką, pagal kurį atvaizduojamas taisyklių sąrašas" +msgstr "Eilės tvarka, pagal kurią išdėstomas taisyklių sąrašas." #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -226,12 +226,12 @@ msgstr "" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Atšauktas" #. module: base_action_rule #: field:base.action.rule,model:0 msgid "Model" -msgstr "" +msgstr "Modelis" #. module: base_action_rule #: field:base.action.rule,last_run:0 @@ -289,7 +289,7 @@ msgstr "Sukūrimo data" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Paskutinis veiksmas" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 @@ -299,7 +299,7 @@ msgstr "Partneris" #. module: base_action_rule #: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" -msgstr "Įvykio data" +msgstr "Iššaukimo data" #. module: base_action_rule #: view:base.action.rule:0 @@ -310,7 +310,7 @@ msgstr "" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 msgid "Subject" -msgstr "" +msgstr "Tema" #~ msgid "Object" #~ msgstr "Objektas" diff --git a/addons/base_action_rule/i18n/lv.po b/addons/base_action_rule/i18n/lv.po index 3ba51babe47..668538d907b 100644 --- a/addons/base_action_rule/i18n/lv.po +++ b/addons/base_action_rule/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/mk.po b/addons/base_action_rule/i18n/mk.po index 25366d5f367..c8a80e0cda7 100644 --- a/addons/base_action_rule/i18n/mk.po +++ b/addons/base_action_rule/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -29,6 +29,9 @@ msgid "" "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" msgstr "" +"- Во овој приказ \"Пребарај\", селектирајте го менито \"Зачувај тековен " +"филтер\", внесете го името (пр. Креирај 01/01/2012) и додадете ја опцијата " +"\"Сподели со сите корисници\"" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -48,12 +51,12 @@ msgstr "Одговорен" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Примери: потсетници за email, услуга јави се на објектот и др." #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "Додади следбеници" +msgstr "Додади пратители" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 @@ -109,7 +112,7 @@ msgstr "Статус" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Филтер Пред ажурирање" #. module: base_action_rule #: view:base.action.rule:0 @@ -137,7 +140,7 @@ msgstr "Филтерот мора да биде достапен на оваа #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Филтер После ажурирање" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -181,6 +184,9 @@ msgid "" "in the \"Search\" view (Example of filter based on Leads/Opportunities: " "Creation Date \"is equal to\" 01/01/2012)" msgstr "" +"- Одете на страницата \"Модел на поврзан документ\" и подесете ги " +"параметрите на филтерот во приказ \"Пребарај\" (Пример за филтер заснован на " +"Leads/Можности: Датум на креирање \"е еднаква на\" 01/01/2012)" #. module: base_action_rule #: field:base.action.rule,name:0 @@ -222,7 +228,7 @@ msgstr "Тип на одлагање" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Акции на серверот за стартување" #. module: base_action_rule #: help:base.action.rule,active:0 @@ -252,13 +258,14 @@ msgstr "Минути" #. module: base_action_rule #: field:base.action.rule,model_id:0 msgid "Related Document Model" -msgstr "Поврзан модел на документ" +msgstr "Модел на поврзан документ" #. module: base_action_rule #: help:base.action.rule,filter_pre_id:0 msgid "" "If present, this condition must be satisfied before the update of the record." -msgstr "Доколку го има." +msgstr "" +"Доколку го има, овој услов мора да биде задоволен пред да се ажурира записот." #. module: base_action_rule #: field:base.action.rule,sequence:0 @@ -311,7 +318,7 @@ msgstr "Датум на активирање" #: view:base.action.rule:0 #: field:base.action.rule,server_action_ids:0 msgid "Server Actions" -msgstr "Дејства на серверот" +msgstr "Акции на серверот" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 diff --git a/addons/base_action_rule/i18n/mn.po b/addons/base_action_rule/i18n/mn.po index 25f87f25c84..fa7343d46ce 100644 --- a/addons/base_action_rule/i18n/mn.po +++ b/addons/base_action_rule/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/nb.po b/addons/base_action_rule/i18n/nb.po index 90fda28128b..4f186a6f519 100644 --- a/addons/base_action_rule/i18n/nb.po +++ b/addons/base_action_rule/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/nl.po b/addons/base_action_rule/i18n/nl.po index 0240a34e0a5..8a1c70ad81a 100644 --- a/addons/base_action_rule/i18n/nl.po +++ b/addons/base_action_rule/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-12 20:36+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:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -302,13 +302,13 @@ msgstr "" "

\n" " Klik om een nieuwe automatische actie regel in te stellen\n" "

\n" -" gebruik automatische acties, om automatisch acties aan te " +" Gebruik automatische acties, om automatisch acties aan te " "roepen\n" " voor verschillende schermen. Bijvoorbeeld: Een lead " "aangemaakt door\n" " een specifieke gebruiker kan automatisch worden toegewezen " "aan een\n" -" specifiek verkoopteam. Of een prospect welke nog steeds d " +" specifiek verkoopteam. Of een prospect welke nog steeds de " "status 'in afwachting'\n" " heeft na 14 dagen activeert een herinnering e-mail.\n" "

\n" diff --git a/addons/base_action_rule/i18n/pl.po b/addons/base_action_rule/i18n/pl.po index 58d8cb483a5..85c40be4f03 100644 --- a/addons/base_action_rule/i18n/pl.po +++ b/addons/base_action_rule/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/pt.po b/addons/base_action_rule/i18n/pt.po index 1edea6bb995..70176f1d7b0 100644 --- a/addons/base_action_rule/i18n/pt.po +++ b/addons/base_action_rule/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/pt_BR.po b/addons/base_action_rule/i18n/pt_BR.po index 787c312e594..1a33c55b77e 100644 --- a/addons/base_action_rule/i18n/pt_BR.po +++ b/addons/base_action_rule/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ro.po b/addons/base_action_rule/i18n/ro.po index ab842f4e7ee..a6e6befe903 100644 --- a/addons/base_action_rule/i18n/ro.po +++ b/addons/base_action_rule/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ru.po b/addons/base_action_rule/i18n/ru.po index 3ca5b1eab04..a09c3da459d 100644 --- a/addons/base_action_rule/i18n/ru.po +++ b/addons/base_action_rule/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-01 05:16+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -294,7 +294,7 @@ msgstr "Последнее действие" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" -msgstr "Контрагент" +msgstr "Партнер" #. module: base_action_rule #: field:base.action.rule,trg_date_id:0 diff --git a/addons/base_action_rule/i18n/sl.po b/addons/base_action_rule/i18n/sl.po index 7549ba38b0a..2db610507ea 100644 --- a/addons/base_action_rule/i18n/sl.po +++ b/addons/base_action_rule/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sq.po b/addons/base_action_rule/i18n/sq.po index 16c174621d5..0be393afe40 100644 --- a/addons/base_action_rule/i18n/sq.po +++ b/addons/base_action_rule/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sr.po b/addons/base_action_rule/i18n/sr.po index a8a638f850e..3a4f917f359 100644 --- a/addons/base_action_rule/i18n/sr.po +++ b/addons/base_action_rule/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sr@latin.po b/addons/base_action_rule/i18n/sr@latin.po index 208272808bd..f431acf0346 100644 --- a/addons/base_action_rule/i18n/sr@latin.po +++ b/addons/base_action_rule/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sv.po b/addons/base_action_rule/i18n/sv.po index 8d91377706e..a6d2f233fe0 100644 --- a/addons/base_action_rule/i18n/sv.po +++ b/addons/base_action_rule/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/tr.po b/addons/base_action_rule/i18n/tr.po index 5865ab80580..f36a3b10d1a 100644 --- a/addons/base_action_rule/i18n/tr.po +++ b/addons/base_action_rule/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -29,6 +29,9 @@ msgid "" "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" msgstr "" +"-Bu aynı \"Arama\" görünümünde \"Geçerli Süzgeci Kaydet\" menüsünü seçin, " +"adını girin (Örn: 01/01/2012 yi oluştur) ve \"Bütün kullanıcılarla paylaş\" " +"seçeneğini ekleyin" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -38,7 +41,7 @@ msgstr "Eylem Kuralları" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "Koşul olarak bir süzgeç ya da bir zaman sayacı seçin." #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 @@ -48,12 +51,12 @@ msgstr "Sorumlu" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Örnekler: eposta anımsatıcıları, nesne servisi çağır, v.b." #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "" +msgstr "İzleyici Ekle" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 @@ -67,6 +70,9 @@ msgid "" "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." msgstr "" +"Tetikleme tarihinden sonraki gecikme. Tetikleme tarihinden önce bir gecikme " +"gerektiriyorsa eksş bir değer girebilirsiniz, toplantı tarihinden 15 dakika " +"önce anımsatma gönderme gibi." #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test @@ -106,7 +112,7 @@ msgstr "Durum" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Güncelleme Süzgeçi Öncesi" #. module: base_action_rule #: view:base.action.rule:0 @@ -117,7 +123,7 @@ msgstr "Eylem Kuralı" #: help:base.action.rule,filter_id:0 msgid "" "If present, this condition must be satisfied after the update of the record." -msgstr "" +msgstr "Varsa, bu koşul kaydın güncellenmesinden sonra tatminkar olmalıdır." #. module: base_action_rule #: view:base.action.rule:0 @@ -127,12 +133,12 @@ msgstr "Değiştirilecek Alanlar" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "Bu yüzden süzgeçin bu sayfada olması gerekir." #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Güncelleme Süzgeçi Sonrası" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -142,7 +148,7 @@ msgstr "Saatler" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Yeni bir süzgeç oluşturmak için:" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -163,11 +169,15 @@ msgid "" "while the postcondition filter is checked after the modification. A " "precondition filter will therefore not work during a creation." msgstr "" +"Bir işlem kuralı, \"İlişkili Belge Model\"ini oluştururken ya da " +"değiştirirken denetlenir. Önkoşul süzgeci, değiştirilmeden sonraki eski " +"koşul denetlenirken değiştirilmeden hemen önce denetlenir. Bundan dolayı bir " +"önkoşul süzgeci oluşturulma sırasında çalışmayacaktır." #. module: base_action_rule #: view:base.action.rule:0 msgid "Filter Condition" -msgstr "" +msgstr "Süzgeç Koşulu" #. module: base_action_rule #: view:base.action.rule:0 @@ -176,6 +186,9 @@ msgid "" "in the \"Search\" view (Example of filter based on Leads/Opportunities: " "Creation Date \"is equal to\" 01/01/2012)" msgstr "" +"- \"İlişkili Belge Modeli\" sayfanıza gidin ve \"Arama\" görünümündeki " +"süzgeç parametrelerini doldurun (Adaylara/Fırsatlara göre süzgeç örnekleri: " +"Oluşturma Tarihi \"eşittir\" 01/01/2012)" #. module: base_action_rule #: field:base.action.rule,name:0 @@ -216,12 +229,12 @@ msgstr "Gecikme türü" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Çalıştırılacak sunucu işlemleri" #. module: base_action_rule #: help:base.action.rule,active:0 msgid "When unchecked, the rule is hidden and will not be executed." -msgstr "" +msgstr "İşaret kaldırılırsa, kural gizlenecek ve çalıştırılamayacaktır." #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -252,7 +265,7 @@ msgstr "İlgili Döküman Modeli" #: help:base.action.rule,filter_pre_id:0 msgid "" "If present, this condition must be satisfied before the update of the record." -msgstr "" +msgstr "Varsa, bu koşul kaydın güncellenmesinden önce tatminkar olmalıdır." #. module: base_action_rule #: field:base.action.rule,sequence:0 @@ -280,6 +293,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir otomatik işlem kuralı ayarlamak için tıklayın. \n" +"

\n" +" Çeşitli ekranlarda otomatik tetikleme işlemleri için " +"otomatik\n" +" işlemler kullanın. Örnek: belirli bir kullanıcı tarafından " +"oluşturulan\n" +" bir aday otomatik olarak bir satış takımına ayarlanabilir ya " +"da bir fırsat\n" +" hala 14 günlük bir bekleme durumundayken bir otomatik " +"eposta\n" +" anımsatmasını tetikleyebilir.\n" +"

\n" +" " #. module: base_action_rule #: field:base.action.rule,create_date:0 diff --git a/addons/base_action_rule/i18n/zh_CN.po b/addons/base_action_rule/i18n/zh_CN.po index 19651bea3ea..05854f099c5 100644 --- a/addons/base_action_rule/i18n/zh_CN.po +++ b/addons/base_action_rule/i18n/zh_CN.po @@ -9,18 +9,18 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-30 04:40+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:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "处理中" #. module: base_action_rule #: view:base.action.rule:0 @@ -28,7 +28,7 @@ msgid "" "- In this same \"Search\" view, select the menu \"Save Current Filter\", " "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" -msgstr "" +msgstr "在“搜索”框中,选择菜单“保存过滤器”,输入名字(如:创建于01/01/2012)并选择“与所有用户共享”" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -38,7 +38,7 @@ msgstr "动作规则" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "选择过滤器或定时器作为条件。" #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 @@ -48,7 +48,7 @@ msgstr "负责人" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "如:电子邮件提醒,调用对象的服务等。" #. module: base_action_rule #: field:base.action.rule,act_followers:0 @@ -58,7 +58,7 @@ msgstr "" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 msgid "Set Responsible" -msgstr "" +msgstr "设置权限" #. module: base_action_rule #: help:base.action.rule,trg_date_range:0 @@ -66,7 +66,7 @@ msgid "" "Delay after the trigger date.You can put a negative number if you need a " "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." -msgstr "" +msgstr "延迟触发日期。如果在触发日期你需要一个延迟,你可以输入一个负数,如在会议前15分钟发送提醒" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test diff --git a/addons/base_action_rule/i18n/zh_TW.po b/addons/base_action_rule/i18n/zh_TW.po index 01c74b0cf59..a6b72ee9e40 100644 --- a/addons/base_action_rule/i18n/zh_TW.po +++ b/addons/base_action_rule/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_calendar/base_calendar.py b/addons/base_calendar/base_calendar.py index 64b6f01d05c..397bd193757 100644 --- a/addons/base_calendar/base_calendar.py +++ b/addons/base_calendar/base_calendar.py @@ -114,19 +114,6 @@ def real_id2base_calendar_id(real_id, recurrent_date): return '%d-%s' % (real_id, recurrent_date) return real_id -def _links_get(self, cr, uid, context=None): - """ - Get request link. - @param cr: the current row, from the database cursor - @param uid: the current user's ID for security checks - @param context: a standard dictionary for contextual values - @return: list of dictionary which contain object and name and id - """ - obj = self.pool.get('res.request.link') - ids = obj.search(cr, uid, []) - res = obj.read(cr, uid, ids, ['object', 'name'], context=context) - return [(r['object'], r['name']) for r in res] - html_invitation = """ @@ -307,19 +294,6 @@ class calendar_attendee(osv.osv): return result - def _links_get(self, cr, uid, context=None): - """ - Get request link for ref field in calendar attendee. - @param cr: the current row, from the database cursor - @param uid: the current user's id for security checks - @param context: A standard dictionary for contextual values - @return: list of dictionary which contain object and name and id - """ - obj = self.pool.get('res.request.link') - ids = obj.search(cr, uid, []) - res = obj.read(cr, uid, ids, ['object', 'name'], context=context) - return [(r['object'], r['name']) for r in res] - def _lang_get(self, cr, uid, context=None): """ Get language for language selection field. @@ -385,7 +359,7 @@ property or property parameter."), 'event_end_date': fields.function(_compute_data, \ string='Event End Date', type="datetime", \ multi='event_end_date'), - 'ref': fields.reference('Event Ref', selection=_links_get, size=128), + 'ref': fields.reference('Event Ref', selection=openerp.addons.base.res.res_request.referencable_models, size=128), 'availability': fields.selection([('free', 'Free'), ('busy', 'Busy')], 'Free/Busy', readonly="True"), } _defaults = { @@ -578,8 +552,7 @@ property or property parameter."), def do_accept(self, cr, uid, ids, context=None, *args): """ - Update state of invitation as Accepted and if the invited user is other - then event user it will make a copy of this event for invited user. + Marks event invitation as Accepted. @param cr: the current row, from the database cursor @param uid: the current user's ID for security checks @param ids: list of calendar attendee's IDs @@ -589,15 +562,7 @@ property or property parameter."), if context is None: context = {} - for vals in self.browse(cr, uid, ids, context=context): - if vals.ref and vals.ref.user_id: - mod_obj = self.pool[vals.ref._name] - res=mod_obj.read(cr,uid,[vals.ref.id],['duration','class'],context) - defaults = {'user_id': vals.user_id.id, 'organizer_id': vals.ref.user_id.id,'duration':res[0]['duration'],'class':res[0]['class']} - mod_obj.copy(cr, uid, vals.ref.id, default=defaults, context=context) - self.write(cr, uid, vals.id, {'state': 'accepted'}, context) - - return True + return self.write(cr, uid, ids, {'state': 'accepted'}, context) def do_decline(self, cr, uid, ids, context=None, *args): """ @@ -1126,12 +1091,14 @@ rule or repeating pattern of time to exclude from the recurring rule."), for partner in event.partner_ids: if partner.id in attendees: continue + local_context = context.copy() + local_context.pop('default_state', None) att_id = self.pool.get('calendar.attendee').create(cr, uid, { 'partner_id': partner.id, 'user_id': partner.user_ids and partner.user_ids[0].id or False, 'ref': self._name+','+str(event.id), 'email': partner.email - }, context=context) + }, context=local_context) if partner.email: mail_to = mail_to + " " + partner.email self.write(cr, uid, [event.id], { @@ -1215,20 +1182,44 @@ rule or repeating pattern of time to exclude from the recurring rule."), new_rrule_str = ';'.join(new_rrule_str) rdates = get_recurrent_dates(str(new_rrule_str), exdate, event_date, data['exrule']) for r_date in rdates: - ok = True + # fix domain evaluation + # step 1: check date and replace expression by True or False, replace other expressions by True + # step 2: evaluation of & and | + # check if there are one False + pile = [] for arg in domain: - if arg[0] in ('date', 'date_deadline'): - if (arg[1]=='='): - ok = ok and r_date.strftime('%Y-%m-%d')==arg[2] - if (arg[1]=='>'): - ok = ok and r_date.strftime('%Y-%m-%d')>arg[2] - if (arg[1]=='<'): - ok = ok and r_date.strftime('%Y-%m-%d')='): - ok = ok and r_date.strftime('%Y-%m-%d')>=arg[2] - if (arg[1]=='<='): - ok = ok and r_date.strftime('%Y-%m-%d')<=arg[2] - if not ok: + if str(arg[0]) in (str('date'), str('date_deadline')): + if (arg[1] == '='): + ok = r_date.strftime('%Y-%m-%d')==arg[2] + if (arg[1] == '>'): + ok = r_date.strftime('%Y-%m-%d')>arg[2] + if (arg[1] == '<'): + ok = r_date.strftime('%Y-%m-%d')='): + ok = r_date.strftime('%Y-%m-%d')>=arg[2] + if (arg[1] == '<='): + ok = r_date.strftime('%Y-%m-%d')<=arg[2] + pile.append(ok) + elif str(arg) == str('&') or str(arg) == str('|'): + pile.append(arg) + else: + pile.append(True) + pile.reverse() + new_pile = [] + for item in pile: + if not isinstance(item, basestring): + res = item + elif str(item) == str('&'): + first = new_pile.pop() + second = new_pile.pop() + res = first and second + elif str(item) == str('|'): + first = new_pile.pop() + second = new_pile.pop() + res = first or second + new_pile.append(res) + + if [True for item in new_pile if not item]: continue idval = real_id2base_calendar_id(data['id'], r_date.strftime("%Y-%m-%d %H:%M:%S")) result.append(idval) @@ -1353,18 +1344,17 @@ rule or repeating pattern of time to exclude from the recurring rule."), for arg in args: new_arg = arg - if arg[0] in ('date', unicode('date'), 'date_deadline', unicode('date_deadline')): + if arg[0] in ('date_deadline', unicode('date_deadline')): if context.get('virtual_id', True): - new_args += ['|','&',('recurrency','=',1),('recurrent_id_date', arg[1], arg[2])] + new_args += ['|','&',('recurrency','=',1),('end_date', arg[1], arg[2])] elif arg[0] == "id": new_id = get_real_ids(arg[2]) new_arg = (arg[0], arg[1], new_id) new_args.append(new_arg) - #offset, limit and count must be treated separately as we may need to deal with virtual ids res = super(calendar_event, self).search(cr, uid, new_args, offset=0, limit=0, order=order, context=context, count=False) if context.get('virtual_id', True): - res = self.get_recurrent_ids(cr, uid, res, new_args, limit, context=context) + res = self.get_recurrent_ids(cr, uid, res, args, limit, context=context) if count: return len(res) elif limit: @@ -1443,6 +1433,14 @@ rule or repeating pattern of time to exclude from the recurring rule."), vals['vtimezone'] = vals['vtimezone'][40:] res = super(calendar_event, self).write(cr, uid, ids, vals, context=context) + + # set end_date for calendar searching + if vals.get('recurrency', True) and vals.get('end_type', 'count') in ('count', unicode('count')) and \ + (vals.get('rrule_type') or vals.get('count') or vals.get('date') or vals.get('date_deadline')): + for data in self.read(cr, uid, ids, ['date', 'date_deadline', 'recurrency', 'rrule_type', 'count', 'end_type'], context=context): + end_date = self._set_recurrency_end_date(data, context=context) + super(calendar_event, self).write(cr, uid, [data['id']], {'end_date': end_date}, context=context) + if vals.get('partner_ids', False): self.create_attendees(cr, uid, ids, context) @@ -1561,6 +1559,21 @@ rule or repeating pattern of time to exclude from the recurring rule."), self.unlink_events(cr, uid, ids, context=context) return res + def _set_recurrency_end_date(self, data, context=None): + end_date = data.get('end_date') + if data.get('recurrency') and data.get('end_type') in ('count', unicode('count')): + data_date_deadline = datetime.strptime(data.get('date_deadline'), '%Y-%m-%d %H:%M:%S') + if data.get('rrule_type') in ('daily', unicode('count')): + rel_date = relativedelta(days=data.get('count')+1) + elif data.get('rrule_type') in ('weekly', unicode('weekly')): + rel_date = relativedelta(days=(data.get('count')+1)*7) + elif data.get('rrule_type') in ('monthly', unicode('monthly')): + rel_date = relativedelta(months=data.get('count')+1) + elif data.get('rrule_type') in ('yearly', unicode('yearly')): + rel_date = relativedelta(years=data.get('count')+1) + end_date = data_date_deadline + rel_date + return end_date + def create(self, cr, uid, vals, context=None): if context is None: context = {} @@ -1568,7 +1581,9 @@ rule or repeating pattern of time to exclude from the recurring rule."), if vals.get('vtimezone', '') and vals.get('vtimezone', '').startswith('/freeassociation.sourceforge.net/tzfile/'): vals['vtimezone'] = vals['vtimezone'][40:] + vals['end_date'] = self._set_recurrency_end_date(vals, context=context) res = super(calendar_event, self).create(cr, uid, vals, context) + alarm_obj = self.pool.get('res.alarm') alarm_obj.do_alarm_create(cr, uid, [res], self._name, 'date', context=context) self.create_attendees(cr, uid, [res], context) diff --git a/addons/base_calendar/base_calendar_view.xml b/addons/base_calendar/base_calendar_view.xml index 92ffad4be9a..3ef2c8f59ce 100644 --- a/addons/base_calendar/base_calendar_view.xml +++ b/addons/base_calendar/base_calendar_view.xml @@ -265,7 +265,7 @@ - +
diff --git a/addons/base_calendar/crm_meeting_view.xml b/addons/base_calendar/crm_meeting_view.xml index d9b659b91fa..2c3bb40c9c2 100644 --- a/addons/base_calendar/crm_meeting_view.xml +++ b/addons/base_calendar/crm_meeting_view.xml @@ -68,7 +68,7 @@ on_change="onchange_dates(date,False,date_deadline)"/> - + diff --git a/addons/base_calendar/i18n/af.po b/addons/base_calendar/i18n/af.po index aa7872e0d23..80f571641c4 100644 --- a/addons/base_calendar/i18n/af.po +++ b/addons/base_calendar/i18n/af.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Fout!" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Waarskuwing!" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -743,7 +743,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1202,7 +1202,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1455,7 +1455,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/ar.po b/addons/base_calendar/i18n/ar.po index 1474bc80b7a..a45757970d3 100644 --- a/addons/base_calendar/i18n/ar.po +++ b/addons/base_calendar/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "إلى" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "خطأ!" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "تحذير!" @@ -523,7 +523,7 @@ msgid "Event alarm information" msgstr "معلومات عن منبه الحدث" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -742,7 +742,7 @@ msgid "Declined" msgstr "مرفوض" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1205,7 +1205,7 @@ msgid "Select Weekdays" msgstr "اختر أيام الأسبوع" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1460,7 +1460,7 @@ msgid "Weekday" msgstr "يوم العمل" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "الفترة لا يمكن أن تكون بالسالب (-)" diff --git a/addons/base_calendar/i18n/bg.po b/addons/base_calendar/i18n/bg.po index 7ac39e90b15..7a1d306e79e 100644 --- a/addons/base_calendar/i18n/bg.po +++ b/addons/base_calendar/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Грешка!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Предупреждение!" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "Информация за аларма на събитие" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -743,7 +743,7 @@ msgid "Declined" msgstr "Отказано" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1205,7 +1205,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1458,7 +1458,7 @@ msgid "Weekday" msgstr "Ден от седмицата" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/bn.po b/addons/base_calendar/i18n/bn.po index d365e5cd3a6..227dc3e3d4c 100644 --- a/addons/base_calendar/i18n/bn.po +++ b/addons/base_calendar/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "ভুল" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/bs.po b/addons/base_calendar/i18n/bs.po index cd4b1f6ca19..c9bcde18dfe 100644 --- a/addons/base_calendar/i18n/bs.po +++ b/addons/base_calendar/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Country: BOSNIA AND HERZEGOVINA\n" "Language: hr\n" "X-Poedit-Language: Bosnian\n" @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -743,7 +743,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1202,7 +1202,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1455,7 +1455,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/ca.po b/addons/base_calendar/i18n/ca.po index b829f34e483..7ac89d0171c 100644 --- a/addons/base_calendar/i18n/ca.po +++ b/addons/base_calendar/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Error!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Avís!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Informació de l'avís de l'esdeveniment" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -746,7 +746,7 @@ msgid "Declined" msgstr "Rebutjat" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1213,7 +1213,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1472,7 +1472,7 @@ msgid "Weekday" msgstr "Dia de la setmana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/cs.po b/addons/base_calendar/i18n/cs.po index d40c0b4bb30..e4138f31d5d 100644 --- a/addons/base_calendar/i18n/cs.po +++ b/addons/base_calendar/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Adresát" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Chyba!" @@ -365,9 +365,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Varování!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Informace budíku události" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Počet nemůže být záporný nebo nulový." @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Odmítnuto" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Seskupení podle data není podporováno, použijte zobrazení kalendáře." @@ -1214,7 +1214,7 @@ msgid "Select Weekdays" msgstr "Vyberte dny v týdnu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1476,7 +1476,7 @@ msgid "Weekday" msgstr "Den v týdnu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Rozsah nemůže být záporný." diff --git a/addons/base_calendar/i18n/da.po b/addons/base_calendar/i18n/da.po index b3db05e9164..6e3b0a65ce6 100644 --- a/addons/base_calendar/i18n/da.po +++ b/addons/base_calendar/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Fejl!" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Advarsel!" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/de.po b/addons/base_calendar/i18n/de.po index 9a15df9d0eb..192a043bab0 100644 --- a/addons/base_calendar/i18n/de.po +++ b/addons/base_calendar/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Bis" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Fehler !" @@ -365,9 +365,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Warnung!" @@ -528,7 +528,7 @@ msgid "Event alarm information" msgstr "Termin Erinnerung" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Sie können nicht negativ oder 0 sein" @@ -747,7 +747,7 @@ msgid "Declined" msgstr "Abgesagt" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1224,7 +1224,7 @@ msgid "Select Weekdays" msgstr "Auswahl Wochentage" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1489,7 +1489,7 @@ msgid "Weekday" msgstr "Wochentag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Zeitraum kann nicht negativ sein" diff --git a/addons/base_calendar/i18n/el.po b/addons/base_calendar/i18n/el.po index 25bca497058..2b3d610504c 100644 --- a/addons/base_calendar/i18n/el.po +++ b/addons/base_calendar/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Λάθος!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Προειδοποίηση" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "Πληροφορίες Υπενθύμισης Γεγονότος" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -744,7 +744,7 @@ msgid "Declined" msgstr "Απορρίφθηκε" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1205,7 +1205,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1460,7 +1460,7 @@ msgid "Weekday" msgstr "Καθημερινή" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/es.po b/addons/base_calendar/i18n/es.po index 8e4f3352d2b..99d996c018d 100644 --- a/addons/base_calendar/i18n/es.po +++ b/addons/base_calendar/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "¡Error!" @@ -365,9 +365,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "¡Aviso!" @@ -528,7 +528,7 @@ msgid "Event alarm information" msgstr "Información del aviso del evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "La cuenta no puede ser negativa o cero" @@ -747,7 +747,7 @@ msgid "Declined" msgstr "Rechazada" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1224,7 +1224,7 @@ msgid "Select Weekdays" msgstr "Seleccione días de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1491,7 +1491,7 @@ msgid "Weekday" msgstr "Día de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "El intervalo no puede ser negativo" diff --git a/addons/base_calendar/i18n/es_CR.po b/addons/base_calendar/i18n/es_CR.po index 121b9b7652c..3364b1571ae 100644 --- a/addons/base_calendar/i18n/es_CR.po +++ b/addons/base_calendar/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: es\n" #. module: base_calendar @@ -251,7 +251,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "¡Error!" @@ -364,9 +364,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "¡Aviso!" @@ -527,7 +527,7 @@ msgid "Event alarm information" msgstr "Información del aviso del evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -746,7 +746,7 @@ msgid "Declined" msgstr "Rechazada" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1213,7 +1213,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1473,7 +1473,7 @@ msgid "Weekday" msgstr "Día de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/es_EC.po b/addons/base_calendar/i18n/es_EC.po index d1c66eca99f..28fd8e19c8d 100644 --- a/addons/base_calendar/i18n/es_EC.po +++ b/addons/base_calendar/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "¡Error!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "¡Advertencia!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -745,7 +745,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1204,7 +1204,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1457,7 +1457,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/es_MX.po b/addons/base_calendar/i18n/es_MX.po index 9a2fe449d37..55359e23334 100644 --- a/addons/base_calendar/i18n/es_MX.po +++ b/addons/base_calendar/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-25 05:20+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/es_PY.po b/addons/base_calendar/i18n/es_PY.po index 6c1f18d8277..a384824fba8 100644 --- a/addons/base_calendar/i18n/es_PY.po +++ b/addons/base_calendar/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "¡Error!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "¡Cuidado!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Información del aviso del evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Rechazada" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1212,7 +1212,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1472,7 +1472,7 @@ msgid "Weekday" msgstr "Día de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/et.po b/addons/base_calendar/i18n/et.po index 57bc8e5dd4f..288bc9f6071 100644 --- a/addons/base_calendar/i18n/et.po +++ b/addons/base_calendar/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Viga!" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/fa.po b/addons/base_calendar/i18n/fa.po index 75c914f4773..931aa963f4a 100644 --- a/addons/base_calendar/i18n/fa.po +++ b/addons/base_calendar/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/fi.po b/addons/base_calendar/i18n/fi.po index 74dd324cc89..04b44294c56 100644 --- a/addons/base_calendar/i18n/fi.po +++ b/addons/base_calendar/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Vastaanottaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Virhe!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Varoitus!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Tapahtuman hälytystiedot" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Hylätty" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1212,7 +1212,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1469,7 +1469,7 @@ msgid "Weekday" msgstr "Arkipäivä" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/fr.po b/addons/base_calendar/i18n/fr.po index 9196823dfd6..acd0f13badc 100644 --- a/addons/base_calendar/i18n/fr.po +++ b/addons/base_calendar/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -249,7 +249,7 @@ msgid "To" msgstr "À" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Erreur!" @@ -306,12 +306,12 @@ msgstr "Courriel à" #. module: base_calendar #: field:crm.meeting,name:0 msgid "Meeting Subject" -msgstr "" +msgstr "Titre de l'évènement" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "" +msgstr "Fin de la récurrence" #. module: base_calendar #: view:calendar.event:0 @@ -332,7 +332,7 @@ msgstr "Choisir le jour où répéter le rendez-vous" #: view:crm.meeting:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting msgid "Meetings" -msgstr "" +msgstr "Évènements" #. module: base_calendar #: field:calendar.event,recurrent_id_date:0 @@ -358,13 +358,15 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contient le résumé de la discussion (nombre de messages, ...). Ce résumé est " +"au format HTML pour permettre son utilisation dans la vue kanban." #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Avertissement!" @@ -523,7 +525,7 @@ msgid "Event alarm information" msgstr "Information sur l'alarme de l'évènement" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -538,7 +540,7 @@ msgstr "Date de création" #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting msgid "Meeting" -msgstr "" +msgstr "Réunion" #. module: base_calendar #: selection:calendar.event,rrule_type:0 @@ -591,7 +593,7 @@ msgstr "Jeu" #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "" +msgstr "Détails de l'évènement" #. module: base_calendar #: field:calendar.attendee,child_ids:0 @@ -742,7 +744,7 @@ msgid "Declined" msgstr "Refusé" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -847,7 +849,7 @@ msgstr "Nombre de répétitions" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "" +msgstr "Réunion interne" #. module: base_calendar #: view:calendar.event:0 @@ -925,7 +927,7 @@ msgstr "Date de l'événement" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "" +msgstr "Invitations" #. module: base_calendar #: view:calendar.event:0 @@ -1100,7 +1102,7 @@ msgstr "Défini l'action à exécuter lorsque l'alarme se déclenche" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "" +msgstr "Heure de début" #. module: base_calendar #: selection:calendar.event,end_type:0 @@ -1129,12 +1131,12 @@ msgstr "" #: field:calendar.todo,end_type:0 #: field:crm.meeting,end_type:0 msgid "Recurrence Termination" -msgstr "" +msgstr "Fin de la récurrence" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "" +msgstr "Jusqu'à" #. module: base_calendar #: view:res.alarm:0 @@ -1206,10 +1208,10 @@ msgstr "Responsable" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "" +msgstr "Sélectionner les jours de la semaine" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1466,7 +1468,7 @@ msgid "Weekday" msgstr "Jour de la semaine" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1566,7 +1568,7 @@ msgstr "Samedi" #: field:calendar.todo,interval:0 #: field:crm.meeting,interval:0 msgid "Repeat Every" -msgstr "" +msgstr "Répéter tous les" #. module: base_calendar #: selection:calendar.event,byday:0 diff --git a/addons/base_calendar/i18n/gl.po b/addons/base_calendar/i18n/gl.po index ed24ea35584..6109d803db8 100644 --- a/addons/base_calendar/i18n/gl.po +++ b/addons/base_calendar/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Erro!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Aviso!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Información do aviso do evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Rexeitado" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1212,7 +1212,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1472,7 +1472,7 @@ msgid "Weekday" msgstr "Día laborable" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/hr.po b/addons/base_calendar/i18n/hr.po index faaea757be8..0a0fcf7b9c8 100644 --- a/addons/base_calendar/i18n/hr.po +++ b/addons/base_calendar/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Do" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Greška!" @@ -365,9 +365,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Upozorenje!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Informacija alarma događaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Broj ne smije biti negativan ili 0." @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Odbijeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Grupiranje po datumu nije podržano. Koristite kalendar." @@ -1210,7 +1210,7 @@ msgid "Select Weekdays" msgstr "Odabir dana u tjednu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1474,7 +1474,7 @@ msgid "Weekday" msgstr "Dan u tjednu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Interval ne može biti negativan" diff --git a/addons/base_calendar/i18n/hu.po b/addons/base_calendar/i18n/hu.po index b54cfc10e89..86d7fac39d9 100644 --- a/addons/base_calendar/i18n/hu.po +++ b/addons/base_calendar/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -249,7 +249,7 @@ msgid "To" msgstr "Címzett" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Hiba!" @@ -364,9 +364,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Vigyázat!" @@ -527,7 +527,7 @@ msgid "Event alarm information" msgstr "Találkozó riasztási információ" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Számláló nem lehet nulla vagy negatív." @@ -746,7 +746,7 @@ msgid "Declined" msgstr "Elutasítva" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1223,7 +1223,7 @@ msgid "Select Weekdays" msgstr "Munkanapokat válasszon" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1490,7 +1490,7 @@ msgid "Weekday" msgstr "Hétköznap" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Intervallum nem lehet negatív." diff --git a/addons/base_calendar/i18n/id.po b/addons/base_calendar/i18n/id.po index c3db2331811..f3ada2f9dfa 100644 --- a/addons/base_calendar/i18n/id.po +++ b/addons/base_calendar/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -743,7 +743,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1202,7 +1202,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1455,7 +1455,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/it.po b/addons/base_calendar/i18n/it.po index aa379b0b063..13a3040de42 100644 --- a/addons/base_calendar/i18n/it.po +++ b/addons/base_calendar/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-15 15:25+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:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "A" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Errore!" @@ -365,9 +365,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Attenzione!" @@ -528,7 +528,7 @@ msgid "Event alarm information" msgstr "Informazioni avviso evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Il conteggio non può essere negativo o zero." @@ -748,7 +748,7 @@ msgid "Declined" msgstr "Rifiutato" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Raggruppo per data non supportato, usa la vista calendario." @@ -1224,7 +1224,7 @@ msgid "Select Weekdays" msgstr "Giorni selezionati" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1491,7 +1491,7 @@ msgid "Weekday" msgstr "Giorno della settimana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "L'intervallo non può essere negativo" diff --git a/addons/base_calendar/i18n/ja.po b/addons/base_calendar/i18n/ja.po index 6369f967175..fbc7fa807e2 100644 --- a/addons/base_calendar/i18n/ja.po +++ b/addons/base_calendar/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "終了" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "エラー" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "警告" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "イベントアラーム情報" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "拒否済" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "平日" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/ln.po b/addons/base_calendar/i18n/ln.po index dc7f0dad24f..51d99498280 100644 --- a/addons/base_calendar/i18n/ln.po +++ b/addons/base_calendar/i18n/ln.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/lt.po b/addons/base_calendar/i18n/lt.po index eb3db124633..d004e35c3eb 100644 --- a/addons/base_calendar/i18n/lt.po +++ b/addons/base_calendar/i18n/lt.po @@ -9,19 +9,19 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:21+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:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event starts" -msgstr "" +msgstr "Įvykio pradžia" #. module: base_calendar #: view:calendar.event:0 @@ -36,13 +36,15 @@ msgid "" "This property defines the list of date/time exceptions for a recurring " "calendar component." msgstr "" +"Šis nustatymas apibrėžia sąrašą datų/laikų išimčių pasikartojantiems " +"įvykiams kalendoriuje." #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Week(s)" -msgstr "" +msgstr "Savaitė (-ės)" #. module: base_calendar #: field:calendar.event,we:0 @@ -61,12 +63,12 @@ msgstr "" #: help:calendar.todo,recurrency:0 #: help:crm.meeting,recurrency:0 msgid "Recurrent Meeting" -msgstr "" +msgstr "Pasikartojantis susitikimas" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet5 msgid "Feedback Meeting" -msgstr "" +msgstr "Susitikimas dėl atsakymo" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view @@ -90,7 +92,7 @@ msgstr "Vaidmuo" #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Invitation details" -msgstr "" +msgstr "Pakvietimo informacija" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -143,7 +145,7 @@ msgstr "" #: view:crm.meeting:0 #: field:crm.meeting,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Neperžiūrėtos žinutės" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -157,7 +159,7 @@ msgstr "Penktadienis" #: field:calendar.todo,allday:0 #: field:crm.meeting,allday:0 msgid "All Day" -msgstr "Visa diena" +msgstr "Visą dieną" #. module: base_calendar #: field:calendar.event,vtimezone:0 @@ -177,7 +179,7 @@ msgstr "Laisva" #. module: base_calendar #: help:crm.meeting,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: base_calendar #: help:calendar.attendee,rsvp:0 @@ -217,7 +219,7 @@ msgstr "Trečias" #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event ends" -msgstr "" +msgstr "Įvykio pabaiga" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -229,12 +231,12 @@ msgstr "Paskutinis" #. module: base_calendar #: help:crm.meeting,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Žinučių ir pranešimų istorija" #. module: base_calendar #: field:crm.meeting,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Pranešimai" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 @@ -245,10 +247,10 @@ msgstr "Dienos" #. module: base_calendar #: view:calendar.event:0 msgid "To" -msgstr "" +msgstr "Iki" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Klaida!" @@ -256,12 +258,12 @@ msgstr "Klaida!" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Chair Person" -msgstr "" +msgstr "Pirmininkas" #. module: base_calendar #: view:crm.meeting:0 msgid "My Meetings" -msgstr "" +msgstr "Mano susitikimai" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -300,17 +302,17 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "Mail To" -msgstr "" +msgstr "Siųsti kam" #. module: base_calendar #: field:crm.meeting,name:0 msgid "Meeting Subject" -msgstr "" +msgstr "Susitikimo tema" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "" +msgstr "Pasikartojimo pabaiga" #. module: base_calendar #: view:calendar.event:0 @@ -320,7 +322,7 @@ msgstr "Grupuoti pagal..." #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency Option" -msgstr "" +msgstr "Pasikartojimo parinktys" #. module: base_calendar #: view:calendar.event:0 @@ -331,7 +333,7 @@ msgstr "" #: view:crm.meeting:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting msgid "Meetings" -msgstr "" +msgstr "Susitikimai" #. module: base_calendar #: field:calendar.event,recurrent_id_date:0 @@ -349,7 +351,7 @@ msgstr "" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Optional Participation" -msgstr "" +msgstr "Nebūtinas dalyvavimas" #. module: base_calendar #: help:crm.meeting,message_summary:0 @@ -357,13 +359,15 @@ 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: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Įspėjimas!" @@ -376,6 +380,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the " "event alarm information without removing it." msgstr "" +"Nebenaudojama įvykių priminimų informacija gali būti paslėpta, vietoj to, " +"kad būtų pašalinta." #. module: base_calendar #: field:calendar.alarm,repeat:0 @@ -402,7 +408,7 @@ msgstr "Organizatorius" #: field:calendar.todo,user_id:0 #: field:crm.meeting,user_id:0 msgid "Responsible" -msgstr "Atsakingas" +msgstr "Atsakingas asmuo" #. module: base_calendar #: view:calendar.event:0 @@ -461,7 +467,7 @@ msgstr "" #. module: base_calendar #: view:res.alarm:0 msgid "Reminder details" -msgstr "" +msgstr "Priminimo nustatymai" #. module: base_calendar #: field:calendar.attendee,parent_ids:0 @@ -473,12 +479,12 @@ msgstr "" #: selection:calendar.todo,select1:0 #: selection:crm.meeting,select1:0 msgid "Day of month" -msgstr "" +msgstr "Mėnesio diena" #. module: base_calendar #: field:crm.meeting,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Prenumeratoriai" #. module: base_calendar #: field:calendar.event,location:0 @@ -490,7 +496,7 @@ msgstr "Vieta" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Participation required" -msgstr "" +msgstr "Būtinas dalyvavimas" #. module: base_calendar #: view:calendar.event:0 @@ -522,7 +528,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -530,21 +536,21 @@ msgstr "" #. module: base_calendar #: field:crm.meeting,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "Sukūrimo data" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting msgid "Meeting" -msgstr "" +msgstr "Susitikimas" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Month(s)" -msgstr "" +msgstr "Mėnesis (-iai)" #. module: base_calendar #: view:calendar.event:0 @@ -590,7 +596,7 @@ msgstr "Ket." #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "" +msgstr "Susitikimo informacija" #. module: base_calendar #: field:calendar.attendee,child_ids:0 @@ -608,14 +614,14 @@ msgstr "" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Year(s)" -msgstr "" +msgstr "Metai" #. module: base_calendar #: view:crm.meeting.type:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting_type #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_type msgid "Meeting Types" -msgstr "" +msgstr "Susitikimo tipai" #. module: base_calendar #: field:calendar.event,create_date:0 @@ -628,7 +634,7 @@ msgstr "Sukurtas" #: selection:calendar.todo,class:0 #: selection:crm.meeting,class:0 msgid "Public for Employees" -msgstr "" +msgstr "Viešas darbuotojams" #. module: base_calendar #: view:crm.meeting:0 @@ -650,12 +656,12 @@ msgstr "Kalba" #: field:calendar.todo,end_date:0 #: field:crm.meeting,end_date:0 msgid "Repeat Until" -msgstr "" +msgstr "Kartoti iki" #. module: base_calendar #: view:crm.meeting:0 msgid "Options" -msgstr "" +msgstr "Pasirinkimai" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -694,7 +700,7 @@ msgstr "Antradienis" #. module: base_calendar #: field:crm.meeting,categ_ids:0 msgid "Tags" -msgstr "" +msgstr "Žymos" #. module: base_calendar #: view:calendar.event:0 @@ -711,7 +717,7 @@ msgstr "Asmeninis" #: help:calendar.todo,count:0 #: help:crm.meeting,count:0 msgid "Repeat x times" -msgstr "Kartoti x kartų" +msgstr "Kiek kartų kartoti" #. module: base_calendar #: field:calendar.alarm,user_id:0 @@ -723,12 +729,12 @@ msgstr "Savininkas" #: help:calendar.todo,rrule_type:0 #: help:crm.meeting,rrule_type:0 msgid "Let the event automatically repeat at that interval" -msgstr "" +msgstr "Nustatykite įvykiui intervalą, kada būtų automatiškai pakartojamas" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar msgid "Calendar" -msgstr "" +msgstr "Kalendorius" #. module: base_calendar #: field:calendar.attendee,cn:0 @@ -741,7 +747,7 @@ msgid "Declined" msgstr "Atsisakyta" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -770,7 +776,7 @@ msgstr "Privatus" #: field:calendar.todo,class:0 #: field:crm.meeting,class:0 msgid "Privacy" -msgstr "Privatumas" +msgstr "Slaptumas" #. module: base_calendar #: model:ir.model,name:base_calendar.model_res_alarm @@ -787,7 +793,7 @@ msgstr "Pen." #. module: base_calendar #: view:calendar.event:0 msgid "Invitation Detail" -msgstr "" +msgstr "Pakvietimo informacija" #. module: base_calendar #: field:calendar.attendee,member:0 @@ -806,7 +812,7 @@ msgstr "Įvykio vieta" #: field:calendar.todo,rrule:0 #: field:crm.meeting,rrule:0 msgid "Recurrent Rule" -msgstr "" +msgstr "Pasikartojimo taisyklė" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -821,12 +827,12 @@ msgstr "Priedas" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "" +msgstr "Uždaryta" #. module: base_calendar #: view:calendar.event:0 msgid "From" -msgstr "" +msgstr "Nuo" #. module: base_calendar #: view:calendar.event:0 @@ -841,12 +847,12 @@ msgstr "Priminimas" #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "Number of repetitions" -msgstr "" +msgstr "Pakartojimų skaičius" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "" +msgstr "Vidinis susitikimas" #. module: base_calendar #: view:calendar.event:0 @@ -863,17 +869,17 @@ msgstr "Įvykiai" #: field:calendar.todo,state:0 #: field:crm.meeting,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: base_calendar #: help:calendar.attendee,email:0 msgid "Email of Invited Person" -msgstr "" +msgstr "Pakviesto asmens el. paštas" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 msgid "Customer Meeting" -msgstr "" +msgstr "Susitikimas su pirkėju" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -899,12 +905,12 @@ msgstr "Pirmadienis" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet4 msgid "Open Discussion" -msgstr "" +msgstr "Atvira diskusija" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model msgid "Models" -msgstr "" +msgstr "Modeliai" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -918,12 +924,12 @@ msgstr "Birželis" #: field:calendar.attendee,event_date:0 #: view:calendar.event:0 msgid "Event Date" -msgstr "" +msgstr "Įvykio data" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "" +msgstr "Pakvietimai" #. module: base_calendar #: view:calendar.event:0 @@ -934,7 +940,7 @@ msgstr "" #. module: base_calendar #: field:crm.meeting,write_date:0 msgid "Write Date" -msgstr "" +msgstr "Įrašymo data" #. module: base_calendar #: field:calendar.attendee,delegated_from:0 @@ -944,7 +950,7 @@ msgstr "" #. module: base_calendar #: field:crm.meeting,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ar prenumeratorius" #. module: base_calendar #: field:calendar.attendee,user_id:0 @@ -996,7 +1002,7 @@ msgstr "Spalis" #: selection:calendar.todo,state:0 #: view:crm.meeting:0 msgid "Uncertain" -msgstr "" +msgstr "Neaiškus" #. module: base_calendar #: constraint:calendar.event:0 @@ -1009,7 +1015,7 @@ msgstr "" #: field:calendar.alarm,trigger_occurs:0 #: field:res.alarm,trigger_occurs:0 msgid "Triggers" -msgstr "" +msgstr "Įvykdymas" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1022,7 +1028,7 @@ msgstr "Sausis" #: field:calendar.alarm,trigger_related:0 #: field:res.alarm,trigger_related:0 msgid "Related to" -msgstr "Susijęs su" +msgstr "Susietas su" #. module: base_calendar #: field:calendar.alarm,trigger_interval:0 @@ -1080,7 +1086,7 @@ msgstr "" #. module: base_calendar #: help:calendar.attendee,role:0 msgid "Participation role for the calendar user" -msgstr "" +msgstr "Pakviesto asmens vaidmuo susitikime" #. module: base_calendar #: field:calendar.attendee,delegated_to:0 @@ -1095,14 +1101,14 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "" +msgstr "Pradžia" #. module: base_calendar #: selection:calendar.event,end_type:0 #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "End date" -msgstr "" +msgstr "Pabaigos data" #. module: base_calendar #: view:calendar.event:0 @@ -1116,28 +1122,30 @@ msgid "" "If the active field is set to true, it will allow you to hide the event " "alarm information without removing it." msgstr "" +"Nebenaudojama įvykių priminimų informacija gali būti paslėpta, vietoj to, " +"kad būtų pašalinta." #. module: base_calendar #: field:calendar.event,end_type:0 #: field:calendar.todo,end_type:0 #: field:crm.meeting,end_type:0 msgid "Recurrence Termination" -msgstr "" +msgstr "Pasikartojimo nutraukimas" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "" +msgstr "Iki" #. module: base_calendar #: view:res.alarm:0 msgid "Reminder Details" -msgstr "" +msgstr "Priminimo nustatymai" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet3 msgid "Off-site Meeting" -msgstr "" +msgstr "Komandiruotė" #. module: base_calendar #: view:crm.meeting:0 @@ -1154,12 +1162,12 @@ msgstr "Atlikta" #: help:calendar.todo,interval:0 #: help:crm.meeting,interval:0 msgid "Repeat every (Days/Week/Month/Year)" -msgstr "" +msgstr "Kartoti kas (Dieną/Savaitę/Mėnesį/Metus)" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "" +msgstr "Visą dieną?" #. module: base_calendar #: view:calendar.event:0 @@ -1180,6 +1188,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Paspauskite, kad suplanuotumėte susitikimą.\n" +"

\n" +" Kalendoriumi galima dalinti su darbuotojais. Taip pat jis pilnai " +"intergruojamas\n" +" su kitais moduliais kaip darbuotojų atostogų ar CRM moduliai.\n" +"

\n" +" " #. module: base_calendar #: help:calendar.alarm,description:0 @@ -1200,7 +1216,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1219,14 +1235,14 @@ msgstr "Kalendoriaus įvykis" #: field:calendar.todo,recurrency:0 #: field:crm.meeting,recurrency:0 msgid "Recurrent" -msgstr "" +msgstr "Pasikartojantis" #. module: base_calendar #: field:calendar.event,rrule_type:0 #: field:calendar.todo,rrule_type:0 #: field:crm.meeting,rrule_type:0 msgid "Recurrency" -msgstr "" +msgstr "Pasikartojimas" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -1240,7 +1256,7 @@ msgstr "Ketvirtadienis" #: field:calendar.todo,exrule:0 #: field:crm.meeting,exrule:0 msgid "Exception Rule" -msgstr "" +msgstr "Išimtinė taisyklė" #. module: base_calendar #: help:calendar.attendee,language:0 @@ -1261,6 +1277,8 @@ msgid "" "Defines a rule or repeating pattern of time to exclude from the recurring " "rule." msgstr "" +"Nustatoma taisyklė ar laiko pasikartojimo išraiška tam, kad nenaudoti " +"pasikartojimo taisyklėje." #. module: base_calendar #: field:calendar.event,month_list:0 @@ -1274,12 +1292,12 @@ msgstr "Mėnuo" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Day(s)" -msgstr "" +msgstr "Diena (-os)" #. module: base_calendar #: view:calendar.event:0 msgid "Confirmed Events" -msgstr "" +msgstr "Patvirtinti įvykiai" #. module: base_calendar #: field:calendar.attendee,dir:0 @@ -1323,7 +1341,7 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "Search Meetings" -msgstr "" +msgstr "Susitikimų paieška" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_attachment @@ -1333,7 +1351,7 @@ msgstr "" #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" -msgstr "" +msgstr "Susitikimo tipai" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -1359,11 +1377,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad įvestumėte naują perspėjimo tipą.\n" +"

\n" +" Jūs galite įvesti papildomus įvykių perspėjimo tipus, kurie " +"gali būti\n" +" priskirti prie kalendoriaus įvykių ar susitikimų.\n" +"

\n" +" " #. module: base_calendar #: selection:crm.meeting,state:0 msgid "Unconfirmed" -msgstr "" +msgstr "Nepatvirtintas" #. module: base_calendar #: help:calendar.attendee,sent_by:0 @@ -1401,7 +1427,7 @@ msgstr "Pavadinimas" #: field:calendar.todo,exdate:0 #: field:crm.meeting,exdate:0 msgid "Exception Date/Times" -msgstr "" +msgstr "Išimtinė (-is) data/laikas" #. module: base_calendar #: help:calendar.alarm,name:0 @@ -1413,7 +1439,7 @@ msgstr "" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message msgid "Message" -msgstr "" +msgstr "Pranešimas" #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 @@ -1443,7 +1469,7 @@ msgstr "" #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency period" -msgstr "" +msgstr "Pasikartojimo periodas" #. module: base_calendar #: field:calendar.event,week_list:0 @@ -1453,7 +1479,7 @@ msgid "Weekday" msgstr "Savaitės diena" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1491,7 +1517,7 @@ msgstr "ID" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "For information Purpose" -msgstr "" +msgstr "Informacinio pobūdžio" #. module: base_calendar #: field:calendar.event,select1:0 @@ -1532,7 +1558,7 @@ msgstr "Seka" #: help:calendar.todo,alarm_id:0 #: help:crm.meeting,alarm_id:0 msgid "Set an alarm at this time, before the event occurs" -msgstr "" +msgstr "Nustatykite priminimą šiuo laikui, prieš įvykstant įvykiui" #. module: base_calendar #: view:calendar.event:0 @@ -1552,7 +1578,7 @@ msgstr "Šeštadienis" #: field:calendar.todo,interval:0 #: field:crm.meeting,interval:0 msgid "Repeat Every" -msgstr "" +msgstr "Kartoti kas" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -1576,12 +1602,12 @@ msgstr "Laisvas/Užimtas" #: field:res.alarm,duration:0 #: field:res.alarm,trigger_duration:0 msgid "Duration" -msgstr "Trukmė" +msgstr "Laikotarpis" #. module: base_calendar #: field:calendar.alarm,trigger_date:0 msgid "Trigger Date" -msgstr "Įvykio data" +msgstr "Iššaukimo data" #. module: base_calendar #: help:calendar.alarm,attach:0 @@ -1659,9 +1685,6 @@ msgstr "Penktas" #~ msgid "Mark as" #~ msgstr "Pažymėti kaip" -#~ msgid "_Save" -#~ msgstr "Iš_saugoti" - #~ msgid "My Role" #~ msgstr "Mano vaidmuo" @@ -1715,3 +1738,6 @@ msgstr "Penktas" #~ msgid "Invite" #~ msgstr "Pakviesti" + +#~ msgid "_Save" +#~ msgstr "Į_rašyti" diff --git a/addons/base_calendar/i18n/lv.po b/addons/base_calendar/i18n/lv.po index 8d75aecaafe..dc10e21530e 100644 --- a/addons/base_calendar/i18n/lv.po +++ b/addons/base_calendar/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Kļūda!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Uzmanību!" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -743,7 +743,7 @@ msgid "Declined" msgstr "Noraidīts" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1202,7 +1202,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1457,7 +1457,7 @@ msgid "Weekday" msgstr "Nedēļas diena" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/mk.po b/addons/base_calendar/i18n/mk.po index 8a4c535cc76..8d77ac49102 100644 --- a/addons/base_calendar/i18n/mk.po +++ b/addons/base_calendar/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -36,6 +36,8 @@ msgid "" "This property defines the list of date/time exceptions for a recurring " "calendar component." msgstr "" +"Ова својство ја дефинира листата на исклучоците датум/време за компонентата " +"рекурсивен календар." #. module: base_calendar #: selection:calendar.event,rrule_type:0 @@ -61,7 +63,7 @@ msgstr "Непознато" #: help:calendar.todo,recurrency:0 #: help:crm.meeting,recurrency:0 msgid "Recurrent Meeting" -msgstr "" +msgstr "Состанок кој се повторува" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet5 @@ -112,7 +114,7 @@ msgstr "Корисници" #: field:crm.meeting,day:0 #: selection:crm.meeting,select1:0 msgid "Date of month" -msgstr "" +msgstr "Датум од месецот" #. module: base_calendar #: selection:calendar.event,class:0 @@ -192,7 +194,7 @@ msgstr "Основен аларм" #. module: base_calendar #: help:calendar.attendee,delegated_to:0 msgid "The users that the original request was delegated to" -msgstr "" +msgstr "Корисници на кои е делегирано оригиналното барање" #. module: base_calendar #: field:calendar.attendee,ref:0 @@ -248,7 +250,7 @@ msgid "To" msgstr "До" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Грешка!" @@ -256,7 +258,7 @@ msgstr "Грешка!" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Chair Person" -msgstr "" +msgstr "Претседател" #. module: base_calendar #: view:crm.meeting:0 @@ -273,7 +275,7 @@ msgstr "Процедура" #: field:calendar.todo,recurrent_id:0 #: field:crm.meeting,recurrent_id:0 msgid "Recurrent ID" -msgstr "" +msgstr "Повторувачка ID" #. module: base_calendar #: selection:calendar.event,state:0 @@ -310,7 +312,7 @@ msgstr "Тема на состанокот" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "" +msgstr "Крај на повторливоста" #. module: base_calendar #: view:calendar.event:0 @@ -325,7 +327,7 @@ msgstr "Опција за повторување" #. module: base_calendar #: view:calendar.event:0 msgid "Choose day where repeat the meeting" -msgstr "" +msgstr "Изберете ден кога ќе се повтори состанокот" #. module: base_calendar #: view:crm.meeting:0 @@ -349,7 +351,7 @@ msgstr "Датум на завршување" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Optional Participation" -msgstr "" +msgstr "Опционо учество" #. module: base_calendar #: help:crm.meeting,message_summary:0 @@ -363,9 +365,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Внимание!" @@ -378,6 +380,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the " "event alarm information without removing it." msgstr "" +"Доколку активното поле е означено, ќе можете да ја сокриете информацијата за " +"аларм за настанот без да ја отстраните." #. module: base_calendar #: field:calendar.alarm,repeat:0 @@ -446,7 +450,7 @@ msgstr "Потврди" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_todo msgid "Calendar Task" -msgstr "" +msgstr "Календарска задача" #. module: base_calendar #: field:calendar.event,su:0 @@ -468,7 +472,7 @@ msgstr "Детали за потсетникот" #. module: base_calendar #: field:calendar.attendee,parent_ids:0 msgid "Delegrated From" -msgstr "" +msgstr "Делегирано од" #. module: base_calendar #: selection:calendar.event,select1:0 @@ -521,10 +525,10 @@ msgstr "Изврши" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_alarm msgid "Event alarm information" -msgstr "" +msgstr "Информација за аларм за настан" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Бројот не може да биде негативен или 0." @@ -556,7 +560,7 @@ msgstr "Видливост" #. module: base_calendar #: field:calendar.attendee,rsvp:0 msgid "Required Reply?" -msgstr "" +msgstr "Дали е потребен е одговор?" #. module: base_calendar #: field:calendar.event,base_calendar_url:0 @@ -725,7 +729,7 @@ msgstr "Сопственик" #: help:calendar.todo,rrule_type:0 #: help:crm.meeting,rrule_type:0 msgid "Let the event automatically repeat at that interval" -msgstr "" +msgstr "Дозволете настанот автоматски да се повторува во овој интервал" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar @@ -743,10 +747,11 @@ msgid "Declined" msgstr "Одбиено" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" +"Групирање по датум не е поддржано, наместо тоа употребете календарски приказ." #. module: base_calendar #: view:calendar.event:0 @@ -870,7 +875,7 @@ msgstr "Статус" #. module: base_calendar #: help:calendar.attendee,email:0 msgid "Email of Invited Person" -msgstr "" +msgstr "Е-пошта на поканета личност" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 @@ -931,12 +936,12 @@ msgstr "Покани" #: view:calendar.event:0 #: view:crm.meeting:0 msgid "The" -msgstr "" +msgstr "The" #. module: base_calendar #: field:crm.meeting,write_date:0 msgid "Write Date" -msgstr "" +msgstr "Напиши датум" #. module: base_calendar #: field:calendar.attendee,delegated_from:0 @@ -975,7 +980,7 @@ msgstr "Ноември" #. module: base_calendar #: help:calendar.attendee,member:0 msgid "Indicate the groups that the attendee belongs to" -msgstr "" +msgstr "Ги покажува групите на кои припаѓа учесникот" #. module: base_calendar #: field:calendar.event,mo:0 @@ -998,7 +1003,7 @@ msgstr "Октомври" #: selection:calendar.todo,state:0 #: view:crm.meeting:0 msgid "Uncertain" -msgstr "" +msgstr "Неизвесно" #. module: base_calendar #: constraint:calendar.event:0 @@ -1059,7 +1064,7 @@ msgstr "Активно" #: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." -msgstr "" +msgstr "Не може да дуплирате календарски учесник." #. module: base_calendar #: view:calendar.event:0 @@ -1078,6 +1083,8 @@ msgid "" "Duration' and 'Repeat' are both optional, but if one occurs, so MUST the " "other" msgstr "" +"'Времетраење' и 'Повотри' се опциони, но доколку се појави едното, мора и " +"другото" #. module: base_calendar #: help:calendar.attendee,role:0 @@ -1093,6 +1100,7 @@ msgstr "Делегирано на" #: help:calendar.alarm,action:0 msgid "Defines the action to be invoked when an alarm is triggered" msgstr "" +"Ја дефинира акцијата која треба да биде повикана кога е активиран алармот" #. module: base_calendar #: view:crm.meeting:0 @@ -1118,6 +1126,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the event " "alarm information without removing it." msgstr "" +"Доколку активното поле е означено, ќе можете да ја сокриете информацијата за " +"аларм за настанот без да ја отстраните." #. module: base_calendar #: field:calendar.event,end_type:0 @@ -1197,6 +1207,8 @@ msgid "" "calendar component, than that provided by the " "\"SUMMARY\" property" msgstr "" +"Дава покомплетен опис на календарската " +"компонента, од онаа дадена во \"РЕЗИМЕ\"" #. module: base_calendar #: view:calendar.event:0 @@ -1209,7 +1221,7 @@ msgid "Select Weekdays" msgstr "Избери работни денови" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1293,7 +1305,7 @@ msgstr "Потврдени настани" #. module: base_calendar #: field:calendar.attendee,dir:0 msgid "URI Reference" -msgstr "" +msgstr "URI Референца" #. module: base_calendar #: field:calendar.alarm,description:0 @@ -1379,12 +1391,12 @@ msgstr "" #. module: base_calendar #: selection:crm.meeting,state:0 msgid "Unconfirmed" -msgstr "Нопотврдено" +msgstr "Непотврдено" #. module: base_calendar #: help:calendar.attendee,sent_by:0 msgid "Specify the user that is acting on behalf of the calendar user" -msgstr "" +msgstr "Означува корисник кој делува во име на календарски корисник" #. module: base_calendar #: view:calendar.event:0 @@ -1417,7 +1429,7 @@ msgstr "Име" #: field:calendar.todo,exdate:0 #: field:crm.meeting,exdate:0 msgid "Exception Date/Times" -msgstr "" +msgstr "Датум/Времиња на исклучок" #. module: base_calendar #: help:calendar.alarm,name:0 @@ -1425,6 +1437,8 @@ msgid "" "Contains the text to be used as the message subject for " "email or contains the text to be used for display" msgstr "" +"Содржи текст кој треба да биде употребен како тема на " +"пораката за email содржи текст за прикажување" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message @@ -1441,7 +1455,7 @@ msgstr "Аларм" #. module: base_calendar #: field:calendar.attendee,sent_by_uid:0 msgid "Sent By User" -msgstr "" +msgstr "Испратено од корисник" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1466,10 +1480,10 @@ msgstr "Период на повторување" #: field:calendar.todo,week_list:0 #: field:crm.meeting,week_list:0 msgid "Weekday" -msgstr "" +msgstr "Ден од недела" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Интервалот не може да биде негативен" @@ -1524,7 +1538,7 @@ msgstr "Информации за учесник" #. module: base_calendar #: field:calendar.alarm,res_id:0 msgid "Resource ID" -msgstr "" +msgstr "ID на ресурс" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -1548,7 +1562,7 @@ msgstr "Секвенца" #: help:calendar.todo,alarm_id:0 #: help:crm.meeting,alarm_id:0 msgid "Set an alarm at this time, before the event occurs" -msgstr "" +msgstr "Подесува аларм во ова време, пред да се појави настанот" #. module: base_calendar #: view:calendar.event:0 @@ -1597,7 +1611,7 @@ msgstr "Времетраење" #. module: base_calendar #: field:calendar.alarm,trigger_date:0 msgid "Trigger Date" -msgstr "" +msgstr "Датум на активирање" #. module: base_calendar #: help:calendar.alarm,attach:0 diff --git a/addons/base_calendar/i18n/mn.po b/addons/base_calendar/i18n/mn.po index 18740a2b427..a6e8de3c6d1 100644 --- a/addons/base_calendar/i18n/mn.po +++ b/addons/base_calendar/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -251,7 +251,7 @@ msgid "To" msgstr "Хэнд" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Алдаа!" @@ -366,9 +366,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Сануулга!" @@ -529,7 +529,7 @@ msgid "Event alarm information" msgstr "Үйл явдлын мэдээлэл" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "тооллого 0" @@ -748,7 +748,7 @@ msgid "Declined" msgstr "Буурсан" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1222,7 +1222,7 @@ msgid "Select Weekdays" msgstr "Гарагуудыг сонгох" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1484,7 +1484,7 @@ msgid "Weekday" msgstr "Ажлын өдөр" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Интервал нь сөрөг байж болохгүй" diff --git a/addons/base_calendar/i18n/nb.po b/addons/base_calendar/i18n/nb.po index 942c89bd975..040913f62a3 100644 --- a/addons/base_calendar/i18n/nb.po +++ b/addons/base_calendar/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Til." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Feil!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Advarsel!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Arrangement alarm informasjon." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Teller kan ikke være negativ eller 0." @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Avslått." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Gruppe etter dato støttes ikke, bruk kalenderens visning i stedet." @@ -1204,7 +1204,7 @@ msgid "Select Weekdays" msgstr "Velg Hverdager." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1459,7 +1459,7 @@ msgid "Weekday" msgstr "Hverdag." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Intervall kan ikke være negativ." diff --git a/addons/base_calendar/i18n/nl.po b/addons/base_calendar/i18n/nl.po index 92d515880d9..d06d2189b82 100644 --- a/addons/base_calendar/i18n/nl.po +++ b/addons/base_calendar/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-12 20:35+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:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -51,7 +51,7 @@ msgstr "We(e)k(en)" #: field:calendar.todo,we:0 #: field:crm.meeting,we:0 msgid "Wed" -msgstr "woe" +msgstr "Woe" #. module: base_calendar #: selection:calendar.attendee,cutype:0 @@ -81,7 +81,7 @@ msgstr "Herinneringen" #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Sunday" -msgstr "zondag" +msgstr "Zondag" #. module: base_calendar #: field:calendar.attendee,role:0 @@ -134,7 +134,7 @@ msgstr "Uren" #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "March" -msgstr "maart" +msgstr "Maart" #. module: base_calendar #: help:calendar.attendee,cutype:0 @@ -152,7 +152,7 @@ msgstr "Ongelezen berichten" #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Friday" -msgstr "vrijdag" +msgstr "Vrijdag" #. module: base_calendar #: field:calendar.event,allday:0 @@ -206,7 +206,7 @@ msgstr "Referentie" #: field:calendar.todo,tu:0 #: field:crm.meeting,tu:0 msgid "Tue" -msgstr "din" +msgstr "Din" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Aan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Fout!" @@ -366,9 +366,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Waarschuwing!" @@ -401,7 +401,7 @@ msgstr "Herhaal" #: field:crm.meeting,organizer:0 #: field:crm.meeting,organizer_id:0 msgid "Organizer" -msgstr "Organisator" +msgstr "Agenda" #. module: base_calendar #: view:calendar.event:0 @@ -458,7 +458,7 @@ msgstr "Kalender-taak" #: field:calendar.todo,su:0 #: field:crm.meeting,su:0 msgid "Sun" -msgstr "zon" +msgstr "Zon" #. module: base_calendar #: field:calendar.attendee,cutype:0 @@ -529,7 +529,7 @@ msgid "Event alarm information" msgstr "Alarminformatie gebeurtenis" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "telling mag niet negatief of nul zijn." @@ -592,12 +592,12 @@ msgstr "Geaccepteerd" #: field:calendar.todo,th:0 #: field:crm.meeting,th:0 msgid "Thu" -msgstr "don" +msgstr "Don" #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "Afspraak tdetails" +msgstr "Afspraak details" #. module: base_calendar #: field:calendar.attendee,child_ids:0 @@ -748,7 +748,7 @@ msgid "Declined" msgstr "Geweigerd" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1221,10 +1221,10 @@ msgstr "Verantwoordelijke gebruiker" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "Selecteer dagen van de qweek" +msgstr "Selecteer dagen van de week" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1475,7 +1475,7 @@ msgstr "April" #: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" -msgstr "E-mail adressen neit gevonden" +msgstr "E-mail adressen niet gevonden" #. module: base_calendar #: view:calendar.event:0 @@ -1490,7 +1490,7 @@ msgid "Weekday" msgstr "Weekdag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Interval mag niet negatief zijn." diff --git a/addons/base_calendar/i18n/pl.po b/addons/base_calendar/i18n/pl.po index bd353595ad3..569c4cd5dd3 100644 --- a/addons/base_calendar/i18n/pl.po +++ b/addons/base_calendar/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Do" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Błąd!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Uwaga!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Informacja alarmu zdarzenia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Licznik nie może być 0" @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Odrzucono" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Grupowanie po dacie nie jest dostępne. Stosuj widok kalendarzowy." @@ -1216,7 +1216,7 @@ msgid "Select Weekdays" msgstr "Wybierz dni tygodnia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1479,7 +1479,7 @@ msgid "Weekday" msgstr "Dzień tygodnia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Interwał nie może być ujemny." diff --git a/addons/base_calendar/i18n/pt.po b/addons/base_calendar/i18n/pt.po index 1745e13bfeb..d725f630883 100644 --- a/addons/base_calendar/i18n/pt.po +++ b/addons/base_calendar/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Erro!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Atenção!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Informações do alarme do evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Negado" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1209,10 +1209,10 @@ msgstr "Utilizador responsável" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "" +msgstr "Escolha dias da semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1471,7 +1471,7 @@ msgid "Weekday" msgstr "Dia de semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/pt_BR.po b/addons/base_calendar/i18n/pt_BR.po index 3b92e352a81..ff79f49dc0a 100644 --- a/addons/base_calendar/i18n/pt_BR.po +++ b/addons/base_calendar/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -251,7 +251,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Erro!" @@ -367,9 +367,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Aviso!" @@ -530,7 +530,7 @@ msgid "Event alarm information" msgstr "Informações do Alarme de Evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Contador não pode ser negativo ou 0." @@ -749,7 +749,7 @@ msgid "Declined" msgstr "Recusado" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1227,7 +1227,7 @@ msgid "Select Weekdays" msgstr "Selecione dias da semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1495,7 +1495,7 @@ msgid "Weekday" msgstr "Dia da semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "O intervalo não pode ser negativo" diff --git a/addons/base_calendar/i18n/ro.po b/addons/base_calendar/i18n/ro.po index 2efd7dcfa18..8e845419dc7 100644 --- a/addons/base_calendar/i18n/ro.po +++ b/addons/base_calendar/i18n/ro.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-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event starts" -msgstr "Incepe evenimentul" +msgstr "Începe evenimentul" #. module: base_calendar #: view:calendar.event:0 @@ -36,15 +36,15 @@ msgid "" "This property defines the list of date/time exceptions for a recurring " "calendar component." msgstr "" -"Aceasta proprietate defineste lista exceptiilor datii/timpului pentru o " -"componenta recurenta a calendarului." +"Această proprietate definește lista excepțiilor datei/timpului pentru o " +"componenta recurentă a calendarului." #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Week(s)" -msgstr "Saptamani" +msgstr "Săptămâni" #. module: base_calendar #: field:calendar.event,we:0 @@ -56,19 +56,19 @@ msgstr "Miercuri" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Unknown" -msgstr "Necunoscut(a)" +msgstr "Necunoscut(ă)" #. module: base_calendar #: help:calendar.event,recurrency:0 #: help:calendar.todo,recurrency:0 #: help:crm.meeting,recurrency:0 msgid "Recurrent Meeting" -msgstr "Intalnire recurenta" +msgstr "Întalnire recurentă" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet5 msgid "Feedback Meeting" -msgstr "Feedback Intalnire" +msgstr "Feedback întalnire" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view @@ -81,7 +81,7 @@ msgstr "Alarme" #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Sunday" -msgstr "Duminica" +msgstr "Duminică" #. module: base_calendar #: field:calendar.attendee,role:0 @@ -92,7 +92,7 @@ msgstr "Rol" #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Invitation details" -msgstr "Detalii invitatie" +msgstr "Detalii invitație" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -114,7 +114,7 @@ msgstr "Utilizatori" #: field:crm.meeting,day:0 #: selection:crm.meeting,select1:0 msgid "Date of month" -msgstr "Data din luna" +msgstr "Dată din lună" #. module: base_calendar #: selection:calendar.event,class:0 @@ -139,13 +139,13 @@ msgstr "Martie" #. module: base_calendar #: help:calendar.attendee,cutype:0 msgid "Specify the type of Invitation" -msgstr "Specifica tipul Invitatiei" +msgstr "Specifică tipul invitației" #. module: base_calendar #: view:crm.meeting:0 #: field:crm.meeting,message_unread:0 msgid "Unread Messages" -msgstr "Mesaje Necitite" +msgstr "Mesaje necitite" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -159,7 +159,7 @@ msgstr "Vineri" #: field:calendar.todo,allday:0 #: field:crm.meeting,allday:0 msgid "All Day" -msgstr "Toata ziua" +msgstr "Toată ziua" #. module: base_calendar #: field:calendar.event,vtimezone:0 @@ -174,17 +174,17 @@ msgstr "Fus orar" #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 msgid "Free" -msgstr "Gratuit" +msgstr "Liber" #. module: base_calendar #: help:crm.meeting,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: base_calendar #: help:calendar.attendee,rsvp:0 msgid "Indicats whether the favor of a reply is requested" -msgstr "Indica daca este obligatoriu un raspuns" +msgstr "Indică dacă este obligatoriu un raspuns" #. module: base_calendar #: field:calendar.alarm,alarm_id:0 @@ -194,7 +194,7 @@ msgstr "Alarma de baza" #. module: base_calendar #: help:calendar.attendee,delegated_to:0 msgid "The users that the original request was delegated to" -msgstr "Utilizatorii carora le-a fost delegata cererea originala" +msgstr "Utilizatorii cărora le-a fost delegată cererea originală" #. module: base_calendar #: field:calendar.attendee,ref:0 @@ -206,7 +206,7 @@ msgstr "Ref eveniment" #: field:calendar.todo,tu:0 #: field:crm.meeting,tu:0 msgid "Tue" -msgstr "Marti" +msgstr "Marți" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -219,7 +219,7 @@ msgstr "Al treilea (a treia)" #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event ends" -msgstr "Evenimentul se incheie" +msgstr "Evenimentul se încheie" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -231,7 +231,7 @@ msgstr "Ultimul/a" #. module: base_calendar #: help:crm.meeting,message_ids:0 msgid "Messages and communication history" -msgstr "Istoric mesaje si conversatii" +msgstr "Istoric mesaje și conversații" #. module: base_calendar #: field:crm.meeting,message_ids:0 @@ -247,10 +247,10 @@ msgstr "Zile" #. module: base_calendar #: view:calendar.event:0 msgid "To" -msgstr "Catre" +msgstr "Către" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Eroare!" @@ -258,12 +258,12 @@ msgstr "Eroare!" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Chair Person" -msgstr "Presedinte" +msgstr "Președinte" #. module: base_calendar #: view:crm.meeting:0 msgid "My Meetings" -msgstr "Intalnirile mele" +msgstr "Întâlnirile mele" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -281,7 +281,7 @@ msgstr "ID recurent" #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 msgid "Cancelled" -msgstr "Anulat(a)" +msgstr "Anulat(ă)" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 @@ -292,7 +292,7 @@ msgstr "Minute" #. module: base_calendar #: selection:calendar.alarm,action:0 msgid "Display" -msgstr "Afiseaza" +msgstr "Afișează" #. module: base_calendar #: help:calendar.attendee,state:0 @@ -302,38 +302,38 @@ msgstr "Statusul participarii participantului" #. module: base_calendar #: view:crm.meeting:0 msgid "Mail To" -msgstr "E-mail catre" +msgstr "E-mail către" #. module: base_calendar #: field:crm.meeting,name:0 msgid "Meeting Subject" -msgstr "Subiectul Intalnirii" +msgstr "Subiectul întâlnirii" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "Sfarsitul Recurentei" +msgstr "Sfârșitul Recurenței" #. module: base_calendar #: view:calendar.event:0 msgid "Group By..." -msgstr "Grupeaza dupa..." +msgstr "Grupează după..." #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency Option" -msgstr "Optiune Recurenta" +msgstr "Opțiune Recurență" #. module: base_calendar #: view:calendar.event:0 msgid "Choose day where repeat the meeting" -msgstr "Alegeti ziua in care sa repetati intalnirea" +msgstr "Alegeți ziua în care să repetați întâlnirea" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting msgid "Meetings" -msgstr "Intalniri" +msgstr "Întâlniri" #. module: base_calendar #: field:calendar.event,recurrent_id_date:0 @@ -346,12 +346,12 @@ msgstr "Data ID-ului recurent" #: field:calendar.alarm,event_end_date:0 #: field:calendar.attendee,event_end_date:0 msgid "Event End Date" -msgstr "Data de sfarsit a evenimentului" +msgstr "Data de sfârșit a evenimentului" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Optional Participation" -msgstr "Participare Optionala" +msgstr "Participare Opțională" #. module: base_calendar #: help:crm.meeting,message_summary:0 @@ -359,15 +359,15 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" -"Contine rezumatul Chatter (numar de mesaje, ...). Acest rezumat este direct " -"in format HTML, icu scopul de a se introduce in vizualizari kanban." +"Conține rezumatul Chatter (număr de mesaje, ...). Acest rezumat este direct " +"în format HTML, cu scopul de a se introduce în vizualizări kanban." #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Avertizare!" @@ -380,8 +380,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the " "event alarm information without removing it." msgstr "" -"Daca campul activ este setat pe adevarat, va va permite sa ascundeti " -"informatia despre alarma evenimentului fara a o sterge." +"Dacă câmpul activ este setat pe adevărat, vă va permite să ascundeți " +"informația despre alarma evenimentului fără a o șterge." #. module: base_calendar #: field:calendar.alarm,repeat:0 @@ -390,7 +390,7 @@ msgstr "" #: field:crm.meeting,count:0 #: field:res.alarm,repeat:0 msgid "Repeat" -msgstr "Repeta" +msgstr "Repetă" #. module: base_calendar #: field:calendar.event,organizer:0 @@ -420,7 +420,7 @@ msgstr "Eveniment" #: selection:calendar.alarm,trigger_occurs:0 #: selection:res.alarm,trigger_occurs:0 msgid "Before" -msgstr "Inainte" +msgstr "Înainte" #. module: base_calendar #: view:calendar.event:0 @@ -429,7 +429,7 @@ msgstr "Inainte" #: field:crm.meeting,date_open:0 #: selection:crm.meeting,state:0 msgid "Confirmed" -msgstr "Confirmat(a)" +msgstr "Confirmat(ă)" #. module: base_calendar #: field:calendar.alarm,attendee_ids:0 @@ -440,29 +440,29 @@ msgstr "Confirmat(a)" #: field:crm.meeting,attendee_ids:0 #: field:crm.meeting,partner_ids:0 msgid "Attendees" -msgstr "Participanti" +msgstr "Participanți" #. module: base_calendar #: view:calendar.event:0 msgid "Confirm" -msgstr "Confirma" +msgstr "Confirmă" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_todo msgid "Calendar Task" -msgstr "Sarcina Calendar" +msgstr "Sarcină Calendar" #. module: base_calendar #: field:calendar.event,su:0 #: field:calendar.todo,su:0 #: field:crm.meeting,su:0 msgid "Sun" -msgstr "Duminica" +msgstr "Duminică" #. module: base_calendar #: field:calendar.attendee,cutype:0 msgid "Invite Type" -msgstr "Tip invitatie" +msgstr "Tip invitație" #. module: base_calendar #: view:res.alarm:0 @@ -491,12 +491,12 @@ msgstr "Persoane interesate" #: field:calendar.todo,location:0 #: field:crm.meeting,location:0 msgid "Location" -msgstr "Locatie" +msgstr "Locație" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Participation required" -msgstr "Este necesara participarea" +msgstr "Este necesară participarea" #. module: base_calendar #: view:calendar.event:0 @@ -504,7 +504,7 @@ msgstr "Este necesara participarea" #: field:calendar.todo,show_as:0 #: field:crm.meeting,show_as:0 msgid "Show Time as" -msgstr "Afiseaza timpul ca" +msgstr "Afișează timpul ca" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -520,37 +520,37 @@ msgstr "Camera" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Run" -msgstr "Executa" +msgstr "Execută" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_alarm msgid "Event alarm information" -msgstr "Informatii alarma eveniment" +msgstr "Informații alarmă eveniment" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." -msgstr "Valoarea nu poate fi negativa sau 0." +msgstr "Valoarea nu poate fi negativă sau 0." #. module: base_calendar #: field:crm.meeting,create_date:0 msgid "Creation Date" -msgstr "Data Crearii" +msgstr "Data creării" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting msgid "Meeting" -msgstr "Intalnire" +msgstr "Întâlnire" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Month(s)" -msgstr "Luna (luni)" +msgstr "Lună (luni)" #. module: base_calendar #: view:calendar.event:0 @@ -560,7 +560,7 @@ msgstr "Vizibilitate" #. module: base_calendar #: field:calendar.attendee,rsvp:0 msgid "Required Reply?" -msgstr "Necesita raspuns?" +msgstr "Necesită răspuns?" #. module: base_calendar #: field:calendar.event,base_calendar_url:0 @@ -572,7 +572,7 @@ msgstr "URL Caldav" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_wizard_invite msgid "Invite wizard" -msgstr "Wizard Invitatie" +msgstr "Wizard invitație" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -584,7 +584,7 @@ msgstr "Iulie" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Accepted" -msgstr "Acceptat(a)" +msgstr "Acceptat(ă)" #. module: base_calendar #: field:calendar.event,th:0 @@ -596,7 +596,7 @@ msgstr "Joi" #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "Detaliile Intalnirii" +msgstr "Detaliile întâlnirii" #. module: base_calendar #: field:calendar.attendee,child_ids:0 @@ -607,7 +607,7 @@ msgstr "Delegat la" #: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" -msgstr "Urmatoarele contacte nu au adrese de email :" +msgstr "Următoarele contacte nu au adrese de email :" #. module: base_calendar #: selection:calendar.event,rrule_type:0 @@ -621,20 +621,20 @@ msgstr "An(i)" #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting_type #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_type msgid "Meeting Types" -msgstr "Tipuri de Intaliniri" +msgstr "Tipuri de întâliniri" #. module: base_calendar #: field:calendar.event,create_date:0 #: field:calendar.todo,create_date:0 msgid "Created" -msgstr "Creat(a)" +msgstr "Creat(ă)" #. module: base_calendar #: selection:calendar.event,class:0 #: selection:calendar.todo,class:0 #: selection:crm.meeting,class:0 msgid "Public for Employees" -msgstr "Public pentru Angajati" +msgstr "Public pentru Angajați" #. module: base_calendar #: view:crm.meeting:0 @@ -656,12 +656,12 @@ msgstr "Limba" #: field:calendar.todo,end_date:0 #: field:crm.meeting,end_date:0 msgid "Repeat Until" -msgstr "Repeta pana cand" +msgstr "Repetă până cand" #. module: base_calendar #: view:crm.meeting:0 msgid "Options" -msgstr "Optiuni" +msgstr "Opțiuni" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -695,7 +695,7 @@ msgstr "Decembrie" #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Tuesday" -msgstr "Marti" +msgstr "Marți" #. module: base_calendar #: field:crm.meeting,categ_ids:0 @@ -717,7 +717,7 @@ msgstr "Individual" #: help:calendar.todo,count:0 #: help:crm.meeting,count:0 msgid "Repeat x times" -msgstr "Repeta de x ori" +msgstr "Repetă de x ori" #. module: base_calendar #: field:calendar.alarm,user_id:0 @@ -729,7 +729,7 @@ msgstr "Proprietar" #: help:calendar.todo,rrule_type:0 #: help:crm.meeting,rrule_type:0 msgid "Let the event automatically repeat at that interval" -msgstr "Permite repetarea automata a evenimentului in acel interval" +msgstr "Permite repetarea automată a evenimentului în acel interval" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar @@ -744,21 +744,21 @@ msgstr "Nume comun" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Declined" -msgstr "Refuzat(a)" +msgstr "Refuzat(ă)" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" -"Gruparea dupa data nu este acceptata, folositi in schimb vizualizarea " +"Gruparea după data nu este acceptată, folosiți în schimb vizualizarea " "calendar." #. module: base_calendar #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Decline" -msgstr "Refuza" +msgstr "Refuză" #. module: base_calendar #: selection:calendar.attendee,cutype:0 @@ -778,12 +778,12 @@ msgstr "Privat" #: field:calendar.todo,class:0 #: field:crm.meeting,class:0 msgid "Privacy" -msgstr "Confidentialitate" +msgstr "Confidențialitate" #. module: base_calendar #: model:ir.model,name:base_calendar.model_res_alarm msgid "Basic Alarm Information" -msgstr "informatii de Baza Alarma" +msgstr "informații de Baza Alarma" #. module: base_calendar #: field:calendar.event,fr:0 @@ -795,7 +795,7 @@ msgstr "Vineri" #. module: base_calendar #: view:calendar.event:0 msgid "Invitation Detail" -msgstr "Detaliile invitatiei" +msgstr "Detaliile invitației" #. module: base_calendar #: field:calendar.attendee,member:0 @@ -807,29 +807,29 @@ msgstr "Membru" #: help:calendar.todo,location:0 #: help:crm.meeting,location:0 msgid "Location of Event" -msgstr "Locatia evenimentului" +msgstr "Locația evenimentului" #. module: base_calendar #: field:calendar.event,rrule:0 #: field:calendar.todo,rrule:0 #: field:crm.meeting,rrule:0 msgid "Recurrent Rule" -msgstr "Regula Recurenta" +msgstr "Regulă recurentă" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Draft" -msgstr "Ciorna" +msgstr "Ciornă" #. module: base_calendar #: field:calendar.alarm,attach:0 msgid "Attachment" -msgstr "Atasament" +msgstr "Atașament" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "Inchis(a)" +msgstr "Închis(ă)" #. module: base_calendar #: view:calendar.event:0 @@ -849,12 +849,12 @@ msgstr "Memento" #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "Number of repetitions" -msgstr "Numar de repetari" +msgstr "Număr de repetări" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "Intalnire Interna" +msgstr "Întalnire internă" #. module: base_calendar #: view:calendar.event:0 @@ -881,7 +881,7 @@ msgstr "Email-ul Persoanei Invitate" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 msgid "Customer Meeting" -msgstr "Intalnire Clienti" +msgstr "Întalnire Clienți" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -909,7 +909,7 @@ msgstr "Luni" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet4 msgid "Open Discussion" -msgstr "Deschide Discutia" +msgstr "Deschide Discuția" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model @@ -933,7 +933,7 @@ msgstr "Data Evenimentului" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "Invitatii" +msgstr "Invitații" #. module: base_calendar #: view:calendar.event:0 @@ -971,7 +971,7 @@ msgstr "Data" #. module: base_calendar #: view:calendar.event:0 msgid "Start Date" -msgstr "Data de inceput" +msgstr "Dată de început" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -983,7 +983,7 @@ msgstr "Noiembrie" #. module: base_calendar #: help:calendar.attendee,member:0 msgid "Indicate the groups that the attendee belongs to" -msgstr "Indica grupurile de care apartine participantul" +msgstr "Indică grupurile de care aparține participantul" #. module: base_calendar #: field:calendar.event,mo:0 @@ -1006,7 +1006,7 @@ msgstr "Octombrie" #: selection:calendar.todo,state:0 #: view:crm.meeting:0 msgid "Uncertain" -msgstr "Nesigur(a)" +msgstr "Nesigur(ă)" #. module: base_calendar #: constraint:calendar.event:0 @@ -1020,7 +1020,7 @@ msgstr "" #: field:calendar.alarm,trigger_occurs:0 #: field:res.alarm,trigger_occurs:0 msgid "Triggers" -msgstr "Declansatori" +msgstr "Declanșatori" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1062,23 +1062,23 @@ msgstr "Rezumat" #: field:crm.meeting,active:0 #: field:res.alarm,active:0 msgid "Active" -msgstr "Activ(a)" +msgstr "Activ(ă)" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." -msgstr "Nu puteti copia un participant in calendar." +msgstr "Nu puteți copia un participant în calendar." #. module: base_calendar #: view:calendar.event:0 msgid "Choose day in the month where repeat the meeting" -msgstr "Alegeti ziua din luna in care sa repetati intalnirea" +msgstr "Alegeți ziua din luna în care să repetați întalnirea" #. module: base_calendar #: field:calendar.alarm,action:0 msgid "Action" -msgstr "Actiune" +msgstr "Acțiune" #. module: base_calendar #: help:calendar.alarm,duration:0 @@ -1087,8 +1087,8 @@ msgid "" "Duration' and 'Repeat' are both optional, but if one occurs, so MUST the " "other" msgstr "" -"'Durata' si 'Repetare' sunt ambele optionale, dar daca una are loc, la fel " -"TREBUIE si cealalta" +"'Durata' și 'Repetare' sunt ambele opționale, dar dacă una este specificată " +"TREBUIE și cealaltă" #. module: base_calendar #: help:calendar.attendee,role:0 @@ -1104,24 +1104,24 @@ msgstr "Delegat la" #: help:calendar.alarm,action:0 msgid "Defines the action to be invoked when an alarm is triggered" msgstr "" -"Defineste actiunea care trebuie efectuata atunci cand este declansata alarma" +"Definește acțiunea care trebuie efectuată atunci când este declanșată alarma" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "Incepand de la" +msgstr "Începând de la" #. module: base_calendar #: selection:calendar.event,end_type:0 #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "End date" -msgstr "Data de sfarsit" +msgstr "Data de sfârșit" #. module: base_calendar #: view:calendar.event:0 msgid "Search Events" -msgstr "Cauta Evenimente" +msgstr "Caută evenimente" #. module: base_calendar #: help:calendar.alarm,active:0 @@ -1143,7 +1143,7 @@ msgstr "Incheiere Recurenta" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "Pana la" +msgstr "Până la" #. module: base_calendar #: view:res.alarm:0 @@ -1153,12 +1153,12 @@ msgstr "Detalii Memento" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet3 msgid "Off-site Meeting" -msgstr "Intalnire in afara biroului" +msgstr "Întalnire în afara biroului" #. module: base_calendar #: view:crm.meeting:0 msgid "Day of Month" -msgstr "Ziua din Luna" +msgstr "Ziua din Lună" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -1170,12 +1170,12 @@ msgstr "Efectuat" #: help:calendar.todo,interval:0 #: help:crm.meeting,interval:0 msgid "Repeat every (Days/Week/Month/Year)" -msgstr "Repeta fiecare (Zile/Saptamana/Luna/An)" +msgstr "Repetă fiecare (Zile/Săptămână/Lună/An)" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "Intreaga Zi?" +msgstr "Întreaga zi?" #. module: base_calendar #: view:calendar.event:0 @@ -1196,13 +1196,13 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Faceti click pentru a programa o noua intalnire.\n" +"

\n" +" Faceți clic pentru a programa o nouă întâlnire.\n" "

\n" -" Calendarul este impartit intre angajati si este complet integrat " +" Calendarul este împărțit între angajați și este complet integrat " "cu\n" -" alte aplicatii, cum ar fi concediile angajatilor sau " -"oportunitatile de\n" +" alte aplicații, cum ar fi concediile angajaților sau " +"oportunitățile de\n" " afaceri.\n" "

\n" " " @@ -1214,7 +1214,7 @@ msgid "" "calendar component, than that provided by the " "\"SUMMARY\" property" msgstr "" -"Ofera o descriere mai completa a componentei calendar decat cea oferita de " +"Oferă o descriere mai completă a componentei calendar decât cea oferită de " "proprietatea \"REZUMAT\"" #. module: base_calendar @@ -1225,17 +1225,17 @@ msgstr "Utilizator responsabil" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "Selectati Zilele Saptamanii" +msgstr "Selectați Zilele Saptamanii" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 #, python-format msgid "Busy" -msgstr "Ocupat(a)" +msgstr "Ocupat(ă)" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_event @@ -1254,7 +1254,7 @@ msgstr "Recurent" #: field:calendar.todo,rrule_type:0 #: field:crm.meeting,rrule_type:0 msgid "Recurrency" -msgstr "Recurenta" +msgstr "Recurență" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -1268,7 +1268,7 @@ msgstr "Joi" #: field:calendar.todo,exrule:0 #: field:crm.meeting,exrule:0 msgid "Exception Rule" -msgstr "Regula exceptiei" +msgstr "Regula excepției" #. module: base_calendar #: help:calendar.attendee,language:0 @@ -1291,8 +1291,8 @@ msgid "" "Defines a rule or repeating pattern of time to exclude from the recurring " "rule." msgstr "" -"Defineste o regula sau un tipar temporar care se repeta pentru a se exclude " -"de la regula recurenta." +"Definește o regulă sau un tipar temporar care se repetă pentru a se exclude " +"de la regula recurentă." #. module: base_calendar #: field:calendar.event,month_list:0 @@ -1316,7 +1316,7 @@ msgstr "Evenimente Confirmate" #. module: base_calendar #: field:calendar.attendee,dir:0 msgid "URI Reference" -msgstr "Referinta URI" +msgstr "Referința URI" #. module: base_calendar #: field:calendar.alarm,description:0 @@ -1340,12 +1340,12 @@ msgstr "Mai" #: selection:calendar.alarm,trigger_occurs:0 #: selection:res.alarm,trigger_occurs:0 msgid "After" -msgstr "Dupa" +msgstr "După" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Stop" -msgstr "Opreste" +msgstr "Oprește" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_values @@ -1355,7 +1355,7 @@ msgstr "ir.valori" #. module: base_calendar #: view:crm.meeting:0 msgid "Search Meetings" -msgstr "Cauta Intalniri" +msgstr "Caută întâlniri" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_attachment @@ -1370,7 +1370,7 @@ msgstr "Tipul Intalnirii" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Delegated" -msgstr "Delegat(a)" +msgstr "Delegat(ă)" #. module: base_calendar #: field:calendar.event,sa:0 @@ -1391,12 +1391,12 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Faceti click pentru a seta un nou tip de alarma.\n" +"

\n" +" Faceți clic pentru a seta un nou tip de alarma.\n" "

\n" -" Puteti defini un tip personalizat de alarma pe calendar care " +" Puteți defini un tip personalizat de alarma pe calendar care " "poate fi\n" -" atribuit evenimentelor sau intalnirilor din calendar.\n" +" atribuit evenimentelor sau întâlnirilor din calendar.\n" "

\n" " " @@ -1417,7 +1417,7 @@ msgstr "" #: field:calendar.todo,date_deadline:0 #: field:crm.meeting,date_deadline:0 msgid "End Date" -msgstr "Data de sfarsit" +msgstr "Dată de sfârșit" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1442,7 +1442,7 @@ msgstr "Nume" #: field:calendar.todo,exdate:0 #: field:crm.meeting,exdate:0 msgid "Exception Date/Times" -msgstr "Exceptie Data/Ore" +msgstr "Excepție Data/Ore" #. module: base_calendar #: help:calendar.alarm,name:0 @@ -1493,10 +1493,10 @@ msgstr "Perioada recurenta" #: field:calendar.todo,week_list:0 #: field:crm.meeting,week_list:0 msgid "Weekday" -msgstr "Zi lucratoare" +msgstr "Zi lucrătoare" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Intervalul nu poate fi negativ" @@ -1506,13 +1506,13 @@ msgstr "Intervalul nu poate fi negativ" #: field:calendar.todo,byday:0 #: field:crm.meeting,byday:0 msgid "By day" -msgstr "Dupa zi" +msgstr "După zi" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." -msgstr "Mai intai trebuie sa specificati data invitatiei." +msgstr "Mai întâi trebuie să specificați data invitației." #. module: base_calendar #: field:calendar.alarm,model_id:0 @@ -1534,19 +1534,19 @@ msgstr "ID" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "For information Purpose" -msgstr "In scop informativ" +msgstr "În scop informativ" #. module: base_calendar #: field:calendar.event,select1:0 #: field:calendar.todo,select1:0 #: field:crm.meeting,select1:0 msgid "Option" -msgstr "Optiune" +msgstr "Opțiune" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_attendee msgid "Attendee information" -msgstr "Informatii participant" +msgstr "Informații participant" #. module: base_calendar #: field:calendar.alarm,res_id:0 @@ -1556,19 +1556,19 @@ msgstr "ID resursa" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Needs Action" -msgstr "Necesita actiune" +msgstr "Necesită acțiune" #. module: base_calendar #: field:calendar.attendee,sent_by:0 msgid "Sent By" -msgstr "Trimis de catre" +msgstr "Trimis de către" #. module: base_calendar #: field:calendar.event,sequence:0 #: field:calendar.todo,sequence:0 #: field:crm.meeting,sequence:0 msgid "Sequence" -msgstr "Secventa" +msgstr "Secvență" #. module: base_calendar #: help:calendar.event,alarm_id:0 @@ -1581,21 +1581,21 @@ msgstr "Setati o alarma acum, inainte ca evenimentul sa aiba loc" #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Accept" -msgstr "Accepta" +msgstr "Acceptă" #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Saturday" -msgstr "Sambata" +msgstr "Sâmbătă" #. module: base_calendar #: field:calendar.event,interval:0 #: field:calendar.todo,interval:0 #: field:crm.meeting,interval:0 msgid "Repeat Every" -msgstr "Repeta fiecare" +msgstr "Repetă fiecare" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -1624,7 +1624,7 @@ msgstr "Durata" #. module: base_calendar #: field:calendar.alarm,trigger_date:0 msgid "Trigger Date" -msgstr "Data Declansare" +msgstr "Data declanșare" #. module: base_calendar #: help:calendar.alarm,attach:0 diff --git a/addons/base_calendar/i18n/ru.po b/addons/base_calendar/i18n/ru.po index cc6e98b09c7..718a5f57ae6 100644 --- a/addons/base_calendar/i18n/ru.po +++ b/addons/base_calendar/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Кому" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Ошибка!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Предупреждение!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Информация об уведомлении о событии" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Отклонено" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1211,7 +1211,7 @@ msgid "Select Weekdays" msgstr "Выберите дни недели" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1468,7 +1468,7 @@ msgid "Weekday" msgstr "День недели" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Интервал не может быть отрицательным." diff --git a/addons/base_calendar/i18n/sk.po b/addons/base_calendar/i18n/sk.po index abf9ea47aa9..8de0dbc620c 100644 --- a/addons/base_calendar/i18n/sk.po +++ b/addons/base_calendar/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Chyba!" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Varovanie !" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/sl.po b/addons/base_calendar/i18n/sl.po index 4d1226d7a46..c7a74bf8bee 100644 --- a/addons/base_calendar/i18n/sl.po +++ b/addons/base_calendar/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "Za" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Napaka!" @@ -361,9 +361,9 @@ msgstr "Povzetek (število sporočil,..)" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Opozorilo!" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "Zavrnjeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "Delovni dan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/sq.po b/addons/base_calendar/i18n/sq.po index ca74462f395..4598020fd8c 100644 --- a/addons/base_calendar/i18n/sq.po +++ b/addons/base_calendar/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:23+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/sr.po b/addons/base_calendar/i18n/sr.po index 10c79bd00e4..5265a808e24 100644 --- a/addons/base_calendar/i18n/sr.po +++ b/addons/base_calendar/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Greška" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Upozorenje!" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "Informacija alarma događaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -743,7 +743,7 @@ msgid "Declined" msgstr "Odbijeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1208,7 +1208,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1467,7 +1467,7 @@ msgid "Weekday" msgstr "Sedmicni Dan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/sr@latin.po b/addons/base_calendar/i18n/sr@latin.po index 38ae24526d1..a203321f360 100644 --- a/addons/base_calendar/i18n/sr@latin.po +++ b/addons/base_calendar/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Greška" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Upozorenje!" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "Informacija alarma događaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -743,7 +743,7 @@ msgid "Declined" msgstr "Odbijeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1208,7 +1208,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1467,7 +1467,7 @@ msgid "Weekday" msgstr "Sedmicni Dan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/sv.po b/addons/base_calendar/i18n/sv.po index 8e7d88c386d..1dec9a478c5 100644 --- a/addons/base_calendar/i18n/sv.po +++ b/addons/base_calendar/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -44,7 +44,7 @@ msgstr "" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Week(s)" -msgstr "" +msgstr "Vecka(or)" #. module: base_calendar #: field:calendar.event,we:0 @@ -68,7 +68,7 @@ msgstr "Återkommande möte" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet5 msgid "Feedback Meeting" -msgstr "" +msgstr "Återkopplingsmöte" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view @@ -145,7 +145,7 @@ msgstr "Ange typ av inbjudan" #: view:crm.meeting:0 #: field:crm.meeting,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Olästa meddelanden" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -179,7 +179,7 @@ msgstr "Fri" #. module: base_calendar #: help:crm.meeting,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Om ikryssad nya meddelanden som kräver din uppmärksamhet" #. module: base_calendar #: help:calendar.attendee,rsvp:0 @@ -231,12 +231,12 @@ msgstr "Senaste" #. module: base_calendar #: help:crm.meeting,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Meddelande- och kommunikationshistorik" #. module: base_calendar #: field:crm.meeting,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Meddelanden" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Mottagare" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Fel!" @@ -263,7 +263,7 @@ msgstr "Styrelseperson" #. module: base_calendar #: view:crm.meeting:0 msgid "My Meetings" -msgstr "" +msgstr "Mina möten" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -302,17 +302,17 @@ msgstr "Deltagarens deltagarstatus" #. module: base_calendar #: view:crm.meeting:0 msgid "Mail To" -msgstr "" +msgstr "E-posta till" #. module: base_calendar #: field:crm.meeting,name:0 msgid "Meeting Subject" -msgstr "" +msgstr "Mötesämne" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "" +msgstr "Slut på återkommande" #. module: base_calendar #: view:calendar.event:0 @@ -333,7 +333,7 @@ msgstr "Välj dag för det återkommande mötet" #: view:crm.meeting:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting msgid "Meetings" -msgstr "" +msgstr "Möten" #. module: base_calendar #: field:calendar.event,recurrent_id_date:0 @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Varning!" @@ -482,7 +482,7 @@ msgstr "Dag i månaden" #. module: base_calendar #: field:crm.meeting,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Följare" #. module: base_calendar #: field:calendar.event,location:0 @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Evenemangsalarminformation" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -534,21 +534,21 @@ msgstr "" #. module: base_calendar #: field:crm.meeting,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "Registeringsdatum" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting msgid "Meeting" -msgstr "" +msgstr "Möte" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Month(s)" -msgstr "" +msgstr "Månad(er)" #. module: base_calendar #: view:calendar.event:0 @@ -594,7 +594,7 @@ msgstr "Tor" #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "" +msgstr "Mötesdetaljer" #. module: base_calendar #: field:calendar.attendee,child_ids:0 @@ -605,21 +605,21 @@ msgstr "Delegerad till" #: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" -msgstr "" +msgstr "Följande kontakter saknar e-postadress :" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Year(s)" -msgstr "" +msgstr "År" #. module: base_calendar #: view:crm.meeting.type:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting_type #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_type msgid "Meeting Types" -msgstr "" +msgstr "Mötestyper" #. module: base_calendar #: field:calendar.event,create_date:0 @@ -637,7 +637,7 @@ msgstr "Publikt för anställda" #. module: base_calendar #: view:crm.meeting:0 msgid "hours" -msgstr "" +msgstr "timmar" #. module: base_calendar #: field:calendar.attendee,partner_id:0 @@ -659,7 +659,7 @@ msgstr "Repetera till" #. module: base_calendar #: view:crm.meeting:0 msgid "Options" -msgstr "" +msgstr "Alternativ" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -698,7 +698,7 @@ msgstr "tisdag" #. module: base_calendar #: field:crm.meeting,categ_ids:0 msgid "Tags" -msgstr "" +msgstr "Etiketter" #. module: base_calendar #: view:calendar.event:0 @@ -732,7 +732,7 @@ msgstr "Låt evenemanget återkomma automatiskt med det intervallet" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar msgid "Calendar" -msgstr "" +msgstr "Kalender" #. module: base_calendar #: field:calendar.attendee,cn:0 @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Avslaget" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -825,7 +825,7 @@ msgstr "Bilaga" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "" +msgstr "Avslutad" #. module: base_calendar #: view:calendar.event:0 @@ -850,7 +850,7 @@ msgstr "Antal repetioner" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "" +msgstr "Internt möte" #. module: base_calendar #: view:calendar.event:0 @@ -867,7 +867,7 @@ msgstr "Evenemang" #: field:calendar.todo,state:0 #: field:crm.meeting,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: base_calendar #: help:calendar.attendee,email:0 @@ -877,7 +877,7 @@ msgstr "E-post från inbjudna personer" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 msgid "Customer Meeting" -msgstr "" +msgstr "Kundmöte" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -929,7 +929,7 @@ msgstr "Evenemangsdatum" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "" +msgstr "Inbjudningar" #. module: base_calendar #: view:calendar.event:0 @@ -950,7 +950,7 @@ msgstr "Delegerad från" #. module: base_calendar #: field:crm.meeting,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Är en följare" #. module: base_calendar #: field:calendar.attendee,user_id:0 @@ -1103,7 +1103,7 @@ msgstr "Definiera åtgärd som skall aktiveras med alarmet" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "" +msgstr "Startdatum" #. module: base_calendar #: selection:calendar.event,end_type:0 @@ -1132,12 +1132,12 @@ msgstr "" #: field:calendar.todo,end_type:0 #: field:crm.meeting,end_type:0 msgid "Recurrence Termination" -msgstr "" +msgstr "Avsluta återkommande" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "" +msgstr "Till" #. module: base_calendar #: view:res.alarm:0 @@ -1147,12 +1147,12 @@ msgstr "Påminnelsedetaljer" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet3 msgid "Off-site Meeting" -msgstr "" +msgstr "Möte utanför kontoret" #. module: base_calendar #: view:crm.meeting:0 msgid "Day of Month" -msgstr "" +msgstr "Dag i månaden" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -1169,7 +1169,7 @@ msgstr "Repetera varje (dag/vecka/månad/år)" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "" +msgstr "Hel dag?" #. module: base_calendar #: view:calendar.event:0 @@ -1209,10 +1209,10 @@ msgstr "Ansvarig användare" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "" +msgstr "Välj veckodagar" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1289,7 +1289,7 @@ msgstr "Månad" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Day(s)" -msgstr "" +msgstr "Dag(ar)" #. module: base_calendar #: view:calendar.event:0 @@ -1338,7 +1338,7 @@ msgstr "ir.values" #. module: base_calendar #: view:crm.meeting:0 msgid "Search Meetings" -msgstr "" +msgstr "Sök möten" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_attachment @@ -1348,7 +1348,7 @@ msgstr "ir.attachment" #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" -msgstr "" +msgstr "Mötestyp" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -1378,7 +1378,7 @@ msgstr "" #. module: base_calendar #: selection:crm.meeting,state:0 msgid "Unconfirmed" -msgstr "" +msgstr "Obekräftad" #. module: base_calendar #: help:calendar.attendee,sent_by:0 @@ -1470,7 +1470,7 @@ msgid "Weekday" msgstr "Veckodag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/th.po b/addons/base_calendar/i18n/th.po index f5582c3568c..41bed2220f7 100644 --- a/addons/base_calendar/i18n/th.po +++ b/addons/base_calendar/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -249,7 +249,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "ผิดพลาด!" @@ -362,9 +362,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "คำเตือน!" @@ -523,7 +523,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -742,7 +742,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1201,7 +1201,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1454,7 +1454,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/tr.po b/addons/base_calendar/i18n/tr.po index d43f5eb92e0..995982f94f0 100644 --- a/addons/base_calendar/i18n/tr.po +++ b/addons/base_calendar/i18n/tr.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-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event starts" -msgstr "Etkinlik Başlar" +msgstr "Etkinlik başlar" #. module: base_calendar #: view:calendar.event:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Kime" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Hata!" @@ -365,9 +365,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Uyarı!" @@ -484,7 +484,7 @@ msgstr "Ayın günü" #. module: base_calendar #: field:crm.meeting,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: base_calendar #: field:calendar.event,location:0 @@ -528,10 +528,10 @@ msgid "Event alarm information" msgstr "Etkinlik alarm bilgisi" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." -msgstr "Sayım negatif ya da 0 olamaz." +msgstr "Sayım negatif veya 0 olamaz." #. module: base_calendar #: field:crm.meeting,create_date:0 @@ -607,7 +607,7 @@ msgstr "Yetkilendirilen" #: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" -msgstr "Aşağıdaki kişilerin eposta adresini Yok :" +msgstr "Aşağıdaki kişilerin eposta adresi yok :" #. module: base_calendar #: selection:calendar.event,rrule_type:0 @@ -747,7 +747,7 @@ msgid "Declined" msgstr "Reddedildi" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -951,7 +951,7 @@ msgstr "Yetkilendiren" #. module: base_calendar #: field:crm.meeting,message_is_follower:0 msgid "Is a Follower" -msgstr "Takipçi" +msgstr "Bir İzleyicidir" #. module: base_calendar #: field:calendar.attendee,user_id:0 @@ -980,7 +980,7 @@ msgstr "Kasım" #. module: base_calendar #: help:calendar.attendee,member:0 msgid "Indicate the groups that the attendee belongs to" -msgstr "Katılanın bağlı olduğu grubu belirt" +msgstr "Katılımcının bağlı olduğu grubu belirtir" #. module: base_calendar #: field:calendar.event,mo:0 @@ -1010,7 +1010,7 @@ msgstr "Belirsiz" #: constraint:calendar.todo:0 #: constraint:crm.meeting:0 msgid "Error ! End date cannot be set before start date." -msgstr "Hata! Bitiş tarihi başlangıç ​​tarihinden önce ayarlanamaz." +msgstr "Hata! Bitiş tarihi başlangıç ​​tarihinden önceye ayarlanamaz." #. module: base_calendar #: field:calendar.alarm,trigger_occurs:0 @@ -1165,7 +1165,7 @@ msgstr "Yapıldı" #: help:calendar.todo,interval:0 #: help:crm.meeting,interval:0 msgid "Repeat every (Days/Week/Month/Year)" -msgstr "Her (Gün/Hafta/Ay/Yıl) Tekrarla" +msgstr "Her (Gün/Hafta/Ay/Yıl) yinele" #. module: base_calendar #: view:crm.meeting:0 @@ -1195,7 +1195,7 @@ msgstr "" " Yeni bir toplantı planlamak için tıklayın.\n" "

\n" " Takvim çalışanlar arasında paylaşılır ve çalışan tatilleri \n" -" ya da iş fırsatları gibi diğer uygulamalarla \n" +" veya iş fırsatları gibi diğer uygulamalarla \n" " tam entegredir.\n" "

\n" " " @@ -1207,8 +1207,9 @@ msgid "" "calendar component, than that provided by the " "\"SUMMARY\" property" msgstr "" -"Takvim bileşeninin tanımını \"ÖZET\" özelliğinden eldeedilenden daha tam " -"olarak belirtir." +"Takvim bileşeninin tanımını \"ÖZET\" " +"özelliğinden elde edilenden daha eksiksiz " +"belirtir." #. module: base_calendar #: view:calendar.event:0 @@ -1221,7 +1222,7 @@ msgid "Select Weekdays" msgstr "Hafta Günlerini Seçin" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1268,7 +1269,7 @@ msgstr "İstisnai Kural" msgid "" "To specify the language for text values in aproperty or property parameter." msgstr "" -"Bir özellikteki ya da özellik parametresine ait metin değerlerinin dilini " +"Bir özellikteki veya özellik değiştirgelerine ait metin değerlerinin dilini " "belirler." #. module: base_calendar @@ -1284,7 +1285,7 @@ msgid "" "Defines a rule or repeating pattern of time to exclude from the recurring " "rule." msgstr "" -"Yineleme kuralı dışında tutulan bir zaman tekrarlama modelini tanımlar." +"Yineleme kuralı dışında tutulacak bir kural ya da yineleme modeli tanımlar." #. module: base_calendar #: field:calendar.event,month_list:0 @@ -1303,7 +1304,7 @@ msgstr "Gün(ler)" #. module: base_calendar #: view:calendar.event:0 msgid "Confirmed Events" -msgstr "Onaylanmış Etkinlikler" +msgstr "Onaylı Etkinlikler" #. module: base_calendar #: field:calendar.attendee,dir:0 @@ -1441,8 +1442,8 @@ msgid "" "Contains the text to be used as the message subject for " "email or contains the text to be used for display" msgstr "" -"Eposta konusu olarak kullanılacak ya da görüntülenecek metin olarak " -"kullanılacak metni içerir." +"Eposta konusu olarak kullanılacak metni içerir ya da " +" görüntülenecek metni içerir." #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message @@ -1487,7 +1488,7 @@ msgid "Weekday" msgstr "Hafta Günü" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Aralık negatif olamaz" @@ -1566,7 +1567,7 @@ msgstr "Sıra" #: help:calendar.todo,alarm_id:0 #: help:crm.meeting,alarm_id:0 msgid "Set an alarm at this time, before the event occurs" -msgstr "Bu sefer etkinlik başlamadan önce alarm ayarla" +msgstr "Bu sefer etkinlik başlamadan önce alarmı ayarla" #. module: base_calendar #: view:calendar.event:0 @@ -1627,12 +1628,12 @@ msgid "" " * Points to a procedure resource, which is invoked when " " the alarm is triggered for procedure." msgstr "" -"* Alarmın ses çalması için tetiklendiği durumuna benzeterek, Bir ses " -"kaynağını işaret eder.\n" -" * Bir epostaya mesal eki olarak gönderilmek istenen " +"* Alarmın ses çalması için, tetiklendiği durumuna " +"benzeterek, bir ses kaynağını işaret eder.\n" +" * Bir epostaya mesaj eki olarak gönderilmek istenen " "dosya,\n" -" * Alarm işlem için tetiklendiğinde işlem kaynağını " -"işaret eder." +" * Alarm işlem için tetiklendiğinde işlem kaynağını " +" işaret eder." #. module: base_calendar #: selection:calendar.event,byday:0 diff --git a/addons/base_calendar/i18n/zh_CN.po b/addons/base_calendar/i18n/zh_CN.po index a5ede7a80c9..b3bff065d62 100644 --- a/addons/base_calendar/i18n/zh_CN.po +++ b/addons/base_calendar/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: 2013-06-29 05:34+0000\n" -"Last-Translator: David.Xu \n" +"Last-Translator: DWXXX \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-06-30 05:56+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -525,7 +525,7 @@ msgstr "事件提醒信息" #: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." -msgstr "" +msgstr "计数不能为负值或0" #. module: base_calendar #: field:crm.meeting,create_date:0 @@ -728,7 +728,7 @@ msgstr "让事件在该时间间隔自动重复" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar msgid "Calendar" -msgstr "" +msgstr "日历" #. module: base_calendar #: field:calendar.attendee,cn:0 @@ -744,7 +744,7 @@ msgstr "已拒绝" #: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." -msgstr "" +msgstr "目前不支持按日期分组,可以通过日历视图达到此目的。" #. module: base_calendar #: view:calendar.event:0 @@ -821,7 +821,7 @@ msgstr "附件" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "" +msgstr "关闭" #. module: base_calendar #: view:calendar.event:0 @@ -846,7 +846,7 @@ msgstr "收件人数量" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "" +msgstr "内部会议" #. module: base_calendar #: view:calendar.event:0 @@ -863,7 +863,7 @@ msgstr "事件" #: field:calendar.todo,state:0 #: field:crm.meeting,state:0 msgid "Status" -msgstr "" +msgstr "状态" #. module: base_calendar #: help:calendar.attendee,email:0 @@ -873,7 +873,7 @@ msgstr "被邀请人的电子邮件" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 msgid "Customer Meeting" -msgstr "" +msgstr "客户会议" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -899,7 +899,7 @@ msgstr "周一" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet4 msgid "Open Discussion" -msgstr "" +msgstr "打开讨论板" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model @@ -923,7 +923,7 @@ msgstr "事件日期" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "" +msgstr "邀请" #. module: base_calendar #: view:calendar.event:0 @@ -934,7 +934,7 @@ msgstr "此" #. module: base_calendar #: field:crm.meeting,write_date:0 msgid "Write Date" -msgstr "" +msgstr "修改日期" #. module: base_calendar #: field:calendar.attendee,delegated_from:0 @@ -944,7 +944,7 @@ msgstr "委派来自" #. module: base_calendar #: field:crm.meeting,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "是一个关注者" #. module: base_calendar #: field:calendar.attendee,user_id:0 @@ -1003,7 +1003,7 @@ msgstr "不确定" #: constraint:calendar.todo:0 #: constraint:crm.meeting:0 msgid "Error ! End date cannot be set before start date." -msgstr "" +msgstr "出错!结束日期不能设置为早于开始日期。" #. module: base_calendar #: field:calendar.alarm,trigger_occurs:0 @@ -1095,7 +1095,7 @@ msgstr "定义触发报警时要调用的行动" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "" +msgstr "开始于" #. module: base_calendar #: selection:calendar.event,end_type:0 @@ -1122,12 +1122,12 @@ msgstr "如果有效字段设为True,它将允许你隐藏提醒信息而不 #: field:calendar.todo,end_type:0 #: field:crm.meeting,end_type:0 msgid "Recurrence Termination" -msgstr "" +msgstr "重复终止" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "" +msgstr "直到" #. module: base_calendar #: view:res.alarm:0 @@ -1137,12 +1137,12 @@ msgstr "提醒详情" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet3 msgid "Off-site Meeting" -msgstr "" +msgstr "离线会议?" #. module: base_calendar #: view:crm.meeting:0 msgid "Day of Month" -msgstr "" +msgstr "该月该日" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -1159,7 +1159,7 @@ msgstr "重复间隔(日/周/月/年)" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "" +msgstr "全天?" #. module: base_calendar #: view:calendar.event:0 @@ -1180,6 +1180,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 单击 安排一个新的会议\n" +"

\n" +" 日历在雇员和完全集成的其它应用(比如员工假期或者商机)间共享\n" +"

\n" +" " #. module: base_calendar #: help:calendar.alarm,description:0 @@ -1197,7 +1203,7 @@ msgstr "负责人" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "" +msgstr "选择工作日" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:1521 @@ -1274,7 +1280,7 @@ msgstr "月份" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Day(s)" -msgstr "" +msgstr "天" #. module: base_calendar #: view:calendar.event:0 @@ -1323,7 +1329,7 @@ msgstr "ir.values" #. module: base_calendar #: view:crm.meeting:0 msgid "Search Meetings" -msgstr "" +msgstr "查找会议" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_attachment @@ -1333,7 +1339,7 @@ msgstr "ir.attachment" #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" -msgstr "" +msgstr "会议类型" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -1359,11 +1365,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 单击可设置一个新的警报类型。\n" +"

\n" +" 您能定义一个个性化的日历警报类型,可以被指定给日历事件或者一次会面.\n" +"

\n" +" " #. module: base_calendar #: selection:crm.meeting,state:0 msgid "Unconfirmed" -msgstr "" +msgstr "未确认" #. module: base_calendar #: help:calendar.attendee,sent_by:0 @@ -1413,7 +1425,7 @@ msgstr "包含电子邮件主题中使用的文本或包含了用于显示的文 #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message msgid "Message" -msgstr "" +msgstr "信息" #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 @@ -1438,7 +1450,7 @@ msgstr "4月" #: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" -msgstr "" +msgstr "电子邮件地址未找到" #. module: base_calendar #: view:calendar.event:0 @@ -1456,7 +1468,7 @@ msgstr "工作日" #: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." -msgstr "" +msgstr "间隔不能为负数" #. module: base_calendar #: field:calendar.event,byday:0 @@ -1469,7 +1481,7 @@ msgstr "按天" #: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." -msgstr "" +msgstr "首先,必须确定邀请的日期" #. module: base_calendar #: field:calendar.alarm,model_id:0 @@ -1552,7 +1564,7 @@ msgstr "周六" #: field:calendar.todo,interval:0 #: field:crm.meeting,interval:0 msgid "Repeat Every" -msgstr "" +msgstr "逐个重复" #. module: base_calendar #: selection:calendar.event,byday:0 diff --git a/addons/base_calendar/i18n/zh_TW.po b/addons/base_calendar/i18n/zh_TW.po index f044cc14647..bd7d141e5b2 100644 --- a/addons/base_calendar/i18n/zh_TW.po +++ b/addons/base_calendar/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:24+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "至" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "錯誤!" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "警告!" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "活動警示資訊" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "拒絕" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "未支援以日期分組,請使用日曆式檢視。" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "選擇平日" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "週日" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_crypt/i18n/ar.po b/addons/base_crypt/i18n/ar.po index 61440649188..315509fb91c 100644 --- a/addons/base_crypt/i18n/ar.po +++ b/addons/base_crypt/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/bg.po b/addons/base_crypt/i18n/bg.po index 706c3f27084..97fdf3043cc 100644 --- a/addons/base_crypt/i18n/bg.po +++ b/addons/base_crypt/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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/ca.po b/addons/base_crypt/i18n/ca.po index 409af9aa314..3be174a13d1 100644 --- a/addons/base_crypt/i18n/ca.po +++ b/addons/base_crypt/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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/cs.po b/addons/base_crypt/i18n/cs.po index 7c782cbc723..7e87a027cac 100644 --- a/addons/base_crypt/i18n/cs.po +++ b/addons/base_crypt/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/da.po b/addons/base_crypt/i18n/da.po index 6160f5c4474..2c0afd28a5e 100644 --- a/addons/base_crypt/i18n/da.po +++ b/addons/base_crypt/i18n/da.po @@ -8,16 +8,16 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-01-27 08:38+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-09-03 16:43+0000\n" +"Last-Translator: Niels L \n" "Language-Team: Danish \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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users msgid "Users" -msgstr "" +msgstr "Brugere" diff --git a/addons/base_crypt/i18n/de.po b/addons/base_crypt/i18n/de.po index ed97a279910..88cf2d20ae4 100644 --- a/addons/base_crypt/i18n/de.po +++ b/addons/base_crypt/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/el.po b/addons/base_crypt/i18n/el.po index eba33cc4fce..61319a01797 100644 --- a/addons/base_crypt/i18n/el.po +++ b/addons/base_crypt/i18n/el.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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/en_GB.po b/addons/base_crypt/i18n/en_GB.po index 96c509b518e..fc227f1a9a1 100644 --- a/addons/base_crypt/i18n/en_GB.po +++ b/addons/base_crypt/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/es.po b/addons/base_crypt/i18n/es.po index b5dcf46f559..1e86c7301ba 100644 --- a/addons/base_crypt/i18n/es.po +++ b/addons/base_crypt/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/es_CL.po b/addons/base_crypt/i18n/es_CL.po index 285f4557101..1d530f91082 100644 --- a/addons/base_crypt/i18n/es_CL.po +++ b/addons/base_crypt/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/es_CR.po b/addons/base_crypt/i18n/es_CR.po index ca1f3821243..1e4864fe000 100644 --- a/addons/base_crypt/i18n/es_CR.po +++ b/addons/base_crypt/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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: es\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/es_PY.po b/addons/base_crypt/i18n/es_PY.po index 684b0c44b51..5e41452b642 100644 --- a/addons/base_crypt/i18n/es_PY.po +++ b/addons/base_crypt/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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/et.po b/addons/base_crypt/i18n/et.po index 319ed5f7d3f..4bf9fcba159 100644 --- a/addons/base_crypt/i18n/et.po +++ b/addons/base_crypt/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/fa.po b/addons/base_crypt/i18n/fa.po index 11cfa2eb96a..7653da44cd6 100644 --- a/addons/base_crypt/i18n/fa.po +++ b/addons/base_crypt/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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/fi.po b/addons/base_crypt/i18n/fi.po index 2cec59a2c4e..1a5f4c7cae2 100644 --- a/addons/base_crypt/i18n/fi.po +++ b/addons/base_crypt/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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/fr.po b/addons/base_crypt/i18n/fr.po index a41065463e1..b3a32cd0b33 100644 --- a/addons/base_crypt/i18n/fr.po +++ b/addons/base_crypt/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/gl.po b/addons/base_crypt/i18n/gl.po index bf0c4ba8a66..8bdaf68def0 100644 --- a/addons/base_crypt/i18n/gl.po +++ b/addons/base_crypt/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/gu.po b/addons/base_crypt/i18n/gu.po index 0cb55c0f324..2c2322fae2e 100644 --- a/addons/base_crypt/i18n/gu.po +++ b/addons/base_crypt/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/hr.po b/addons/base_crypt/i18n/hr.po index f49e9cde151..92c904d69c9 100644 --- a/addons/base_crypt/i18n/hr.po +++ b/addons/base_crypt/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/hu.po b/addons/base_crypt/i18n/hu.po index 5f8cf605f33..efcaca7670c 100644 --- a/addons/base_crypt/i18n/hu.po +++ b/addons/base_crypt/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 04:59+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/id.po b/addons/base_crypt/i18n/id.po index 3ac47abb0ed..02b7d2e2114 100644 --- a/addons/base_crypt/i18n/id.po +++ b/addons/base_crypt/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/it.po b/addons/base_crypt/i18n/it.po index 09da33ef429..fed22cb41cc 100644 --- a/addons/base_crypt/i18n/it.po +++ b/addons/base_crypt/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-03 16:03+0000\n" "PO-Revision-Date: 2012-11-28 19:47+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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/ja.po b/addons/base_crypt/i18n/ja.po index 53cc697a775..05123a7651d 100644 --- a/addons/base_crypt/i18n/ja.po +++ b/addons/base_crypt/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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/lv.po b/addons/base_crypt/i18n/lv.po index c721eae311b..8f7ca26a462 100644 --- a/addons/base_crypt/i18n/lv.po +++ b/addons/base_crypt/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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/mn.po b/addons/base_crypt/i18n/mn.po index ec780cdebda..1bbb605f1fc 100644 --- a/addons/base_crypt/i18n/mn.po +++ b/addons/base_crypt/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/nb.po b/addons/base_crypt/i18n/nb.po index 1f9ceed13c8..3c7d785f6d3 100644 --- a/addons/base_crypt/i18n/nb.po +++ b/addons/base_crypt/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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/nl.po b/addons/base_crypt/i18n/nl.po index ae5f27dd880..67ba274ae03 100644 --- a/addons/base_crypt/i18n/nl.po +++ b/addons/base_crypt/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-03 16:03+0000\n" "PO-Revision-Date: 2012-11-24 22:06+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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/nl_BE.po b/addons/base_crypt/i18n/nl_BE.po index d77a3f14b47..d90ac3eda8c 100644 --- a/addons/base_crypt/i18n/nl_BE.po +++ b/addons/base_crypt/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/oc.po b/addons/base_crypt/i18n/oc.po index bd05cb48d2b..2ff67545b99 100644 --- a/addons/base_crypt/i18n/oc.po +++ b/addons/base_crypt/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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/pl.po b/addons/base_crypt/i18n/pl.po index ffd402b4c98..fa80431cff5 100644 --- a/addons/base_crypt/i18n/pl.po +++ b/addons/base_crypt/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/pt.po b/addons/base_crypt/i18n/pt.po index 53806f4b3b3..43bd417eb1f 100644 --- a/addons/base_crypt/i18n/pt.po +++ b/addons/base_crypt/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/pt_BR.po b/addons/base_crypt/i18n/pt_BR.po index 394364388b8..cd2b533a74f 100644 --- a/addons/base_crypt/i18n/pt_BR.po +++ b/addons/base_crypt/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/ro.po b/addons/base_crypt/i18n/ro.po index 6c252be4455..2ff1bfb79db 100644 --- a/addons/base_crypt/i18n/ro.po +++ b/addons/base_crypt/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/ru.po b/addons/base_crypt/i18n/ru.po index b935e18619f..fb48b066c6f 100644 --- a/addons/base_crypt/i18n/ru.po +++ b/addons/base_crypt/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/sk.po b/addons/base_crypt/i18n/sk.po index 4f061b9a194..70e634e498d 100644 --- a/addons/base_crypt/i18n/sk.po +++ b/addons/base_crypt/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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/sl.po b/addons/base_crypt/i18n/sl.po index 7297ca8fc8a..73bdfdf7080 100644 --- a/addons/base_crypt/i18n/sl.po +++ b/addons/base_crypt/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/sq.po b/addons/base_crypt/i18n/sq.po index 547fc87dece..ac1d367b815 100644 --- a/addons/base_crypt/i18n/sq.po +++ b/addons/base_crypt/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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/sr@latin.po b/addons/base_crypt/i18n/sr@latin.po index eb56a0aaf64..a866dfeaf4e 100644 --- a/addons/base_crypt/i18n/sr@latin.po +++ b/addons/base_crypt/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:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/sv.po b/addons/base_crypt/i18n/sv.po index 32b212fe45b..0df60f0e0e3 100644 --- a/addons/base_crypt/i18n/sv.po +++ b/addons/base_crypt/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:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/tr.po b/addons/base_crypt/i18n/tr.po index e0f7aad1948..ceadad7a738 100644 --- a/addons/base_crypt/i18n/tr.po +++ b/addons/base_crypt/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/vi.po b/addons/base_crypt/i18n/vi.po index 2265e70eb2e..27f1ba05f36 100644 --- a/addons/base_crypt/i18n/vi.po +++ b/addons/base_crypt/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-07-01 05:14+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/zh_CN.po b/addons/base_crypt/i18n/zh_CN.po index 5f159bbb6bc..214f0b1ea09 100644 --- a/addons/base_crypt/i18n/zh_CN.po +++ b/addons/base_crypt/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/zh_TW.po b/addons/base_crypt/i18n/zh_TW.po index 40958da56f8..9e0bfcecd54 100644 --- a/addons/base_crypt/i18n/zh_TW.po +++ b/addons/base_crypt/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_gengo/__openerp__.py b/addons/base_gengo/__openerp__.py index aa1be78321f..3f1b5957fec 100644 --- a/addons/base_gengo/__openerp__.py +++ b/addons/base_gengo/__openerp__.py @@ -36,13 +36,13 @@ This wizard will activate the CRON job and the Scheduler and will start the auto 'author': 'OpenERP SA', 'website': 'http://www.openerp.com', 'depends': ['base'], - 'init_xml': ['gengo_sync_schedular_data.xml'], - 'update_xml': [ + 'data': [ + 'gengo_sync_schedular_data.xml', 'ir_translation.xml', 'res_company_view.xml', 'wizard/base_gengo_translations_view.xml', - ], - 'demo_xml': [], + ], + 'demo': [], 'test': [], 'installable': True, 'auto_install': False, diff --git a/addons/base_gengo/gengo_sync_schedular_data.xml b/addons/base_gengo/gengo_sync_schedular_data.xml index 823ca8f14db..baf2a639cff 100644 --- a/addons/base_gengo/gengo_sync_schedular_data.xml +++ b/addons/base_gengo/gengo_sync_schedular_data.xml @@ -1,6 +1,6 @@ - + Gengo Sync Translation (Response) diff --git a/addons/base_gengo/i18n/ar.po b/addons/base_gengo/i18n/ar.po index c19b15d34ea..70d22dfe755 100644 --- a/addons/base_gengo/i18n/ar.po +++ b/addons/base_gengo/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/bs.po b/addons/base_gengo/i18n/bs.po new file mode 100644 index 00000000000..3d4f1b58474 --- /dev/null +++ b/addons/base_gengo/i18n/bs.po @@ -0,0 +1,257 @@ +# 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:05+0000\n" +"PO-Revision-Date: 2013-10-25 23:23+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-10-26 05:46+0000\n" +"X-Generator: Launchpad (build 16810)\n" + +#. module: base_gengo +#: view:res.company:0 +msgid "Comments for Translator" +msgstr "Komentari za prevodioca" + +#. module: base_gengo +#: field:ir.translation,job_id:0 +msgid "Gengo Job ID" +msgstr "Id Gengo zadatka" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "This language is not supported by the Gengo translation services." +msgstr "Ovaj jezik nije podržan od strane Gengo prevodilačkog servisa." + +#. module: base_gengo +#: field:res.company,gengo_comment:0 +msgid "Comments" +msgstr "Komentari" + +#. module: base_gengo +#: field:res.company,gengo_private_key:0 +msgid "Gengo Private Key" +msgstr "Gengo privatni ključ" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_base_gengo_translations +msgid "base.gengo.translations" +msgstr "base.gengo.translations" + +#. module: base_gengo +#: help:res.company,gengo_auto_approve:0 +msgid "Jobs are Automatically Approved by Gengo." +msgstr "Zadatci su automatski odobreni od strane Gengo" + +#. module: base_gengo +#: field:base.gengo.translations,lang_id:0 +msgid "Language" +msgstr "Jezik" + +#. module: base_gengo +#: field:ir.translation,gengo_comment:0 +msgid "Comments & Activity Linked to Gengo" +msgstr "Komentari i Aktivnosti povezani na Gengo" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:124 +#, python-format +msgid "Gengo Sync Translation (Response)" +msgstr "Gengo sinhronizacija prevoda (Odgovor)" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:72 +#, python-format +msgid "" +"Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " +"authentication parameters under `Settings > Companies > Gengo Parameters`." +msgstr "" +"Gengo `Javni ključ` ili `Privatni ključ` nedostaje. Podesite svoju Gengo " +"prijavu pod `Postavke > Kompanije > Gengo parametri`." + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Translation By Machine" +msgstr "Prevod od strane mašine" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:155 +#, python-format +msgid "" +"%s\n" +"\n" +"--\n" +" Commented on %s by %s." +msgstr "" +"%s\n" +"\n" +"--\n" +"Komentirano %s od strane %s." + +#. module: base_gengo +#: field:ir.translation,gengo_translation:0 +msgid "Gengo Translation Service Level" +msgstr "Nivo Gengo prevodilačkog servisa" + +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "Odabrani Gengo prevodilački servis nije podržan za ovaj jezik." + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Standard" +msgstr "Standardno" + +#. module: base_gengo +#: help:ir.translation,gengo_translation:0 +msgid "" +"You can select here the service level you want for an automatic translation " +"using Gengo." +msgstr "" +"Ovdje možete odabrati nivo servisa koji želite za automatski prevod " +"koristeći Gengo." + +#. module: base_gengo +#: field:base.gengo.translations,restart_send_job:0 +msgid "Restart Sending Job" +msgstr "Ponovno pokreni posao slanja" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "To Approve In Gengo" +msgstr "Za odobrenje u Gengo" + +#. module: base_gengo +#: view:res.company:0 +msgid "Private Key" +msgstr "Privatni ključ" + +#. module: base_gengo +#: view:res.company:0 +msgid "Public Key" +msgstr "Javni ključ" + +#. module: base_gengo +#: field:res.company,gengo_public_key:0 +msgid "Gengo Public Key" +msgstr "Gengo javno ključ" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:123 +#, python-format +msgid "Gengo Sync Translation (Request)" +msgstr "Gengo sinhronizacija prevoda (Zahtjev)" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Translations" +msgstr "Prevodi" + +#. module: base_gengo +#: field:res.company,gengo_auto_approve:0 +msgid "Auto Approve Translation ?" +msgstr "Automatski odobri prevode?" + +#. module: base_gengo +#: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations +#: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations +msgid "Gengo: Manual Request of Translation" +msgstr "Gengo: ručni zahtjevi prevoda" + +#. module: base_gengo +#: code:addons/base_gengo/ir_translation.py:62 +#: code:addons/base_gengo/wizard/base_gengo_translations.py:109 +#, python-format +msgid "Gengo Authentication Error" +msgstr "Gerška u autentifikaciji Gengo" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_res_company +msgid "Companies" +msgstr "Kompanije" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "" +"Note: If the translation state is 'In Progress', it means that the " +"translation has to be approved to be uploaded in this system. You are " +"supposed to do that directly by using your Gengo Account" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:82 +#, python-format +msgid "" +"Gengo connection failed with this message:\n" +"``%s``" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Gengo Parameters" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Send" +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Ultra" +msgstr "" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_ir_translation +msgid "ir.translation" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Translation Service" +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Pro" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Gengo Request Form" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "Warning" +msgstr "" + +#. module: base_gengo +#: help:res.company,gengo_comment:0 +msgid "" +"This comment will be automatically be enclosed in each an every request sent " +"to Gengo" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Cancel" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "or" +msgstr "" diff --git a/addons/base_gengo/i18n/cs.po b/addons/base_gengo/i18n/cs.po index 91dc5ea941d..8a847b0d2ab 100644 --- a/addons/base_gengo/i18n/cs.po +++ b/addons/base_gengo/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/da.po b/addons/base_gengo/i18n/da.po new file mode 100644 index 00000000000..ea260f492ea --- /dev/null +++ b/addons/base_gengo/i18n/da.po @@ -0,0 +1,256 @@ +# Danish 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:05+0000\n" +"PO-Revision-Date: 2013-10-14 19:01+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-10-15 04:41+0000\n" +"X-Generator: Launchpad (build 16799)\n" + +#. module: base_gengo +#: view:res.company:0 +msgid "Comments for Translator" +msgstr "Bemærkning til oversætter" + +#. module: base_gengo +#: field:ir.translation,job_id:0 +msgid "Gengo Job ID" +msgstr "Gengo Job ID" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "This language is not supported by the Gengo translation services." +msgstr "Dette sprog er ikke supporteret af Gengo oversættelses service." + +#. module: base_gengo +#: field:res.company,gengo_comment:0 +msgid "Comments" +msgstr "Bemærkninger" + +#. module: base_gengo +#: field:res.company,gengo_private_key:0 +msgid "Gengo Private Key" +msgstr "Gengo Privat nøgle" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_base_gengo_translations +msgid "base.gengo.translations" +msgstr "base.gengo.translations" + +#. module: base_gengo +#: help:res.company,gengo_auto_approve:0 +msgid "Jobs are Automatically Approved by Gengo." +msgstr "Opgaver er automatisk godkendt af Gengo." + +#. module: base_gengo +#: field:base.gengo.translations,lang_id:0 +msgid "Language" +msgstr "Sprog" + +#. module: base_gengo +#: field:ir.translation,gengo_comment:0 +msgid "Comments & Activity Linked to Gengo" +msgstr "Bemærkninger og aktiviteter forbundet til Gengo" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:124 +#, python-format +msgid "Gengo Sync Translation (Response)" +msgstr "Gengo synk oversættelse (Svar)" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:72 +#, python-format +msgid "" +"Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " +"authentication parameters under `Settings > Companies > Gengo Parameters`." +msgstr "" +"Gengo 'Offentlig nøgle' eller 'Private nøgle' mangler. Indtast din Gengo " +"godkendelses oplysninger under 'Opsætning > Firmaer > Gengo opsætning'." + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Translation By Machine" +msgstr "Maskinel oversættelse" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:155 +#, python-format +msgid "" +"%s\n" +"\n" +"--\n" +" Commented on %s by %s." +msgstr "" +"%s\n" +"\n" +"--\n" +" Kommenteret på %s af %s." + +#. module: base_gengo +#: field:ir.translation,gengo_translation:0 +msgid "Gengo Translation Service Level" +msgstr "Gengo Oversættelses service niveau" + +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" +"Den valgte Genko oversættelses service er ikke supporteret for dette sprog." + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Standard" +msgstr "Standard" + +#. module: base_gengo +#: help:ir.translation,gengo_translation:0 +msgid "" +"You can select here the service level you want for an automatic translation " +"using Gengo." +msgstr "" + +#. module: base_gengo +#: field:base.gengo.translations,restart_send_job:0 +msgid "Restart Sending Job" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "To Approve In Gengo" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Private Key" +msgstr "Privat nøgle" + +#. module: base_gengo +#: view:res.company:0 +msgid "Public Key" +msgstr "Offentlig nøgle" + +#. module: base_gengo +#: field:res.company,gengo_public_key:0 +msgid "Gengo Public Key" +msgstr "Gengo offentlig nøgle" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:123 +#, python-format +msgid "Gengo Sync Translation (Request)" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Translations" +msgstr "Oversættelser" + +#. module: base_gengo +#: field:res.company,gengo_auto_approve:0 +msgid "Auto Approve Translation ?" +msgstr "" + +#. module: base_gengo +#: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations +#: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations +msgid "Gengo: Manual Request of Translation" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/ir_translation.py:62 +#: code:addons/base_gengo/wizard/base_gengo_translations.py:109 +#, python-format +msgid "Gengo Authentication Error" +msgstr "" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "" +"Note: If the translation state is 'In Progress', it means that the " +"translation has to be approved to be uploaded in this system. You are " +"supposed to do that directly by using your Gengo Account" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:82 +#, python-format +msgid "" +"Gengo connection failed with this message:\n" +"``%s``" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Gengo Parameters" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Send" +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Ultra" +msgstr "" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_ir_translation +msgid "ir.translation" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Translation Service" +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Pro" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Gengo Request Form" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "Warning" +msgstr "" + +#. module: base_gengo +#: help:res.company,gengo_comment:0 +msgid "" +"This comment will be automatically be enclosed in each an every request sent " +"to Gengo" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Cancel" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "or" +msgstr "" diff --git a/addons/base_gengo/i18n/de.po b/addons/base_gengo/i18n/de.po index 97c119a3861..7e467dca54b 100644 --- a/addons/base_gengo/i18n/de.po +++ b/addons/base_gengo/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 @@ -110,6 +110,7 @@ msgstr "Gengo Übersetzungssergvice" msgid "" "The Gengo translation service selected is not supported for this language." msgstr "" +"Der Gengo Übersetzungsservice wird für diese Sprache nicht unterstützt" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -218,7 +219,7 @@ msgstr "Senden" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Ultra" -msgstr "" +msgstr "Ultra" #. module: base_gengo #: model:ir.model,name:base_gengo.model_ir_translation diff --git a/addons/base_gengo/i18n/es.po b/addons/base_gengo/i18n/es.po index 917b0f323f3..99254c78313 100644 --- a/addons/base_gengo/i18n/es.po +++ b/addons/base_gengo/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/fr.po b/addons/base_gengo/i18n/fr.po index 208345eadcd..ad026fa7c7c 100644 --- a/addons/base_gengo/i18n/fr.po +++ b/addons/base_gengo/i18n/fr.po @@ -14,18 +14,18 @@ msgstr "" "MIME-Version: 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" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 msgid "Comments for Translator" -msgstr "" +msgstr "Commentaires pour traducteur" #. module: base_gengo #: field:ir.translation,job_id:0 msgid "Gengo Job ID" -msgstr "" +msgstr "Identifiant de la tâche Gengo" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:114 @@ -61,13 +61,13 @@ msgstr "Langue" #. module: base_gengo #: field:ir.translation,gengo_comment:0 msgid "Comments & Activity Linked to Gengo" -msgstr "" +msgstr "Commentaires et activité liés à Gengo" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:124 #, python-format msgid "Gengo Sync Translation (Response)" -msgstr "" +msgstr "Synchronisation de la traduction Gengo (Réponse)" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:72 diff --git a/addons/base_gengo/i18n/hr.po b/addons/base_gengo/i18n/hr.po index e63c9f9309e..e764bdd2507 100644 --- a/addons/base_gengo/i18n/hr.po +++ b/addons/base_gengo/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/hu.po b/addons/base_gengo/i18n/hu.po index 96ebf22939d..41c8fe03b31 100644 --- a/addons/base_gengo/i18n/hu.po +++ b/addons/base_gengo/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 04:59+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/it.po b/addons/base_gengo/i18n/it.po index 3c3bb8b5eb6..5030a80b41e 100644 --- a/addons/base_gengo/i18n/it.po +++ b/addons/base_gengo/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/mk.po b/addons/base_gengo/i18n/mk.po index f97bc45146f..be71543c9b5 100644 --- a/addons/base_gengo/i18n/mk.po +++ b/addons/base_gengo/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 @@ -25,7 +25,7 @@ msgstr "Коментар за преведувачот" #. module: base_gengo #: field:ir.translation,job_id:0 msgid "Gengo Job ID" -msgstr "" +msgstr "Gengo Job ID" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:114 @@ -51,7 +51,7 @@ msgstr "base.gengo.translations" #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." -msgstr "" +msgstr "Работните места се автоматски одобрени од Gengo." #. module: base_gengo #: field:base.gengo.translations,lang_id:0 @@ -61,7 +61,7 @@ msgstr "Јазик" #. module: base_gengo #: field:ir.translation,gengo_comment:0 msgid "Comments & Activity Linked to Gengo" -msgstr "Коментари активност врзани со Gengo" +msgstr "Коментари & активност врзани со Gengo" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:124 @@ -76,6 +76,9 @@ msgid "" "Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " "authentication parameters under `Settings > Companies > Gengo Parameters`." msgstr "" +"Недостига Gengo `Јавен клуч` или `Приватен клуч`. Внесете ги вашите " +"параметри за Gengo автентикација под `Settings > Companies > Gengo " +"Parameters`." #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -91,6 +94,10 @@ msgid "" "--\n" " Commented on %s by %s." msgstr "" +"%s\n" +"\n" +"--\n" +" Коментирано на %s од %s." #. module: base_gengo #: field:ir.translation,gengo_translation:0 @@ -101,7 +108,7 @@ msgstr "" #: constraint:ir.translation:0 msgid "" "The Gengo translation service selected is not supported for this language." -msgstr "" +msgstr "Избраниот Gengo сервис за преведување не е поддржан за овој јазик." #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -114,6 +121,8 @@ msgid "" "You can select here the service level you want for an automatic translation " "using Gengo." msgstr "" +"Изберете го нивото на сервисот кој го сакате за автоматско преведување со " +"користење на Gengo." #. module: base_gengo #: field:base.gengo.translations,restart_send_job:0 @@ -123,7 +132,7 @@ msgstr "" #. module: base_gengo #: view:ir.translation:0 msgid "To Approve In Gengo" -msgstr "" +msgstr "Да се одобри во Gengo" #. module: base_gengo #: view:res.company:0 @@ -160,14 +169,14 @@ msgstr "Автоматско одобрување на превод?" #: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations #: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations msgid "Gengo: Manual Request of Translation" -msgstr "" +msgstr "Gengo: Рачно барање за превод" #. module: base_gengo #: code:addons/base_gengo/ir_translation.py:62 #: code:addons/base_gengo/wizard/base_gengo_translations.py:109 #, python-format msgid "Gengo Authentication Error" -msgstr "Грешка со автентикација" +msgstr "Грешка Gengo автентикација" #. module: base_gengo #: model:ir.model,name:base_gengo.model_res_company @@ -181,6 +190,9 @@ msgid "" "translation has to be approved to be uploaded in this system. You are " "supposed to do that directly by using your Gengo Account" msgstr "" +"Белешка: Доколку состојбата на преводот е 'Во тек', тоа значи дека преводот " +"треба да биде одобрен за да биде качен во овој систем. Тоа треба да го " +"направите директно со користење на вашата Gengo Сметка" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:82 @@ -189,6 +201,8 @@ msgid "" "Gengo connection failed with this message:\n" "``%s``" msgstr "" +"Gengo конекцијата е неуспешна со оваа порака:\n" +"``%s``" #. module: base_gengo #: view:res.company:0 @@ -223,7 +237,7 @@ msgstr "Про" #. module: base_gengo #: view:base.gengo.translations:0 msgid "Gengo Request Form" -msgstr "" +msgstr "Формулар за Gengo барање" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:114 diff --git a/addons/base_gengo/i18n/mn.po b/addons/base_gengo/i18n/mn.po index 3b9e6f2cc17..eb5c1f46861 100644 --- a/addons/base_gengo/i18n/mn.po +++ b/addons/base_gengo/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/nb.po b/addons/base_gengo/i18n/nb.po index eb87053a350..eb723c35d92 100644 --- a/addons/base_gengo/i18n/nb.po +++ b/addons/base_gengo/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/nl.po b/addons/base_gengo/i18n/nl.po index 65003ded54c..fb618c25774 100644 --- a/addons/base_gengo/i18n/nl.po +++ b/addons/base_gengo/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 @@ -31,7 +31,7 @@ msgstr "Gengo Job ID" #: code:addons/base_gengo/wizard/base_gengo_translations.py:114 #, python-format msgid "This language is not supported by the Gengo translation services." -msgstr "" +msgstr "Deze taal wordt (nog) niet ondersteund door Gengo vertaal services." #. module: base_gengo #: field:res.company,gengo_comment:0 @@ -51,7 +51,7 @@ msgstr "base.gengo.translations" #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." -msgstr "" +msgstr "Opdrachten worden automatisch goedgekeurd door Gengo." #. module: base_gengo #: field:base.gengo.translations,lang_id:0 @@ -61,13 +61,13 @@ msgstr "Taal" #. module: base_gengo #: field:ir.translation,gengo_comment:0 msgid "Comments & Activity Linked to Gengo" -msgstr "" +msgstr "Reacties & Activiteiten gelinkt aan Gengo" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:124 #, python-format msgid "Gengo Sync Translation (Response)" -msgstr "" +msgstr "Gengo Synchroniseer vertaling" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:72 @@ -76,6 +76,8 @@ msgid "" "Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " "authentication parameters under `Settings > Companies > Gengo Parameters`." msgstr "" +"Gengo 'Publieke Sleutel' of 'Prive Sleutel' missen. Vul uw Gengo gegevens in " +"onder 'Instellingen > Bedrijven > Gengo Gegevens'/" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -94,18 +96,19 @@ msgstr "" "%s\n" "\n" "--\n" -" Heeft opmerkingen op %s door %s." +" Reacties op %s door %s" #. module: base_gengo #: field:ir.translation,gengo_translation:0 msgid "Gengo Translation Service Level" -msgstr "" +msgstr "Gengo vertalingsservice niveau" #. module: base_gengo #: constraint:ir.translation:0 msgid "" "The Gengo translation service selected is not supported for this language." msgstr "" +"De gebruikte Gengo vertalingsservice wordt niet ondersteund voor deze taal" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -118,16 +121,18 @@ msgid "" "You can select here the service level you want for an automatic translation " "using Gengo." msgstr "" +"U kunt hier het service niveau voor de automatische vertaling door Gengo " +"selecteren." #. module: base_gengo #: field:base.gengo.translations,restart_send_job:0 msgid "Restart Sending Job" -msgstr "Start verstuur job opnieuw" +msgstr "Verzending opdacht opnieuw starten" #. module: base_gengo #: view:ir.translation:0 msgid "To Approve In Gengo" -msgstr "Gied te keuren in Gengo" +msgstr "Goed te keuren in Gengo" #. module: base_gengo #: view:res.company:0 @@ -148,7 +153,7 @@ msgstr "Gengo publieke sleutel" #: code:addons/base_gengo/wizard/base_gengo_translations.py:123 #, python-format msgid "Gengo Sync Translation (Request)" -msgstr "" +msgstr "Gengo Sync vertaling (Verzoek)" #. module: base_gengo #: view:ir.translation:0 @@ -164,14 +169,14 @@ msgstr "Automatisch vertalingen goedkeuren" #: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations #: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations msgid "Gengo: Manual Request of Translation" -msgstr "" +msgstr "Gengo: Handmatig vertalingen aanvragen" #. module: base_gengo #: code:addons/base_gengo/ir_translation.py:62 #: code:addons/base_gengo/wizard/base_gengo_translations.py:109 #, python-format msgid "Gengo Authentication Error" -msgstr "" +msgstr "Gengo authenticatie Fout" #. module: base_gengo #: model:ir.model,name:base_gengo.model_res_company @@ -185,6 +190,9 @@ msgid "" "translation has to be approved to be uploaded in this system. You are " "supposed to do that directly by using your Gengo Account" msgstr "" +"Noot: Als de vertalingsstatus 'In behandeling' is, staat deze klaar voor " +"goedkeuring om doorgevoerd te worden in dit systeem. Het is de bedoeling dat " +"u dit via u Gengo Account goedkeurt" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:82 @@ -193,11 +201,13 @@ msgid "" "Gengo connection failed with this message:\n" "``%s``" msgstr "" +"Gengo connectie mislukt met deze melding:\n" +"\"%s\"" #. module: base_gengo #: view:res.company:0 msgid "Gengo Parameters" -msgstr "" +msgstr "Gengo gegevens" #. module: base_gengo #: view:base.gengo.translations:0 @@ -227,7 +237,7 @@ msgstr "Pro" #. module: base_gengo #: view:base.gengo.translations:0 msgid "Gengo Request Form" -msgstr "" +msgstr "Gengo aanvraag formulier" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:114 @@ -241,6 +251,8 @@ msgid "" "This comment will be automatically be enclosed in each an every request sent " "to Gengo" msgstr "" +"Deze reactie wordt automatisch toegevoegd in elke aanvraag verzonden aan " +"Gengo" #. module: base_gengo #: view:base.gengo.translations:0 @@ -250,4 +262,4 @@ msgstr "Annuleren" #. module: base_gengo #: view:base.gengo.translations:0 msgid "or" -msgstr "" +msgstr "of" diff --git a/addons/base_gengo/i18n/pt.po b/addons/base_gengo/i18n/pt.po index b838cb89113..7fe2106db62 100644 --- a/addons/base_gengo/i18n/pt.po +++ b/addons/base_gengo/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 @@ -80,7 +80,7 @@ msgstr "" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Translation By Machine" -msgstr "" +msgstr "Tradução de máquina" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 diff --git a/addons/base_gengo/i18n/pt_BR.po b/addons/base_gengo/i18n/pt_BR.po index 6f98810e079..e692baec11a 100644 --- a/addons/base_gengo/i18n/pt_BR.po +++ b/addons/base_gengo/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/ro.po b/addons/base_gengo/i18n/ro.po index 4f915ba52bb..f76a9c01e58 100644 --- a/addons/base_gengo/i18n/ro.po +++ b/addons/base_gengo/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/sl.po b/addons/base_gengo/i18n/sl.po index 5be5008582a..e13da73d52f 100644 --- a/addons/base_gengo/i18n/sl.po +++ b/addons/base_gengo/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/th.po b/addons/base_gengo/i18n/th.po index e0b5ba3e2fc..b00fc0a0985 100644 --- a/addons/base_gengo/i18n/th.po +++ b/addons/base_gengo/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-21 05:36+0000\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/tr.po b/addons/base_gengo/i18n/tr.po index 22197682162..6b65591d82a 100644 --- a/addons/base_gengo/i18n/tr.po +++ b/addons/base_gengo/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 @@ -80,7 +80,7 @@ msgstr "" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Translation By Machine" -msgstr "" +msgstr "Makine Tarafından Çeviri" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 @@ -95,7 +95,7 @@ msgstr "" #. module: base_gengo #: field:ir.translation,gengo_translation:0 msgid "Gengo Translation Service Level" -msgstr "" +msgstr "Genge Çeviri Hizmet Düzeyi" #. module: base_gengo #: constraint:ir.translation:0 @@ -114,6 +114,8 @@ msgid "" "You can select here the service level you want for an automatic translation " "using Gengo." msgstr "" +"Genge otomatik çeviri servisi için istediğiniz hizmet düzeyini buradan " +"seçebilirsiniz" #. module: base_gengo #: field:base.gengo.translations,restart_send_job:0 @@ -193,7 +195,7 @@ msgstr "" #. module: base_gengo #: view:res.company:0 msgid "Gengo Parameters" -msgstr "" +msgstr "Gengo Parametreleri" #. module: base_gengo #: view:base.gengo.translations:0 diff --git a/addons/base_gengo/i18n/zh_CN.po b/addons/base_gengo/i18n/zh_CN.po index d923697bf68..23f826a5096 100644 --- a/addons/base_gengo/i18n/zh_CN.po +++ b/addons/base_gengo/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:38+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_iban/i18n/ar.po b/addons/base_iban/i18n/ar.po index 66a8df723f6..2db421db7bf 100644 --- a/addons/base_iban/i18n/ar.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/bg.po b/addons/base_iban/i18n/bg.po index da3d6f2fcfd..4d6d4fb9a9a 100644 --- a/addons/base_iban/i18n/bg.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/bs.po b/addons/base_iban/i18n/bs.po index 8703971789c..8ddf2a3ceb7 100644 --- a/addons/base_iban/i18n/bs.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ca.po b/addons/base_iban/i18n/ca.po index c9d95180402..18f05d571c6 100644 --- a/addons/base_iban/i18n/ca.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/cs.po b/addons/base_iban/i18n/cs.po index 8a3290e1363..25fe8b52944 100644 --- a/addons/base_iban/i18n/cs.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/da.po b/addons/base_iban/i18n/da.po index 14e7fc468aa..3c67d536b7c 100644 --- a/addons/base_iban/i18n/da.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/de.po b/addons/base_iban/i18n/de.po index 6ffb0a950a2..728348352b8 100644 --- a/addons/base_iban/i18n/de.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/el.po b/addons/base_iban/i18n/el.po index 0be1c0aa872..8c4c5fb045b 100644 --- a/addons/base_iban/i18n/el.po +++ b/addons/base_iban/i18n/el.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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/base_iban/i18n/en_GB.po b/addons/base_iban/i18n/en_GB.po index 9cb192c2ebf..a93e6bb8b2e 100644 --- a/addons/base_iban/i18n/en_GB.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es.po b/addons/base_iban/i18n/es.po index 39b9008f088..46d482e4b19 100644 --- a/addons/base_iban/i18n/es.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_AR.po b/addons/base_iban/i18n/es_AR.po index 3826aaccde4..689b71a1368 100644 --- a/addons/base_iban/i18n/es_AR.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_CR.po b/addons/base_iban/i18n/es_CR.po index 61d94cb9521..a0619bb527b 100644 --- a/addons/base_iban/i18n/es_CR.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: base_iban diff --git a/addons/base_iban/i18n/es_EC.po b/addons/base_iban/i18n/es_EC.po index 08af165333b..02151361048 100644 --- a/addons/base_iban/i18n/es_EC.po +++ b/addons/base_iban/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_PY.po b/addons/base_iban/i18n/es_PY.po index 4a652f1c045..b91570ba3d8 100644 --- a/addons/base_iban/i18n/es_PY.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/et.po b/addons/base_iban/i18n/et.po index 70ded600ed6..0138a578aa7 100644 --- a/addons/base_iban/i18n/et.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/eu.po b/addons/base_iban/i18n/eu.po index f533c6d2192..6ae037b25d2 100644 --- a/addons/base_iban/i18n/eu.po +++ b/addons/base_iban/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fa.po b/addons/base_iban/i18n/fa.po index e1e67bf93d3..9022ed44941 100644 --- a/addons/base_iban/i18n/fa.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fi.po b/addons/base_iban/i18n/fi.po index 33f39071540..fa634996173 100644 --- a/addons/base_iban/i18n/fi.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fr.po b/addons/base_iban/i18n/fr.po index b8fed3e600d..3ef85b7813c 100644 --- a/addons/base_iban/i18n/fr.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/gl.po b/addons/base_iban/i18n/gl.po index 54e06384446..5c69cfc5e4b 100644 --- a/addons/base_iban/i18n/gl.po +++ b/addons/base_iban/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/gu.po b/addons/base_iban/i18n/gu.po index fbfae8cf4f8..e56647e05cb 100644 --- a/addons/base_iban/i18n/gu.po +++ b/addons/base_iban/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/hr.po b/addons/base_iban/i18n/hr.po index 4eca0a7a197..ebe54a44f05 100644 --- a/addons/base_iban/i18n/hr.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: hr\n" #. module: base_iban diff --git a/addons/base_iban/i18n/hu.po b/addons/base_iban/i18n/hu.po index a14c9a67884..6bc41074288 100644 --- a/addons/base_iban/i18n/hu.po +++ b/addons/base_iban/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-17 04:59+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/id.po b/addons/base_iban/i18n/id.po index 8c3a224ef3c..6a9d45a20fc 100644 --- a/addons/base_iban/i18n/id.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/it.po b/addons/base_iban/i18n/it.po index f3eb93b6bfb..375eb47096f 100644 --- a/addons/base_iban/i18n/it.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ja.po b/addons/base_iban/i18n/ja.po index 3406429bd09..258d9a213ca 100644 --- a/addons/base_iban/i18n/ja.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ko.po b/addons/base_iban/i18n/ko.po index 67041755d7d..604ac9d66d4 100644 --- a/addons/base_iban/i18n/ko.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/lt.po b/addons/base_iban/i18n/lt.po index b6ec4bca784..007cb4e6ecb 100644 --- a/addons/base_iban/i18n/lt.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 @@ -43,7 +43,7 @@ msgstr "" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_zip_field msgid "zip" -msgstr "zip" +msgstr "pašto kodas" #. module: base_iban #: help:res.partner.bank,iban:0 @@ -53,7 +53,7 @@ msgstr "Tarptautinis banko sąskaitos numeris" #. module: base_iban #: model:ir.model,name:base_iban.model_res_partner_bank msgid "Bank Accounts" -msgstr "" +msgstr "Banko sąskaitos" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_country_field diff --git a/addons/base_iban/i18n/lv.po b/addons/base_iban/i18n/lv.po index 165c9b55c09..24ae2535967 100644 --- a/addons/base_iban/i18n/lv.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/mk.po b/addons/base_iban/i18n/mk.po index 2cf1008bd94..49ed36c7d1b 100644 --- a/addons/base_iban/i18n/mk.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 @@ -25,14 +25,14 @@ msgid "" "valid payments" msgstr "" "\n" -"Ве молиме дефинирајте BIC/Swift код за банка за IBAN тип на сметка за " -"извршување на плаќања." +"Ве молиме дефинирајте BIC/Swift код на банка за банкарски тип на сметка IBAN " +"за да направите валидни плаќања." #. module: base_iban #: code:addons/base_iban/base_iban.py:141 #, python-format msgid "This IBAN does not pass the validation check, please verify it" -msgstr "IBAN-от не ја поминува проверката за валидност. Проверете го." +msgstr "IBAN-от не ја поминува проверката за валидност. Потврдете го." #. module: base_iban #: model:res.partner.bank.type,format_layout:base_iban.bank_iban @@ -47,12 +47,12 @@ msgstr "bank_bic" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_zip_field msgid "zip" -msgstr "zip" +msgstr "Поштенски број" #. module: base_iban #: help:res.partner.bank,iban:0 msgid "International Bank Account Number" -msgstr "Интернационален број на банкарска сметка" +msgstr "Број на меѓународна банкарска сметка" #. module: base_iban #: model:ir.model,name:base_iban.model_res_partner_bank @@ -81,7 +81,7 @@ msgstr "IBAN" #: code:addons/base_iban/base_iban.py:142 #, python-format msgid "The IBAN is invalid, it should begin with the country code" -msgstr "IBAN-от е невалиде, треба да започнува со кодот на државата" +msgstr "IBAN-от е невалиден, треба да започнува со кодот на државата" #. module: base_iban #: model:res.partner.bank.type,name:base_iban.bank_iban diff --git a/addons/base_iban/i18n/mn.po b/addons/base_iban/i18n/mn.po index 446f6f3cf37..6ba8d217022 100644 --- a/addons/base_iban/i18n/mn.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nb.po b/addons/base_iban/i18n/nb.po index 48f9c25e37b..d1b48d7daab 100644 --- a/addons/base_iban/i18n/nb.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nl.po b/addons/base_iban/i18n/nl.po index 583b3802c50..1596d301437 100644 --- a/addons/base_iban/i18n/nl.po +++ b/addons/base_iban/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-09 12:05+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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nl_BE.po b/addons/base_iban/i18n/nl_BE.po index 175916e3413..3f7f7c6c0e2 100644 --- a/addons/base_iban/i18n/nl_BE.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/oc.po b/addons/base_iban/i18n/oc.po index 48b5edc1101..d0d0cfb9dd9 100644 --- a/addons/base_iban/i18n/oc.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pl.po b/addons/base_iban/i18n/pl.po index 6e4edbb95b9..a9fd70e55c7 100644 --- a/addons/base_iban/i18n/pl.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pt.po b/addons/base_iban/i18n/pt.po index e988380610b..56b60723891 100644 --- a/addons/base_iban/i18n/pt.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pt_BR.po b/addons/base_iban/i18n/pt_BR.po index f82d55f2637..ca907920e78 100644 --- a/addons/base_iban/i18n/pt_BR.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ro.po b/addons/base_iban/i18n/ro.po index 4fdb1987163..07dd95d496c 100644 --- a/addons/base_iban/i18n/ro.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ru.po b/addons/base_iban/i18n/ru.po index 1b700cbf594..093f8eeab91 100644 --- a/addons/base_iban/i18n/ru.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sk.po b/addons/base_iban/i18n/sk.po index ec40c1f1ed2..bae54e6e604 100644 --- a/addons/base_iban/i18n/sk.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sl.po b/addons/base_iban/i18n/sl.po index 6f3e7107546..e9574ab96e2 100644 --- a/addons/base_iban/i18n/sl.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sq.po b/addons/base_iban/i18n/sq.po index 3b0a866f76b..8cad764685d 100644 --- a/addons/base_iban/i18n/sq.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sr.po b/addons/base_iban/i18n/sr.po index ac80277e12f..daf2e6c5c62 100644 --- a/addons/base_iban/i18n/sr.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sr@latin.po b/addons/base_iban/i18n/sr@latin.po index a06215e6713..ea288bee758 100644 --- a/addons/base_iban/i18n/sr@latin.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sv.po b/addons/base_iban/i18n/sv.po index 7045aba7bf8..933ef349404 100644 --- a/addons/base_iban/i18n/sv.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ta.po b/addons/base_iban/i18n/ta.po index 4c21639b991..5e162aa1aac 100644 --- a/addons/base_iban/i18n/ta.po +++ b/addons/base_iban/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/tlh.po b/addons/base_iban/i18n/tlh.po index 01e94922ed3..54df852df63 100644 --- a/addons/base_iban/i18n/tlh.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/tr.po b/addons/base_iban/i18n/tr.po index 6bcdb10658b..64de27d878b 100644 --- a/addons/base_iban/i18n/tr.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/uk.po b/addons/base_iban/i18n/uk.po index bf05aeb9221..c773a13fca7 100644 --- a/addons/base_iban/i18n/uk.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/vi.po b/addons/base_iban/i18n/vi.po index 29bb03a8527..ff2f20d6807 100644 --- a/addons/base_iban/i18n/vi.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/zh_CN.po b/addons/base_iban/i18n/zh_CN.po index c3442869c36..459cf05fa27 100644 --- a/addons/base_iban/i18n/zh_CN.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/zh_TW.po b/addons/base_iban/i18n/zh_TW.po index 496a52af6ed..6b374c06020 100644 --- a/addons/base_iban/i18n/zh_TW.po +++ b/addons/base_iban/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:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:02+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_import/__openerp__.py b/addons/base_import/__openerp__.py index eb8b4561c7e..e044930a242 100644 --- a/addons/base_import/__openerp__.py +++ b/addons/base_import/__openerp__.py @@ -26,7 +26,7 @@ Re-implement openerp's file import system: 'author': 'OpenERP SA', 'depends': ['web'], 'installable': True, - 'auto_install': False, + 'auto_install': True, 'data': [ 'security/ir.model.access.csv', ], diff --git a/addons/base_import/controllers.py b/addons/base_import/controllers.py index b926c6b2782..afaf06e99e0 100644 --- a/addons/base_import/controllers.py +++ b/addons/base_import/controllers.py @@ -1,12 +1,10 @@ # -*- coding: utf-8 -*- import simplejson -import openerp +from openerp.http import Controller, route -class ImportController(openerp.addons.web.http.Controller): - _cp_path = '/base_import' - - @openerp.addons.web.http.httprequest +class ImportController(Controller): + @route('/base_import/set_file') def set_file(self, req, file, import_id, jsonp='callback'): import_id = int(import_id) diff --git a/addons/base_import/i18n/ar.po b/addons/base_import/i18n/ar.po index ba70430c582..483f43d7576 100644 --- a/addons/base_import/i18n/ar.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/bs.po b/addons/base_import/i18n/bs.po new file mode 100644 index 00000000000..23dfaba47fc --- /dev/null +++ b/addons/base_import/i18n/bs.po @@ -0,0 +1,1471 @@ +# 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:05+0000\n" +"PO-Revision-Date: 2013-10-25 23:38+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-10-26 05:46+0000\n" +"X-Generator: Launchpad (build 16810)\n" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:451 +#, python-format +msgid "Get all possible values" +msgstr "Dohvati sve moguće vrijednosti" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:71 +#, python-format +msgid "Need to import data from an other application?" +msgstr "Potreban je uvoz podataka iz druge aplikacije?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:163 +#, python-format +msgid "" +"When you use External IDs, you can import CSV files \n" +" with the \"External ID\" column to define the " +"External \n" +" ID of each record you import. Then, you will be able " +"\n" +" to make a reference to that record with columns like " +"\n" +" \"Field/External ID\". The following two CSV files " +"give \n" +" you an example for Products and their Categories." +msgstr "" +"Kada koristite vanjske ID-eve, možete uvesti csv datoteke \n" +" sa kolonom \"External ID\" " +"definirate vanjski ID svakog zapisa \n" +" koji uvozite. Tada ćete biti " +"u mogućnosti napraviti referencu \n" +" na taj zapis sa kolonama tipa " +"\"polje/External ID\". Sljedeća dvije \n" +" csv datoteke daju primjer za " +"proizvode i njihove kategorije." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:271 +#, python-format +msgid "" +"How to export/import different tables from an SQL \n" +" application to OpenERP?" +msgstr "" +"Kako izvesti/uvesti različite tabele iz SQL \n" +" " +"programa u OpenERP" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:331 +#, python-format +msgid "Relation Fields" +msgstr "Relacijska polja" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:142 +#, python-format +msgid "" +"Country/Database ID: the unique OpenERP ID for a \n" +" record, defined by the ID postgresql column" +msgstr "" +"Država/ID baze: jedinstveni OpenERP ID za \n" +" " +" zapis, definran kolonom postgres kolonom ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:155 +#, python-format +msgid "" +"Use \n" +" Country/Database ID: You should rarely use this \n" +" notation. It's mostly used by developers as it's " +"main \n" +" advantage is to never have conflicts (you may have \n" +" several records with the same name, but they always " +"\n" +" have a unique Database ID)" +msgstr "" +"Korištenje \n" +" Država/ID " +"BAze : ovo bi trebali rijetko koristiti\n" +" za " +"označavanje. Ovo je većinom korišteno od strane programera\n" +" jer je " +"glavna prednost ovoga to što nikad nema konflikata \n" +" (možete " +"imati više zapisa istog naziva, ali uvjek sa jedinstvenim IDentifikatorom u " +"Bazi)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:146 +#, python-format +msgid "" +"For the country \n" +" Belgium, you can use one of these 3 ways to import:" +msgstr "" +"Za državu \n" +" " +" Belgiju, možete koristiti jedan od ova 3 načina uza uvoz:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:303 +#, python-format +msgid "company_1,Bigees,True" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o +msgid "base_import.tests.models.m2o" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:297 +#, python-format +msgid "" +"copy \n" +" (select 'company_'||id as \"External " +"ID\",company_name \n" +" as \"Name\",'True' as \"Is a Company\" from " +"companies) TO \n" +" '/tmp/company.csv' with CSV HEADER;" +msgstr "" +"kopirajte \n" +" (select " +"'company_'||id as \"External ID\",company_name\n" +" as " +"\"Name\",'True' as \"Is a Company\" from companies) TO\n" +" " +"'/tmp/company.csv' with CSV HEADER;" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:206 +#, python-format +msgid "CSV file for Manufacturer, Retailer" +msgstr "CSV datoteka za Proizvođače, Trgovce" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:160 +#, python-format +msgid "" +"Use \n" +" Country/External ID: Use External ID when you import " +"\n" +" data from a third party application." +msgstr "" +"Koristi \n" +" Država/Vanjski ID. " +"koristite vanjski ID kad uvozite \n" +" podatke iz drugih " +"aplikacija." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:316 +#, python-format +msgid "person_1,Fabien,False,company_1" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/External ID" +msgstr "XXX/Vanjski ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:351 +#, python-format +msgid "Don't Import" +msgstr "Ne uvozi" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:24 +#, python-format +msgid "Select the" +msgstr "Odaberite" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:100 +#, python-format +msgid "" +"Note that if your CSV file \n" +" has a tabulation as separator, OpenERP will not \n" +" detect the separations. You will need to change the " +"\n" +" file format options in your spreadsheet application. " +"\n" +" See the following question." +msgstr "" +"Primjetite da vaša csv datoteka \n" +" ima tabulator za " +"odvajanje, a OpenERP neće \n" +" primjetiti ta odvajanja. " +"Morate promjeniti format \n" +" zapisa u vašem tabličnom " +"kalkulatoru. \n" +" Vidi sljedeće pitanje." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:141 +#, python-format +msgid "Country: the name or code of the country" +msgstr "Država: Naziv ili šifra države" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child +msgid "base_import.tests.models.o2m.child" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:239 +#, python-format +msgid "Can I import several times the same record?" +msgstr "Mogu li isti zapis uvesti nekoliko puta?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:15 +#, python-format +msgid "Validate" +msgstr "Ovjeri" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:55 +#, python-format +msgid "Map your data to OpenERP" +msgstr "Mapirajte vaše podatke na OpenERP" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:153 +#, python-format +msgid "" +"Use Country: This is \n" +" the easiest way when your data come from CSV files \n" +" that have been created manually." +msgstr "" +"Korištenje Države: ovo je \n" +" najlakši način kada vaši " +"podaci dolaze iz csv datoteka\n" +" koje su sastavljene ručno." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:127 +#, python-format +msgid "" +"What's the difference between Database ID and \n" +" External ID?" +msgstr "" +"Koja je razlika izmeži ID Baze i \n" +" vanjski ID?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:138 +#, python-format +msgid "" +"For example, to \n" +" reference the country of a contact, OpenERP proposes " +"\n" +" you 3 different fields to import:" +msgstr "" +"Na primjer, \n" +" referenciranje države " +"kontakta, OpenERP predlaže \n" +" 3 različita polja za " +"uvoz :" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:175 +#, python-format +msgid "What can I do if I have multiple matches for a field?" +msgstr "Što da radim ako imam više istih zapisa za polje?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:302 +#, python-format +msgid "External ID,Name,Is a Company" +msgstr "Vanjski ID , Naziv, Je kompanija" + +#. module: base_import +#: field:base_import.tests.models.preview,somevalue:0 +msgid "Some Value" +msgstr "Neka vrijednost" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" suppliers and their respective contacts" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:109 +#, python-format +msgid "" +"How can I change the CSV file format options when \n" +" saving in my spreadsheet application?" +msgstr "" +"Kako da promijenim opcije csv formata \n" +" " +"kada spremam datoteku u tabličnom kalkulatoru?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:320 +#, python-format +msgid "" +"As you can see in this file, Fabien and Laurence \n" +" are working for the Bigees company (company_1) and \n" +" Eric is working for the Organi company. The relation " +"\n" +" between persons and companies is done using the \n" +" External ID of the companies. We had to prefix the \n" +" \"External ID\" by the name of the table to avoid a " +"\n" +" conflict of ID between persons and companies " +"(person_1 \n" +" and company_1 who shared the same ID 1 in the " +"orignial \n" +" database)." +msgstr "" +"kako možete vidjeti iz ove datoteke, Fabien i Laurence \n" +" " +" rade za organizaciju Biggies (company_1), a \n" +" " +" Eric radi za Organi. Pozezivanje osoba i " +"organizacija se radi \n" +" " +" korištenjem Vanjskog ID-a organizacije. Morali smo " +"staviti prefix \n" +" " +" naziva tablice na Vanjski ID da izbjegnemo konflikt " +"istog ID-a osobe \n" +" " +" i organizacije (osoba_1 i organizacija_1 koji dijele " +"isti ID u originalnoj bazi)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:308 +#, python-format +msgid "" +"copy (select \n" +" 'person_'||id as \"External ID\",person_name as \n" +" \"Name\",'False' as \"Is a " +"Company\",'company_'||company_id\n" +" as \"Related Company/External ID\" from persons) TO " +"\n" +" '/tmp/person.csv' with CSV" +msgstr "" +"kopirajte \n" +" (select'person_'||id as \"External ID\",person_name " +"as\n" +" \"Name\",'False' as \"Is a " +"Company\",'company_'||company_id\n" +" as \"Related Company/External ID\" from persons) TO\n" +" '/tmp/person.csv' with CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "Country: Belgium" +msgstr "Država : Belgija" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly +msgid "base_import.tests.models.char.stillreadonly" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:314 +#, python-format +msgid "" +"External ID,Name,Is a \n" +" Company,Related Company/External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Suppliers and their respective contacts" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:179 +#, python-format +msgid "" +"If for example you have two product categories \n" +" with the child name \"Sellable\" (ie. \"Misc. \n" +" Products/Sellable\" & \"Other Products/Sellable\"),\n" +" your validation is halted but you may still import \n" +" your data. However, we recommend you do not import " +"the \n" +" data because they will all be linked to the first \n" +" 'Sellable' category found in the Product Category " +"list \n" +" (\"Misc. Products/Sellable\"). We recommend you " +"modify \n" +" one of the duplicates' values or your product " +"category \n" +" hierarchy." +msgstr "" +"Ako na primjer imate dvije kategorije proizvoda \n" +" " +" sa podređenim nazivom \"za prodaju\" (npr. \"razno/proizvodi /za " +"prodaju\"\n" +" " +" i \"ostali proizvodi/za prodaju\" vaša validacija je zadržana, ali još " +"uvijek možete\n" +" " +" uvesti vaše podatke. Pazite, ne preporučamo vam da uvozite podatke jer\n" +" " +" će oni biti povezani na prvu kategoriju \"za prodaju\" pronađenu u " +"popisu \n" +" " +" kategorija (\"razno/proizvodi/za prodaju\"). Preporučujemo Vam da " +"izmjenite \n" +" " +" jednu od dvostrukih vrijednosti ili hijerarhiju vaših kategorija." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:306 +#, python-format +msgid "" +"To create the CSV file for persons, linked to \n" +" companies, we will use the following SQL command in " +"\n" +" PSQL:" +msgstr "" +"Za stvaranje csv datoteke za osobe povezane sa \n" +" " +" kompanijama, koristimo ljedeću SQL naredbu u \n" +" " +" PSQL:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:119 +#, python-format +msgid "" +"Microsoft Excel will allow \n" +" you to modify only the encoding when saving \n" +" (in 'Save As' dialog box > click 'Tools' dropdown \n" +" list > Encoding tab)." +msgstr "" +"Microsoft Excel će Vam omogućiti \n" +" da promjenite kodnu stranu " +"jedino kod snimanja \n" +" (U 'Sačuvaj kao' dijalogu > " +"kliknite na 'Alati' padajući izbornik > \n" +" odaberite 'Enkodiranje' " +"karticu)" + +#. module: base_import +#: field:base_import.tests.models.preview,othervalue:0 +msgid "Other Variable" +msgstr "Druga varijabla" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "" +"will also be used to update the original\n" +" import if you need to re-import modified data\n" +" later, it's thus good practice to specify it\n" +" whenever possible" +msgstr "" +"će također biti korišteno za ažuriranje originalnog \n" +" " +"uvoza, ako kasnije trebate ponovo uvesti \n" +" " +"izmjenjene podatke, zato se smatra dobrom praksom \n" +" " +"koristiti kad god je moguće" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid "" +"file to import. If you need a sample importable file, you\n" +" can use the export tool to generate one." +msgstr "" +"datoteka za uvoz. Ako trebate uzorak datoteke koja se može uvesti,\n" +" možete koristiti " +"alat za izvoz da napravite jednu." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "" +"Country/Database \n" +" ID: 21" +msgstr "Država/Baza" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char +msgid "base_import.tests.models.char" +msgstr "" + +#. module: base_import +#: help:base_import.import,file:0 +msgid "File to check and/or import, raw binary (not base64)" +msgstr "Datoteke za provjeru i/ili uvoz, sirovi binarni ( ne base64)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:230 +#, python-format +msgid "Purchase orders with their respective purchase order lines" +msgstr "Nabavne Narudžbe i njihove pripadne stavke" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:60 +#, python-format +msgid "" +"If the file contains\n" +" the column names, OpenERP can try auto-detecting the\n" +" field corresponding to the column. This makes imports\n" +" simpler especially when the file has many columns." +msgstr "" +"Ako datoteka sadrži\n" +" nazive kolona, OpenERP može " +"pokušati \n" +" automatski odrediti polja koja " +"odgovaraju kolonama. \n" +" Ovo čini uvoz jednostavnijim " +"pogotovo ako datoteka ima \n" +" mnogo kolona." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid ".CSV" +msgstr ".CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "" +". The issue is\n" +" usually an incorrect file encoding." +msgstr "" +". Problem je \n" +" obično netočna kodna strana." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required +msgid "base_import.tests.models.m2o.required" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly +msgid "base_import.tests.models.char.noreadonly" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:113 +#, python-format +msgid "" +"If you edit and save CSV files in speadsheet \n" +" applications, your computer's regional settings will " +"\n" +" be applied for the separator and delimiter. \n" +" We suggest you use OpenOffice or LibreOffice Calc \n" +" as they will allow you to modify all three options \n" +" (in 'Save As' dialog box > Check the box 'Edit " +"filter \n" +" settings' > Save)." +msgstr "" +"Ako uređujete i premate CSV datoteku u tabličnom kalkulatoru \n" +" " +" vaše regionalne postavke sa računala će biti\n" +" " +" primjenjene na separatore i odvajanja. \n" +" " +" Preporučamo da koristite OpenOffice ili LibreOffice kalkulator\n" +" " +" jer vam oni omogućuju izmjene sve tri postavke\n" +" " +" (u 'Spremi kao' dijalogu > označite 'uredi postavke filtera' \n" +" " +" > Spremi)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:30 +#, python-format +msgid "CSV File:" +msgstr "CSV datoteka:" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_preview +msgid "base_import.tests.models.preview" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_required +msgid "base_import.tests.models.char.required" +msgstr "" + +#. module: base_import +#: code:addons/base_import/models.py:112 +#, python-format +msgid "Database ID" +msgstr "ID baze podataka" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:313 +#, python-format +msgid "It will produce the following CSV file:" +msgstr "Će napraviti sljedeću csv datoteku:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:362 +#, python-format +msgid "Here is the start of the file we could not import:" +msgstr "Ovo je početni dio datoteke koju nismo uspjeli uvesti:" + +#. module: base_import +#: field:base_import.import,file_type:0 +msgid "File Type" +msgstr "Tip datoteke" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_import +msgid "base_import.import" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m +msgid "base_import.tests.models.o2m" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "Import preview failed due to:" +msgstr "Predpregled uvoza nije uspio zbog:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:144 +#, python-format +msgid "" +"Country/External ID: the ID of this record \n" +" referenced in another application (or the .XML file " +"\n" +" that imported it)" +msgstr "" +"Područje/Vanjski ID : ID ovog zapisa \n" +" je " +"referenciran u drugoj aplikaciji (ili XML datoteci \n" +" iz " +"koje je uvezen)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:35 +#, python-format +msgid "Reload data to check changes." +msgstr "Ponovno učitaj podatke da provjerite promjene." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:131 +#, python-format +msgid "" +"Some fields define a relationship with another \n" +" object. For example, the country of a contact is a \n" +" link to a record of the 'Country' object. When you \n" +" want to import such fields, OpenERP will have to \n" +" recreate links between the different records. \n" +" To help you import such fields, OpenERP provides 3 \n" +" mechanisms. You must use one and only one mechanism " +"\n" +" per field you want to import." +msgstr "" +"Neka polja definišu poveznice sa drugim \n" +" " +" objektima. na primjer, područje kontakta je veza \n" +" " +" na zapis objekta 'područje'. Kad želite uvesti ovakva polja, \n" +" " +" OpenERP će ponovo stvoriti veze između različitih zapisa.\n" +" " +" Da bi vam pomogao uvesti takva polja, OpenERP pruža 3 \n" +" " +" mehanizma. Možete koristiti jedan i samo jedan mehanizam \n" +" " +" po polju koje želite uvesti." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:201 +#, python-format +msgid "" +"The tags should be separated by a comma without any \n" +" spacing. For example, if you want you customer to be " +"\n" +" lined to both tags 'Manufacturer' and 'Retailer' \n" +" then you will encode it as follow \"Manufacturer,\n" +" Retailer\" in the same column of your CSV file." +msgstr "" +"Podaci bi trebali biti odvojeni sa zarezima bez ikakvih \n" +" " +" razmaka. Na primjer. ako želite da Vaš partner bude \n" +" " +" označen kao 'kupac' i kao 'dobavljač' tada u vašem CSV-u \n" +" " +" unosite \"kupac, dobavljač\" u istoj koloni." + +#. module: base_import +#: code:addons/base_import/models.py:264 +#, python-format +msgid "You must configure at least one field to import" +msgstr "Definirajte barem jedno polje za uvoz" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:304 +#, python-format +msgid "company_2,Organi,True" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:58 +#, python-format +msgid "" +"The first row of the\n" +" file contains the label of the column" +msgstr "" +"Prvi red u datoteci\n" +" sadrži naslove kolona" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_states +msgid "base_import.tests.models.char.states" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:7 +#, python-format +msgid "Import a CSV File" +msgstr "Uvezi CSV datoteku" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:74 +#, python-format +msgid "Quoting:" +msgstr "Navođenje:" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related +msgid "base_import.tests.models.m2o.required.related" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid ")." +msgstr ")." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:18 +#: code:addons/base_import/static/src/xml/import.xml:396 +#, python-format +msgid "Import" +msgstr "Uvoz" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:438 +#, python-format +msgid "Here are the possible values:" +msgstr "Evo mogućih vrijednosti:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "The" +msgstr "!" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:248 +#, python-format +msgid "" +"A single column was found in the file, this often means the file separator " +"is incorrect" +msgstr "" +"U datoteci je nađena samo jedna kolona, to često znači da je format " +"razdjelnika neispravan." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid "dump of such a PostgreSQL database" +msgstr "dump takve PostgereSQL baze" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:301 +#, python-format +msgid "This SQL command will create the following CSV file:" +msgstr "Ova SQL naredba će kreirati CSV datoteku sadržaja:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:228 +#, python-format +msgid "" +"The following CSV file shows how to import purchase \n" +" orders with their respective purchase order lines:" +msgstr "" +"Sljedeća csv datoteka pokazuje kako uvesti \n" +" nabavne narudžbe sa " +"njihovm pripadnim stavkama :" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:91 +#, python-format +msgid "" +"What can I do when the Import preview table isn't \n" +" displayed correctly?" +msgstr "" +"Što mogu uraditi kada se tablice Predpregleda za uvoz\n" +" " +" ne prikazuju ispravno?" + +#. module: base_import +#: field:base_import.tests.models.char,value:0 +#: field:base_import.tests.models.char.noreadonly,value:0 +#: field:base_import.tests.models.char.readonly,value:0 +#: field:base_import.tests.models.char.required,value:0 +#: field:base_import.tests.models.char.states,value:0 +#: field:base_import.tests.models.char.stillreadonly,value:0 +#: field:base_import.tests.models.m2o,value:0 +#: field:base_import.tests.models.m2o.related,value:0 +#: field:base_import.tests.models.m2o.required,value:0 +#: field:base_import.tests.models.m2o.required.related,value:0 +#: field:base_import.tests.models.o2m,value:0 +#: field:base_import.tests.models.o2m.child,parent_id:0 +#: field:base_import.tests.models.o2m.child,value:0 +msgid "unknown" +msgstr "nepoznato" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:317 +#, python-format +msgid "person_2,Laurence,False,company_1" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:149 +#, python-format +msgid "Country/External ID: base.be" +msgstr "Područje/Vanjski ID : base.be" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:288 +#, python-format +msgid "" +"As an example, suppose you have a SQL database \n" +" with two tables you want to import: companies and \n" +" persons. Each person belong to one company, so you \n" +" will have to recreate the link between a person and " +"\n" +" the company he work for. (If you want to test this \n" +" example, here is a" +msgstr "" +"Kao primjer, pretpostavimo da imate SQL bazu \n" +" " +" sa dvije tabele koje želite uvesti: kompanije i \n" +" " +" osobe. Svaka osoba pripada jednoj kompaniji, tako da \n" +" " +" ćete morati ponovo stvoriti poveznicu između osobe \n" +" " +" i kompanije za koju radi. (Ako želite probati ovaj primjer, ovdje je" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:427 +#, python-format +msgid "(%d more)" +msgstr "(%d više)" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:227 +#, python-format +msgid "File for some Quotations" +msgstr "Dadoteka sa nekim predračunima" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:72 +#, python-format +msgid "Encoding:" +msgstr "Šifriranje:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:280 +#, python-format +msgid "" +"To manage relations between tables, \n" +" you can use the \"External ID\" facilities of " +"OpenERP. \n" +" The \"External ID\" of a record is the unique " +"identifier \n" +" of this record in another application. This " +"\"External \n" +" ID\" must be unique accoss all the records of all \n" +" objects, so it's a good practice to prefix this \n" +" \"External ID\" with the name of the application or " +"\n" +" table. (like 'company_1', 'person_1' instead of '1')" +msgstr "" +"Za upravljanje relacijama između tabela, \n" +" " +"možete koristiti \"Vanjski ID\" mogućnosti OpenERP-a. \n" +" " +"\"Vanjski ID\" zapisa je jedinstveni identifikator ovog zapisa\n" +" u " +"drugoj aplikaciji. Ovaj \"Vanjski ID\" mora biti jedinstven u\n" +" u " +"svim zapisima i svim objektima, pa je uobičajena dobra praksa\n" +" " +"dati prefiks tom \"Vanjskom ID\" po nazivu aplikacije ili tablice. \n" +" " +"(npr. 'company_1', 'osoba_1' umjesto '1')" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:295 +#, python-format +msgid "" +"We will first export all companies and their \n" +" \"External ID\". In PSQL, write the following " +"command:" +msgstr "" +"Prvo ćemo izvesti sve kompanije i njihove \n" +" " +" \"Vanjske ID\". U PSQL, napišite sljedeću narebu:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" +"Kako da uvezem one2many relaciju (npr. nekoliko \n" +" " +" stavki prodajnog maloga)?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:404 +#, python-format +msgid "Everything seems valid." +msgstr "Čini se da je sve u redu." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:188 +#, python-format +msgid "" +"However if you do not wish to change your \n" +" configuration of product categories, we recommend " +"you \n" +" use make use of the external ID for this field \n" +" 'Category'." +msgstr "" +"Međutim ukoliko ne želite mijenjati vaše \n" +" " +"postavke kategorija proizvoda, preporučamo vam da \n" +" " +"koristite vanjski ID za ovo polje \n" +" " +"'Kagtegorija'." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:421 +#, python-format +msgid "at row %d" +msgstr "u redu %d" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:197 +#, python-format +msgid "" +"How can I import a many2many relationship field \n" +" (e.g. a customer that has multiple tags)?" +msgstr "" +"Kako mogu uvesti many2many relacijsko polje \n" +" " +" (npr, kupac koji ima višestruke oznake)?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/ID" +msgstr "XXX/ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:275 +#, python-format +msgid "" +"If you need to import data from different tables, \n" +" you will have to recreate relations between records " +"\n" +" belonging to different tables. (e.g. if you import \n" +" companies and persons, you will have to recreate the " +"\n" +" link between each person and the company they work \n" +" for)." +msgstr "" +"Ako trebate uvesti podatke iz različitih tabela, \n" +" " +" morate ponovo kreirati relacije između zapisa \n" +" " +" koji pripadaju različitim tablicama. (npr. ako uvozite\n" +" " +" kompanije i osobe, morate ponovo kreirati poveznicu\n" +" " +" između između svake osobe i kompanije za koju osoba radi)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:150 +#, python-format +msgid "" +"According to your need, you should use \n" +" one of these 3 ways to reference records in " +"relations. \n" +" Here is when you should use one or the other, \n" +" according to your need:" +msgstr "" +"Sukladno vašim potrebama trebali bi koristiti \n" +" " +"jedan od 3 načina referenciranja zapisa u relacijama.\n" +" " +"Ovdje trebate koristiti jedan raspoloživih prema, \n" +" " +"vašim potrebama :" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:319 +#, python-format +msgid "person_4,Ramsy,False,company_3" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:261 +#, python-format +msgid "" +"If you do not set all fields in your CSV file, \n" +" OpenERP will assign the default value for every non " +"\n" +" defined fields. But if you\n" +" set fields with empty values in your CSV file, " +"OpenERP \n" +" will set the EMPTY value in the field, instead of \n" +" assigning the default value." +msgstr "" +"Ako ne postavite sva polja u vašoj csv datoteci, \n" +" OpenERP će " +"dodijeliti zadane vrijednosti za svako \n" +" nedefinirano " +"polje, ali ako postavite polja sa praznim virjenostima u csv-u \n" +" OpenERP će " +"postaviti vrijednost tih polja na \"PRAZNO\", umjesto da im \n" +" dodijeli zadane " +"vrijednosti" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:20 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:257 +#, python-format +msgid "" +"What happens if I do not provide a value for a \n" +" specific field?" +msgstr "" +"Što se dešava ako ne dajem vrijednost za \n" +" " +"pojedino polje?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:68 +#, python-format +msgid "Frequently Asked Questions" +msgstr "Često postavljana pitanja" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:305 +#, python-format +msgid "company_3,Boum,True" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:249 +#, python-format +msgid "" +"This feature \n" +" allows you to use the Import/Export tool of OpenERP " +"to \n" +" modify a batch of records in your favorite " +"spreadsheet \n" +" application." +msgstr "" +"Ovo Vam \n" +" omogućuje da " +"koristite alat za Uvoz/Izvoz OpenERP-a \n" +" za izmjenu serija " +"zapisa u vašem omiljenom tabelarnom kalkulatoru" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#, python-format +msgid "" +"column in OpenERP. When you\n" +" import an other record that links to the first\n" +" one, use" +msgstr "" +"kolona u OpenERP-u. Kada \n" +" uvozite drugi zapis " +"koji se referencira na prvi\n" +" koristite" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:242 +#, python-format +msgid "" +"If you import a file that contains one of the \n" +" column \"External ID\" or \"Database ID\", records " +"that \n" +" have already been imported will be modified instead " +"of \n" +" being created. This is very usefull as it allows you " +"\n" +" to import several times the same CSV file while " +"having \n" +" made some changes in between two imports. OpenERP " +"will \n" +" take care of creating or modifying each record \n" +" depending if it's new or not." +msgstr "" +"Ako uvozite datoteku koja sadži jednu od \n" +" " +"kolona \"Vanjski ID\" ili \"ID Baze\", zapisi koje ste već\n" +" " +"uvezli će biti izmjenjeni umjesto stvorenih. Ovo je \n" +" " +"veoma korisno i dozvoljava Vam da uvozite nekoliko puta \n" +" " +"istu CSV datoteku, upisujući neke izmjene između dva\n" +" " +"uvoza. OpenERP će se pobrinuti o stvaranju ili izmjeni \n" +" " +"svakog zapisa ovisno o tome da li je novi ili postojeći." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:169 +#, python-format +msgid "CSV file for categories" +msgstr "CSV datoteka za kategorije" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:330 +#, python-format +msgid "Normal Fields" +msgstr "Normalna polja" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:74 +#, python-format +msgid "" +"In order to re-create relationships between\n" +" different records, you should use the unique\n" +" identifier from the original application and\n" +" map it to the" +msgstr "" +"kako bi ponovo napravili relacije između\n" +" " +"različitih zapisa, trebali bi koristiti jedinstveni\n" +" " +"identifikator iz originalnog zapisa i njega mapirati na" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:170 +#, python-format +msgid "CSV file for Products" +msgstr "CSV datoteka za proizvode" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:216 +#, python-format +msgid "" +"If you want to import sales order having several \n" +" order lines; for each order line, you need to " +"reserve \n" +" a specific row in the CSV file. The first order line " +"\n" +" will be imported on the same row as the information " +"\n" +" relative to order. Any additional lines will need an " +"\n" +" addtional row that does not have any information in " +"\n" +" the fields relative to the order." +msgstr "" +"Ako želite uvesti prodajne narudžbe koji sadrže nekoliko \n" +" " +" stavki, za svaku stavku morate rezervirati\n" +" " +" njezin red u CSV datoteci. Prva stavka naloga \n" +" " +" će biti uvezena ako informacija vezana za taj \n" +" " +" nalog. Svaka dodatna stavka će trebati svoj\n" +" " +" dodatni red koji nema nikakve podatke u poljima\n" +" " +" vezanim za taj nalog." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related +msgid "base_import.tests.models.m2o.related" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,name:0 +msgid "Name" +msgstr "Naziv" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "to the original unique identifier." +msgstr "originalni jedinstveni identifikator" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:318 +#, python-format +msgid "person_3,Eric,False,company_2" +msgstr "" + +#. module: base_import +#: field:base_import.import,res_model:0 +msgid "Model" +msgstr "Model" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "ID" +msgstr "ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:329 +#, python-format +msgid "" +"The two files produced are ready to be imported in \n" +" OpenERP without any modifications. After having \n" +" imported these two CSV files, you will have 4 " +"contacts \n" +" and 3 companies. (the firsts two contacts are linked " +"\n" +" to the first company). You must first import the \n" +" companies and then the persons." +msgstr "" +"Dvije dobijene datoteke su spremne da budu uvežene u \n" +" " +" OpenERP bez ikakvih izmjena. Nakon uvoza\n" +" " +" ove dvije CSV datoteke, imaćete 4 kontakta \n" +" " +" i 3 organizacije. (prva dva kontakta su povezana na\n" +" " +" prvu kompaniju). Prvo morate uvesti kompanije\n" +" " +" a potom kontakte." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:95 +#, python-format +msgid "" +"By default the Import preview is set on commas as \n" +" field separators and quotation marks as text \n" +" delimiters. If your csv file does not have these \n" +" settings, you can modify the File Format Options \n" +" (displayed under the Browse CSV file bar after you \n" +" select your file)." +msgstr "" +"Zadane postavke predpogleda za uvoz su zarezi \n" +" " +" za razdvajanje polja, i navodnici kao oznaka teksta. \n" +" " +" Ako vaša CSV datoteka nema ove postavke, možete ih \n" +" " +" izmjeniti u Opcijama postavki formata. (prikazanim u traci\n" +" " +" Potraži CSV datoteku nakon što odaberete jednu)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:73 +#, python-format +msgid "Separator:" +msgstr "Separator:" + +#. module: base_import +#: field:base_import.import,file_name:0 +msgid "File Name" +msgstr "Naziv Datoteke" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/models.py:80 +#: code:addons/base_import/models.py:111 +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "External ID" +msgstr "Vanjski ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:39 +#, python-format +msgid "File Format Options…" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:423 +#, python-format +msgid "between rows %d and %d" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:19 +#, python-format +msgid "or" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:223 +#, python-format +msgid "" +"As an example, here is \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" file of some quotations you can import, based on " +"demo \n" +" data." +msgstr "" + +#. module: base_import +#: field:base_import.import,file:0 +msgid "File" +msgstr "" diff --git a/addons/base_import/i18n/cs.po b/addons/base_import/i18n/cs.po index e49e2198de7..102b1319e1d 100644 --- a/addons/base_import/i18n/cs.po +++ b/addons/base_import/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/de.po b/addons/base_import/i18n/de.po index 2ae2d77e288..dde804a412e 100644 --- a/addons/base_import/i18n/de.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/es.po b/addons/base_import/i18n/es.po index 9cca9b9cf17..df1efcdc940 100644 --- a/addons/base_import/i18n/es.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/et.po b/addons/base_import/i18n/et.po index 6313debea8b..d4f58290284 100644 --- a/addons/base_import/i18n/et.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/fr.po b/addons/base_import/i18n/fr.po index ac9198490b7..6c7127a9640 100644 --- a/addons/base_import/i18n/fr.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web @@ -47,6 +47,17 @@ msgid "" "give \n" " you an example for Products and their Categories." msgstr "" +"Lorsque vous utilisez des identifiants externes, vous pouvez importer des " +"fichiers CSV\n" +" avec la colonne \"Id. externe\" pour définir " +"l'identifiant externe\n" +" de chaque enregistrement que vous importez. " +"Ensuite, vous pourrez\n" +" faire référence à cet enregistrement avec des " +"colonnes comme \n" +" \"Champ / Id. externe\". Les deux fichiers " +"CVS suivants vous donnent\n" +" un exemple des produits et leurs catégories." #. module: base_import #. openerp-web @@ -206,7 +217,8 @@ msgstr "" "Notez que si votre fichier CSV \n" " utilise les tabulations comme séparateurs, OpenERP " "ne \n" -" détectera les séparations. Vous devrez changer les \n" +" détectera pas les séparations. Vous devrez changer " +"les \n" " options de format du fichier dans votre tableur. \n" " Voir la question suivante." @@ -319,6 +331,8 @@ msgid "" "How can I change the CSV file format options when \n" " saving in my spreadsheet application?" msgstr "" +"Comment puis-je changer les options de formatage du fichier CSV lorsque que " +"je sauvegarde dans mon tableur?" #. module: base_import #. openerp-web @@ -573,7 +587,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:362 #, python-format msgid "Here is the start of the file we could not import:" -msgstr "" +msgstr "Voici le début du fichier qu'il n'a pas été possible d'importer" #. module: base_import #: field:base_import.import,file_type:0 @@ -595,7 +609,7 @@ msgstr "base_import.tests.models.o2m" #: code:addons/base_import/static/src/xml/import.xml:360 #, python-format msgid "Import preview failed due to:" -msgstr "" +msgstr "La prévisualisation de l'import à échoué à cause de :" #. module: base_import #. openerp-web @@ -653,7 +667,7 @@ msgstr "" #: code:addons/base_import/models.py:264 #, python-format msgid "You must configure at least one field to import" -msgstr "" +msgstr "Vous devez paramétrer au moins un champ à importer" #. module: base_import #. openerp-web @@ -669,7 +683,7 @@ msgstr "" msgid "" "The first row of the\n" " file contains the label of the column" -msgstr "" +msgstr "La première ligne du fichier contient le titre de la colonne." #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_states @@ -681,7 +695,7 @@ msgstr "base_import.tests.models.char.states" #: code:addons/base_import/static/src/xml/import.xml:7 #, python-format msgid "Import a CSV File" -msgstr "" +msgstr "Importer un fichier CSV" #. module: base_import #. openerp-web @@ -715,7 +729,7 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" -msgstr "" +msgstr "Voici les valeurs correctes :" #. module: base_import #. openerp-web @@ -732,6 +746,8 @@ msgid "" "A single column was found in the file, this often means the file separator " "is incorrect" msgstr "" +"Une seule colonne a été trouvée dans le fichier. Cela signifie souvent que " +"le séparateur du fichier est incorrect" #. module: base_import #. openerp-web @@ -745,7 +761,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:301 #, python-format msgid "This SQL command will create the following CSV file:" -msgstr "" +msgstr "Cette commande SQL va créer le fichier CSV suivant :" #. module: base_import #. openerp-web @@ -755,6 +771,8 @@ msgid "" "The following CSV file shows how to import purchase \n" " orders with their respective purchase order lines:" msgstr "" +"Le fichier CSV suivant montre comment importer des commandes d'achat avec " +"leurs lignes de commande respectives :" #. module: base_import #. openerp-web @@ -859,6 +877,8 @@ msgid "" " \"External ID\". In PSQL, write the following " "command:" msgstr "" +"Nous allons d'abord exporter toutes les sociétés et leur \"Id. externe\". " +"Dans PSQL, écrivez la commande suivante :" #. module: base_import #. openerp-web @@ -874,7 +894,7 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." -msgstr "" +msgstr "Tout semble correct." #. module: base_import #. openerp-web @@ -893,7 +913,7 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" -msgstr "" +msgstr "à la ligne %d" #. module: base_import #. openerp-web @@ -975,6 +995,7 @@ msgid "" "What happens if I do not provide a value for a \n" " specific field?" msgstr "" +"Que se passe-t-il si je ne fournis pas une valeur pour un champ spécifique ?" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/hr.po b/addons/base_import/i18n/hr.po index b7c4238062c..e4cccb72c80 100644 --- a/addons/base_import/i18n/hr.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/hu.po b/addons/base_import/i18n/hu.po index db143a0f032..e07bf738e5f 100644 --- a/addons/base_import/i18n/hu.po +++ b/addons/base_import/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-29 04:36+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web @@ -1332,6 +1332,14 @@ msgid "" " (displayed under the Browse CSV file bar after you \n" " select your file)." msgstr "" +"Alapértelmezetten az importálás előnézetben a vesszők mint mező \n" +" elválasztók és a kérdőjelek mint szöveg határolók \n" +" szerepelnek. Ha a csv fájlnak nincsenek meg ezek a " +"\n" +" beállításai, akkor módosíthatja a fájl formátum " +"lehetőségekkel \n" +" (kijelezve a kiválasztott CSV fájl böngészési sávja " +"alatt)." #. module: base_import #. openerp-web @@ -1388,8 +1396,14 @@ msgid "" "demo \n" " data." msgstr "" +"Példának, it van egy \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" fájl egy pár árajánlatról amit beimportálhat, a demo " +"adat \n" +" alapján." #. module: base_import #: field:base_import.import,file:0 msgid "File" -msgstr "" +msgstr "Fájl" diff --git a/addons/base_import/i18n/it.po b/addons/base_import/i18n/it.po index b7b80e1afdd..defb4360e91 100644 --- a/addons/base_import/i18n/it.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/mk.po b/addons/base_import/i18n/mk.po index 02905005c5b..5227efd4f53 100644 --- a/addons/base_import/i18n/mk.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/mn.po b/addons/base_import/i18n/mn.po index 5d00aabc9ce..fe49ebcc080 100644 --- a/addons/base_import/i18n/mn.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/nb.po b/addons/base_import/i18n/nb.po index 49071947e7e..d6de699e629 100644 --- a/addons/base_import/i18n/nb.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/nl.po b/addons/base_import/i18n/nl.po index e50425be045..aa5e6a8bcf2 100644 --- a/addons/base_import/i18n/nl.po +++ b/addons/base_import/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-30 20:04+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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web @@ -84,7 +84,7 @@ msgid "" " record, defined by the ID postgresql column" msgstr "" "Land/Database ID: de unieke OpenERP ID voor een \n" -" record, gedefinieerd door de postgresql kolom id" +" record, gedefinieerd door de PostgreSQL kolom id" #. module: base_import #. openerp-web @@ -246,7 +246,7 @@ msgstr "Kan ik meerdere maken hetzelfde record importeren." #: code:addons/base_import/static/src/xml/import.xml:15 #, python-format msgid "Validate" -msgstr "Bevestigen" +msgstr "Controleren" #. module: base_import #. openerp-web @@ -358,9 +358,9 @@ msgid "" msgstr "" "Zoals u in dit bestand kunt zien, werken Fabien en Laurence\n" " voor grote bedrijven (company_1) en Eric werkt\n" -" voor het nedrijf Organi. De relatie tussen de " +" voor het bedrijf Organi. De relatie tussen de " "personen \n" -" en de bedrijven wordt egmaakt door gebruik te maken " +" en de bedrijven wordt gemaakt door gebruik te maken " "van de \n" " External ID van de bedrijven. We hebben een prefix " "gemaakt voor de \n" @@ -448,7 +448,7 @@ msgstr "" "\"Verkoopbaar\" (bijv. \"Div.\n" " Producten / Verkoopbaar\" & \"Overige producten / " "Verkoopbaar\"),\n" -" zal de import validate stoppen, maar u kunt nog " +" zal de import validatie stoppen, maar u kunt nog " "steeds uw data importeren.\n" " Toch raden wij u niet aan de data te importeren " "omdat deze allemaal worden\n" @@ -655,7 +655,7 @@ msgstr "Het zal het volgende CSV bestand produceren" #: code:addons/base_import/static/src/xml/import.xml:362 #, python-format msgid "Here is the start of the file we could not import:" -msgstr "Hier is de start van het bestand welke we niet konden improteren:" +msgstr "Hier is de start van het bestand welke we niet konden importeren:" #. module: base_import #: field:base_import.import,file_type:0 @@ -996,7 +996,7 @@ msgid "" "command:" msgstr "" "We zullen eerst alle bedrijven met de \n" -" \"External ID\" exproteren. In PSQL, schrijf het " +" \"External ID\" exporteren. In PSQL, schrijf het " "volgende commando:" #. module: base_import @@ -1190,8 +1190,8 @@ msgid "" " import an other record that links to the first\n" " one, use" msgstr "" -"kolom in OpenERP. Waneer u\n" -" een ander record importeerd, welke verwijst naar de " +"kolom in OpenERP. Wanneer u\n" +" een ander record importeert, welke verwijst naar de " "eerste\n" " gebruik," diff --git a/addons/base_import/i18n/pl.po b/addons/base_import/i18n/pl.po index 94589878948..9bd5af993c1 100644 --- a/addons/base_import/i18n/pl.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/pt.po b/addons/base_import/i18n/pt.po index 5a1edc57a7f..8013f30c272 100644 --- a/addons/base_import/i18n/pt.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web @@ -56,6 +56,8 @@ msgid "" "How to export/import different tables from an SQL \n" " application to OpenERP?" msgstr "" +"Como exportar/importar diferentes tabelas de uma \n" +"aplicação SQL para o OpenERP?" #. module: base_import #. openerp-web @@ -96,6 +98,8 @@ msgid "" "For the country \n" " Belgium, you can use one of these 3 ways to import:" msgstr "" +"Para o país \n" +" Bélgica, pode usar um destes 3 métodos de importação:" #. module: base_import #. openerp-web @@ -166,7 +170,7 @@ msgstr "Não importar" #: code:addons/base_import/static/src/xml/import.xml:24 #, python-format msgid "Select the" -msgstr "" +msgstr "Selecione o" #. module: base_import #. openerp-web @@ -199,7 +203,7 @@ msgstr "base_import.tests.models.o2m.child" #: code:addons/base_import/static/src/xml/import.xml:239 #, python-format msgid "Can I import several times the same record?" -msgstr "" +msgstr "Posso importar o mesmo registo várias vezes?" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/pt_BR.po b/addons/base_import/i18n/pt_BR.po index ebb8d794879..87600cd1722 100644 --- a/addons/base_import/i18n/pt_BR.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web @@ -146,6 +146,12 @@ msgid "" "companies) TO \n" " '/tmp/company.csv' with CSV HEADER;" msgstr "" +"copiar \n" +" (Selecione 'company_' | | ID como \"ID externo\", " +"company_name \n" +" como \"Nome\", 'True' como \"é uma empresa\" de " +"empresas) TO \n" +" \"/ Tmp / company.csv\" com CSV HEADER;" #. module: base_import #. openerp-web @@ -210,6 +216,13 @@ msgid "" "\n" " See the following question." msgstr "" +"Observe que caso seu Arquivo CSV\n" +" tenha tabulações como separadores, o OpenERP não " +"irá\n" +" detectar as separações. Você irá precisar trocar o\n" +" a opção de formato de arquivo em seu programa de " +"planilha eletrônica. \n" +" Confira essa questão." #. module: base_import #. openerp-web @@ -341,6 +354,19 @@ msgid "" "orignial \n" " database)." msgstr "" +"Como você pode ver neste arquivo, Fabien e Laurence \n" +" estão trabalhando para a empresa Bigees (company_1) " +"e \n" +" Eric está trabalhando para a empresa Organização. A " +"relação \n" +" entre pessoas e empresas é feito usando o \n" +" ID externo das empresas. Tivemos de prefixo \n" +" \"ID externo\" com o nome do quadro, para evitar um " +"\n" +" conflito de ID entre pessoas e empresas (person_1 \n" +" e company_1 que compartilhavam o mesmo ID 1 no " +"orignial \n" +" banco de dados)." #. module: base_import #. openerp-web @@ -355,6 +381,14 @@ msgid "" "\n" " '/tmp/person.csv' with CSV" msgstr "" +"cópia (selecione \n" +" 'Person_' | | ID como \"ID externo\", como " +"PERSON_NAME \n" +" \"Nome\", 'False' como \"é uma empresa\", \"company_ " +"'| | company_id\n" +" como \"Empresa Relacionada / ID externo\" de " +"pessoas) TO \n" +" \"/ Tmp / person.csv\" com CSV" #. module: base_import #. openerp-web @@ -376,6 +410,8 @@ msgid "" "External ID,Name,Is a \n" " Company,Related Company/External ID" msgstr "" +"Identificação externa, nome, é um \n" +" Company, Empresa Relacionada / ID externo" #. module: base_import #. openerp-web @@ -404,6 +440,23 @@ msgid "" "category \n" " hierarchy." msgstr "" +"Se, por exemplo, você tem duas categorias de produtos \n" +" com o nome da criança \"vendável\" (ou seja, \"Misc. " +"\n" +" Produtos / vendável \"e\" Outros Produtos / vendável " +"\"),\n" +" sua validação é interrompida, mas você ainda pode " +"importar \n" +" seus dados. No entanto, recomendamos que você não " +"importe o \n" +" dados, porque todos eles serão ligados ao primeiro \n" +" Categoria 'vendável' encontrado na lista de " +"Categoria de Produtos \n" +" (\"Misc. Produtos / Sellable\"). Recomendamos que " +"você modifique \n" +" um dos valores duplicados 'ou a sua categoria de " +"produto \n" +" hierarquia." #. module: base_import #. openerp-web @@ -415,6 +468,9 @@ msgid "" "\n" " PSQL:" msgstr "" +"Para criar o arquivo CSV para as pessoas, ligadas a \n" +" empresas, vamos usar o comando SQL a seguir na \n" +" PSQL:" #. module: base_import #. openerp-web @@ -426,6 +482,11 @@ msgid "" " (in 'Save As' dialog box > click 'Tools' dropdown \n" " list > Encoding tab)." msgstr "" +"Microsoft Excel permitirá \n" +" modificar apenas a codificação ao salvar \n" +" (Em \"Salvar como\" caixa de diálogo suspensa> " +"clique em 'Ferramentas' \n" +" lista> guia Encoding)." #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 @@ -442,6 +503,12 @@ msgid "" " later, it's thus good practice to specify it\n" " whenever possible" msgstr "" +"também será usado para atualizar o original\n" +" importar se você precisar voltar a importar os dados " +"modificados\n" +" mais tarde, é, portanto, uma boa prática para " +"especificá-lo\n" +" sempre que possível" #. module: base_import #. openerp-web @@ -451,6 +518,8 @@ msgid "" "file to import. If you need a sample importable file, you\n" " can use the export tool to generate one." msgstr "" +"arquivo para importar. Se você precisa de um arquivo modelo, você\n" +" pode usar a ferramenta de exportação para gerar um." #. module: base_import #. openerp-web @@ -490,6 +559,11 @@ msgid "" " field corresponding to the column. This makes imports\n" " simpler especially when the file has many columns." msgstr "" +"Se o arquivo contiver\n" +" os nomes das colunas, OpenERP pode tentar auto-detectar a\n" +" campo correspondente à coluna. Isso faz com que a " +"importação\n" +" simples, especialmente quando o arquivo tem muitas colunas." #. module: base_import #. openerp-web @@ -534,6 +608,17 @@ msgid "" "filter \n" " settings' > Save)." msgstr "" +"Se você editar e salvar arquivos CSV em folha de cálculo \n" +" aplicativos, configurações regionais do seu " +"computador irá \n" +" ser aplicado para o separador e delimitador. \n" +" Nós sugerimos que você use o OpenOffice ou BrOffice " +"Calc \n" +" como eles vão permitir que você modifique as três " +"opções \n" +" (Em \"Salvar como\" caixa de diálogo> Marque a caixa " +"\"Editar filtro \n" +" configurações> Salvar)." #. module: base_import #. openerp-web @@ -604,6 +689,10 @@ msgid "" "\n" " that imported it)" msgstr "" +"País / ID externo: o ID deste registro \n" +" referenciado em outro aplicativo (ou o arquivo XML. " +"\n" +" que importou)" #. module: base_import #. openerp-web @@ -632,6 +721,17 @@ msgid "" "\n" " per field you want to import." msgstr "" +"Alguns campos de definir uma relação com outro \n" +" objeto. Por exemplo, o país de um contato é um \n" +" vincular a um registro de objeto do 'País'. Quando " +"você \n" +" deseja importar esses campos, OpenERP terá que \n" +" recriar vínculos entre os diferentes registros. \n" +" Para ajudá-lo a importar esses campos, OpenERP " +"fornece 3 \n" +" mecanismos. Você deve usar um e apenas um mecanismo " +"\n" +" por campo que você deseja importar." #. module: base_import #. openerp-web @@ -645,6 +745,14 @@ msgid "" " then you will encode it as follow \"Manufacturer,\n" " Retailer\" in the same column of your CSV file." msgstr "" +"As etiquetas devem ser separadas por uma vírgula, sem qualquer \n" +" espaçamento. Por exemplo, se você quiser, cliente a " +"ser \n" +" forrado de ambas as marcas \"fabricante\" e " +"\"Retailer ' \n" +" então você vai codificá-lo como acompanhamento \"do " +"fabricante,\n" +" Retailer \"na mesma coluna do seu arquivo CSV." #. module: base_import #: code:addons/base_import/models.py:264 @@ -657,7 +765,7 @@ msgstr "Você precisa configurar pelo menos um campo para importar" #: code:addons/base_import/static/src/xml/import.xml:304 #, python-format msgid "company_2,Organi,True" -msgstr "" +msgstr "company_2, Organização, Verdadeiro" #. module: base_import #. openerp-web @@ -667,6 +775,8 @@ msgid "" "The first row of the\n" " file contains the label of the column" msgstr "" +"A primeira linha do\n" +" arquivo contém os títulos das colunas" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_states @@ -737,7 +847,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:293 #, python-format msgid "dump of such a PostgreSQL database" -msgstr "" +msgstr "dump de um banco de dados PostgreSQL" #. module: base_import #. openerp-web @@ -754,6 +864,9 @@ msgid "" "The following CSV file shows how to import purchase \n" " orders with their respective purchase order lines:" msgstr "" +"O seguinte arquivo CSV mostra como importar compra \n" +" ordens com suas respectivas linhas de ordem de " +"compra:" #. module: base_import #. openerp-web @@ -763,6 +876,8 @@ msgid "" "What can I do when the Import preview table isn't \n" " displayed correctly?" msgstr "" +"O que posso fazer quando a tabela de visualização de Importação não é \n" +" exibido corretamente?" #. module: base_import #: field:base_import.tests.models.char,value:0 @@ -786,14 +901,14 @@ msgstr "desconhecido" #: code:addons/base_import/static/src/xml/import.xml:317 #, python-format msgid "person_2,Laurence,False,company_1" -msgstr "" +msgstr "person_2,Laurence,False,company_1" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:149 #, python-format msgid "Country/External ID: base.be" -msgstr "" +msgstr "País / ID externo: base.be" #. module: base_import #. openerp-web @@ -808,6 +923,14 @@ msgid "" " the company he work for. (If you want to test this \n" " example, here is a" msgstr "" +"Como exemplo, suponha que você tenha um banco de dados SQL \n" +" com duas tabelas que deseja importar: empresas e \n" +" pessoas. Cada pessoa pertence a uma empresa, para " +"que você \n" +" vai ter que recriar a ligação entre uma pessoa e \n" +" a empresa que ele trabalha. (Se você quer testar " +"este \n" +" exemplo, aqui está uma" #. module: base_import #. openerp-web @@ -848,6 +971,19 @@ msgid "" "\n" " table. (like 'company_1', 'person_1' instead of '1')" msgstr "" +"Para gerir as relações entre as tabelas, \n" +" você pode utilizar as instalações \"ID Externas\" de " +"OpenERP. \n" +" O \"ID externo\" de um registro é o identificador " +"único \n" +" desse registro em outro aplicativo. Este \"External " +"\n" +" ID \"deve ser accoss únicos todos os registros de " +"todos os \n" +" objetos, por isso é uma boa prática para este " +"prefixo \n" +" \"ID externo\" com o nome do aplicativo ou \n" +" tabela. (Como 'company_1', 'person_1' em vez de '1 ')" #. module: base_import #. openerp-web @@ -858,6 +994,8 @@ msgid "" " \"External ID\". In PSQL, write the following " "command:" msgstr "" +"Vamos primeiro exportar todas as empresas e seus \n" +" \"ID externo\". Em PSQL, escreva o seguinte comando:" #. module: base_import #. openerp-web @@ -867,6 +1005,8 @@ msgid "" "How can I import a one2many relationship (e.g. several \n" " Order Lines of a Sales Order)?" msgstr "" +"Como posso importar um relacionamento one2many (por exemplo, vários \n" +" Encomendar Linhas de uma Ordem de Sales)?" #. module: base_import #. openerp-web @@ -886,6 +1026,11 @@ msgid "" " use make use of the external ID for this field \n" " 'Category'." msgstr "" +"No entanto, se você não quiser mudar a sua \n" +" configuração de categorias de produtos, recomendamos " +"que você \n" +" usar fazer uso da ID externo para este campo \n" +" 'Categoria'." #. module: base_import #. openerp-web @@ -902,13 +1047,15 @@ msgid "" "How can I import a many2many relationship field \n" " (e.g. a customer that has multiple tags)?" msgstr "" +"Como posso importar um campo de relacionamento many2many \n" +" (Por exemplo, um cliente que tem várias marcas)?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "XXX/ID" -msgstr "" +msgstr "XXX / ID" #. module: base_import #. openerp-web @@ -924,6 +1071,14 @@ msgid "" " link between each person and the company they work \n" " for)." msgstr "" +"Se você precisar importar dados de diferentes tabelas, \n" +" você terá de recriar as relações entre registros \n" +" pertencentes a diferentes tabelas. (Por exemplo, se " +"você importar \n" +" empresas e pessoas, você terá de recriar o \n" +" ligação entre cada pessoa e da empresa em que " +"trabalham \n" +" for)." #. module: base_import #. openerp-web @@ -936,13 +1091,18 @@ msgid "" " Here is when you should use one or the other, \n" " according to your need:" msgstr "" +"De acordo com a sua necessidade, você deve usar \n" +" uma dessas três maneiras de referenciar registros " +"nas relações. \n" +" Aqui é quando você deve usar um ou o outro, \n" +" de acordo com a sua necessidade:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:319 #, python-format msgid "person_4,Ramsy,False,company_3" -msgstr "" +msgstr "person_4, Ramsy, False, company_3" #. module: base_import #. openerp-web @@ -958,6 +1118,14 @@ msgid "" " will set the EMPTY value in the field, instead of \n" " assigning the default value." msgstr "" +"Se você não definir todos os campos em seu arquivo CSV, \n" +" OpenERP irá atribuir o valor padrão para todos os " +"não \n" +" campos definidos. Mas se você\n" +" definir os campos com valores vazios em seu arquivo " +"CSV, OpenERP \n" +" irá definir o valor vazio em campo, em vez de \n" +" atribuir o valor padrão." #. module: base_import #. openerp-web @@ -974,6 +1142,8 @@ msgid "" "What happens if I do not provide a value for a \n" " specific field?" msgstr "" +"O que acontece se eu não fornecer um valor para a \n" +" campo específico?" #. module: base_import #. openerp-web @@ -987,7 +1157,7 @@ msgstr "Perguntas Freqüentes" #: code:addons/base_import/static/src/xml/import.xml:305 #, python-format msgid "company_3,Boum,True" -msgstr "" +msgstr "company_3, Boum, Verdadeiro" #. module: base_import #. openerp-web @@ -1001,6 +1171,12 @@ msgid "" "spreadsheet \n" " application." msgstr "" +"Este recurso \n" +" permite que você use a ferramenta de importação / " +"exportação de OpenERP para \n" +" modificar um lote de registros na planilha favorito " +"\n" +" aplicação." #. module: base_import #. openerp-web @@ -1011,6 +1187,10 @@ msgid "" " import an other record that links to the first\n" " one, use" msgstr "" +"coluna no OpenERP. Quando você\n" +" importar um outro registro que os links para o " +"primeiro\n" +" um, utilizar" #. module: base_import #. openerp-web @@ -1031,6 +1211,18 @@ msgid "" " take care of creating or modifying each record \n" " depending if it's new or not." msgstr "" +"Se você importar um arquivo que contém um dos \n" +" coluna \"ID externo\" ou \"ID do banco de dados\", " +"registra que \n" +" Já foram importados será modificado em vez de \n" +" sendo criado. Isto é muito útil, pois permite que " +"você \n" +" para importar várias vezes o mesmo arquivo CSV ao " +"ter \n" +" fiz algumas mudanças entre duas importações. OpenERP " +"vontade \n" +" cuidar da criação ou modificação de cada registro \n" +" dependendo se é novo ou não." #. module: base_import #. openerp-web @@ -1056,6 +1248,10 @@ msgid "" " identifier from the original application and\n" " map it to the" msgstr "" +"A fim de recriar as relações entre\n" +" diferentes registros, você deve usar o único\n" +" identificador da aplicação original e\n" +" mapeá-lo para o" #. module: base_import #. openerp-web @@ -1082,6 +1278,16 @@ msgid "" "\n" " the fields relative to the order." msgstr "" +"Se você deseja importar pedidos de vendas com vários \n" +" linhas da ordem, por cada linha do pedido, você " +"precisa reservar \n" +" uma linha específica no arquivo CSV. A primeira " +"linha da ordem \n" +" serão importados na mesma linha como a informação \n" +" em relação à ordem. Quaisquer linhas adicionais será " +"necessário um \n" +" linha addtional que não tem qualquer informação \n" +" os campos relativos à ordem." #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related @@ -1105,7 +1311,7 @@ msgstr "para o identificador único original." #: code:addons/base_import/static/src/xml/import.xml:318 #, python-format msgid "person_3,Eric,False,company_2" -msgstr "" +msgstr "person_3, Eric, False, company_2" #. module: base_import #: field:base_import.import,res_model:0 @@ -1134,6 +1340,15 @@ msgid "" " to the first company). You must first import the \n" " companies and then the persons." msgstr "" +"Os dois arquivos produzidos estão prontos para serem importados \n" +" OpenERP sem qualquer modificação. Depois de ter \n" +" importado esses dois arquivos CSV, você terá 4 " +"contatos \n" +" e três empresas. (Os primeiros dois contatos estão " +"ligados \n" +" para a primeira empresa). Primeiro, você deve " +"importar o \n" +" empresas e, em seguida, as pessoas." #. module: base_import #. openerp-web @@ -1147,6 +1362,13 @@ msgid "" " (displayed under the Browse CSV file bar after you \n" " select your file)." msgstr "" +"Por padrão, a visualização de importação é fixado em vírgulas como \n" +" separadores de campo e aspas como texto \n" +" delimitadores. Se o seu arquivo CSV não tem estes \n" +" configurações, você pode modificar as opções de " +"formato de arquivo \n" +" (Exibido na barra arquivo CSV Procurar depois de \n" +" selecione o arquivo)." #. module: base_import #. openerp-web @@ -1175,14 +1397,14 @@ msgstr "ID Externo" #: code:addons/base_import/static/src/xml/import.xml:39 #, python-format msgid "File Format Options…" -msgstr "" +msgstr "Opções de formato ..." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" -msgstr "" +msgstr "entre as linhas% d e% d" #. module: base_import #. openerp-web @@ -1203,8 +1425,14 @@ msgid "" "demo \n" " data." msgstr "" +"Como um exemplo, aqui é \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" arquivo de algumas citações que você pode importar, " +"com base na demonstração \n" +" dados." #. module: base_import #: field:base_import.import,file:0 msgid "File" -msgstr "" +msgstr "Arquivo" diff --git a/addons/base_import/i18n/ro.po b/addons/base_import/i18n/ro.po index 2139fae0f76..57efa5f269a 100644 --- a/addons/base_import/i18n/ro.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/ru.po b/addons/base_import/i18n/ru.po index df0f22e75b1..8e9d46d81c3 100644 --- a/addons/base_import/i18n/ru.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/sl.po b/addons/base_import/i18n/sl.po index a2962d82182..e13c17d2965 100644 --- a/addons/base_import/i18n/sl.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/tr.po b/addons/base_import/i18n/tr.po index b91002eb5d0..99e67caf3f4 100644 --- a/addons/base_import/i18n/tr.po +++ b/addons/base_import/i18n/tr.po @@ -14,22 +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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" -msgstr "" +msgstr "Bütün olası değerleri al" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:71 #, python-format msgid "Need to import data from an other application?" -msgstr "" +msgstr "Başka bir uygulamadan veri içeaktarmanız mı gerekiyor?" #. module: base_import #. openerp-web @@ -56,13 +56,15 @@ msgid "" "How to export/import different tables from an SQL \n" " application to OpenERP?" msgstr "" +"Bir SQL uygulamasından değişik tablolar OpenERP ye nasıl \n" +" alınır/verilir?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" -msgstr "" +msgstr "İlişki Alanları" #. module: base_import #. openerp-web @@ -72,6 +74,8 @@ msgid "" "Country/Database ID: the unique OpenERP ID for a \n" " record, defined by the ID postgresql column" msgstr "" +"Ülke/Veritabanı ID: bir kayıt için eşsiz OpenERP ID, \n" +" ID psotgresql sütunu tarafından tanımlanır" #. module: base_import #. openerp-web @@ -96,13 +100,15 @@ msgid "" "For the country \n" " Belgium, you can use one of these 3 ways to import:" msgstr "" +"Belçika ülkesi için, \n" +" bu 3 içeaktarma yönteminden birini kullanabilirsiniz:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:303 #, python-format msgid "company_1,Bigees,True" -msgstr "company_1,Bigees,True" +msgstr "company_1,Bigees,Doğru" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o @@ -127,7 +133,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:206 #, python-format msgid "CSV file for Manufacturer, Retailer" -msgstr "" +msgstr "Üretici, Satıcı için CSV dosyası" #. module: base_import #. openerp-web @@ -139,20 +145,24 @@ msgid "" "\n" " data from a third party application." msgstr "" +"Bunu kullan \n" +" Ülke/Dış ID: Bir üçüncü partiden veri " +"içeaktaracağınızda \n" +" Dış Id kullanın." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:316 #, python-format msgid "person_1,Fabien,False,company_1" -msgstr "" +msgstr "person_1,Fabien,False,company_1" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "XXX/External ID" -msgstr "" +msgstr "XXX/DışID" #. module: base_import #. openerp-web @@ -166,7 +176,7 @@ msgstr "Aktarma" #: code:addons/base_import/static/src/xml/import.xml:24 #, python-format msgid "Select the" -msgstr "" +msgstr "Bunu seç" #. module: base_import #. openerp-web @@ -187,7 +197,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:141 #, python-format msgid "Country: the name or code of the country" -msgstr "" +msgstr "Ülke: ülke adı ya da kodu" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child @@ -199,7 +209,7 @@ msgstr "base_import.tests.models.o2m.child" #: code:addons/base_import/static/src/xml/import.xml:239 #, python-format msgid "Can I import several times the same record?" -msgstr "" +msgstr "Aynı kaydı birçok sefer içeaktarabilir miyim?" #. module: base_import #. openerp-web @@ -213,7 +223,7 @@ msgstr "Onayla" #: code:addons/base_import/static/src/xml/import.xml:55 #, python-format msgid "Map your data to OpenERP" -msgstr "" +msgstr "Verilerinizi OpenERP ye eşleştirin" #. module: base_import #. openerp-web @@ -224,6 +234,9 @@ msgid "" " the easiest way when your data come from CSV files \n" " that have been created manually." msgstr "" +"Ülke Kullan: Bu \n" +" verilerinizin elle oluşturulan CSV dosyalarından \n" +" geldiği durumlarda en kolay yoldur." #. module: base_import #. openerp-web @@ -233,6 +246,8 @@ msgid "" "What's the difference between Database ID and \n" " External ID?" msgstr "" +"Veritabanı ID ile Dış ID arasındaki fark \n" +" nedir?" #. module: base_import #. openerp-web @@ -257,12 +272,12 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:302 #, python-format msgid "External ID,Name,Is a Company" -msgstr "" +msgstr "Dış ID,Adı, Bir Firmadır" #. module: base_import #: field:base_import.tests.models.preview,somevalue:0 msgid "Some Value" -msgstr "" +msgstr "Birkaç Değer" #. module: base_import #. openerp-web @@ -272,6 +287,8 @@ msgid "" "The following CSV file shows how to import \n" " suppliers and their respective contacts" msgstr "" +"Aşağıdaki CSV dosyası tedarikçi ve ilgili \n" +" kişilerinin nasıl içeaktarılacağını gösterir" #. module: base_import #. openerp-web @@ -342,7 +359,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:233 #, python-format msgid "Suppliers and their respective contacts" -msgstr "" +msgstr "Tedarikçiler ve ilgili Kişileri" #. module: base_import #. openerp-web @@ -390,7 +407,7 @@ msgstr "" #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" -msgstr "" +msgstr "Diğer Değişken" #. module: base_import #. openerp-web @@ -420,11 +437,13 @@ msgid "" "Country/Database \n" " ID: 21" msgstr "" +"Ülke/Veritabanı \n" +" ID: 21" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char msgid "base_import.tests.models.char" -msgstr "" +msgstr "base_import.tests.models.char" #. module: base_import #: help:base_import.import,file:0 @@ -454,7 +473,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:26 #, python-format msgid ".CSV" -msgstr "" +msgstr ".CSV" #. module: base_import #. openerp-web @@ -464,16 +483,18 @@ msgid "" ". The issue is\n" " usually an incorrect file encoding." msgstr "" +". Sorun\n" +" genellikle bir yanlış dosya şifrelemesidir." #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required msgid "base_import.tests.models.m2o.required" -msgstr "" +msgstr "base_import.tests.models.m2o.required" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" -msgstr "" +msgstr "base_import.tests.models.char.noreadonly" #. module: base_import #. openerp-web @@ -501,32 +522,32 @@ msgstr "CSV dosyası:" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_preview msgid "base_import.tests.models.preview" -msgstr "" +msgstr "base_import.tests.models.preview" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_required msgid "base_import.tests.models.char.required" -msgstr "" +msgstr "base_import.tests.models.char.required" #. module: base_import #: code:addons/base_import/models.py:112 #, python-format msgid "Database ID" -msgstr "" +msgstr "Veritabanı ID" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:313 #, python-format msgid "It will produce the following CSV file:" -msgstr "" +msgstr "Aşağıdaki CSV dosyasını oluşturacaktır:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:362 #, python-format msgid "Here is the start of the file we could not import:" -msgstr "" +msgstr "İçeaktaramadığımız dosyanın başı:" #. module: base_import #: field:base_import.import,file_type:0 @@ -548,7 +569,7 @@ msgstr "base_import.tests.models.o2m" #: code:addons/base_import/static/src/xml/import.xml:360 #, python-format msgid "Import preview failed due to:" -msgstr "" +msgstr "İçeaktarma hatasının nedeni<:" #. module: base_import #. openerp-web @@ -566,12 +587,12 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:35 #, python-format msgid "Reload data to check changes." -msgstr "" +msgstr "Değişiklikleri denetlemek için veriyi yeniden yükleyin." #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly msgid "base_import.tests.models.char.readonly" -msgstr "" +msgstr "base_import.tests.models.char.readonly" #. module: base_import #. openerp-web @@ -606,7 +627,7 @@ msgstr "" #: code:addons/base_import/models.py:264 #, python-format msgid "You must configure at least one field to import" -msgstr "" +msgstr "İçeaktarma yapabilmek için enaz bir alanı yapılandırmalısınız" #. module: base_import #. openerp-web @@ -623,37 +644,39 @@ msgid "" "The first row of the\n" " file contains the label of the column" msgstr "" +"Dosyanın ilk satırı\n" +" sütunun adını içerir" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_states msgid "base_import.tests.models.char.states" -msgstr "" +msgstr "base_import.tests.models.char.states" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:7 #, python-format msgid "Import a CSV File" -msgstr "" +msgstr "Bir CSV Dosyası içeaktar" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:74 #, python-format msgid "Quoting:" -msgstr "" +msgstr "Çıkan:" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related msgid "base_import.tests.models.m2o.required.related" -msgstr "" +msgstr "base_import.tests.models.m2o.required.related" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:293 #, python-format msgid ")." -msgstr "" +msgstr ")." #. module: base_import #. openerp-web @@ -668,14 +691,14 @@ msgstr "İçe Aktar" #: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" -msgstr "" +msgstr "Olası değerler:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "The" -msgstr "" +msgstr "Bu" #. module: base_import #. openerp-web @@ -685,6 +708,7 @@ msgid "" "A single column was found in the file, this often means the file separator " "is incorrect" msgstr "" +"Dosyada tek bir satır bulunmuştur, bu ayırıcının yanlış olduğu anlamına gelir" #. module: base_import #. openerp-web @@ -698,7 +722,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:301 #, python-format msgid "This SQL command will create the following CSV file:" -msgstr "" +msgstr "Bu SQL komutu aşağıdaki CSV dosyasını oluşturacaktır:" #. module: base_import #. openerp-web @@ -708,6 +732,9 @@ msgid "" "The following CSV file shows how to import purchase \n" " orders with their respective purchase order lines:" msgstr "" +"Aşağıdaki CSV dosyası satınalma siparişlerini ilgili satınalma \n" +" sipariş kalemleri ile birlikte nasıl " +"içeaktarılacağını gösterir:" #. module: base_import #. openerp-web @@ -812,6 +839,9 @@ msgid "" " \"External ID\". In PSQL, write the following " "command:" msgstr "" +"Önce bütün şirketleri ve şirketlerin \n" +" \"Dış ID\"lerini dışaaktaracağız. PSQL de, aşağıdaki " +"komutu yazın:" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/zh_CN.po b/addons/base_import/i18n/zh_CN.po index cd0fe1c403d..d16d32bb82a 100644 --- a/addons/base_import/i18n/zh_CN.po +++ b/addons/base_import/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:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_import #. openerp-web @@ -113,12 +113,12 @@ msgstr "对于国 家" #: code:addons/base_import/static/src/xml/import.xml:303 #, python-format msgid "company_1,Bigees,True" -msgstr "" +msgstr "company_1,Bigees,True" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o msgid "base_import.tests.models.m2o" -msgstr "" +msgstr "base_import.tests.models.m2o" #. module: base_import #. openerp-web @@ -160,14 +160,14 @@ msgstr "使用" #: code:addons/base_import/static/src/xml/import.xml:316 #, python-format msgid "person_1,Fabien,False,company_1" -msgstr "" +msgstr "person_1,Fabien,False,company_1" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "XXX/External ID" -msgstr "" +msgstr "XXX/External ID" #. module: base_import #. openerp-web @@ -212,7 +212,7 @@ msgstr "国家:国家的名称或代码" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child msgid "base_import.tests.models.o2m.child" -msgstr "" +msgstr "base_import.tests.models.o2m.child" #. module: base_import #. openerp-web @@ -283,7 +283,7 @@ msgstr "如果我有多对一的字段怎么做?" #: code:addons/base_import/static/src/xml/import.xml:302 #, python-format msgid "External ID,Name,Is a Company" -msgstr "" +msgstr "External ID,Name,Is a Company" #. module: base_import #: field:base_import.tests.models.preview,somevalue:0 @@ -329,6 +329,13 @@ msgid "" "orignial \n" " database)." msgstr "" +"在这个文件中你会发现, Fabien 和 Laurence \n" +" 目前就职于 Bigees 公司 (company_1) 而 \n" +" Eric 就职于Organi 公司。个人和公司之间的关联 \n" +" 通过公司的 External ID 完成。\n" +" 我们需要使用 表名来为 \"External ID \"加前缀,\n" +" 从而避免个人和公司之间的ID冲突。(person_1 \n" +" 和 company_1 在原始数据库中共享相同的 ID 1 )." #. module: base_import #. openerp-web @@ -349,12 +356,12 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:148 #, python-format msgid "Country: Belgium" -msgstr "" +msgstr "国家: 比利时" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly msgid "base_import.tests.models.char.stillreadonly" -msgstr "" +msgstr "base_import.tests.models.char.stillreadonly" #. module: base_import #. openerp-web @@ -363,7 +370,7 @@ msgstr "" msgid "" "External ID,Name,Is a \n" " Company,Related Company/External ID" -msgstr "" +msgstr "External ID,Name, 是一个公司,关联公司/External ID" #. module: base_import #. openerp-web @@ -392,6 +399,15 @@ msgid "" "category \n" " hierarchy." msgstr "" +"比方说你有两个产品目录 \n" +" 下级名称是 \"可销售的\" (如. \"杂项. \n" +" 产品/可销售\" & \"其他产品/可销售\"),\n" +" 你的验证机制已经停止但仍可以导入你的数据. \n" +" 然而我们不建议你此时导入数据 \n" +" 因为他们全部会被连接到第一个\n" +" 位于产品目录列表的'可销售的' 目录 \n" +" (\"杂项. 产品/可销售\"). 我们建议你修改 \n" +" 其中的一个重复值或者修改你的产品目录层级关系." #. module: base_import #. openerp-web @@ -403,6 +419,9 @@ msgid "" "\n" " PSQL:" msgstr "" +"为了创建对于连接到公司的人员 \n" +" CVS文件,我们将在PSQL中使用以下的 \n" +" SQL命令:" #. module: base_import #. openerp-web @@ -414,6 +433,10 @@ msgid "" " (in 'Save As' dialog box > click 'Tools' dropdown \n" " list > Encoding tab)." msgstr "" +"当需要保存时,Microsoft Excel \n" +" 将仅允许您修改编码\n" +" (在 '另存' 对话框中 > 点击 '工具' 下拉\n" +" 清单 > 编码选项)。" #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 @@ -430,6 +453,10 @@ msgid "" " later, it's thus good practice to specify it\n" " whenever possible" msgstr "" +"亦将被用于升级原始的\n" +" 导入(如果以后您需要再次导入修改的数据)\n" +" ,因而这也是非常好的做法来指定它\n" +" 无论何时可以的话" #. module: base_import #. openerp-web @@ -439,6 +466,8 @@ msgid "" "file to import. If you need a sample importable file, you\n" " can use the export tool to generate one." msgstr "" +"要导入的文件。如果你需要一个可导的样本文件,您\n" +" 您可以先使用导出工具来生成一个。" #. module: base_import #. openerp-web @@ -454,7 +483,7 @@ msgstr "" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char msgid "base_import.tests.models.char" -msgstr "" +msgstr "base_import.tests.models.char" #. module: base_import #: help:base_import.import,file:0 @@ -502,12 +531,12 @@ msgstr "发生这个问题通常是文件编码错误" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required msgid "base_import.tests.models.m2o.required" -msgstr "" +msgstr "base_import.tests.models.m2o.required" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" -msgstr "" +msgstr "base_import.tests.models.char.noreadonly" #. module: base_import #. openerp-web @@ -524,29 +553,35 @@ msgid "" "filter \n" " settings' > Save)." msgstr "" +"如果您在电子表格应用中编辑并保存 CSV 文件, \n" +" 你的电脑中的地域设置将会 \n" +" 影响分隔符和定界符的使用。 \n" +" 我们建议您使用 OpenOffice 或 LibreOffice Calc, \n" +" 因为它们允许您修改全部这三个选项 \n" +" (在'另存为'对话框中 > 点选 ' 编辑过滤设置' > 保存)。" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:30 #, python-format msgid "CSV File:" -msgstr "" +msgstr "CSV 文件:" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_preview msgid "base_import.tests.models.preview" -msgstr "" +msgstr "base_import.tests.models.preview" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_required msgid "base_import.tests.models.char.required" -msgstr "" +msgstr "base_import.tests.models.char.required" #. module: base_import #: code:addons/base_import/models.py:112 #, python-format msgid "Database ID" -msgstr "" +msgstr "Database ID" #. module: base_import #. openerp-web @@ -565,24 +600,24 @@ msgstr "下面是我们无法导入的起始文件:" #. module: base_import #: field:base_import.import,file_type:0 msgid "File Type" -msgstr "" +msgstr "文件类型" #. module: base_import #: model:ir.model,name:base_import.model_base_import_import msgid "base_import.import" -msgstr "" +msgstr "base_import.import" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_o2m msgid "base_import.tests.models.o2m" -msgstr "" +msgstr "base_import.tests.models.o2m" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:360 #, python-format msgid "Import preview failed due to:" -msgstr "" +msgstr "导入预览文件失败" #. module: base_import #. openerp-web @@ -605,7 +640,7 @@ msgstr "刷新数据,以检查变化。" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly msgid "base_import.tests.models.char.readonly" -msgstr "" +msgstr "base_import.tests.models.char.readonly" #. module: base_import #. openerp-web @@ -652,7 +687,7 @@ msgstr "You must configure at least one field to import" #: code:addons/base_import/static/src/xml/import.xml:304 #, python-format msgid "company_2,Organi,True" -msgstr "" +msgstr "company_2,Organi,True" #. module: base_import #. openerp-web @@ -662,37 +697,39 @@ msgid "" "The first row of the\n" " file contains the label of the column" msgstr "" +"文件的第一行\n" +" 包括栏目标签" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_states msgid "base_import.tests.models.char.states" -msgstr "" +msgstr "base_import.tests.models.char.states" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:7 #, python-format msgid "Import a CSV File" -msgstr "" +msgstr "导入一个CSV文件" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:74 #, python-format msgid "Quoting:" -msgstr "" +msgstr "引用:" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related msgid "base_import.tests.models.m2o.required.related" -msgstr "" +msgstr "base_import.tests.models.m2o.required.related" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:293 #, python-format msgid ")." -msgstr "" +msgstr ")." #. module: base_import #. openerp-web @@ -700,21 +737,21 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:396 #, python-format msgid "Import" -msgstr "" +msgstr "导入" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" -msgstr "" +msgstr "这里是可能的值:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "The" -msgstr "" +msgstr "这" #. module: base_import #. openerp-web @@ -723,21 +760,21 @@ msgstr "" msgid "" "A single column was found in the file, this often means the file separator " "is incorrect" -msgstr "" +msgstr "文件中仅有一栏,这经常意味着文件分隔符不正确" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:293 #, python-format msgid "dump of such a PostgreSQL database" -msgstr "" +msgstr "转储一个 PostgreSQL 数据库" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:301 #, python-format msgid "This SQL command will create the following CSV file:" -msgstr "" +msgstr "这个 SQL 命令将创建以下 的CSV文件:" #. module: base_import #. openerp-web @@ -746,7 +783,7 @@ msgstr "" msgid "" "The following CSV file shows how to import purchase \n" " orders with their respective purchase order lines:" -msgstr "" +msgstr "下列CSV文件显示如何导入采购订单以及它们各自的采购订单明细:" #. module: base_import #. openerp-web @@ -755,7 +792,7 @@ msgstr "" msgid "" "What can I do when the Import preview table isn't \n" " displayed correctly?" -msgstr "" +msgstr "当导入预览表显示不正确时,我该怎么办?" #. module: base_import #: field:base_import.tests.models.char,value:0 @@ -772,21 +809,21 @@ msgstr "" #: field:base_import.tests.models.o2m.child,parent_id:0 #: field:base_import.tests.models.o2m.child,value:0 msgid "unknown" -msgstr "" +msgstr "未知" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:317 #, python-format msgid "person_2,Laurence,False,company_1" -msgstr "" +msgstr "person_2,Laurence,False,company_1" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:149 #, python-format msgid "Country/External ID: base.be" -msgstr "" +msgstr "Country/External ID: base.be" #. module: base_import #. openerp-web @@ -801,27 +838,30 @@ msgid "" " the company he work for. (If you want to test this \n" " example, here is a" msgstr "" +"例如,假设您有一个包含两个表的SQL数据库要导入:companies 和 persons。 \n" +" 每个人员属于一个公司,因此您必须创建 人和其就职公司之间的\n" +" 连接。(如果您要测试这个例子,这就有一个" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" -msgstr "" +msgstr "( %d 更多)" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:227 #, python-format msgid "File for some Quotations" -msgstr "" +msgstr "引用的文件" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:72 #, python-format msgid "Encoding:" -msgstr "" +msgstr "编码:" #. module: base_import #. openerp-web @@ -841,6 +881,14 @@ msgid "" "\n" " table. (like 'company_1', 'person_1' instead of '1')" msgstr "" +"为了管理多表之间的关联, \n" +" 您可以使用 OpenERP 的 \"External ID\" 便利。 \n" +" 一个记录的\"External ID\" 是此记录在另一个\n" +" 应用中的唯一标识符。此 \"External \n" +" ID\" 必须是在所有对象的所有记录中 \n" +" 独一无二,所以,用这个应用或表的名字 \n" +" 向 \"External ID\" 加前缀,是一个很好的 \n" +" 做法。(例如:用 'company_1‘ 或 'person_1' 代替 '1')" #. module: base_import #. openerp-web @@ -851,6 +899,8 @@ msgid "" " \"External ID\". In PSQL, write the following " "command:" msgstr "" +"我们将首先导出所有的公司和它们的\"External ID\"。\n" +" 在 PSQL 中,写入以下的命令:" #. module: base_import #. openerp-web @@ -860,13 +910,15 @@ msgid "" "How can I import a one2many relationship (e.g. several \n" " Order Lines of a Sales Order)?" msgstr "" +"如何导入一个 one2many 的关系(例如: 一个销售 \n" +" 订单的多个订单行)?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." -msgstr "" +msgstr "看上去一切正常。" #. module: base_import #. openerp-web @@ -879,13 +931,17 @@ msgid "" " use make use of the external ID for this field \n" " 'Category'." msgstr "" +"但是,如果您不希望改变您的 \n" +" 产品分类配置,我们建议你 \n" +" 对此 'Category' 字段,使用 \n" +" external ID。" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" -msgstr "" +msgstr "在 %d 行" #. module: base_import #. openerp-web @@ -895,13 +951,15 @@ msgid "" "How can I import a many2many relationship field \n" " (e.g. a customer that has multiple tags)?" msgstr "" +"如何导入一个多对多( many2many )的关系 \n" +" (例如:一个顾客有多个标签)?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "XXX/ID" -msgstr "" +msgstr "XXX/ID" #. module: base_import #. openerp-web @@ -917,6 +975,8 @@ msgid "" " link between each person and the company they work \n" " for)." msgstr "" +"如果您需要从不同的表导入数据,您必须创建属于不同表之间记录的关系。\n" +" (例如:如果您导入公司和人员,您将必须创建每一个人和其就职公司间的连接 )。" #. module: base_import #. openerp-web @@ -929,13 +989,17 @@ msgid "" " Here is when you should use one or the other, \n" " according to your need:" msgstr "" +"按照您的需要, 您应该使用 \n" +" 这三种方式之一在关联中引用记录。 \n" +" 这里是介绍您何时使用何种方式, \n" +" 根据您所需要:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:319 #, python-format msgid "person_4,Ramsy,False,company_3" -msgstr "" +msgstr "person_4,Ramsy,False,company_3" #. module: base_import #. openerp-web @@ -957,7 +1021,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:20 #, python-format msgid "Cancel" -msgstr "" +msgstr "取消" #. module: base_import #. openerp-web @@ -967,20 +1031,22 @@ msgid "" "What happens if I do not provide a value for a \n" " specific field?" msgstr "" +"对于一个特定的字段,如果我不提供一个值,将 \n" +" 会发生什么?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:68 #, python-format msgid "Frequently Asked Questions" -msgstr "" +msgstr "常见问题" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:305 #, python-format msgid "company_3,Boum,True" -msgstr "" +msgstr "company_3,Boum,True" #. module: base_import #. openerp-web @@ -994,6 +1060,10 @@ msgid "" "spreadsheet \n" " application." msgstr "" +"此特性 \n" +" 允许您使用OpenERP的导入/导出工具来 \n" +" 修改一批记录---用您喜爱的电子表格 \n" +" 应用!" #. module: base_import #. openerp-web @@ -1024,20 +1094,27 @@ msgid "" " take care of creating or modifying each record \n" " depending if it's new or not." msgstr "" +"如果您导入一个包括以下栏目之一的文件, \n" +" \"External ID\" 或者 \"Database ID\",已 \n" +" 经导入的记录将会被修改而不是被创建。 \n" +" 允许您多次导入同一CSV文件,在两次导 \n" +" 入之间只做些变更,这非常有用。 \n" +" OpenERP 将根据记录是否为新的来决定\n" +" 创建或修改每一个记录," #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 #, python-format msgid "CSV file for categories" -msgstr "" +msgstr "类别的CSV文件" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" -msgstr "" +msgstr "正常字段" #. module: base_import #. openerp-web @@ -1055,7 +1132,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:170 #, python-format msgid "CSV file for Products" -msgstr "" +msgstr "产品的CSV文件" #. module: base_import #. openerp-web @@ -1079,31 +1156,31 @@ msgstr "" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" -msgstr "" +msgstr "base_import.tests.models.m2o.related" #. module: base_import #: field:base_import.tests.models.preview,name:0 msgid "Name" -msgstr "" +msgstr "名称" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "to the original unique identifier." -msgstr "" +msgstr "原始的唯一标识" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:318 #, python-format msgid "person_3,Eric,False,company_2" -msgstr "" +msgstr "person_3,Eric,False,company_2" #. module: base_import #: field:base_import.import,res_model:0 msgid "Model" -msgstr "" +msgstr "型号" #. module: base_import #. openerp-web @@ -1111,7 +1188,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "ID" -msgstr "" +msgstr "ID" #. module: base_import #. openerp-web @@ -1146,12 +1223,12 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:73 #, python-format msgid "Separator:" -msgstr "" +msgstr "分隔符:" #. module: base_import #: field:base_import.import,file_name:0 msgid "File Name" -msgstr "" +msgstr "文件名" #. module: base_import #. openerp-web @@ -1161,28 +1238,28 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "External ID" -msgstr "" +msgstr "外部标识" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:39 #, python-format msgid "File Format Options…" -msgstr "" +msgstr "文件格式选项" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" -msgstr "" +msgstr "在第 %d 行和第 %d 行之间" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:19 #, python-format msgid "or" -msgstr "" +msgstr "或" #. module: base_import #. openerp-web @@ -1196,8 +1273,10 @@ msgid "" "demo \n" " data." msgstr "" +"作为一个例子,这里包含了部分报价单的文件 purchase.order_functional_error_line_cant_adpat.CSV " +"可以被导入,它基于 演示数据。" #. module: base_import #: field:base_import.import,file:0 msgid "File" -msgstr "" +msgstr "文件" diff --git a/addons/base_import/models.py b/addons/base_import/models.py index 996dbf7964d..f49db56e755 100644 --- a/addons/base_import/models.py +++ b/addons/base_import/models.py @@ -224,12 +224,13 @@ class ir_import(orm.TransientModel): headers, matches = self._match_headers(rows, fields, options) # Match should have consumed the first row (iif headers), get # the ``count`` next rows for preview - preview = itertools.islice(rows, count) + preview = list(itertools.islice(rows, count)) + assert preview, "CSV file seems to have no content" return { 'fields': fields, 'matches': matches or False, 'headers': headers or False, - 'preview': list(preview), + 'preview': preview, } except Exception, e: # Due to lazy generators, UnicodeDecodeError (for diff --git a/addons/base_report_designer/i18n/ar.po b/addons/base_report_designer/i18n/ar.po index 09d24ef3452..93011b80432 100644 --- a/addons/base_report_designer/i18n/ar.po +++ b/addons/base_report_designer/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:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/bg.po b/addons/base_report_designer/i18n/bg.po index 3b5e641e498..c944eae4d58 100644 --- a/addons/base_report_designer/i18n/bg.po +++ b/addons/base_report_designer/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:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/bs.po b/addons/base_report_designer/i18n/bs.po index f432a2d8847..30228eeceb5 100644 --- a/addons/base_report_designer/i18n/bs.po +++ b/addons/base_report_designer/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:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ca.po b/addons/base_report_designer/i18n/ca.po index 9f1ff178e49..6cdcbd40bed 100644 --- a/addons/base_report_designer/i18n/ca.po +++ b/addons/base_report_designer/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:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/cs.po b/addons/base_report_designer/i18n/cs.po index af829e3cfaa..f4c5d5de2cd 100644 --- a/addons/base_report_designer/i18n/cs.po +++ b/addons/base_report_designer/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:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/da.po b/addons/base_report_designer/i18n/da.po index c7f3d1f589b..d67800c5fc5 100644 --- a/addons/base_report_designer/i18n/da.po +++ b/addons/base_report_designer/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:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/de.po b/addons/base_report_designer/i18n/de.po index 51279bfc620..569ca9cace9 100644 --- a/addons/base_report_designer/i18n/de.po +++ b/addons/base_report_designer/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:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/el.po b/addons/base_report_designer/i18n/el.po index cf1c3d395a1..cc810dc1515 100644 --- a/addons/base_report_designer/i18n/el.po +++ b/addons/base_report_designer/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/base_report_designer/i18n/en_GB.po b/addons/base_report_designer/i18n/en_GB.po index 50099e300c3..619ed9df774 100644 --- a/addons/base_report_designer/i18n/en_GB.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es.po b/addons/base_report_designer/i18n/es.po index 8b9d700d586..772d119b395 100644 --- a/addons/base_report_designer/i18n/es.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_AR.po b/addons/base_report_designer/i18n/es_AR.po index 8cb6bd244c7..c266ea5d1bc 100644 --- a/addons/base_report_designer/i18n/es_AR.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_CR.po b/addons/base_report_designer/i18n/es_CR.po index 5aa5025c9d8..97f7efff4f0 100644 --- a/addons/base_report_designer/i18n/es_CR.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/es_EC.po b/addons/base_report_designer/i18n/es_EC.po index 604a54597c5..185783c93eb 100644 --- a/addons/base_report_designer/i18n/es_EC.po +++ b/addons/base_report_designer/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_PY.po b/addons/base_report_designer/i18n/es_PY.po index 356d6ffb4ac..0a9b9a5e584 100644 --- a/addons/base_report_designer/i18n/es_PY.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/et.po b/addons/base_report_designer/i18n/et.po index 1482c8ed4b6..f63ac3990b0 100644 --- a/addons/base_report_designer/i18n/et.po +++ b/addons/base_report_designer/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:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fa.po b/addons/base_report_designer/i18n/fa.po index bd545fca4ee..bfe03685282 100644 --- a/addons/base_report_designer/i18n/fa.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fi.po b/addons/base_report_designer/i18n/fi.po index 4d0e6b7c46b..100fada7c87 100644 --- a/addons/base_report_designer/i18n/fi.po +++ b/addons/base_report_designer/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:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fr.po b/addons/base_report_designer/i18n/fr.po index 0bbe6bae0a9..1c0b59de0c4 100644 --- a/addons/base_report_designer/i18n/fr.po +++ b/addons/base_report_designer/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:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/gl.po b/addons/base_report_designer/i18n/gl.po index 207b76c8860..67fae06f8df 100644 --- a/addons/base_report_designer/i18n/gl.po +++ b/addons/base_report_designer/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/hi.po b/addons/base_report_designer/i18n/hi.po new file mode 100644 index 00000000000..660f5e3d429 --- /dev/null +++ b/addons/base_report_designer/i18n/hi.po @@ -0,0 +1,185 @@ +# Hindi 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:05+0000\n" +"PO-Revision-Date: 2013-10-09 05:55+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hindi \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-10-10 04:41+0000\n" +"X-Generator: Launchpad (build 16799)\n" + +#. module: base_report_designer +#: model:ir.model,name:base_report_designer.model_base_report_sxw +msgid "base.report.sxw" +msgstr "base.report.sxw" + +#. module: base_report_designer +#: view:base_report_designer.installer:0 +msgid "OpenERP Report Designer Configuration" +msgstr "" + +#. module: base_report_designer +#: view:base_report_designer.installer:0 +msgid "" +"This plug-in allows you to create/modify OpenERP Reports into OpenOffice " +"Writer." +msgstr "" + +#. module: base_report_designer +#: view:base.report.sxw:0 +msgid "Upload the modified report" +msgstr "" + +#. module: base_report_designer +#: view:base.report.file.sxw:0 +msgid "The .SXW report" +msgstr "" + +#. module: base_report_designer +#: model:ir.model,name:base_report_designer.model_base_report_designer_installer +msgid "base_report_designer.installer" +msgstr "" + +#. module: base_report_designer +#: model:ir.model,name:base_report_designer.model_base_report_rml_save +msgid "base.report.rml.save" +msgstr "" + +#. module: base_report_designer +#: view:base_report_designer.installer:0 +msgid "Configure" +msgstr "" + +#. module: base_report_designer +#: view:base_report_designer.installer:0 +msgid "title" +msgstr "" + +#. module: base_report_designer +#: field:base.report.file.sxw,report_id:0 +#: field:base.report.sxw,report_id:0 +msgid "Report" +msgstr "" + +#. module: base_report_designer +#: view:base.report.rml.save:0 +msgid "The RML Report" +msgstr "" + +#. module: base_report_designer +#: model:ir.ui.menu,name:base_report_designer.menu_action_report_designer_wizard +msgid "Report Designer" +msgstr "" + +#. module: base_report_designer +#: field:base_report_designer.installer,name:0 +msgid "File name" +msgstr "" + +#. module: base_report_designer +#: view:base.report.file.sxw:0 +#: view:base.report.sxw:0 +msgid "Get a report" +msgstr "" + +#. module: base_report_designer +#: view:base_report_designer.installer:0 +#: model:ir.actions.act_window,name:base_report_designer.action_report_designer_wizard +msgid "OpenERP Report Designer" +msgstr "" + +#. module: base_report_designer +#: view:base.report.sxw:0 +msgid "Continue" +msgstr "" + +#. module: base_report_designer +#: field:base.report.rml.save,file_rml:0 +msgid "Save As" +msgstr "" + +#. module: base_report_designer +#: help:base_report_designer.installer,plugin_file:0 +msgid "" +"OpenObject Report Designer plug-in file. Save as this file and install this " +"plug-in in OpenOffice." +msgstr "" + +#. module: base_report_designer +#: view:base.report.rml.save:0 +msgid "Save RML FIle" +msgstr "" + +#. module: base_report_designer +#: field:base.report.file.sxw,file_sxw:0 +#: field:base.report.file.sxw,file_sxw_upload:0 +msgid "Your .SXW file" +msgstr "" + +#. module: base_report_designer +#: view:base_report_designer.installer:0 +msgid "Installation and Configuration Steps" +msgstr "" + +#. module: base_report_designer +#: field:base_report_designer.installer,description:0 +msgid "Description" +msgstr "" + +#. module: base_report_designer +#: view:base.report.file.sxw:0 +msgid "" +"This is the template of your requested report.\n" +"Save it as a .SXW file and open it with OpenOffice.\n" +"Don't forget to install the OpenERP SA OpenOffice package to modify it.\n" +"Once it is modified, re-upload it in OpenERP using this wizard." +msgstr "" + +#. module: base_report_designer +#: model:ir.actions.act_window,name:base_report_designer.action_view_base_report_sxw +msgid "Base Report sxw" +msgstr "" + +#. module: base_report_designer +#: model:ir.model,name:base_report_designer.model_base_report_file_sxw +msgid "base.report.file.sxw" +msgstr "" + +#. module: base_report_designer +#: field:base_report_designer.installer,plugin_file:0 +msgid "OpenObject Report Designer Plug-in" +msgstr "" + +#. module: base_report_designer +#: model:ir.actions.act_window,name:base_report_designer.action_report_designer_installer +msgid "OpenERP Report Designer Installation" +msgstr "" + +#. module: base_report_designer +#: view:base.report.sxw:0 +msgid "Cancel" +msgstr "" + +#. module: base_report_designer +#: view:base.report.sxw:0 +msgid "or" +msgstr "" + +#. module: base_report_designer +#: model:ir.model,name:base_report_designer.model_ir_actions_report_xml +msgid "ir.actions.report.xml" +msgstr "" + +#. module: base_report_designer +#: view:base.report.sxw:0 +msgid "Select your report" +msgstr "" diff --git a/addons/base_report_designer/i18n/hr.po b/addons/base_report_designer/i18n/hr.po index ac488e3b760..7a03d6fb0c5 100644 --- a/addons/base_report_designer/i18n/hr.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: hr\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/hu.po b/addons/base_report_designer/i18n/hu.po index 55f53e2386c..331196a56eb 100644 --- a/addons/base_report_designer/i18n/hu.po +++ b/addons/base_report_designer/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-17 04:59+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/id.po b/addons/base_report_designer/i18n/id.po index 29aaebf08e2..6abbcc2a5c7 100644 --- a/addons/base_report_designer/i18n/id.po +++ b/addons/base_report_designer/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:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/it.po b/addons/base_report_designer/i18n/it.po index 220c5c2beb4..6f2e84da44b 100644 --- a/addons/base_report_designer/i18n/it.po +++ b/addons/base_report_designer/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 19:53+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:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ja.po b/addons/base_report_designer/i18n/ja.po index 6e3d7c96500..c66ae963cfb 100644 --- a/addons/base_report_designer/i18n/ja.po +++ b/addons/base_report_designer/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:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ko.po b/addons/base_report_designer/i18n/ko.po index b8225f916f7..d01871d3677 100644 --- a/addons/base_report_designer/i18n/ko.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/lt.po b/addons/base_report_designer/i18n/lt.po index 07e94409425..30228eeceb5 100644 --- a/addons/base_report_designer/i18n/lt.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/mk.po b/addons/base_report_designer/i18n/mk.po index 20dc09451c5..489f4c60ade 100644 --- a/addons/base_report_designer/i18n/mk.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw @@ -33,8 +33,8 @@ msgid "" "This plug-in allows you to create/modify OpenERP Reports into OpenOffice " "Writer." msgstr "" -"Овој додаток овозможува креирање/модифицирање на OpenERP извештаи во " -"OpenOffice." +"Овој приклучок ви овозможува да креирате/менувате OpenERP извештаи во " +"OpenOffice Writer." #. module: base_report_designer #: view:base.report.sxw:0 @@ -49,7 +49,7 @@ msgstr "The .SXW извештај" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_designer_installer msgid "base_report_designer.installer" -msgstr "Copy text \t base_report_designer.installer" +msgstr "base_report_designer.installer" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_rml_save @@ -91,7 +91,7 @@ msgstr "Име на датотеката" #: view:base.report.file.sxw:0 #: view:base.report.sxw:0 msgid "Get a report" -msgstr "Земи извештај" +msgstr "Добиј извештај" #. module: base_report_designer #: view:base_report_designer.installer:0 @@ -167,7 +167,7 @@ msgstr "base.report.file.sxw" #. module: base_report_designer #: field:base_report_designer.installer,plugin_file:0 msgid "OpenObject Report Designer Plug-in" -msgstr "OpenObject Report Designer додаток" +msgstr "Приклучок за дизајнер на OpenObject извештај" #. module: base_report_designer #: model:ir.actions.act_window,name:base_report_designer.action_report_designer_installer diff --git a/addons/base_report_designer/i18n/mn.po b/addons/base_report_designer/i18n/mn.po index 2a311a86e3a..5e17e6efb7e 100644 --- a/addons/base_report_designer/i18n/mn.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nb.po b/addons/base_report_designer/i18n/nb.po index 728a9b29e6f..2517a4ac201 100644 --- a/addons/base_report_designer/i18n/nb.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nl.po b/addons/base_report_designer/i18n/nl.po index 92c2d768a88..0d2cf755a49 100644 --- a/addons/base_report_designer/i18n/nl.po +++ b/addons/base_report_designer/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-24 18:16+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:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nl_BE.po b/addons/base_report_designer/i18n/nl_BE.po index 5500173f064..65bb0778f72 100644 --- a/addons/base_report_designer/i18n/nl_BE.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pl.po b/addons/base_report_designer/i18n/pl.po index 00f17f88385..418bdf93c0a 100644 --- a/addons/base_report_designer/i18n/pl.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pt.po b/addons/base_report_designer/i18n/pt.po index 562698c78a6..05f0db32213 100644 --- a/addons/base_report_designer/i18n/pt.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pt_BR.po b/addons/base_report_designer/i18n/pt_BR.po index cb7a8478a45..c56d8d9d34b 100644 --- a/addons/base_report_designer/i18n/pt_BR.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ro.po b/addons/base_report_designer/i18n/ro.po index db64e902c0c..1aacb03fb68 100644 --- a/addons/base_report_designer/i18n/ro.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ru.po b/addons/base_report_designer/i18n/ru.po index 8bd1ee5c3d3..4f4c3f6262f 100644 --- a/addons/base_report_designer/i18n/ru.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sk.po b/addons/base_report_designer/i18n/sk.po index 7e4d16ff0be..9120c60b9bb 100644 --- a/addons/base_report_designer/i18n/sk.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sl.po b/addons/base_report_designer/i18n/sl.po index 2a411995a05..77fa2937293 100644 --- a/addons/base_report_designer/i18n/sl.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sq.po b/addons/base_report_designer/i18n/sq.po index 0f9cc16335e..476274ae990 100644 --- a/addons/base_report_designer/i18n/sq.po +++ b/addons/base_report_designer/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:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sr.po b/addons/base_report_designer/i18n/sr.po index d7ad33ca791..b14b58b45a2 100644 --- a/addons/base_report_designer/i18n/sr.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sr@latin.po b/addons/base_report_designer/i18n/sr@latin.po index e9b21572618..d31552275a8 100644 --- a/addons/base_report_designer/i18n/sr@latin.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sv.po b/addons/base_report_designer/i18n/sv.po index 0b732da52b1..f7e65996de1 100644 --- a/addons/base_report_designer/i18n/sv.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/tlh.po b/addons/base_report_designer/i18n/tlh.po index e9169745d2f..f06c4d5e256 100644 --- a/addons/base_report_designer/i18n/tlh.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/tr.po b/addons/base_report_designer/i18n/tr.po index 5ae77de1c0f..81afa2ae60a 100644 --- a/addons/base_report_designer/i18n/tr.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw @@ -79,7 +79,7 @@ msgstr "RML Raporu" #. module: base_report_designer #: model:ir.ui.menu,name:base_report_designer.menu_action_report_designer_wizard msgid "Report Designer" -msgstr "Rapor Tasarımcısı" +msgstr "Rapor Tasarımı" #. module: base_report_designer #: field:base_report_designer.installer,name:0 diff --git a/addons/base_report_designer/i18n/uk.po b/addons/base_report_designer/i18n/uk.po index 62f5f376c0f..3cc4036ee3d 100644 --- a/addons/base_report_designer/i18n/uk.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/vi.po b/addons/base_report_designer/i18n/vi.po index bc76e6dee3e..5b42be80c61 100644 --- a/addons/base_report_designer/i18n/vi.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/zh_CN.po b/addons/base_report_designer/i18n/zh_CN.po index 880c458bfb8..16656bb3f96 100644 --- a/addons/base_report_designer/i18n/zh_CN.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/zh_TW.po b/addons/base_report_designer/i18n/zh_TW.po index e2e8b2fdf8b..d694fda3e90 100644 --- a/addons/base_report_designer/i18n/zh_TW.po +++ b/addons/base_report_designer/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:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_setup/i18n/ar.po b/addons/base_setup/i18n/ar.po index f3ccb29d411..91f5308a368 100644 --- a/addons/base_setup/i18n/ar.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/bg.po b/addons/base_setup/i18n/bg.po index 17c6c43b4a6..f5f1073be03 100644 --- a/addons/base_setup/i18n/bg.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/bs.po b/addons/base_setup/i18n/bs.po index 64d98abdb94..623b4387fa3 100644 --- a/addons/base_setup/i18n/bs.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ca.po b/addons/base_setup/i18n/ca.po index defea84abbc..2e2f0c1d6b1 100644 --- a/addons/base_setup/i18n/ca.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/cs.po b/addons/base_setup/i18n/cs.po index 43ffbfbfb5f..f198c35693f 100644 --- a/addons/base_setup/i18n/cs.po +++ b/addons/base_setup/i18n/cs.po @@ -13,35 +13,35 @@ msgstr "" "MIME-Version: 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:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Language: Czech\n" #. module: base_setup #: view:sale.config.settings:0 msgid "Emails Integration" -msgstr "" +msgstr "Integrace e-mailů" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Guest" -msgstr "" +msgstr "Host" #. module: base_setup #: view:sale.config.settings:0 msgid "Contacts" -msgstr "" +msgstr "Kontakty" #. module: base_setup #: model:ir.model,name:base_setup.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: base_setup #: field:base.config.settings,module_auth_oauth:0 msgid "" "Use external authentication providers, sign in with google, facebook, ..." -msgstr "" +msgstr "Použít externí poskytovatele přihlášení (Google, Facebook...)" #. module: base_setup #: view:sale.config.settings:0 @@ -55,88 +55,93 @@ msgid "" "OpenERP using specific\n" " plugins for your preferred email application." msgstr "" +"OpenERP umožňuje automaticky vytvářet leady (nebo jiné dokumenty) z " +"příchozích e-mailů.\n" +"E-maily můžete s OpenERP synchronizovat automaticky z běžných POP3/IMAP " +"účtů, pomocí skriptu pro přímou integraci s e-mailovým serverem, nebo " +"manuálně s použitím plug-inu pro vašeho e-mailového klienta." #. module: base_setup #: field:sale.config.settings,module_sale:0 msgid "SALE" -msgstr "" +msgstr "PRODEJ" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" -msgstr "" +msgstr "Člen" #. module: base_setup #: view:base.config.settings:0 msgid "Portal access" -msgstr "" +msgstr "Přístup k portálu" #. module: base_setup #: view:base.config.settings:0 msgid "Authentication" -msgstr "" +msgstr "Autentizace" #. module: base_setup #: view:sale.config.settings:0 msgid "Quotations and Sales Orders" -msgstr "" +msgstr "Nabídky a přijaté objednávky" #. module: base_setup #: view:base.config.settings:0 #: model:ir.actions.act_window,name:base_setup.action_general_configuration #: model:ir.ui.menu,name:base_setup.menu_general_configuration msgid "General Settings" -msgstr "" +msgstr "Obecná nastavení" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Donor" -msgstr "" +msgstr "Dárce" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "E-mail" #. module: base_setup #: field:sale.config.settings,module_crm:0 msgid "CRM" -msgstr "" +msgstr "CRM" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Patient" -msgstr "" +msgstr "Pacient" #. module: base_setup #: field:base.config.settings,module_base_import:0 msgid "Allow users to import data from CSV files" -msgstr "" +msgstr "Umožnit uživatelům import z CSV" #. module: base_setup #: field:base.config.settings,module_multi_company:0 msgid "Manage multiple companies" -msgstr "" +msgstr "Spravovat více firem" #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" -msgstr "" +msgstr "V e-mailovém klientovi" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filter=VAŠE_DATABÁZE" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" -msgstr "" +msgstr "Získat kontakty automaticky z LinkedIn" #. module: base_setup #: field:sale.config.settings,module_plugin_thunderbird:0 msgid "Enable Thunderbird plug-in" -msgstr "" +msgstr "Povolit Thunderbird plug-in" #. module: base_setup #: view:base.setup.terminology:0 @@ -146,22 +151,22 @@ msgstr "res_config_contents" #. module: base_setup #: view:sale.config.settings:0 msgid "Customer Features" -msgstr "" +msgstr "Zákaznické funkce" #. module: base_setup #: view:base.config.settings:0 msgid "Import / Export" -msgstr "" +msgstr "Import / Export" #. module: base_setup #: view:sale.config.settings:0 msgid "Sale Features" -msgstr "" +msgstr "Prodejní funkce" #. module: base_setup #: field:sale.config.settings,module_plugin_outlook:0 msgid "Enable Outlook plug-in" -msgstr "" +msgstr "Povolit Outlook plug-in" #. module: base_setup #: view:base.setup.terminology:0 @@ -169,21 +174,23 @@ msgid "" "You can use this wizard to change the terminologies for customers in the " "whole application." msgstr "" +"Tohoto průvodce můžete použít pro úpravu terminologie na míru zákazníka v " +"celé aplikaci." #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Tenant" -msgstr "" +msgstr "Instance/zákazník (\"tenant\")" #. module: base_setup #: help:base.config.settings,module_share:0 msgid "Share or embbed any screen of openerp." -msgstr "" +msgstr "Sdílet nebo vložit kteroukoli obrazovku OpenERP" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Customer" -msgstr "" +msgstr "Zákazník" #. module: base_setup #: help:sale.config.settings,module_web_linkedin:0 @@ -191,6 +198,8 @@ msgid "" "When you create a new contact (person or company), you will be able to load " "all the data from LinkedIn (photos, address, etc)." msgstr "" +"Budete moci k novým kontaktům (osobám nebo firmám) automaticky doplnit " +"kontaktní informace (fotografie, adresy atd.) z LinkedIn." #. module: base_setup #: help:base.config.settings,module_multi_company:0 @@ -199,6 +208,9 @@ msgid "" "companies.\n" " This installs the module multi_company." msgstr "" +"Pracujte v prostředí více firem, s příslušným řízením přístupu k jednotlivým " +"firmám.\n" +"Bude nainstalován modul multi_company." #. module: base_setup #: view:base.config.settings:0 @@ -207,6 +219,9 @@ msgid "" "You can\n" " launch the OpenERP Server with the option" msgstr "" +"Veřejný portál je přístupný, pokud pracujete s jedinou databází.\n" +" Můžete spustit OpenERP server s " +"parametrem" #. module: base_setup #: view:base.config.settings:0 @@ -214,16 +229,18 @@ msgid "" "You will find more options in your company details: address for the header " "and footer, overdue payments texts, etc." msgstr "" +"Více nastavení najdete v detailech společnosti: adresa do záhlaví a zápatí, " +"texty upomínek atd." #. module: base_setup #: model:ir.model,name:base_setup.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: base_setup #: field:base.setup.terminology,partner:0 msgid "How do you call a Customer" -msgstr "" +msgstr "Jak nazýváte zákazníka" #. module: base_setup #: view:base.config.settings:0 @@ -237,21 +254,24 @@ msgid "" "projects,\n" " etc." msgstr "" +"Když pošlete dokument zákazníkovi (nabídku, fakturu), bude se moci " +"zaregistrovat a získat přístup ke všem svým dokumentům, čtení firemních " +"novinek, kontrole svých projektů atd." #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" -msgstr "" +msgstr "base.setup.terminology" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Client" -msgstr "" +msgstr "Klient" #. module: base_setup #: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." -msgstr "" +msgstr "Povolit veřejný web OpenERP." #. module: base_setup #: help:sale.config.settings,module_plugin_thunderbird:0 @@ -264,22 +284,26 @@ msgid "" " Partner from the selected emails.\n" " This installs the module plugin_thunderbird." msgstr "" +"Plug-in umožňuje připojit e-maily a jejich přílohy k objektům v OpenERP " +"(partnerům nebo leadům).\n" +"Z vybraných e-mailů můžete vytvářet nové partnery a leady.\n" +"Bude nainstalován modul plugin_thunderbird." #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Partner" -msgstr "" +msgstr "Partner" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form msgid "Use another word to say \"Customer\"" -msgstr "" +msgstr "Použijte jiný výraz pro \"zákazník\"" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_sale_config #: view:sale.config.settings:0 msgid "Configure Sales" -msgstr "" +msgstr "Konfigurovat prodej" #. module: base_setup #: help:sale.config.settings,module_plugin_outlook:0 @@ -292,16 +316,20 @@ msgid "" " email into an OpenERP mail message with attachments.\n" " This installs the module plugin_outlook." msgstr "" +"Plug-in umožňuje připojit e-maily a jejich přílohy k objektům v OpenERP " +"(partnerům nebo leadům).\n" +"Z vybraných e-mailů můžete vytvářet nové partnery a leady.\n" +"Bude nainstalován modul plugin_outlook." #. module: base_setup #: view:base.config.settings:0 msgid "Options" -msgstr "" +msgstr "Možnosti" #. module: base_setup #: field:base.config.settings,module_portal:0 msgid "Activate the customer portal" -msgstr "" +msgstr "Aktivovat zákaznický portál" #. module: base_setup #: view:base.config.settings:0 @@ -310,36 +338,38 @@ msgid "" " Once activated, the login page will be " "replaced by the public website." msgstr "" +"Pokud toto aktivujete, přihlašovací stránka OpenERP bude nahrazena veřejným " +"webem." #. module: base_setup #: field:base.config.settings,module_share:0 msgid "Allow documents sharing" -msgstr "" +msgstr "Povolit sdílení dokumentů" #. module: base_setup #: view:base.config.settings:0 msgid "(company news, jobs, contact form, etc.)" -msgstr "" +msgstr "(firemní novinky, pracovní příležitosti, kontaktní formulář atd.)" #. module: base_setup #: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" -msgstr "" +msgstr "Aktivovat veřejný portál" #. module: base_setup #: view:base.config.settings:0 msgid "Configure outgoing email servers" -msgstr "" +msgstr "Konfigurovat odchozí e-mailové servery" #. module: base_setup #: view:sale.config.settings:0 msgid "Social Network Integration" -msgstr "" +msgstr "Integrace sociální sítě" #. module: base_setup #: help:base.config.settings,module_portal:0 msgid "Give your customers access to their documents." -msgstr "" +msgstr "Dejte svým zákazníkům přístup k jejich dokumentům." #. module: base_setup #: view:base.config.settings:0 @@ -351,23 +381,23 @@ msgstr "Storno" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Použít" #. module: base_setup #: view:base.setup.terminology:0 msgid "Specify Your Terminology" -msgstr "" +msgstr "Určete svou terminologii" #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "or" -msgstr "" +msgstr "nebo" #. module: base_setup #: view:base.config.settings:0 msgid "Configure your company data" -msgstr "" +msgstr "Nastavte data své společnosti" #~ msgid "City" #~ msgstr "Město" diff --git a/addons/base_setup/i18n/da.po b/addons/base_setup/i18n/da.po index cdd909ef068..eedb33384b4 100644 --- a/addons/base_setup/i18n/da.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/de.po b/addons/base_setup/i18n/de.po index dc856a16bd4..b6535ab8186 100644 --- a/addons/base_setup/i18n/de.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/el.po b/addons/base_setup/i18n/el.po index dfd93286980..a6fea471d38 100644 --- a/addons/base_setup/i18n/el.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/en_GB.po b/addons/base_setup/i18n/en_GB.po index 4040364ed7c..d6a193cce7e 100644 --- a/addons/base_setup/i18n/en_GB.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es.po b/addons/base_setup/i18n/es.po index a443203dff8..e796d511a4a 100644 --- a/addons/base_setup/i18n/es.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -910,9 +910,6 @@ msgstr "Configurar datos de su compañía" #~ msgid "migrade.application.installer.modules" #~ msgstr "migrade.application.installer.modules" -#~ msgid "Interface" -#~ msgstr "Interfáz:" - #~ msgid "" #~ "Sets default language for the all user interface, when UI translations are " #~ "available. If you want to Add new Language, you can add it from 'Load an " @@ -976,3 +973,6 @@ msgstr "Configurar datos de su compañía" #~ "Esto definirá las preferencias por defecto para los nuevos usuarios y " #~ "actualizará las existentes. Después los usuarios podrán modifcarlas " #~ "libremente desde su propio formulario de preferencias." + +#~ msgid "Interface" +#~ msgstr "Interfaz" diff --git a/addons/base_setup/i18n/es_AR.po b/addons/base_setup/i18n/es_AR.po index 41e728a8df1..96a8404034b 100644 --- a/addons/base_setup/i18n/es_AR.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_CL.po b/addons/base_setup/i18n/es_CL.po index 6e9f950ea8f..7241b017b56 100644 --- a/addons/base_setup/i18n/es_CL.po +++ b/addons/base_setup/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_CR.po b/addons/base_setup/i18n/es_CR.po index 8124a83ee09..b4216052627 100644 --- a/addons/base_setup/i18n/es_CR.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: base_setup diff --git a/addons/base_setup/i18n/es_EC.po b/addons/base_setup/i18n/es_EC.po index e779ad2a630..d1267db6a0b 100644 --- a/addons/base_setup/i18n/es_EC.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_MX.po b/addons/base_setup/i18n/es_MX.po index c092170e486..6c4e60a5d6d 100644 --- a/addons/base_setup/i18n/es_MX.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_PY.po b/addons/base_setup/i18n/es_PY.po index 2560b9725ec..161fde594d3 100644 --- a/addons/base_setup/i18n/es_PY.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/et.po b/addons/base_setup/i18n/et.po index 5c964ca36ff..33281689752 100644 --- a/addons/base_setup/i18n/et.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fa.po b/addons/base_setup/i18n/fa.po index 75f91dc997d..e7f7501aefa 100644 --- a/addons/base_setup/i18n/fa.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fi.po b/addons/base_setup/i18n/fi.po index 8275c6877c8..2b90c24fd70 100644 --- a/addons/base_setup/i18n/fi.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fr.po b/addons/base_setup/i18n/fr.po index 6f368dae8ed..d979805f4c5 100644 --- a/addons/base_setup/i18n/fr.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -128,12 +128,12 @@ msgstr "Gérer plusieurs sociétés" #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" -msgstr "" +msgstr "Sur le client de messagerie" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filter=VOTRE_BASE_DE_DONNEES" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 @@ -187,7 +187,7 @@ msgstr "Résident" #. module: base_setup #: help:base.config.settings,module_share:0 msgid "Share or embbed any screen of openerp." -msgstr "" +msgstr "Partagez ou embarquez n'importe quel écran d'OpenERP." #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -254,6 +254,13 @@ msgid "" "projects,\n" " etc." msgstr "" +"Lorsque vous envoyez un document à un client\n" +" (devis, facture), votre client pourra\n" +" s'inscrire pour obtenir tous ses " +"documents, \n" +" lire les nouvelles de la société, " +"consulter ses projets, \n" +" etc." #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology @@ -330,7 +337,7 @@ msgstr "Options" #. module: base_setup #: field:base.config.settings,module_portal:0 msgid "Activate the customer portal" -msgstr "" +msgstr "Activer le portail client" #. module: base_setup #: view:base.config.settings:0 @@ -368,7 +375,7 @@ msgstr "Intégration aux réseaux sociaux" #. module: base_setup #: help:base.config.settings,module_portal:0 msgid "Give your customers access to their documents." -msgstr "" +msgstr "Donner à vos clients l'accès à leur documents" #. module: base_setup #: view:base.config.settings:0 diff --git a/addons/base_setup/i18n/gl.po b/addons/base_setup/i18n/gl.po index c80390f436a..8b23999eb0a 100644 --- a/addons/base_setup/i18n/gl.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/gu.po b/addons/base_setup/i18n/gu.po index b4e2d7b2dff..b779cb8a495 100644 --- a/addons/base_setup/i18n/gu.po +++ b/addons/base_setup/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/hr.po b/addons/base_setup/i18n/hr.po index 1f29d2a6f6c..1a1e197414d 100644 --- a/addons/base_setup/i18n/hr.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: hr\n" #. module: base_setup diff --git a/addons/base_setup/i18n/hu.po b/addons/base_setup/i18n/hu.po index 922d55151d4..ef047cde6d0 100644 --- a/addons/base_setup/i18n/hu.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/id.po b/addons/base_setup/i18n/id.po index cb6accf3cb0..ed7dd6d05b8 100644 --- a/addons/base_setup/i18n/id.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/it.po b/addons/base_setup/i18n/it.po index cad54a171a0..5958c68b69f 100644 --- a/addons/base_setup/i18n/it.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ja.po b/addons/base_setup/i18n/ja.po index f91c648f1e0..72aee7aa05a 100644 --- a/addons/base_setup/i18n/ja.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -86,7 +86,7 @@ msgstr "" #: model:ir.actions.act_window,name:base_setup.action_general_configuration #: model:ir.ui.menu,name:base_setup.menu_general_configuration msgid "General Settings" -msgstr "" +msgstr "一般設定" #. module: base_setup #: selection:base.setup.terminology,partner:0 diff --git a/addons/base_setup/i18n/ko.po b/addons/base_setup/i18n/ko.po index 5b07e96b697..6001d70b01f 100644 --- a/addons/base_setup/i18n/ko.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/lt.po b/addons/base_setup/i18n/lt.po index ed24a95aceb..189f0bed2bf 100644 --- a/addons/base_setup/i18n/lt.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -29,7 +29,7 @@ msgstr "" #. module: base_setup #: view:sale.config.settings:0 msgid "Contacts" -msgstr "" +msgstr "Kontaktai" #. module: base_setup #: model:ir.model,name:base_setup.model_base_config_settings @@ -63,7 +63,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" -msgstr "" +msgstr "Narys" #. module: base_setup #: view:base.config.settings:0 @@ -78,7 +78,7 @@ msgstr "" #. module: base_setup #: view:sale.config.settings:0 msgid "Quotations and Sales Orders" -msgstr "" +msgstr "Pasiūlymai ir pardavimo užsakymai" #. module: base_setup #: view:base.config.settings:0 @@ -95,7 +95,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "El. paštas" #. module: base_setup #: field:sale.config.settings,module_crm:0 @@ -182,7 +182,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Customer" -msgstr "" +msgstr "Pirkėjas" #. module: base_setup #: help:sale.config.settings,module_web_linkedin:0 @@ -267,7 +267,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Partner" -msgstr "" +msgstr "Partneris" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form @@ -295,7 +295,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Options" -msgstr "" +msgstr "Pasirinkimai" #. module: base_setup #: field:base.config.settings,module_portal:0 @@ -344,13 +344,13 @@ msgstr "" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Cancel" -msgstr "" +msgstr "Atšaukti" #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Taikyti" #. module: base_setup #: view:base.setup.terminology:0 @@ -361,7 +361,7 @@ msgstr "" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "or" -msgstr "" +msgstr "arba" #. module: base_setup #: view:base.config.settings:0 diff --git a/addons/base_setup/i18n/lv.po b/addons/base_setup/i18n/lv.po index 68a8507bd20..706be28333e 100644 --- a/addons/base_setup/i18n/lv.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/mk.po b/addons/base_setup/i18n/mk.po index e2a3d20492d..50354a27fe3 100644 --- a/addons/base_setup/i18n/mk.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -126,7 +126,7 @@ msgstr "Дозволи на корисниците да импортираат #. module: base_setup #: field:base.config.settings,module_multi_company:0 msgid "Manage multiple companies" -msgstr "Менаџирање на повеќе компании" +msgstr "Управување со повеќе компании" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/mn.po b/addons/base_setup/i18n/mn.po index f3071950b2a..168bbee41c0 100644 --- a/addons/base_setup/i18n/mn.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nb.po b/addons/base_setup/i18n/nb.po index 6809e31e463..a2655e4a31e 100644 --- a/addons/base_setup/i18n/nb.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nl.po b/addons/base_setup/i18n/nl.po index 4132da9da5e..388bf17f59a 100644 --- a/addons/base_setup/i18n/nl.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -223,7 +223,7 @@ msgid "" " launch the OpenERP Server with the option" msgstr "" "Het publiek portal is alleen toegankelijk als u zich in een enkele database-" -"modus bevind. u kunt\n" +"modus bevind. U kunt\n" " de OpenERP Server starten met de optie" #. module: base_setup @@ -356,9 +356,8 @@ msgid "" " Once activated, the login page will be " "replaced by the public website." msgstr "" -"te doen.\n" -" Eenmaal geactiveerd, zal de login pagina " -"worden vervangen door de openbare website." +"Eenmaal geactiveerd, zal de login pagina worden vervangen door de openbare " +"website." #. module: base_setup #: field:base.config.settings,module_share:0 diff --git a/addons/base_setup/i18n/nl_BE.po b/addons/base_setup/i18n/nl_BE.po index 518ada07a5c..3759be939ab 100644 --- a/addons/base_setup/i18n/nl_BE.po +++ b/addons/base_setup/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-04-27 05:44+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/pl.po b/addons/base_setup/i18n/pl.po index a92e31a9f63..70cff06e1af 100644 --- a/addons/base_setup/i18n/pl.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/pt.po b/addons/base_setup/i18n/pt.po index 0b43756561a..e8607f96059 100644 --- a/addons/base_setup/i18n/pt.po +++ b/addons/base_setup/i18n/pt.po @@ -13,13 +13,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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 msgid "Emails Integration" -msgstr "" +msgstr "Integração de e-mails" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -41,6 +41,7 @@ msgstr "base.config.settings" msgid "" "Use external authentication providers, sign in with google, facebook, ..." msgstr "" +"Utilizar provedores de autenticação externa, entrar com google, facebook, ..." #. module: base_setup #: view:sale.config.settings:0 @@ -95,7 +96,7 @@ msgstr "Doador" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "E-mail" #. module: base_setup #: field:sale.config.settings,module_crm:0 @@ -135,7 +136,7 @@ msgstr "Conseguir os contactos automaticamente (através do linkedIn)" #. module: base_setup #: field:sale.config.settings,module_plugin_thunderbird:0 msgid "Enable Thunderbird plug-in" -msgstr "" +msgstr "Activar plug-in do Thunderbird" #. module: base_setup #: view:base.setup.terminology:0 @@ -160,7 +161,7 @@ msgstr "" #. module: base_setup #: field:sale.config.settings,module_plugin_outlook:0 msgid "Enable Outlook plug-in" -msgstr "" +msgstr "Activar plug-in do Outlook" #. module: base_setup #: view:base.setup.terminology:0 @@ -192,6 +193,8 @@ msgid "" "When you create a new contact (person or company), you will be able to load " "all the data from LinkedIn (photos, address, etc)." msgstr "" +"Quando cria um novo contacto (pessoa ou empresa), tem a possibilidade de " +"carregar todos os dados a partir do LinkedIn (fotografias, morada, etc) ." #. module: base_setup #: help:base.config.settings,module_multi_company:0 @@ -302,7 +305,7 @@ msgstr "Opções" #. module: base_setup #: field:base.config.settings,module_portal:0 msgid "Activate the customer portal" -msgstr "" +msgstr "Activar o portal do cliente" #. module: base_setup #: view:base.config.settings:0 @@ -320,17 +323,17 @@ msgstr "Permitir a partilha de documentos" #. module: base_setup #: view:base.config.settings:0 msgid "(company news, jobs, contact form, etc.)" -msgstr "" +msgstr "(notícias da empresa, vagas, formulário de contacto.)" #. module: base_setup #: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" -msgstr "" +msgstr "Activar o portal público" #. module: base_setup #: view:base.config.settings:0 msgid "Configure outgoing email servers" -msgstr "" +msgstr "Configurar servidores de saída de email" #. module: base_setup #: view:sale.config.settings:0 @@ -368,7 +371,7 @@ msgstr "ou" #. module: base_setup #: view:base.config.settings:0 msgid "Configure your company data" -msgstr "" +msgstr "Configurar dados da sua empresa" #~ msgid "City" #~ msgstr "Cidade" diff --git a/addons/base_setup/i18n/pt_BR.po b/addons/base_setup/i18n/pt_BR.po index 95758620ac0..0c59c15d279 100644 --- a/addons/base_setup/i18n/pt_BR.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ro.po b/addons/base_setup/i18n/ro.po index ddfdcdc56d3..7397477483d 100644 --- a/addons/base_setup/i18n/ro.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ru.po b/addons/base_setup/i18n/ru.po index ab26ce496d6..ece78524805 100644 --- a/addons/base_setup/i18n/ru.po +++ b/addons/base_setup/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-06-18 05:46+0000\n" -"X-Generator: Launchpad (build 16673)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -60,7 +60,7 @@ msgstr "" #. module: base_setup #: field:sale.config.settings,module_sale:0 msgid "SALE" -msgstr "" +msgstr "ПРОДАЖА" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -122,7 +122,7 @@ msgstr "Управление несколькими компаниями" #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" -msgstr "" +msgstr "На почтовом клиенте" #. module: base_setup #: view:base.config.settings:0 diff --git a/addons/base_setup/i18n/sk.po b/addons/base_setup/i18n/sk.po index 50be7238508..3541ff6459c 100644 --- a/addons/base_setup/i18n/sk.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sl.po b/addons/base_setup/i18n/sl.po index 42ea3348057..618a249fadd 100644 --- a/addons/base_setup/i18n/sl.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sq.po b/addons/base_setup/i18n/sq.po index 9a98baa18bb..ed7f3aea84d 100644 --- a/addons/base_setup/i18n/sq.po +++ b/addons/base_setup/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:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sr.po b/addons/base_setup/i18n/sr.po index c5569b9dcfd..aba65e105a2 100644 --- a/addons/base_setup/i18n/sr.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sr@latin.po b/addons/base_setup/i18n/sr@latin.po index 3e1e7750f28..fa608c1852b 100644 --- a/addons/base_setup/i18n/sr@latin.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sv.po b/addons/base_setup/i18n/sv.po index 2ebdfd158d9..545f969e073 100644 --- a/addons/base_setup/i18n/sv.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/th.po b/addons/base_setup/i18n/th.po index a410709fcd0..d716711be8b 100644 --- a/addons/base_setup/i18n/th.po +++ b/addons/base_setup/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-03-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -25,17 +25,17 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Guest" -msgstr "" +msgstr "ไม่ใช่สมาชิก" #. module: base_setup #: view:sale.config.settings:0 msgid "Contacts" -msgstr "" +msgstr "ที่อยู่ติดต่อ" #. module: base_setup #: model:ir.model,name:base_setup.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: base_setup #: field:base.config.settings,module_auth_oauth:0 @@ -64,7 +64,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" -msgstr "" +msgstr "สมาชิก" #. module: base_setup #: view:base.config.settings:0 @@ -74,7 +74,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Authentication" -msgstr "" +msgstr "การยืนยันตัวบุคคล" #. module: base_setup #: view:sale.config.settings:0 @@ -86,7 +86,7 @@ msgstr "" #: model:ir.actions.act_window,name:base_setup.action_general_configuration #: model:ir.ui.menu,name:base_setup.menu_general_configuration msgid "General Settings" -msgstr "" +msgstr "การตั้งค่าทั่วไป" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -96,12 +96,12 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "อีเมล์" #. module: base_setup #: field:sale.config.settings,module_crm:0 msgid "CRM" -msgstr "" +msgstr "CRM" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -126,7 +126,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filter=YOUR_DATABAE" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 @@ -141,7 +141,7 @@ msgstr "" #. module: base_setup #: view:base.setup.terminology:0 msgid "res_config_contents" -msgstr "" +msgstr "res_config_contents" #. module: base_setup #: view:sale.config.settings:0 @@ -151,7 +151,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Import / Export" -msgstr "" +msgstr "นำเข้า / ส่งออก" #. module: base_setup #: view:sale.config.settings:0 @@ -218,7 +218,7 @@ msgstr "" #. module: base_setup #: model:ir.model,name:base_setup.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: base_setup #: field:base.setup.terminology,partner:0 @@ -246,7 +246,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Client" -msgstr "" +msgstr "ไคลเอนต์" #. module: base_setup #: help:base.config.settings,module_portal_anonymous:0 @@ -268,7 +268,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Partner" -msgstr "" +msgstr "คู่ค้า" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form @@ -296,7 +296,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Options" -msgstr "" +msgstr "ตัวเลือก" #. module: base_setup #: field:base.config.settings,module_portal:0 @@ -351,7 +351,7 @@ msgstr "ยกเลิก" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Apply" -msgstr "" +msgstr "ใช้งาน" #. module: base_setup #: view:base.setup.terminology:0 @@ -362,12 +362,12 @@ msgstr "" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "or" -msgstr "" +msgstr "หรือ" #. module: base_setup #: view:base.config.settings:0 msgid "Configure your company data" -msgstr "" +msgstr "กำหนดค่าข้อมูลของ บริษัท" #~ msgid "" #~ "A profile sets a pre-selection of modules for specific needs. These profiles " diff --git a/addons/base_setup/i18n/tlh.po b/addons/base_setup/i18n/tlh.po index de4cb21af9f..ae88270124a 100644 --- a/addons/base_setup/i18n/tlh.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/tr.po b/addons/base_setup/i18n/tr.po index 45091e281fd..7f8082738ce 100644 --- a/addons/base_setup/i18n/tr.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -176,8 +176,8 @@ msgid "" "You can use this wizard to change the terminologies for customers in the " "whole application." msgstr "" -"Bu sihirbazı kullanarak uygulamanın içinde müşterileriniz için farklı " -"terimler atayabilirsiniz. (Hasta, cari, müşteri,iş ortağı gibi)" +"Bu sihirbazı kullanarak tüm uygulamanın içinde müşteri terminolojilerini " +"değiştirebilirsiniz." #. module: base_setup #: selection:base.setup.terminology,partner:0 diff --git a/addons/base_setup/i18n/uk.po b/addons/base_setup/i18n/uk.po index f0af1d7d897..5d2fe516402 100644 --- a/addons/base_setup/i18n/uk.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/vi.po b/addons/base_setup/i18n/vi.po index 14565a6ca00..eb78d9ca141 100644 --- a/addons/base_setup/i18n/vi.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/zh_CN.po b/addons/base_setup/i18n/zh_CN.po index 32e96a396a2..0162c7c8790 100644 --- a/addons/base_setup/i18n/zh_CN.po +++ b/addons/base_setup/i18n/zh_CN.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-22 04:14+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/zh_TW.po b/addons/base_setup/i18n/zh_TW.po index 532af36337c..929f62ca24d 100644 --- a/addons/base_setup/i18n/zh_TW.po +++ b/addons/base_setup/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:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/res_config.py b/addons/base_setup/res_config.py index 6b8578bbf47..06c57f2df5a 100644 --- a/addons/base_setup/res_config.py +++ b/addons/base_setup/res_config.py @@ -20,14 +20,17 @@ ############################################################################## from openerp.osv import fields, osv +import re +from openerp.report.render.rml2pdf import customfonts class base_config_settings(osv.osv_memory): _name = 'base.config.settings' _inherit = 'res.config.settings' + _columns = { 'module_multi_company': fields.boolean('Manage multiple companies', - help="""Work in multi-company environments, with appropriate security access between companies. - This installs the module multi_company."""), + help='Work in multi-company environments, with appropriate security access between companies.\n' + '-This installs the module multi_company.'), 'module_share': fields.boolean('Allow documents sharing', help="""Share or embbed any screen of openerp."""), 'module_portal': fields.boolean('Activate the customer portal', @@ -38,8 +41,13 @@ class base_config_settings(osv.osv_memory): 'module_base_import': fields.boolean("Allow users to import data from CSV files"), 'module_google_drive': fields.boolean('Attach Google documents to any record', help="""This installs the module google_docs."""), + 'font': fields.many2one('res.font', string="Report Font", help="Set the font into the report header, it will be used as default font in the RML reports of the user company"), } - + + _defaults= { + 'font': lambda self,cr,uid,c: self.pool.get('res.users').browse(cr, uid, uid, c).company_id.font.id, + } + def open_company(self, cr, uid, ids, context=None): user = self.pool.get('res.users').browse(cr, uid, uid, context) return { @@ -52,6 +60,24 @@ class base_config_settings(osv.osv_memory): 'target': 'current', } + def _change_header(self, header,font): + """ Replace default fontname use in header and setfont tag """ + + default_para = re.sub('fontName.?=.?".*"', 'fontName="%s"'% font,header) + return re.sub('("%s"\g<3>'% font,default_para) + + def set_base_defaults(self, cr, uid, ids, context=None): + ir_model_data = self.pool.get('ir.model.data') + wizard = self.browse(cr, uid, ids)[0] + if wizard.font: + user = self.pool.get('res.users').browse(cr, uid, uid, context) + font_name = wizard.font.name + user.company_id.write({'font': wizard.font.id,'rml_header': self._change_header(user.company_id.rml_header,font_name), 'rml_header2': self._change_header(user.company_id.rml_header2, font_name), 'rml_header3': self._change_header(user.company_id.rml_header3, font_name)}) + return {} + + def act_discover_fonts(self, cr, uid, ids, context=None): + return self.pool.get("res.font").discover_fonts(cr, uid, ids, context) + # Preferences wizard for Sales & CRM. # It is defined here because it is inherited independently in modules sale, crm, # plugin_outlook and plugin_thunderbird. @@ -64,18 +90,20 @@ class sale_config_settings(osv.osv_memory): 'module_crm': fields.boolean('CRM'), 'module_sale' : fields.boolean('SALE'), 'module_plugin_thunderbird': fields.boolean('Enable Thunderbird plug-in', - help="""The plugin allows you archive email and its attachments to the selected - OpenERP objects. You can select a partner, or a lead and - attach the selected mail as a .eml file in - the attachment of a selected record. You can create documents for CRM Lead, - Partner from the selected emails. - This installs the module plugin_thunderbird."""), + help='The plugin allows you archive email and its attachments to the selected ' + 'OpenERP objects. You can select a partner, or a lead and ' + 'attach the selected mail as a .eml file in ' + 'the attachment of a selected record. You can create documents for CRM Lead, ' + 'Partner from the selected emails.\n' + '-This installs the module plugin_thunderbird.'), 'module_plugin_outlook': fields.boolean('Enable Outlook plug-in', - help="""The Outlook plugin allows you to select an object that you would like to add - to your email and its attachments from MS Outlook. You can select a partner, - or a lead object and archive a selected - email into an OpenERP mail message with attachments. - This installs the module plugin_outlook."""), + help='The Outlook plugin allows you to select an object that you would like to add ' + 'to your email and its attachments from MS Outlook. You can select a partner, ' + 'or a lead object and archive a selected email into an OpenERP mail message with attachments.\n' + '-This installs the module plugin_outlook.'), + 'module_mass_mailing': fields.boolean( + 'Manage mass mailing campaigns', + help='Get access to statistics with your mass mailing, manage campaigns.'), } -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/base_setup/res_config_view.xml b/addons/base_setup/res_config_view.xml index 73685be95df..fab2f48e8ab 100644 --- a/addons/base_setup/res_config_view.xml +++ b/addons/base_setup/res_config_view.xml @@ -90,6 +90,15 @@
+ +
@@ -123,6 +132,10 @@
diff --git a/addons/base_vat/i18n/ar.po b/addons/base_vat/i18n/ar.po index bb57b2cbf81..01b5ad2a310 100644 --- a/addons/base_vat/i18n/ar.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "تأكد من صحته" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "الشركات" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "خطأ!" diff --git a/addons/base_vat/i18n/bg.po b/addons/base_vat/i18n/bg.po index 2f61192d91a..1fb2fc23e61 100644 --- a/addons/base_vat/i18n/bg.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "Фирми" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/bs.po b/addons/base_vat/i18n/bs.po index a86aeaf76ea..5cd6024d3c6 100644 --- a/addons/base_vat/i18n/bs.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/ca.po b/addons/base_vat/i18n/ca.po index 0264100c68a..f92a56341cc 100644 --- a/addons/base_vat/i18n/ca.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/cs.po b/addons/base_vat/i18n/cs.po index 8da61c31886..e6d2cfb7b85 100644 --- a/addons/base_vat/i18n/cs.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Ověřit platnost" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Společnosti" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Chyba!" diff --git a/addons/base_vat/i18n/da.po b/addons/base_vat/i18n/da.po index 3cad3ba4a2c..e216df58762 100644 --- a/addons/base_vat/i18n/da.po +++ b/addons/base_vat/i18n/da.po @@ -14,37 +14,39 @@ msgstr "" "MIME-Version: 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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 msgid "Check Validity" -msgstr "" +msgstr "Kontroller format" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" "Note: the expected format is %s" msgstr "" +"Momsnummer ikke korrekt.\n" +"Note: det forventede format er %s" #. module: base_vat #: field:res.company,vat_check_vies:0 msgid "VIES VAT Check" -msgstr "" +msgstr "VIES Moms kontrol" #. module: base_vat #: model:ir.model,name:base_vat.model_res_company msgid "Companies" -msgstr "" +msgstr "Firmaer" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" -msgstr "" +msgstr "Fejl!" #. module: base_vat #: help:res.partner,vat_subjected:0 @@ -52,8 +54,8 @@ msgid "" "Check this box if the partner is subjected to the VAT. It will be used for " "the VAT legal statement." msgstr "" -"Afkryds dette felt, hvis kontakten er momsregistreret. Det bruges til " -"momsbestemmelser." +"Afkryds dette felt, hvis kontakten er momsregistreret. Det bruges til moms " +"afregning." #. module: base_vat #: model:ir.model,name:base_vat.model_res_partner @@ -66,6 +68,8 @@ msgid "" "If checked, Partners VAT numbers will be fully validated against EU's VIES " "service rather than via a simple format validation (checksum)." msgstr "" +"Hvis afkrydset, bliver moms nummer kontrolleret i EU's VIES i stedet for " +"simpel checksum validering." #. module: base_vat #: field:res.partner,vat_subjected:0 diff --git a/addons/base_vat/i18n/de.po b/addons/base_vat/i18n/de.po index 693168d5d31..891b83a93a4 100644 --- a/addons/base_vat/i18n/de.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Gültigkeit überprüfen" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Unternehmen" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Fehler !" diff --git a/addons/base_vat/i18n/el.po b/addons/base_vat/i18n/el.po index 028aef8d59d..5d38637b4ce 100644 --- a/addons/base_vat/i18n/el.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/en_AU.po b/addons/base_vat/i18n/en_AU.po index 7cd31409371..4177534d623 100644 --- a/addons/base_vat/i18n/en_AU.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/en_GB.po b/addons/base_vat/i18n/en_GB.po index 5d1a30b3f9f..0a2c22762ad 100644 --- a/addons/base_vat/i18n/en_GB.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Check Validity" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Companies" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Error!" diff --git a/addons/base_vat/i18n/es.po b/addons/base_vat/i18n/es.po index c556542c4bf..d163007202c 100644 --- a/addons/base_vat/i18n/es.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Verificar validez" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "Compañías" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "¡Error!" diff --git a/addons/base_vat/i18n/es_AR.po b/addons/base_vat/i18n/es_AR.po index c96957eba85..e1ebf8b4b87 100644 --- a/addons/base_vat/i18n/es_AR.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/es_CL.po b/addons/base_vat/i18n/es_CL.po index 2e05efab36a..dd1582f80ce 100644 --- a/addons/base_vat/i18n/es_CL.po +++ b/addons/base_vat/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Compañías" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/es_CR.po b/addons/base_vat/i18n/es_CR.po index 9d80c22a940..f412c0debf2 100644 --- a/addons/base_vat/i18n/es_CR.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: base_vat @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Compañias" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/es_EC.po b/addons/base_vat/i18n/es_EC.po index bad3f7ba83b..b5fa4fe4163 100644 --- a/addons/base_vat/i18n/es_EC.po +++ b/addons/base_vat/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "Compañías" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/es_MX.po b/addons/base_vat/i18n/es_MX.po index 30fb421b98d..99712ab73df 100644 --- a/addons/base_vat/i18n/es_MX.po +++ b/addons/base_vat/i18n/es_MX.po @@ -14,16 +14,16 @@ msgstr "" "MIME-Version: 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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 msgid "Check Validity" -msgstr "" +msgstr "Verificar validez" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -38,13 +38,13 @@ msgstr "" #. module: base_vat #: model:ir.model,name:base_vat.model_res_company msgid "Companies" -msgstr "" +msgstr "Empresas" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" -msgstr "" +msgstr "¡Error!" #. module: base_vat #: help:res.partner,vat_subjected:0 @@ -52,11 +52,13 @@ msgid "" "Check this box if the partner is subjected to the VAT. It will be used for " "the VAT legal statement." msgstr "" +"Marque esta opción si la empresa está sujeta al IVA. Será utilizado para la " +"declaración legal del IVA." #. module: base_vat #: model:ir.model,name:base_vat.model_res_partner msgid "Partner" -msgstr "" +msgstr "Empresa" #. module: base_vat #: help:res.company,vat_check_vies:0 diff --git a/addons/base_vat/i18n/es_PY.po b/addons/base_vat/i18n/es_PY.po index fbf8a2fbea1..8627598269a 100644 --- a/addons/base_vat/i18n/es_PY.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/et.po b/addons/base_vat/i18n/et.po index 0d2a334ab40..989850c1e2b 100644 --- a/addons/base_vat/i18n/et.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/eu.po b/addons/base_vat/i18n/eu.po index 7f26826d372..56e285d7b69 100644 --- a/addons/base_vat/i18n/eu.po +++ b/addons/base_vat/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/fa.po b/addons/base_vat/i18n/fa.po index da370ce2871..ca4cf5234c9 100644 --- a/addons/base_vat/i18n/fa.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/fi.po b/addons/base_vat/i18n/fi.po index 91b225e70ba..ccea11f92ec 100644 --- a/addons/base_vat/i18n/fi.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Yritykset" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/fr.po b/addons/base_vat/i18n/fr.po index 581b3fbf727..3d45b693b3d 100644 --- a/addons/base_vat/i18n/fr.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Vérifier la validité" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Sociétés" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Erreur!" diff --git a/addons/base_vat/i18n/gl.po b/addons/base_vat/i18n/gl.po index 10d41cfebb5..a30f5abe8c0 100644 --- a/addons/base_vat/i18n/gl.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/gu.po b/addons/base_vat/i18n/gu.po index ca858737f2a..3e583a63835 100644 --- a/addons/base_vat/i18n/gu.po +++ b/addons/base_vat/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "કંપનીઓ" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/hr.po b/addons/base_vat/i18n/hr.po index 6ca2b250bb7..4e3423a7404 100644 --- a/addons/base_vat/i18n/hr.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Provjera točnosti" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Organizacije" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Greška!" diff --git a/addons/base_vat/i18n/hu.po b/addons/base_vat/i18n/hu.po index 8f80dba97c4..2501a61f391 100644 --- a/addons/base_vat/i18n/hu.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Érvényesség ellenőrzés" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Vállalatok" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Hiba!" diff --git a/addons/base_vat/i18n/id.po b/addons/base_vat/i18n/id.po index b48c4d84606..fb932b9f8d3 100644 --- a/addons/base_vat/i18n/id.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Perusahaan" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/it.po b/addons/base_vat/i18n/it.po index a3809839058..8f510312e0f 100644 --- a/addons/base_vat/i18n/it.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Verifica Validità" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Aziende" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Errore!" diff --git a/addons/base_vat/i18n/ja.po b/addons/base_vat/i18n/ja.po index 3cedeffa2e4..d0551dfc09e 100644 --- a/addons/base_vat/i18n/ja.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "会社" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/ko.po b/addons/base_vat/i18n/ko.po index 6ecfb77a26a..6d7eb537044 100644 --- a/addons/base_vat/i18n/ko.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/lt.po b/addons/base_vat/i18n/lt.po index 823ee1b2391..391f31d6466 100644 --- a/addons/base_vat/i18n/lt.po +++ b/addons/base_vat/i18n/lt.po @@ -13,49 +13,51 @@ msgstr "" "MIME-Version: 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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 msgid "Check Validity" -msgstr "" +msgstr "Tikrinti kodą" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" "Note: the expected format is %s" msgstr "" +"Šis PVM kodas nėra teisingas.\n" +"Pastaba: tikėtinas kodo formatas yra %s" #. module: base_vat #: field:res.company,vat_check_vies:0 msgid "VIES VAT Check" -msgstr "" +msgstr "VIES PVM tikrinimas" #. module: base_vat #: model:ir.model,name:base_vat.model_res_company msgid "Companies" -msgstr "" +msgstr "Įmonės" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" -msgstr "" +msgstr "Klaida!" #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" "Check this box if the partner is subjected to the VAT. It will be used for " "the VAT legal statement." -msgstr "" +msgstr "Pažymėkite šį lauką jeigu partneris yra PVM mokėtojas." #. module: base_vat #: model:ir.model,name:base_vat.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partneris" #. module: base_vat #: help:res.company,vat_check_vies:0 @@ -63,6 +65,8 @@ msgid "" "If checked, Partners VAT numbers will be fully validated against EU's VIES " "service rather than via a simple format validation (checksum)." msgstr "" +"Jeigu pažymėta, partnerių PVM kodai bus patikrinti ES VIES sistemoje, vietoj " +"paprasto kodo formato patikrinimo (kontrolinės sumos)." #. module: base_vat #: field:res.partner,vat_subjected:0 diff --git a/addons/base_vat/i18n/lv.po b/addons/base_vat/i18n/lv.po index e18ff5923e9..8ca82ab4433 100644 --- a/addons/base_vat/i18n/lv.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/mk.po b/addons/base_vat/i18n/mk.po index 4c9af641c82..065c27c7cb2 100644 --- a/addons/base_vat/i18n/mk.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Провери валидност" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Компании" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Грешка!" @@ -53,7 +53,9 @@ msgstr "Грешка!" msgid "" "Check this box if the partner is subjected to the VAT. It will be used for " "the VAT legal statement." -msgstr "Штиклирајте доколку партнерот е ДДВ обврзник." +msgstr "" +"Штиклирајте доколку партнерот е ДДВ обврзник. Тоа ќе биде искористено за ДДВ " +"пријавата." #. module: base_vat #: model:ir.model,name:base_vat.model_res_partner @@ -70,4 +72,4 @@ msgstr "" #. module: base_vat #: field:res.partner,vat_subjected:0 msgid "VAT Legal Statement" -msgstr "" +msgstr "ДДВ пријава" diff --git a/addons/base_vat/i18n/mn.po b/addons/base_vat/i18n/mn.po index 6471411c1b5..373278fdc6d 100644 --- a/addons/base_vat/i18n/mn.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Зөв байдлыг Шалгах" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Компаниуд" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Алдаа!" diff --git a/addons/base_vat/i18n/nb.po b/addons/base_vat/i18n/nb.po index 4e6652408a4..e2dc52315f6 100644 --- a/addons/base_vat/i18n/nb.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Firmaer" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/nl.po b/addons/base_vat/i18n/nl.po index 87100d48e1f..f2ff056eb71 100644 --- a/addons/base_vat/i18n/nl.po +++ b/addons/base_vat/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-24 17:36+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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Controleer geldigheid" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Bedrijven" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Fout!" diff --git a/addons/base_vat/i18n/nl_BE.po b/addons/base_vat/i18n/nl_BE.po index a2fe05c5705..c28896583f3 100644 --- a/addons/base_vat/i18n/nl_BE.po +++ b/addons/base_vat/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-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Geldigheid controleren" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Bedrijven" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Fout" diff --git a/addons/base_vat/i18n/oc.po b/addons/base_vat/i18n/oc.po index ca80eaaa622..a9e492b4d4c 100644 --- a/addons/base_vat/i18n/oc.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/pl.po b/addons/base_vat/i18n/pl.po index a2dae8fecc3..38f1171ac6e 100644 --- a/addons/base_vat/i18n/pl.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Sprawdź poprawność" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Firmy" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Błąd!" diff --git a/addons/base_vat/i18n/pt.po b/addons/base_vat/i18n/pt.po index 77a0d7f9366..9aabe27cb3b 100644 --- a/addons/base_vat/i18n/pt.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Verificar a validade" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Empresas" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Erro!" diff --git a/addons/base_vat/i18n/pt_BR.po b/addons/base_vat/i18n/pt_BR.po index 020987602e7..9dcd40455a6 100644 --- a/addons/base_vat/i18n/pt_BR.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Verificar Validade" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Empresas" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Erro!" diff --git a/addons/base_vat/i18n/ro.po b/addons/base_vat/i18n/ro.po index 14a41d592f2..6fcb932b246 100644 --- a/addons/base_vat/i18n/ro.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Verifica Valabilitatea" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Companii" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Eroare!" diff --git a/addons/base_vat/i18n/ru.po b/addons/base_vat/i18n/ru.po index 9ea9cb8c057..3bb7a009331 100644 --- a/addons/base_vat/i18n/ru.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Проверить правильность" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Компании" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Ошибка!" diff --git a/addons/base_vat/i18n/sk.po b/addons/base_vat/i18n/sk.po index 19cc2205377..a969a972b6f 100644 --- a/addons/base_vat/i18n/sk.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "Spoločnosti" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/sl.po b/addons/base_vat/i18n/sl.po index 247d21e471f..1a71c0b85c9 100644 --- a/addons/base_vat/i18n/sl.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Kontrola pravilnosti" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Podjetja" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Napaka!" diff --git a/addons/base_vat/i18n/sq.po b/addons/base_vat/i18n/sq.po index 882fa23f193..63766c4efe9 100644 --- a/addons/base_vat/i18n/sq.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/sr.po b/addons/base_vat/i18n/sr.po index 91813d9c44a..f78a0a45b43 100644 --- a/addons/base_vat/i18n/sr.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/sr@latin.po b/addons/base_vat/i18n/sr@latin.po index de06f5f095b..01357c78059 100644 --- a/addons/base_vat/i18n/sr@latin.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/sv.po b/addons/base_vat/i18n/sv.po index 73ae184460b..4e6bc19e5e4 100644 --- a/addons/base_vat/i18n/sv.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Bolag" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/th.po b/addons/base_vat/i18n/th.po index f3f9fc1728f..3e7c5bea0b8 100644 --- a/addons/base_vat/i18n/th.po +++ b/addons/base_vat/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-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/tlh.po b/addons/base_vat/i18n/tlh.po index eb206880a57..445e6780e4a 100644 --- a/addons/base_vat/i18n/tlh.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/tr.po b/addons/base_vat/i18n/tr.po index 43f58bdd83e..0925b0bef5a 100644 --- a/addons/base_vat/i18n/tr.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Geçerliliğini Kontrol et" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Firmalar" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Hata!" diff --git a/addons/base_vat/i18n/uk.po b/addons/base_vat/i18n/uk.po index 69ec2aedd6a..4d94c3380ee 100644 --- a/addons/base_vat/i18n/uk.po +++ b/addons/base_vat/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:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/vi.po b/addons/base_vat/i18n/vi.po index 867b7822375..df1e5272ebb 100644 --- a/addons/base_vat/i18n/vi.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/zh_CN.po b/addons/base_vat/i18n/zh_CN.po index 3e75d462c10..4cfae551a02 100644 --- a/addons/base_vat/i18n/zh_CN.po +++ b/addons/base_vat/i18n/zh_CN.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-30 17:41+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "检查有效性" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "公司" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "错误!" diff --git a/addons/base_vat/i18n/zh_TW.po b/addons/base_vat/i18n/zh_TW.po index bfb64298fb8..070658c056d 100644 --- a/addons/base_vat/i18n/zh_TW.po +++ b/addons/base_vat/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:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:19+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "公司" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "錯誤!" diff --git a/addons/board/controllers.py b/addons/board/controllers.py index 3bdebe1ef26..50148977216 100644 --- a/addons/board/controllers.py +++ b/addons/board/controllers.py @@ -4,14 +4,12 @@ from xml.etree import ElementTree import openerp from openerp.addons.web.controllers.main import load_actions_from_ir_values -class Board(openerp.addons.web.http.Controller): - _cp_path = '/board' - - @openerp.addons.web.http.jsonrequest - def add_to_dashboard(self, req, menu_id, action_id, context_to_save, domain, view_mode, name=''): +class Board(openerp.http.Controller): + @openerp.http.route('/board/add_to_dashboard', type='json', auth='user') + def add_to_dashboard(self, menu_id, action_id, context_to_save, domain, view_mode, name=''): + req = openerp.http.request # FIXME move this method to board.board model - dashboard_action = load_actions_from_ir_values( - req, 'action', 'tree_but_open', [('ir.ui.menu', menu_id)], False) + dashboard_action = load_actions_from_ir_values('action', 'tree_but_open', [('ir.ui.menu', menu_id)], False) if dashboard_action: action = dashboard_action[0][2] diff --git a/addons/board/i18n/ar.po b/addons/board/i18n/ar.po index 65dd9a9c30e..e46c9a26a76 100644 --- a/addons/board/i18n/ar.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/bg.po b/addons/board/i18n/bg.po index dcaeb9f2943..ae52c98c44b 100644 --- a/addons/board/i18n/bg.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/br.po b/addons/board/i18n/br.po index 82d7ebb00f7..562a91d9a7b 100644 --- a/addons/board/i18n/br.po +++ b/addons/board/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/bs.po b/addons/board/i18n/bs.po index 3a0945927c8..a321dd642e8 100644 --- a/addons/board/i18n/bs.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ca.po b/addons/board/i18n/ca.po index 05964ca0900..ab623a0844a 100644 --- a/addons/board/i18n/ca.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/cs.po b/addons/board/i18n/cs.po index bbc3f153b1b..d361a8fc4c9 100644 --- a/addons/board/i18n/cs.po +++ b/addons/board/i18n/cs.po @@ -13,53 +13,53 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Language: Czech\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create #: model:ir.ui.menu,name:board.menu_board_create msgid "Create Board" -msgstr "" +msgstr "Vytvořit nástěnku" #. module: board #: view:board.create:0 msgid "Create" -msgstr "" +msgstr "vytvořit" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:4 #, python-format msgid "Reset Layout.." -msgstr "" +msgstr "Uspořádání se obnoví do výchozího stavu..." #. module: board #: view:board.create:0 msgid "Create New Dashboard" -msgstr "" +msgstr "Vytvořit novou nástěnku" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:40 #, python-format msgid "Choose dashboard layout" -msgstr "" +msgstr "Vyberte uspořádání nástěnky" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:70 #, python-format msgid "Add" -msgstr "" +msgstr "Přidat" #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:139 #, python-format msgid "Are you sure you want to remove this item ?" -msgstr "" +msgstr "Opravdu chcete tuto položku odstranit?" #. module: board #: model:ir.model,name:board.model_board_board @@ -71,31 +71,31 @@ msgstr "Tabule" #: model:ir.actions.act_window,name:board.open_board_my_dash_action #: model:ir.ui.menu,name:board.menu_board_my_dash msgid "My Dashboard" -msgstr "" +msgstr "Osobní nástěnka" #. module: board #: field:board.create,name:0 msgid "Board Name" -msgstr "" +msgstr "Název" #. module: board #: model:ir.model,name:board.model_board_create msgid "Board Creation" -msgstr "" +msgstr "Vytvoření nástěnky" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:67 #, python-format msgid "Add to Dashboard" -msgstr "" +msgstr "Přidat na nástěnku" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:28 #, python-format msgid " " -msgstr "" +msgstr " " #. module: board #: model:ir.actions.act_window,help:board.open_board_my_dash_action @@ -115,39 +115,56 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" Vaše osobní nástěnka je prázdná.\n" +"

\n" +" Chcete-li přidat první sestavu na vaši nástěnku, " +"klepněte na terékoliv\n" +" horní menu, přepněte se do zobrazení 'seznam' nebo " +"'graf', \n" +" a v pokročilém vyhledávání klepněte na 'Přidat na " +"nástěnku'.\n" +"

\n" +" Data můžete před přidáním na nástěnku filtrovat a " +"seskupovat\n" +" použitím vyhledávacích voleb.\n" +"

\n" +"
\n" +" " #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:6 #, python-format msgid "Reset" -msgstr "" +msgstr "Obnovit uspořádání" #. module: board #: field:board.create,menu_parent_id:0 msgid "Parent Menu" -msgstr "Nadřazená nabídka" +msgstr "Nadřazené menu" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:8 #, python-format msgid "Change Layout.." -msgstr "" +msgstr "Můžete změnit uspořádání sestav na nástěnce..." #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:93 #, python-format msgid "Edit Layout" -msgstr "" +msgstr "Upravit uspořádání" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:10 #, python-format msgid "Change Layout" -msgstr "" +msgstr "Změnit uspořádání" #. module: board #: view:board.create:0 @@ -157,14 +174,14 @@ msgstr "Zrušit" #. module: board #: view:board.create:0 msgid "or" -msgstr "" +msgstr "nebo" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:69 #, python-format msgid "Title of new dashboard item" -msgstr "" +msgstr "Název nové položky nástěnky" #~ msgid "Configuration" #~ msgstr "Konfigurace" diff --git a/addons/board/i18n/da.po b/addons/board/i18n/da.po index dc008bafa70..c43fce672b1 100644 --- a/addons/board/i18n/da.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/de.po b/addons/board/i18n/de.po index 7f8081ea65c..867440d79a3 100644 --- a/addons/board/i18n/de.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/el.po b/addons/board/i18n/el.po index f0a2ebef7f0..3858b04a3eb 100644 --- a/addons/board/i18n/el.po +++ b/addons/board/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/board/i18n/en_GB.po b/addons/board/i18n/en_GB.po index 38f89e93455..61f123e2ece 100644 --- a/addons/board/i18n/en_GB.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es.po b/addons/board/i18n/es.po index a5867200dae..05cab462023 100644 --- a/addons/board/i18n/es.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_AR.po b/addons/board/i18n/es_AR.po index 55043fd3d58..21c30507683 100644 --- a/addons/board/i18n/es_AR.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_CL.po b/addons/board/i18n/es_CL.po index 1d9d36e2f1b..0a6a28ef834 100644 --- a/addons/board/i18n/es_CL.po +++ b/addons/board/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_CR.po b/addons/board/i18n/es_CR.po index 34f29c02d7a..29acd9fceb9 100644 --- a/addons/board/i18n/es_CR.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: \n" #. module: board diff --git a/addons/board/i18n/es_EC.po b/addons/board/i18n/es_EC.po index 8bca188aebe..622bc143ef3 100644 --- a/addons/board/i18n/es_EC.po +++ b/addons/board/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_PY.po b/addons/board/i18n/es_PY.po index 06b7547a964..c115d163172 100644 --- a/addons/board/i18n/es_PY.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/et.po b/addons/board/i18n/et.po index 2a67114e9d5..7014b2be117 100644 --- a/addons/board/i18n/et.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fa.po b/addons/board/i18n/fa.po index f6d632874eb..bd848c8a3d4 100644 --- a/addons/board/i18n/fa.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fi.po b/addons/board/i18n/fi.po index 08d6c9037ef..18f20dce92d 100644 --- a/addons/board/i18n/fi.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fr.po b/addons/board/i18n/fr.po index c5a8ee609ad..cb1a50e6640 100644 --- a/addons/board/i18n/fr.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/gl.po b/addons/board/i18n/gl.po index f308956049b..15303b0b8c7 100644 --- a/addons/board/i18n/gl.po +++ b/addons/board/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/gu.po b/addons/board/i18n/gu.po index 622fd452f55..2b084e451b3 100644 --- a/addons/board/i18n/gu.po +++ b/addons/board/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/hr.po b/addons/board/i18n/hr.po index 67b6ba0ff1c..2deaef1bf2e 100644 --- a/addons/board/i18n/hr.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/hu.po b/addons/board/i18n/hu.po index b3fa8480729..d4bb8828b7b 100644 --- a/addons/board/i18n/hu.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/id.po b/addons/board/i18n/id.po index b2793e9d54e..64030f89bd7 100644 --- a/addons/board/i18n/id.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/it.po b/addons/board/i18n/it.po index 14d5a41d401..bb37b113015 100644 --- a/addons/board/i18n/it.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ja.po b/addons/board/i18n/ja.po index fab1b78e4f7..74cbebb6d8b 100644 --- a/addons/board/i18n/ja.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ko.po b/addons/board/i18n/ko.po index 62e5976a1c1..aa071fc8f72 100644 --- a/addons/board/i18n/ko.po +++ b/addons/board/i18n/ko.po @@ -14,88 +14,88 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create #: model:ir.ui.menu,name:board.menu_board_create msgid "Create Board" -msgstr "" +msgstr "게시판 생성" #. module: board #: view:board.create:0 msgid "Create" -msgstr "" +msgstr "생성" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:4 #, python-format msgid "Reset Layout.." -msgstr "" +msgstr "레이아웃 재설정" #. module: board #: view:board.create:0 msgid "Create New Dashboard" -msgstr "" +msgstr "새로운 대시보드 생성" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:40 #, python-format msgid "Choose dashboard layout" -msgstr "" +msgstr "대시보드 레이아웃 선택" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:70 #, python-format msgid "Add" -msgstr "" +msgstr "추가" #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:139 #, python-format msgid "Are you sure you want to remove this item ?" -msgstr "" +msgstr "정말로 이 아이템을 제거하시겠습니까?" #. module: board #: model:ir.model,name:board.model_board_board msgid "Board" -msgstr "" +msgstr "게시판" #. module: board #: view:board.board:0 #: model:ir.actions.act_window,name:board.open_board_my_dash_action #: model:ir.ui.menu,name:board.menu_board_my_dash msgid "My Dashboard" -msgstr "" +msgstr "내 대시보드" #. module: board #: field:board.create,name:0 msgid "Board Name" -msgstr "" +msgstr "게시판 명칭" #. module: board #: model:ir.model,name:board.model_board_create msgid "Board Creation" -msgstr "" +msgstr "게시판 생성" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:67 #, python-format msgid "Add to Dashboard" -msgstr "" +msgstr "대시보드에 추가" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:28 #, python-format msgid " " -msgstr "" +msgstr " " #. module: board #: model:ir.actions.act_window,help:board.open_board_my_dash_action @@ -121,33 +121,33 @@ msgstr "" #: code:addons/board/static/src/xml/board.xml:6 #, python-format msgid "Reset" -msgstr "" +msgstr "초기화" #. module: board #: field:board.create,menu_parent_id:0 msgid "Parent Menu" -msgstr "페어런트 메뉴" +msgstr "상위 메뉴" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:8 #, python-format msgid "Change Layout.." -msgstr "" +msgstr "레이아웃 변경" #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:93 #, python-format msgid "Edit Layout" -msgstr "" +msgstr "레이아웃 편집" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:10 #, python-format msgid "Change Layout" -msgstr "" +msgstr "레이아웃 변경" #. module: board #: view:board.create:0 @@ -157,14 +157,14 @@ msgstr "취소" #. module: board #: view:board.create:0 msgid "or" -msgstr "" +msgstr "또는" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:69 #, python-format msgid "Title of new dashboard item" -msgstr "" +msgstr "새로운 대시보드 아이템의 제목" #~ msgid "Dashboard Definition" #~ msgstr "대시보드 정의" diff --git a/addons/board/i18n/ln.po b/addons/board/i18n/ln.po index 4308bdf809f..fc2bb93f92a 100644 --- a/addons/board/i18n/ln.po +++ b/addons/board/i18n/ln.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/lt.po b/addons/board/i18n/lt.po index 596be45780a..aa243d67fdc 100644 --- a/addons/board/i18n/lt.po +++ b/addons/board/i18n/lt.po @@ -8,57 +8,57 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 22:30+0000\n" -"Last-Translator: Paulius Sladkevičius \n" +"Last-Translator: Paulius Sladkevičius @ hbee \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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create #: model:ir.ui.menu,name:board.menu_board_create msgid "Create Board" -msgstr "" +msgstr "Sukurti skydelį" #. module: board #: view:board.create:0 msgid "Create" -msgstr "" +msgstr "Sukurti" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:4 #, python-format msgid "Reset Layout.." -msgstr "" +msgstr "Atstatyti išdėstymą.." #. module: board #: view:board.create:0 msgid "Create New Dashboard" -msgstr "" +msgstr "Sukurti naują skydelį" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:40 #, python-format msgid "Choose dashboard layout" -msgstr "" +msgstr "Pasirinkite skydelių išdėstymą" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:70 #, python-format msgid "Add" -msgstr "" +msgstr "Pridėti" #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:139 #, python-format msgid "Are you sure you want to remove this item ?" -msgstr "" +msgstr "Ar tikrai norite ištrinti šį elementą?" #. module: board #: model:ir.model,name:board.model_board_board @@ -70,12 +70,12 @@ msgstr "Lenta" #: model:ir.actions.act_window,name:board.open_board_my_dash_action #: model:ir.ui.menu,name:board.menu_board_my_dash msgid "My Dashboard" -msgstr "" +msgstr "Mano skydeliai" #. module: board #: field:board.create,name:0 msgid "Board Name" -msgstr "" +msgstr "Skydelio pavadinimas" #. module: board #: model:ir.model,name:board.model_board_create @@ -87,7 +87,7 @@ msgstr "" #: code:addons/board/static/src/xml/board.xml:67 #, python-format msgid "Add to Dashboard" -msgstr "" +msgstr "Įdėti į skydelį" #. module: board #. openerp-web @@ -114,39 +114,56 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" Jūsų neturite savo skydelių.\n" +"

\n" +" Kad pridėtumėte pirmąjį elementą į šį skydelį, eikite į " +"bet\n" +" kurį meniu, perjungite rodinį į sąrašas ar diagrama ir " +"paspauskite\n" +" „Įdėti į skydelį“ išsamios paieškos " +"pasirinktyse.\n" +"

\n" +" Jūs galite atsirinkti ir sugrupuoti duomenis prieš " +"įdedant\n" +" juos į skydelį naudojantis filtro pasirinktimis.\n" +"

\n" +"
\n" +" " #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:6 #, python-format msgid "Reset" -msgstr "" +msgstr "Atstatyti" #. module: board #: field:board.create,menu_parent_id:0 msgid "Parent Menu" -msgstr "Bazinis meniu" +msgstr "Tėvinis meniu" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:8 #, python-format msgid "Change Layout.." -msgstr "" +msgstr "Keisti išdėstymą.." #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:93 #, python-format msgid "Edit Layout" -msgstr "" +msgstr "Keisti išdėstymą" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:10 #, python-format msgid "Change Layout" -msgstr "" +msgstr "Keisti išdėstymą" #. module: board #: view:board.create:0 @@ -156,14 +173,14 @@ msgstr "Atšaukti" #. module: board #: view:board.create:0 msgid "or" -msgstr "" +msgstr "arba" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:69 #, python-format msgid "Title of new dashboard item" -msgstr "" +msgstr "Naujo skydelio elemento pavadinimas" #~ msgid "Author" #~ msgstr "Autorius" diff --git a/addons/board/i18n/lv.po b/addons/board/i18n/lv.po index 59d2c318361..8b5390613e4 100644 --- a/addons/board/i18n/lv.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/mk.po b/addons/board/i18n/mk.po index d8790943ad9..5ee6de2561b 100644 --- a/addons/board/i18n/mk.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/mn.po b/addons/board/i18n/mn.po index d13bdfc42bd..e24064ff8c1 100644 --- a/addons/board/i18n/mn.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nb.po b/addons/board/i18n/nb.po index 953ca5d6197..31f55c80753 100644 --- a/addons/board/i18n/nb.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nl.po b/addons/board/i18n/nl.po index 30e5d3b3995..4a5726fc250 100644 --- a/addons/board/i18n/nl.po +++ b/addons/board/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-24 18:14+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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nl_BE.po b/addons/board/i18n/nl_BE.po index 8ddd466e441..28ccecd1ec1 100644 --- a/addons/board/i18n/nl_BE.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pl.po b/addons/board/i18n/pl.po index 54495b31a90..81c5455127e 100644 --- a/addons/board/i18n/pl.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pt.po b/addons/board/i18n/pt.po index fcb53938864..328ea13745d 100644 --- a/addons/board/i18n/pt.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pt_BR.po b/addons/board/i18n/pt_BR.po index 1e60cca4440..c3485147c23 100644 --- a/addons/board/i18n/pt_BR.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ro.po b/addons/board/i18n/ro.po index 3d884873249..d995f1da0a0 100644 --- a/addons/board/i18n/ro.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ru.po b/addons/board/i18n/ru.po index bd365acf5ec..471bba8cc0e 100644 --- a/addons/board/i18n/ru.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sk.po b/addons/board/i18n/sk.po index 708f87a5d1d..b28cb1fd3f6 100644 --- a/addons/board/i18n/sk.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sl.po b/addons/board/i18n/sl.po index 58f456f1886..c2b9d90539e 100644 --- a/addons/board/i18n/sl.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sq.po b/addons/board/i18n/sq.po index c9fc6c9da4f..335617fbcfd 100644 --- a/addons/board/i18n/sq.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sr.po b/addons/board/i18n/sr.po index f27fbf2f3ca..0fcb38ceb6f 100644 --- a/addons/board/i18n/sr.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sr@latin.po b/addons/board/i18n/sr@latin.po index b696b6be8e9..17ef7756c3f 100644 --- a/addons/board/i18n/sr@latin.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sv.po b/addons/board/i18n/sv.po index 996c61e4987..b9c3a83cdd4 100644 --- a/addons/board/i18n/sv.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/th.po b/addons/board/i18n/th.po index b04bac9c563..875f109483a 100644 --- a/addons/board/i18n/th.po +++ b/addons/board/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-03-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create @@ -26,7 +26,7 @@ msgstr "" #. module: board #: view:board.create:0 msgid "Create" -msgstr "" +msgstr "สร้าง" #. module: board #. openerp-web @@ -52,7 +52,7 @@ msgstr "" #: code:addons/board/static/src/xml/board.xml:70 #, python-format msgid "Add" -msgstr "" +msgstr "เพิ่ม" #. module: board #. openerp-web @@ -64,14 +64,14 @@ msgstr "" #. module: board #: model:ir.model,name:board.model_board_board msgid "Board" -msgstr "" +msgstr "กระดาน" #. module: board #: view:board.board:0 #: model:ir.actions.act_window,name:board.open_board_my_dash_action #: model:ir.ui.menu,name:board.menu_board_my_dash msgid "My Dashboard" -msgstr "" +msgstr "กระดานส่วนตัว" #. module: board #: field:board.create,name:0 @@ -95,7 +95,7 @@ msgstr "" #: code:addons/board/static/src/xml/board.xml:28 #, python-format msgid " " -msgstr "" +msgstr " " #. module: board #: model:ir.actions.act_window,help:board.open_board_my_dash_action @@ -121,7 +121,7 @@ msgstr "" #: code:addons/board/static/src/xml/board.xml:6 #, python-format msgid "Reset" -msgstr "" +msgstr "คืนค่าเดิม" #. module: board #: field:board.create,menu_parent_id:0 @@ -157,7 +157,7 @@ msgstr "ยกเลิก" #. module: board #: view:board.create:0 msgid "or" -msgstr "" +msgstr "หรือ" #. module: board #. openerp-web diff --git a/addons/board/i18n/tlh.po b/addons/board/i18n/tlh.po index f99bc55bd0e..6f3a901961f 100644 --- a/addons/board/i18n/tlh.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/tr.po b/addons/board/i18n/tr.po index 62805ea3d18..2f2589bbf08 100644 --- a/addons/board/i18n/tr.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/uk.po b/addons/board/i18n/uk.po index c3f061bd814..dd3d9fb37d4 100644 --- a/addons/board/i18n/uk.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/vi.po b/addons/board/i18n/vi.po index cd4ec2e2b08..eebeffac922 100644 --- a/addons/board/i18n/vi.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/zh_CN.po b/addons/board/i18n/zh_CN.po index c446d4f14aa..e9e74e873ea 100644 --- a/addons/board/i18n/zh_CN.po +++ b/addons/board/i18n/zh_CN.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-30 17:42+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/zh_TW.po b/addons/board/i18n/zh_TW.po index 19d64a46c4f..0bd73ae9b01 100644 --- a/addons/board/i18n/zh_TW.po +++ b/addons/board/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:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/claim_from_delivery/i18n/ar.po b/addons/claim_from_delivery/i18n/ar.po index bfb8998e14d..735f5393604 100644 --- a/addons/claim_from_delivery/i18n/ar.po +++ b/addons/claim_from_delivery/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/bg.po b/addons/claim_from_delivery/i18n/bg.po index e28b6441ee3..bc6182b032f 100644 --- a/addons/claim_from_delivery/i18n/bg.po +++ b/addons/claim_from_delivery/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/bs.po b/addons/claim_from_delivery/i18n/bs.po new file mode 100644 index 00000000000..d5a2d53d810 --- /dev/null +++ b/addons/claim_from_delivery/i18n/bs.po @@ -0,0 +1,33 @@ +# 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:05+0000\n" +"PO-Revision-Date: 2013-10-26 00:35+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-10-27 05:49+0000\n" +"X-Generator: Launchpad (build 16810)\n" + +#. module: claim_from_delivery +#: view:stock.picking.out:0 +msgid "Claims" +msgstr "Prigovori" + +#. module: claim_from_delivery +#: model:res.request.link,name:claim_from_delivery.request_link_claim_from_delivery +msgid "Delivery Order" +msgstr "Nalog isporuke" + +#. module: claim_from_delivery +#: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery +msgid "Claim From Delivery" +msgstr "Prigovori isporuke" diff --git a/addons/claim_from_delivery/i18n/ca.po b/addons/claim_from_delivery/i18n/ca.po index d8cb8a45f94..08e2c3fcede 100644 --- a/addons/claim_from_delivery/i18n/ca.po +++ b/addons/claim_from_delivery/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/cs.po b/addons/claim_from_delivery/i18n/cs.po index ea676f0221d..06993f87fe5 100644 --- a/addons/claim_from_delivery/i18n/cs.po +++ b/addons/claim_from_delivery/i18n/cs.po @@ -14,23 +14,23 @@ msgstr "" "MIME-Version: 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:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 msgid "Claims" -msgstr "" +msgstr "Reklamace" #. module: claim_from_delivery #: model:res.request.link,name:claim_from_delivery.request_link_claim_from_delivery msgid "Delivery Order" -msgstr "" +msgstr "Objednávka doručení" #. module: claim_from_delivery #: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery msgid "Claim From Delivery" -msgstr "" +msgstr "Reklamace doručení" #~ msgid "Claim" #~ msgstr "Pohledávka" diff --git a/addons/claim_from_delivery/i18n/da.po b/addons/claim_from_delivery/i18n/da.po index 5808eeb7038..ec98918ea8d 100644 --- a/addons/claim_from_delivery/i18n/da.po +++ b/addons/claim_from_delivery/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/de.po b/addons/claim_from_delivery/i18n/de.po index 703498d70ee..327c7113c23 100644 --- a/addons/claim_from_delivery/i18n/de.po +++ b/addons/claim_from_delivery/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/en_GB.po b/addons/claim_from_delivery/i18n/en_GB.po index 6ff82222299..c76fa4b257d 100644 --- a/addons/claim_from_delivery/i18n/en_GB.po +++ b/addons/claim_from_delivery/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es.po b/addons/claim_from_delivery/i18n/es.po index 1dbb3d2c21b..3f62151b3f8 100644 --- a/addons/claim_from_delivery/i18n/es.po +++ b/addons/claim_from_delivery/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_AR.po b/addons/claim_from_delivery/i18n/es_AR.po index 5cd1f6675a9..257a974367f 100644 --- a/addons/claim_from_delivery/i18n/es_AR.po +++ b/addons/claim_from_delivery/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_CL.po b/addons/claim_from_delivery/i18n/es_CL.po index eafd83418f9..ca7addc4d9e 100644 --- a/addons/claim_from_delivery/i18n/es_CL.po +++ b/addons/claim_from_delivery/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_CR.po b/addons/claim_from_delivery/i18n/es_CR.po index 08fe476cbaf..c0ded0c4809 100644 --- a/addons/claim_from_delivery/i18n/es_CR.po +++ b/addons/claim_from_delivery/i18n/es_CR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: es\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/es_EC.po b/addons/claim_from_delivery/i18n/es_EC.po index 32150db1afe..9b634c067b8 100644 --- a/addons/claim_from_delivery/i18n/es_EC.po +++ b/addons/claim_from_delivery/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_PY.po b/addons/claim_from_delivery/i18n/es_PY.po index 6d58d10b089..3652beb98ac 100644 --- a/addons/claim_from_delivery/i18n/es_PY.po +++ b/addons/claim_from_delivery/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/et.po b/addons/claim_from_delivery/i18n/et.po new file mode 100644 index 00000000000..312e096ffde --- /dev/null +++ b/addons/claim_from_delivery/i18n/et.po @@ -0,0 +1,33 @@ +# Estonian 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:05+0000\n" +"PO-Revision-Date: 2013-10-09 14:42+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Estonian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-10-10 04:41+0000\n" +"X-Generator: Launchpad (build 16799)\n" + +#. module: claim_from_delivery +#: view:stock.picking.out:0 +msgid "Claims" +msgstr "Nõuded" + +#. module: claim_from_delivery +#: model:res.request.link,name:claim_from_delivery.request_link_claim_from_delivery +msgid "Delivery Order" +msgstr "Tarnetellimus" + +#. module: claim_from_delivery +#: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery +msgid "Claim From Delivery" +msgstr "" diff --git a/addons/claim_from_delivery/i18n/fa.po b/addons/claim_from_delivery/i18n/fa.po index 34961b63c46..b161dd363dd 100644 --- a/addons/claim_from_delivery/i18n/fa.po +++ b/addons/claim_from_delivery/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fi.po b/addons/claim_from_delivery/i18n/fi.po index c2767dc649a..f110f1e3530 100644 --- a/addons/claim_from_delivery/i18n/fi.po +++ b/addons/claim_from_delivery/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fr.po b/addons/claim_from_delivery/i18n/fr.po index 3f45a10094d..afd1354ff14 100644 --- a/addons/claim_from_delivery/i18n/fr.po +++ b/addons/claim_from_delivery/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/gl.po b/addons/claim_from_delivery/i18n/gl.po index a32e850fd86..20a7573a76f 100644 --- a/addons/claim_from_delivery/i18n/gl.po +++ b/addons/claim_from_delivery/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/gu.po b/addons/claim_from_delivery/i18n/gu.po index 71cda4bfde6..bff5ee658d6 100644 --- a/addons/claim_from_delivery/i18n/gu.po +++ b/addons/claim_from_delivery/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/hr.po b/addons/claim_from_delivery/i18n/hr.po index 55a64483b21..023a7a17935 100644 --- a/addons/claim_from_delivery/i18n/hr.po +++ b/addons/claim_from_delivery/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/hu.po b/addons/claim_from_delivery/i18n/hu.po index f614040965b..fc173176a9d 100644 --- a/addons/claim_from_delivery/i18n/hu.po +++ b/addons/claim_from_delivery/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/id.po b/addons/claim_from_delivery/i18n/id.po index cbb317615b9..b3f54929eea 100644 --- a/addons/claim_from_delivery/i18n/id.po +++ b/addons/claim_from_delivery/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/it.po b/addons/claim_from_delivery/i18n/it.po index 6de72ddfa2a..ac54ee21ae7 100644 --- a/addons/claim_from_delivery/i18n/it.po +++ b/addons/claim_from_delivery/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ja.po b/addons/claim_from_delivery/i18n/ja.po index 7bcbae53d09..1c59e4c6543 100644 --- a/addons/claim_from_delivery/i18n/ja.po +++ b/addons/claim_from_delivery/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/lo.po b/addons/claim_from_delivery/i18n/lo.po index fff3cf71d54..775a2369974 100644 --- a/addons/claim_from_delivery/i18n/lo.po +++ b/addons/claim_from_delivery/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/lt.po b/addons/claim_from_delivery/i18n/lt.po index abbae0ebc2b..195abeaf691 100644 --- a/addons/claim_from_delivery/i18n/lt.po +++ b/addons/claim_from_delivery/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/mk.po b/addons/claim_from_delivery/i18n/mk.po index 58fa1e2b12e..f6a6038f00c 100644 --- a/addons/claim_from_delivery/i18n/mk.po +++ b/addons/claim_from_delivery/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 @@ -25,7 +25,7 @@ msgstr "Рекламации" #. module: claim_from_delivery #: model:res.request.link,name:claim_from_delivery.request_link_claim_from_delivery msgid "Delivery Order" -msgstr "Налог за испорака" +msgstr "Испратница" #. module: claim_from_delivery #: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/mn.po b/addons/claim_from_delivery/i18n/mn.po index 4fe13ee7566..727216be654 100644 --- a/addons/claim_from_delivery/i18n/mn.po +++ b/addons/claim_from_delivery/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nb.po b/addons/claim_from_delivery/i18n/nb.po index c22d3bc44e1..cae6dbd78b6 100644 --- a/addons/claim_from_delivery/i18n/nb.po +++ b/addons/claim_from_delivery/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nl.po b/addons/claim_from_delivery/i18n/nl.po index 519c732e073..c5a4d1827fd 100644 --- a/addons/claim_from_delivery/i18n/nl.po +++ b/addons/claim_from_delivery/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-24 19:07+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:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nl_BE.po b/addons/claim_from_delivery/i18n/nl_BE.po index 38aab39e523..0e09b09b07a 100644 --- a/addons/claim_from_delivery/i18n/nl_BE.po +++ b/addons/claim_from_delivery/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/oc.po b/addons/claim_from_delivery/i18n/oc.po index 2b2b298ca7d..365ca32267d 100644 --- a/addons/claim_from_delivery/i18n/oc.po +++ b/addons/claim_from_delivery/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pl.po b/addons/claim_from_delivery/i18n/pl.po index 67d206b20b8..43a37519c79 100644 --- a/addons/claim_from_delivery/i18n/pl.po +++ b/addons/claim_from_delivery/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pt.po b/addons/claim_from_delivery/i18n/pt.po index e849647cdf1..5bddd16dbf9 100644 --- a/addons/claim_from_delivery/i18n/pt.po +++ b/addons/claim_from_delivery/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pt_BR.po b/addons/claim_from_delivery/i18n/pt_BR.po index 94dc19361fc..237aece135c 100644 --- a/addons/claim_from_delivery/i18n/pt_BR.po +++ b/addons/claim_from_delivery/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ro.po b/addons/claim_from_delivery/i18n/ro.po index 802328df80a..218792eb1c0 100644 --- a/addons/claim_from_delivery/i18n/ro.po +++ b/addons/claim_from_delivery/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ru.po b/addons/claim_from_delivery/i18n/ru.po index ffcf8fc2781..5a30181be1e 100644 --- a/addons/claim_from_delivery/i18n/ru.po +++ b/addons/claim_from_delivery/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-06 05:21+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sl.po b/addons/claim_from_delivery/i18n/sl.po index 7ade7b5f053..a6ec3cc3243 100644 --- a/addons/claim_from_delivery/i18n/sl.po +++ b/addons/claim_from_delivery/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sq.po b/addons/claim_from_delivery/i18n/sq.po index 005b2addfcb..844f79ea24e 100644 --- a/addons/claim_from_delivery/i18n/sq.po +++ b/addons/claim_from_delivery/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sr.po b/addons/claim_from_delivery/i18n/sr.po index 7485c1e0a29..6f676ff8764 100644 --- a/addons/claim_from_delivery/i18n/sr.po +++ b/addons/claim_from_delivery/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sr@latin.po b/addons/claim_from_delivery/i18n/sr@latin.po index 98af8333864..4dd7a0d54fd 100644 --- a/addons/claim_from_delivery/i18n/sr@latin.po +++ b/addons/claim_from_delivery/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sv.po b/addons/claim_from_delivery/i18n/sv.po index 3a0a5b9d456..9005a115bce 100644 --- a/addons/claim_from_delivery/i18n/sv.po +++ b/addons/claim_from_delivery/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ta.po b/addons/claim_from_delivery/i18n/ta.po index 4cd7d5d2b6b..dc5670bc46a 100644 --- a/addons/claim_from_delivery/i18n/ta.po +++ b/addons/claim_from_delivery/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/tr.po b/addons/claim_from_delivery/i18n/tr.po index 9e2be091410..19204a7a0a3 100644 --- a/addons/claim_from_delivery/i18n/tr.po +++ b/addons/claim_from_delivery/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/vi.po b/addons/claim_from_delivery/i18n/vi.po index f308bafb1ea..5e97d446bed 100644 --- a/addons/claim_from_delivery/i18n/vi.po +++ b/addons/claim_from_delivery/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-01 05:14+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/zh_CN.po b/addons/claim_from_delivery/i18n/zh_CN.po index 13b40bdec2a..11b2aed0dd7 100644 --- a/addons/claim_from_delivery/i18n/zh_CN.po +++ b/addons/claim_from_delivery/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/zh_TW.po b/addons/claim_from_delivery/i18n/zh_TW.po index 57920900399..5eaa33a8918 100644 --- a/addons/claim_from_delivery/i18n/zh_TW.po +++ b/addons/claim_from_delivery/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:15+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/contacts/i18n/ar.po b/addons/contacts/i18n/ar.po index c20d97cf5ca..2c702bc11bc 100644 --- a/addons/contacts/i18n/ar.po +++ b/addons/contacts/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/bs.po b/addons/contacts/i18n/bs.po new file mode 100644 index 00000000000..80a914816f4 --- /dev/null +++ b/addons/contacts/i18n/bs.po @@ -0,0 +1,46 @@ +# 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:05+0000\n" +"PO-Revision-Date: 2013-10-26 00:38+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-10-27 05:50+0000\n" +"X-Generator: Launchpad (build 16810)\n" + +#. module: contacts +#: model:ir.actions.act_window,help:contacts.action_contacts +msgid "" +"

\n" +" Click to add a contact in your address book.\n" +"

\n" +" OpenERP helps you easily track all activities related to\n" +" a customer; discussions, history of business opportunities,\n" +" documents, etc.\n" +"

\n" +" " +msgstr "" +"

\n" +" Kliknite da dodate kontakt u adresar.\n" +"

\n" +" OpenERP Vam pomaže da na jednostavan način pratite sve " +"aktivnosti \n" +" vezane za kupca; diskusije, istoriju poslovnih prilika,\n" +" dokumente, itd.\n" +"

\n" +" " + +#. module: contacts +#: model:ir.actions.act_window,name:contacts.action_contacts +#: model:ir.ui.menu,name:contacts.menu_contacts +msgid "Contacts" +msgstr "Kontakti" diff --git a/addons/contacts/i18n/cs.po b/addons/contacts/i18n/cs.po index 9c0ae4f65c2..3da737eba1e 100644 --- a/addons/contacts/i18n/cs.po +++ b/addons/contacts/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/da.po b/addons/contacts/i18n/da.po new file mode 100644 index 00000000000..3a04b0556ad --- /dev/null +++ b/addons/contacts/i18n/da.po @@ -0,0 +1,45 @@ +# Danish 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:05+0000\n" +"PO-Revision-Date: 2013-09-15 20:14+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Danish \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-16 05:42+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: contacts +#: model:ir.actions.act_window,help:contacts.action_contacts +msgid "" +"

\n" +" Click to add a contact in your address book.\n" +"

\n" +" OpenERP helps you easily track all activities related to\n" +" a customer; discussions, history of business opportunities,\n" +" documents, etc.\n" +"

\n" +" " +msgstr "" +"

\n" +" Klik for at tilføje kontakt i din adressebog.\n" +"

\n" +" OpenERP hjælper med at spore alle aktiviteter i forbindelse med\n" +" kunde korrespondance, historik på forretnings muligheder,\n" +" dokumenter, o.s.v.\n" +"

\n" +" " + +#. module: contacts +#: model:ir.actions.act_window,name:contacts.action_contacts +#: model:ir.ui.menu,name:contacts.menu_contacts +msgid "Contacts" +msgstr "Adressebog" diff --git a/addons/contacts/i18n/de.po b/addons/contacts/i18n/de.po index 119531fed68..ce183c0e12b 100644 --- a/addons/contacts/i18n/de.po +++ b/addons/contacts/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/en_GB.po b/addons/contacts/i18n/en_GB.po index 4b40f0f8b2e..f088d5d9f86 100644 --- a/addons/contacts/i18n/en_GB.po +++ b/addons/contacts/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/es.po b/addons/contacts/i18n/es.po index 68d30fcdccf..56b245c526a 100644 --- a/addons/contacts/i18n/es.po +++ b/addons/contacts/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/es_CO.po b/addons/contacts/i18n/es_CO.po index d4b8e87b899..b6a6f15404e 100644 --- a/addons/contacts/i18n/es_CO.po +++ b/addons/contacts/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 04:57+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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/et.po b/addons/contacts/i18n/et.po index 96f335c1258..9a5f9478de0 100644 --- a/addons/contacts/i18n/et.po +++ b/addons/contacts/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/fr.po b/addons/contacts/i18n/fr.po index d28426ab8ad..76ed72689db 100644 --- a/addons/contacts/i18n/fr.po +++ b/addons/contacts/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/hr.po b/addons/contacts/i18n/hr.po index 81c113445c7..29bd7ae5db6 100644 --- a/addons/contacts/i18n/hr.po +++ b/addons/contacts/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -29,6 +29,13 @@ msgid "" "

\n" " " msgstr "" +"Click to add a contact in your address book.\n" +"

\n" +" OpenERP omogućavajednostavno praćenje svih aktivnosti vezanih " +"uz vaše partnere; rasprave i razgovori, povijest međusobnih poslova, " +"razmjenjene dokumente i slično...\n" +"

\n" +" " #. module: contacts #: model:ir.actions.act_window,name:contacts.action_contacts diff --git a/addons/contacts/i18n/hu.po b/addons/contacts/i18n/hu.po index 7f547c811f9..f7a3816b688 100644 --- a/addons/contacts/i18n/hu.po +++ b/addons/contacts/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/it.po b/addons/contacts/i18n/it.po index 01a7463a74a..441d06ad8f4 100644 --- a/addons/contacts/i18n/it.po +++ b/addons/contacts/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-11-28 19:52+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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ja.po b/addons/contacts/i18n/ja.po new file mode 100644 index 00000000000..20c79674f9b --- /dev/null +++ b/addons/contacts/i18n/ja.po @@ -0,0 +1,37 @@ +# Japanese 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:05+0000\n" +"PO-Revision-Date: 2013-10-22 03:49+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-10-23 04:34+0000\n" +"X-Generator: Launchpad (build 16810)\n" + +#. module: contacts +#: model:ir.actions.act_window,help:contacts.action_contacts +msgid "" +"

\n" +" Click to add a contact in your address book.\n" +"

\n" +" OpenERP helps you easily track all activities related to\n" +" a customer; discussions, history of business opportunities,\n" +" documents, etc.\n" +"

\n" +" " +msgstr "" + +#. module: contacts +#: model:ir.actions.act_window,name:contacts.action_contacts +#: model:ir.ui.menu,name:contacts.menu_contacts +msgid "Contacts" +msgstr "連絡先" diff --git a/addons/contacts/i18n/ko.po b/addons/contacts/i18n/ko.po index 19e46f9e0b0..e83c12db577 100644 --- a/addons/contacts/i18n/ko.po +++ b/addons/contacts/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-30 05:56+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/lt.po b/addons/contacts/i18n/lt.po index f785a308009..50fcf8fa6ef 100644 --- a/addons/contacts/i18n/lt.po +++ b/addons/contacts/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-25 05:20+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/lv.po b/addons/contacts/i18n/lv.po new file mode 100644 index 00000000000..2e1850ece7a --- /dev/null +++ b/addons/contacts/i18n/lv.po @@ -0,0 +1,37 @@ +# Latvian 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:05+0000\n" +"PO-Revision-Date: 2013-10-16 19:12+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Latvian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-10-17 05:33+0000\n" +"X-Generator: Launchpad (build 16799)\n" + +#. module: contacts +#: model:ir.actions.act_window,help:contacts.action_contacts +msgid "" +"

\n" +" Click to add a contact in your address book.\n" +"

\n" +" OpenERP helps you easily track all activities related to\n" +" a customer; discussions, history of business opportunities,\n" +" documents, etc.\n" +"

\n" +" " +msgstr "" + +#. module: contacts +#: model:ir.actions.act_window,name:contacts.action_contacts +#: model:ir.ui.menu,name:contacts.menu_contacts +msgid "Contacts" +msgstr "Kontakti" diff --git a/addons/contacts/i18n/mk.po b/addons/contacts/i18n/mk.po index 634d6ea50e4..fc0115a39a3 100644 --- a/addons/contacts/i18n/mk.po +++ b/addons/contacts/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -30,9 +30,9 @@ msgid "" " " msgstr "" "

\n" -"Кликни овде за да креираш контакт во вашиот адресар.\n" +"Кликни овде за да креирате контакт во вашиот адресар.\n" "

\n" -"OpenERP помага за лесно следење на активностите поврзани со купувач. " +"OpenERP помага за лесно следење на активностите поврзани со купувач; " "дискусии, историја на бизнис можности, документи, итн.\n" "

\n" " " diff --git a/addons/contacts/i18n/mn.po b/addons/contacts/i18n/mn.po index b92780bb922..addecc191f1 100644 --- a/addons/contacts/i18n/mn.po +++ b/addons/contacts/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/nl.po b/addons/contacts/i18n/nl.po index 5d612da1cf8..cd6074421bc 100644 --- a/addons/contacts/i18n/nl.po +++ b/addons/contacts/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-12 20:26+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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/nl_BE.po b/addons/contacts/i18n/nl_BE.po index 78fdb540ad6..c2b8ffa503f 100644 --- a/addons/contacts/i18n/nl_BE.po +++ b/addons/contacts/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pl.po b/addons/contacts/i18n/pl.po index 8d14a9a23a4..fbaaf914a38 100644 --- a/addons/contacts/i18n/pl.po +++ b/addons/contacts/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pt.po b/addons/contacts/i18n/pt.po index 3d65499f9d7..b21ff339b88 100644 --- a/addons/contacts/i18n/pt.po +++ b/addons/contacts/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pt_BR.po b/addons/contacts/i18n/pt_BR.po index 961c7ec3393..31b2f0df607 100644 --- a/addons/contacts/i18n/pt_BR.po +++ b/addons/contacts/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ro.po b/addons/contacts/i18n/ro.po index 4ceeb98c909..98e0f85f6da 100644 --- a/addons/contacts/i18n/ro.po +++ b/addons/contacts/i18n/ro.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-10 09:13+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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -29,13 +29,13 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Clic pentru a adauga o persoana de contact in agenda " -"dumneavoastra.\n" +"

\n" +" Faceți clic pentru a adăuga o persoană de contact în agenda " +"dumneavoastră.\n" " \n" -" OpenERP va ajuta sa urmariti cu usurinta toate activitatile " +" OpenERP vă ajută să urmăriți cu ușurință toate activitățile " "legate de\n" -" un client, discutii, istoria oportunitati de afaceri,\n" +" un client, discuții, istoria oportunități de afaceri,\n" " documente, etc.\n" " \n" " " diff --git a/addons/contacts/i18n/ru.po b/addons/contacts/i18n/ru.po index 4748d2ad350..1a7772550d7 100644 --- a/addons/contacts/i18n/ru.po +++ b/addons/contacts/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/sl.po b/addons/contacts/i18n/sl.po index 37920c49d8b..f6a9b9cbb37 100644 --- a/addons/contacts/i18n/sl.po +++ b/addons/contacts/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/sv.po b/addons/contacts/i18n/sv.po index 7311bfce7c6..b57bcb5ea7f 100644 --- a/addons/contacts/i18n/sv.po +++ b/addons/contacts/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/th.po b/addons/contacts/i18n/th.po index a75ecac2237..d16deb9b445 100644 --- a/addons/contacts/i18n/th.po +++ b/addons/contacts/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-16 05:12+0000\n" -"X-Generator: Launchpad (build 16626)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -34,4 +34,4 @@ msgstr "" #: model:ir.actions.act_window,name:contacts.action_contacts #: model:ir.ui.menu,name:contacts.menu_contacts msgid "Contacts" -msgstr "" +msgstr "ผู้ติดต่อ" diff --git a/addons/contacts/i18n/tr.po b/addons/contacts/i18n/tr.po index 7edf58f02e4..45fbd16b427 100644 --- a/addons/contacts/i18n/tr.po +++ b/addons/contacts/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/vi.po b/addons/contacts/i18n/vi.po index d404d947fe2..f2c92c0f87f 100644 --- a/addons/contacts/i18n/vi.po +++ b/addons/contacts/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" +"X-Generator: Launchpad (build 16761)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/zh_CN.po b/addons/contacts/i18n/zh_CN.po index b6b90099f0b..0a2fbde99cc 100644 --- a/addons/contacts/i18n/zh_CN.po +++ b/addons/contacts/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-12-14 13:55+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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/zh_TW.po b/addons/contacts/i18n/zh_TW.po index ca7c08f10ef..549adb56ef0 100644 --- a/addons/contacts/i18n/zh_TW.po +++ b/addons/contacts/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 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: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/crm/__openerp__.py b/addons/crm/__openerp__.py index 14cf122c0bd..ceed0e0a40b 100644 --- a/addons/crm/__openerp__.py +++ b/addons/crm/__openerp__.py @@ -56,7 +56,8 @@ Dashboard for CRM will include: 'base_calendar', 'resource', 'board', - 'fetchmail' + 'fetchmail', + 'web_kanban_sparkline', ], 'data': [ 'crm_data.xml', @@ -102,6 +103,7 @@ Dashboard for CRM will include: 'crm_action_rule_demo.xml', ], 'test': [ + 'test/crm_access_group_users.yml', 'test/crm_lead_message.yml', 'test/lead2opportunity2win.yml', 'test/lead2opportunity_assign_salesmen.yml', @@ -118,7 +120,6 @@ Dashboard for CRM will include: 'static/src/css/crm.css' ], 'js': [ - 'static/lib/sparkline/jquery.sparkline.js', 'static/src/js/crm_case_section.js', ], 'installable': True, diff --git a/addons/crm/base_partner_merge.py b/addons/crm/base_partner_merge.py index 42e1ab7c7ec..c73b5fdf599 100644 --- a/addons/crm/base_partner_merge.py +++ b/addons/crm/base_partner_merge.py @@ -235,9 +235,12 @@ class MergePartnerAutomatic(osv.TransientModel): record_ids = proxy.search(cr, openerp.SUPERUSER_ID, domain, context=context) for record in proxy.browse(cr, openerp.SUPERUSER_ID, record_ids, context=context): - proxy_model = self.pool[record.model] - - field_type = proxy_model._columns.get(record.name).__class__._type + try: + proxy_model = self.pool[record.model] + field_type = proxy_model._columns[record.name].__class__._type + except KeyError: + # unknown model or field => skip + continue if field_type == 'function': continue diff --git a/addons/crm/crm.py b/addons/crm/crm.py index 04a17b9dbc0..98581b91666 100644 --- a/addons/crm/crm.py +++ b/addons/crm/crm.py @@ -19,6 +19,7 @@ # ############################################################################## +import calendar from datetime import date, datetime from dateutil import relativedelta @@ -117,9 +118,9 @@ class crm_case_section(osv.osv): """ month_begin = date.today().replace(day=1) section_result = [{ - 'value': 0, - 'tooltip': (month_begin + relativedelta.relativedelta(months=-i)).strftime('%B'), - } for i in range(self._period_number - 1, -1, -1)] + 'value': 0, + 'tooltip': (month_begin + relativedelta.relativedelta(months=-i)).strftime('%B'), + } for i in range(self._period_number - 1, -1, -1)] group_obj = obj.read_group(cr, uid, domain, read_fields, groupby_field, context=context) for group in group_obj: group_begin_date = datetime.strptime(group['__domain'][0][2], tools.DEFAULT_SERVER_DATE_FORMAT) @@ -135,12 +136,14 @@ class crm_case_section(osv.osv): obj = self.pool.get('crm.lead') res = dict.fromkeys(ids, False) month_begin = date.today().replace(day=1) - groupby_begin = (month_begin + relativedelta.relativedelta(months=-4)).strftime(tools.DEFAULT_SERVER_DATE_FORMAT) + date_begin = month_begin - relativedelta.relativedelta(months=self._period_number - 1) + date_end = month_begin.replace(day=calendar.monthrange(month_begin.year, month_begin.month)[1]) + date_domain = [('create_date', '>=', date_begin.strftime(tools.DEFAULT_SERVER_DATE_FORMAT)), ('create_date', '<=', date_end.strftime(tools.DEFAULT_SERVER_DATE_FORMAT))] for id in ids: res[id] = dict() - lead_domain = [('type', '=', 'lead'), ('section_id', '=', id), ('create_date', '>=', groupby_begin)] + lead_domain = date_domain + [('type', '=', 'lead'), ('section_id', '=', id)] res[id]['monthly_open_leads'] = self.__get_bar_values(cr, uid, obj, lead_domain, ['create_date'], 'create_date_count', 'create_date', context=context) - opp_domain = [('type', '=', 'opportunity'), ('section_id', '=', id), ('create_date', '>=', groupby_begin)] + opp_domain = date_domain + [('type', '=', 'opportunity'), ('section_id', '=', id)] res[id]['monthly_planned_revenue'] = self.__get_bar_values(cr, uid, obj, opp_domain, ['planned_revenue', 'create_date'], 'planned_revenue', 'create_date', context=context) return res @@ -160,7 +163,7 @@ class crm_case_section(osv.osv): 'note': fields.text('Description'), 'working_hours': fields.float('Working Hours', digits=(16, 2)), 'stage_ids': fields.many2many('crm.case.stage', 'section_stage_rel', 'section_id', 'stage_id', 'Stages'), - '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 team. New emails received will automatically " "create new leads assigned to the team."), 'color': fields.integer('Color Index'), @@ -255,13 +258,6 @@ class crm_case_resource_type(osv.osv): 'section_id': fields.many2one('crm.case.section', 'Sales Team'), } -def _links_get(self, cr, uid, context=None): - """Gets links value for reference field""" - obj = self.pool.get('res.request.link') - ids = obj.search(cr, uid, []) - res = obj.read(cr, uid, ids, ['object', 'name'], context) - return [(r['object'], r['name']) for r in res] - class crm_payment_mode(osv.osv): """ Payment Mode for Fund """ _name = "crm.payment.mode" diff --git a/addons/crm/crm_case_section_view.xml b/addons/crm/crm_case_section_view.xml index c957311b47f..99b3296c3c1 100644 --- a/addons/crm/crm_case_section_view.xml +++ b/addons/crm/crm_case_section_view.xml @@ -99,11 +99,11 @@

@@ -174,7 +174,7 @@ - + diff --git a/addons/crm/crm_lead.py b/addons/crm/crm_lead.py index c4e2cbdc91d..c580fd728e2 100644 --- a/addons/crm/crm_lead.py +++ b/addons/crm/crm_lead.py @@ -23,6 +23,7 @@ import crm from datetime import datetime from operator import itemgetter +import openerp from openerp import SUPERUSER_ID from openerp import tools from openerp.addons.base.res.res_partner import format_address @@ -253,11 +254,13 @@ class crm_lead(format_address, osv.osv): multi='day_close', type="float", store=True), 'date_last_stage_update': fields.datetime('Last Stage Update', select=True), + # Messaging and marketing + 'message_bounce': fields.integer('Bounce'), # Only used for type opportunity 'probability': fields.float('Success Rate (%)', group_operator="avg"), 'planned_revenue': fields.float('Expected Revenue', track_visibility='always'), - 'ref': fields.reference('Reference', selection=crm._links_get, size=128), - 'ref2': fields.reference('Reference 2', selection=crm._links_get, size=128), + 'ref': fields.reference('Reference', selection=openerp.addons.base.res.res_request.referencable_models), + 'ref2': fields.reference('Reference 2', selection=openerp.addons.base.res.res_request.referencable_models), 'phone': fields.char("Phone", size=64), 'date_deadline': fields.date('Expected Closing', help="Estimate of the date on which the opportunity will be won."), 'date_action': fields.date('Next Action Date', select=True), @@ -296,7 +299,7 @@ class crm_lead(format_address, osv.osv): 'company_id': lambda s, cr, uid, c: s.pool.get('res.company')._company_default_get(cr, uid, 'crm.lead', context=c), 'priority': lambda *a: crm.AVAILABLE_PRIORITIES[2][0], 'color': 0, - 'date_last_stage_update': fields.datetime.now(), + 'date_last_stage_update': fields.datetime.now, } _sql_constraints = [ @@ -349,10 +352,14 @@ class crm_lead(format_address, osv.osv): """ if isinstance(cases, (int, long)): cases = self.browse(cr, uid, cases, context=context) + if context is None: + context = {} + # check whether we should try to add a condition on type + avoid_add_type_term = any([term for term in domain if len(term) == 3 if term[0] == 'type']) # collect all section_ids section_ids = set() types = ['both'] - if not cases: + if not cases and context.get('default_type'): ctx_type = context.get('default_type') types += [ctx_type] if section_id: @@ -370,7 +377,8 @@ class crm_lead(format_address, osv.osv): search_domain.append(('section_ids', '=', section_id)) search_domain.append(('case_default', '=', True)) # AND with cases types - search_domain.append(('type', 'in', types)) + if not avoid_add_type_term: + search_domain.append(('type', 'in', types)) # AND with the domain in parameter search_domain += list(domain) # perform search, return the first found @@ -604,10 +612,12 @@ class crm_lead(format_address, osv.osv): opportunities = self.browse(cr, uid, ids, context=context) sequenced_opps = [] + # Sorting the leads/opps according to the confidence level of its stage, which relates to the probability of winning it + # The confidence level increases with the stage sequence, except when the stage probability is 0.0 (Lost cases) + # An Opportunity always has higher confidence level than a lead, unless its stage probability is 0.0 for opportunity in opportunities: sequence = -1 - # TDE: was "if opportunity.stage_id and opportunity.stage_id.state != 'cancel':" - if opportunity.probability == 0 and opportunity.stage_id and opportunity.stage_id.sequence != 1 and opportunity.stage_id.fold: + if opportunity.stage_id and (opportunity.stage_id.probability != 0 or opportunity.stage_id.sequence == 1): sequence = opportunity.stage_id.sequence sequenced_opps.append(((int(sequence != -1 and opportunity.type == 'opportunity'), sequence, -opportunity.id), opportunity)) @@ -634,7 +644,7 @@ class crm_lead(format_address, osv.osv): # Merge notifications about loss of information opportunities = [highest] opportunities.extend(opportunities_rest) - self._merge_notify(cr, uid, highest, opportunities, context=context) + self._merge_notify(cr, uid, highest.id, opportunities, context=context) # Check if the stage is in the stages of the sales team. If not, assign the stage with the lowest sequence if merged_data.get('section_id'): section_stage_ids = self.pool.get('crm.case.stage').search(cr, uid, [('section_ids', 'in', merged_data['section_id']), ('type', '=', merged_data.get('type'))], order='sequence', context=context) diff --git a/addons/crm/crm_lead_view.xml b/addons/crm/crm_lead_view.xml index 849cecaac85..c0eefcc8d4c 100644 --- a/addons/crm/crm_lead_view.xml +++ b/addons/crm/crm_lead_view.xml @@ -145,7 +145,7 @@ + context="{'default_groups_ref': ['base.group_user', 'base.group_partner_manager', 'base.group_sale_salesman_all_leads'] }"/>